Lucas
c475d6c2d3
Cambio de "has" por "haz"
...
Esto se refiere al verbo "hacer", con ce; y no al verbo "haber".
2022-08-17 17:51:47 -05:00
Marcel Ribeiro-Dantas
7f60e471fc
Update c++ to upercase C++
2022-08-01 22:39:47 +02:00
Marcel Ribeiro Dantas, Ph.D
ea93acab65
Fix language name
2022-08-01 09:46:20 +02:00
Norwid Behrnd
0b6ac01abe
correct example of gsub in awk-es
...
Edit is based on the correction in the English edition.[1]
[1] https://github.com/adambard/learnxinyminutes-docs/pull/4437
2022-07-11 14:59:38 +02:00
Marcel Ribeiro-Dantas
a43b26041d
Remove GitGuy dead link from git material ( close #4314 )
2022-07-08 15:11:23 +02:00
Mathias Schmitt
6ec3406e1e
[rust/es] fix spanish translation.
2022-07-06 22:37:21 +02:00
Ay355
9552f2a1fe
[rust/all] Remove .iter() on array example ( #4230 )
...
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
2021-11-01 22:27:42 +01:00
RUSLAN LÓPEZ CARRO
e811ee833b
[docker/es-es] translated docker to spanish ( #4249 )
...
* translated docker to spanish
* adding changes from review
2021-10-23 18:58:33 +02:00
Diego Ramirez
cdc3b0cc27
[c++/es-es] Fix more typos
...
- Grammar errors
- Unecessary capital letters
I also added myself as a "translator".
2021-09-18 07:59:40 -05:00
Diego Ramirez
5fe2787092
Fix some typos for the C++ article (Spanish)
...
The Spanish translation has some typos, so I have been fixing them.
2021-09-17 13:01:27 -05:00
Борис Верховский
a502f8d723
Rename OS X to macOS ( #4166 )
2021-05-25 13:42:50 +02:00
Spencer Burris
5d2d1cf77c
[typescript/fr] + [typescript/es] + [typescript/pt-br] Fix broken JS link ( #4135 )
...
* [typescript/es] Fix broken link to JS page
* [typescript/fr] Fix broken link to JS page
* [typescript/pt-br] Fix broken JS link
2021-03-06 13:45:26 +01:00
sumanstats
d78605e0d7
Reflect perl6 to raku rename
...
+ As mentioned here: https://github.com/Raku/problem-solving/blob/master/solutions/language/Path-to-Raku.md perl6 is renamed to raku
+ change references of perl6 to raku
+ change extension from .p6 to .raku
+ fix the link of raku advent calendar
2020-06-15 20:42:57 +05:45
sumanstats
0ecb826429
Perl6 to Raku and many more
...
+ As the Perl 6 is renamed to raku, it is good to reflect that https://github.com/Raku/problem-solving/blob/master/solutions/language/Path-to-Raku.md
+ perl6.org is now raku.org
+ change references of perl 6 to raku
+ rename file perl6-pod.html.markdown to raku-pod.html.markdown
+ Perl refers to Perl 5, there is no ambiguity after rename of Perl6 to
Raku, use Perl only to refer to Perl 5
+ fix links inside raku.html.markdown
2020-06-10 16:33:01 +05:45
brian
c1e04d6868
Fixed a spelling mistake
2020-02-28 10:19:01 -03:00
Adam Bard
0a0a40dc2d
Merge pull request #3856 from sshine/make-python3-default
...
[Python] Make Python 3 default
2020-02-13 22:00:05 -08:00
Leigh Brenecki
6078f18d13
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
2020-02-13 10:38:35 +10:30
Leigh Brenecki
5864aba42d
Purge my deadname
2020-02-13 10:38:29 +10:30
Max Schumacher
76db052c9e
Merge pull request #3843 from nihilismus/clojure-es-es
...
[clojure/es] Update translation
2020-02-12 09:50:09 +01:00
Simon Shine
ae848c481f
Python 3: Use 'filename: learnpython*.py' (no '3')
...
Before renaming, Python 3 filenames were 'learnpython3*.py'.
This commit removes the '3' part from the filename.
To verify that the filenames were named consistently across
translations prior to this commit, and to change this:
```
ack -H 'filename:' python.html.markdown
find . -name "python-*.markdown" -exec ack -H 'filename:' {} \;
sed -i 's/^filename: learnpython3/filename: learnpython/' \
python.html.markdown
find . -name "python-*.markdown" -exec \
sed -i 's/^filename: learnpython3/filename: learnpython/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
887cbee8af
Change 'filename:' for Python 2 (legacy)
...
Before renaming, all Python 2 filenames were 'learnpython-*.py'.
This commit renames them to 'learnpythonlegacy-*.py'.
To verify that the filenames were named consistently across
translations prior to this commit, and to change this:
```
find . -name "pythonlegacy*.markdown" -exec ack filename: {} \;
find . -name "pythonlegacy*.markdown" -exec \
sed -i 's/^filename: learnpython/filename: learnpythonlegacy/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
8f5fac9895
Python 3: 'language: Python'
...
Instead of listing 'language: python3' for Python 3, use
language: Python
as #3450 does.
```
find . -iname "python-*.markdown" -exec \
sed -i 's/language: python3/language: Python/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
95c8b24ebf
Python 2 'language': Python 2 (legacy)
...
Instead of listing 'language: python' for Python 2, use
language: Python 2 (legacy)
```
find . -iname "*pythonlegacy*" -exec \
sed -i 's/^language: .*/language: Python 2 (legacy)/' {} \;
```
2020-02-12 05:09:13 +01:00
Simon Shine
a3b0585374
Rename Python 3 markdown files into 'python'
...
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
fnew=$(echo "$f" | sed 's/python3/python/')
git mv "$f" "$fnew"
done
2020-02-12 04:54:36 +01:00
Simon Shine
1adab9bc3f
Rename Python 2 markdown files into 'pythonlegacy'
...
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
git mv "$f" "$flegacy"
done
```
2020-02-12 04:53:08 +01:00
Max Schumacher
5c1cc4c823
Merge pull request #3819 from FedeHC/master
...
[sql/es] Translate SQL to Spanish
2020-02-11 16:10:23 +01:00
FedeHC
a46ac670a0
Update es-es/sql-es.html.markdown
...
Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
2020-02-07 16:33:05 -03:00
FedeHC
57ef3f1377
Update es-es/sql-es.html.markdown
...
Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
2020-02-07 16:31:57 -03:00
FedeHC
48068a9242
Update es-es/sql-es.html.markdown
...
Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
2020-02-07 16:31:40 -03:00
Antonio Hernández Blas
e60cd7ecdd
Update translation
2020-02-06 12:38:28 -06:00
Antonio Hernández Blas
43cb521310
Limit document to 80 columns, where possible
2020-02-05 13:41:55 -06:00
Divay Prakash
b64946ece2
Merge pull request #3667 from rrodriguze/feature/traduction-pcre-es
...
[pcre/es-es] Added spanish traduction for pcre
2020-01-24 19:25:25 +05:30
Divay Prakash
f899cb4ac6
Merge pull request #3666 from rrodriguze/feature/traduction-hq9+-es
...
[HQ9+/es-es] Added spanish traduction for hq9+
2020-01-24 19:05:44 +05:30
FedeHC
8e0ceee41b
[sql/es] Translate SQL to Spanish
2020-01-14 22:31:54 -03:00
Divay Prakash
1d00814fb7
Merge pull request #3683 from heitorPB/c-update-book-link
...
[C/en,es,tr,pt-br,zh-cn,ru-ru] update book link
2020-01-11 14:06:52 +05:30
Adam Bard
b59efe4c0b
Merge pull request #3662 from rrodriguze/feature/traduction-factor-es
...
[factor/es-es] Add spanish traduction to factor
2020-01-06 09:44:01 -08:00
Heitor Pascoal de Bittencourt
97c80bff9e
[c/es] Fix book link
2019-10-08 21:27:35 -03:00
rrodriguze
306b923cdc
Added spanish traduction for pcre
2019-10-01 23:22:16 +02:00
rrodriguze
cadc25ee89
Added spanish traduction for hq9+
2019-10-01 23:01:34 +02:00
rrodriguze
fe13d4dbce
Add spanish traduction for factor
2019-10-01 22:36:43 +02:00
rrodriguze
b72dd03ed2
Modified yaml spacing
2019-10-01 21:49:37 +02:00
rrodriguze
a662e9f35f
add spanish traduction for hy
2019-10-01 21:35:49 +02:00
Divay Prakash
66c3185253
[dart/es] ( #3534 )
...
[dart/es]
2019-08-01 16:58:40 +05:30
Divay Prakash
cb0b74e9c9
Merge pull request #3549 from arranzropablo/master
...
scala/es
2019-08-01 16:33:08 +05:30
Aitor Escolar
e9ad74e0a0
Update kotlin-es.html.markdown
2019-06-21 09:18:58 +02:00
Aitor Escolar
99394937d3
update kotlin-es with some additional information and improved example
2019-06-20 14:21:05 +02:00
Pablo
34820c9323
finished translation
2019-06-19 11:17:05 +02:00
Pablo
94c184f499
more translated
2019-06-07 16:07:39 +02:00
Pablo
a2c6510c23
more
2019-06-06 16:14:06 +02:00
Pablo
3b7b38ec34
more
2019-06-05 16:16:42 +02:00