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
Pablo
8041ab30c1
more
2019-06-03 12:57:37 +02:00
Pablo Arranz Ropero
1108cfb305
some more tanslated
2019-06-02 15:04:03 +02:00
Pablo Arranz Ropero
2d0a124200
some more tanslated
2019-06-02 12:39:53 +02:00
Pablo Arranz Ropero
373bc005ab
some more translated+
2019-06-01 16:29:10 +02:00
Pablo Arranz Ropero
8defb7f6fe
Traducido hasta funciones
2019-06-01 13:17:07 +02:00
Pablo Arranz Ropero
59499abb79
translating scala
2019-06-01 12:36:15 +02:00
Jorge Atempa
4c4da82a91
[dart/es] Translate to Spanish language
2019-05-18 01:19:46 -07:00
Jorge Atempa
b680c4153a
[WIP] Translated document to Spanish Language
2019-05-01 00:06:32 -07:00
Adam Bard
c85d93a5ed
Remove unused fields
2019-03-14 09:38:45 -07:00
Pierre-François Clement
ed100434e3
Move "awk" articles to the "tool" category
2019-03-08 17:19:27 +01:00
Pierre-François Clement
2dafa0de3a
Move pythonstatcomp-es to the "tool" category + fix typo in name
2019-03-08 17:13:52 +01:00
Anindya Srivastava
9b5b5f6d31
Type correction for the output of math.sqrt() propagated across versions and languages
2019-02-06 07:31:34 +05:30
Andre Polykanine
0c46b8503b
[common-lisp/es] Spanish Translation for Common Lisp
...
Closes #3338 . the original translation was edited according to my review.
Co-authored-by: Ivan Choff <ivanchoff@gmail.com>
2018-12-07 00:34:39 +02:00
Andre Polykanine
76e5f436df
Merge pull request #3363 from AlburIvan/coldfusion-es
...
[coldfusion/es-es] Translate ColdFusion to es_ES
2018-11-05 10:54:33 +02:00
Andre Polykanine
c23df839d3
Merge pull request #3346 from AlburIvan/pascal-es
...
[pascal/es-es] Translate Pascal to es_ES
2018-11-05 10:50:03 +02:00
AlburIvan
85ef19ebfe
Add some missing translation
2018-11-04 22:33:36 -04:00
AlburIvan
929508ce2c
Merge branch 'coldfusion-es' of github.com:AlburIvan/learnxinyminutes-docs into coldfusion-es
2018-11-04 21:41:05 -04:00
AlburIvan
e59fd86ee1
Fix tildes & other miss translated words
2018-11-04 21:40:27 -04:00
Andre Polykanine
7cc32b69a3
Merge pull request #3345 from AlburIvan/lambda-es
...
[lambda-calculus/es-es] Translate Lambda Calculus to es_ES
2018-11-01 16:09:41 +02:00
Ivan Alburquerque
58d6444214
Fix YAML indentation issue
2018-10-31 13:09:26 -04:00
Ivan Alburquerque
45e7703613
Fix YAML frontmatter missing lang conf
2018-10-31 13:06:16 -04:00
Ivan Alburquerque
37758458ab
Fix YAML frontmatter missing lang conf
2018-10-31 13:04:34 -04:00
Ivan Alburquerque
c8020fa024
Fix YAML frontmatter missing lang conf
2018-10-31 12:59:56 -04:00
AlburIvan
5e73ed6097
Finish coldfusion translation
2018-10-31 01:03:36 -04:00
AlburIvan
791f1bc9cf
Fix some tildes & update spanish docs references
2018-10-30 23:07:12 -04:00
Divay Prakash
327640986a
Add language code
2018-10-31 02:39:10 +05:30
Adrian Rocamora
1aefbde39e
Fixes requested by maintainer
2018-10-30 11:29:30 -06:00
AlburIvan
8160470868
Initial es-es translation for Pascal
2018-10-29 03:25:13 -04:00
Adrian Rocamora
d3c2d89f9e
Missing accent
2018-10-28 23:01:55 -06:00
Adrian Rocamora
ee2a35a980
Spacing fixes
2018-10-28 22:59:58 -06:00
Adrian Rocamora
c021c15692
Removed leftover English content
2018-10-28 22:56:21 -06:00
Adrian Rocamora
b5929c289d
80 cols fix
2018-10-28 22:53:03 -06:00
AlburIvan
9458db1072
Initial es-es translation for lambda
2018-10-29 00:49:20 -04:00
Adrian Rocamora
8aadea8c05
PyQT Spanish translation
2018-10-28 22:48:42 -06:00
AlburIvan
85a98dc3af
Solve one unfinished translation & a tilde
2018-10-28 04:14:45 -04:00
AlburIvan
af302ce02a
Solve minor typos & update some missing translations
2018-10-28 04:08:10 -04:00
AlburIvan
df0a0fa2a6
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs into matlab-es
2018-10-28 03:00:26 -04:00
Divay Prakash
99618d394e
Add new link from 2242ad7
2018-10-14 05:51:14 +05:30
Divay Prakash
4194b7b456
Fix links and list styling
2018-10-14 05:31:59 +05:30
Abraham Toriz
f50ec0c885
changes werent big enough to count myself as contributor of this article
2018-10-10 09:46:39 -05:00
Abraham Toriz Cruz
3dc029b217
Fixed and enhanced for python 3
...
Includes Spanish language corrections
2018-10-10 09:40:26 -05:00
[Ernesto]
7ac9d6383f
added changes
2018-09-30 08:56:43 -07:00
[Ernesto]
03437f5b0d
added part 5 Testing with EUnit
2018-09-19 13:14:02 -07:00
[Ernesto]
368c855ed6
added part 4 Concurrency
2018-09-19 13:12:27 -07:00
[Ernesto]
d875cbabe4
added part 3 Exceptions
2018-09-19 13:10:30 -07:00
[Ernesto]
b765369b25
added part 2 Sequential programming.
2018-09-19 13:09:24 -07:00
[Ernesto]
abaf836249
add part 1 Variables and pattern matching
2018-09-19 13:07:32 -07:00
Angel Arciniega
aa51a89522
Add F# tutorial in Spanish
...
New tutorial of F# in spanish from Angel Arciniega
2018-09-18 21:01:24 -07:00
Divay Prakash
d13203fa1e
Merge pull request #3204 from divayprakash/fix-build-issues
...
Fix build error in SmallBASIC (es-es)
2018-09-08 16:33:23 +05:30
Divay Prakash
2e55664c99
Fix YAML error ( #3206 )
2018-09-04 18:43:46 +05:30
Divay Prakash
f0849286f8
Fix build error in 'build/docs/es-es/learnsmallbasic-es/index.html'
2018-08-31 16:54:29 +05:30
Divay Prakash
faf66f5f9c
Fix build error in 'build/docs/es-es/markdown-es/index.html'
2018-08-15 17:45:40 +05:30
Divay Prakash
7ec13dbac3
Fix build error in 'build/docs/es-es/objective-c-es/index.html'
2018-08-15 17:44:58 +05:30
Divay Prakash
20edaa612a
Fix build error in 'build/docs/es-es/visualbasic-es/index.html'
2018-08-15 17:43:47 +05:30
Aleksandr Mazurik
d375092374
[awk/en] Fix atan2 args order
2018-07-28 21:48:25 +03:00
Pratik Karki
1bb3b74970
Update perl6-es.html.markdown
2018-06-02 17:22:15 +05:45
Luis F. Uceta
e24fc2ee48
[perl6/es-es] Added Spanish translation for Perl 6 ( #3093 )
...
* Added Spanish translation for Perl 6
* Format header according to the standard format
* Remove whitespace in header
2018-06-01 08:55:35 +05:45
Pratik Karki
417662434e
Update bf-es.html.markdown
2018-03-14 08:41:45 +05:45
AlburIvan
73b8cd9a39
Transale Osvaldo's note
2017-10-24 02:24:04 -04:00
AlburIvan
ce615ac9a2
Add translator to header
2017-10-24 02:19:48 -04:00
AlburIvan
5621c64a09
Traslate from EN to ES
2017-10-24 02:11:49 -04:00
Andre Polykanine A.K.A. Menelion Elensúlë
1d8825ebe4
Merge pull request #2895 from jjuanhdez/patch-1
...
Create learnsmallbasic-es.html.markdown
2017-10-10 02:31:34 +03:00
Damian Rzeszot
e8ee66c854
swift | fix style guidelines
2017-10-09 08:04:01 +02:00
Damian Rzeszot
9a9e52b54b
swift | fix style guidelines
2017-10-09 08:04:01 +02:00
Damian Rzeszot
d01e5242e1
swift | fix style guidelines
2017-10-09 08:04:01 +02:00
J.Juan
7d2dcc0df4
Create learnsmallbasic-es.html.markdown
2017-10-08 01:05:48 +02:00
Kamil Łopuszański
9afd4fd1bd
[groovy] small fix in iteration over a map
2017-10-04 16:15:38 +02:00
Abel Salgado Romero
d88ae3b30d
applied fixes from review
2017-09-19 19:34:41 +02:00
Abel Salgado Romero
12d0381cf0
[asciidoc/es-es] adds Spanish translation for AsciiDoc
2017-09-17 17:21:51 +02:00