Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Fixed a spelling mistake | brian | 2020-02-28 | -1/+1 |
| | ||||
* | Merge pull request #3856 from sshine/make-python3-default | Adam Bard | 2020-02-13 | -324/+324 |
|\ | | | | | [Python] Make Python 3 default | |||
| * | Python 3: Use 'filename: learnpython*.py' (no '3') | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/' {} \; ``` | |||
| * | Change 'filename:' for Python 2 (legacy) | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/' {} \; ``` | |||
| * | Python 3: 'language: Python' | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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/' {} \; ``` | |||
| * | Python 2 'language': Python 2 (legacy) | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | 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)/' {} \; ``` | |||
| * | Rename Python 3 markdown files into 'python' | Simon Shine | 2020-02-12 | -0/+0 |
| | | | | | | | | | | | | | | | | ``` for f in $(find . -iname "*python3*" | grep -vE 'git'); do fnew=$(echo "$f" | sed 's/python3/python/') git mv "$f" "$fnew" done | |||
| * | Rename Python 2 markdown files into 'pythonlegacy' | Simon Shine | 2020-02-12 | -0/+0 |
| | | | | | | | | | | | | | | | | | | ``` for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do flegacy=$(echo "$f" | sed 's/python/pythonlegacy/') git mv "$f" "$flegacy" done ``` | |||
* | | Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs | Leigh Brenecki | 2020-02-13 | -96/+140 |
|\ \ | ||||
| * \ | Merge pull request #3843 from nihilismus/clojure-es-es | Max Schumacher | 2020-02-12 | -96/+140 |
| |\ \ | | |/ | |/| | [clojure/es] Update translation | |||
| | * | Update translation | Antonio Hernández Blas | 2020-02-06 | -98/+136 |
| | | | ||||
| | * | Limit document to 80 columns, where possible | Antonio Hernández Blas | 2020-02-05 | -17/+23 |
| | | | ||||
* | | | Purge my deadname | Leigh Brenecki | 2020-02-13 | -4/+4 |
|/ / | ||||
* | | Merge pull request #3819 from FedeHC/master | Max Schumacher | 2020-02-11 | -0/+115 |
|\ \ | |/ |/| | [sql/es] Translate SQL to Spanish | |||
| * | Update es-es/sql-es.html.markdown | FedeHC | 2020-02-07 | -1/+1 |
| | | | | | | Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com> | |||
| * | Update es-es/sql-es.html.markdown | FedeHC | 2020-02-07 | -1/+1 |
| | | | | | | Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com> | |||
| * | Update es-es/sql-es.html.markdown | FedeHC | 2020-02-07 | -1/+1 |
| | | | | | | Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com> | |||
| * | [sql/es] Translate SQL to Spanish | FedeHC | 2020-01-14 | -0/+115 |
| | | ||||
* | | Merge pull request #3667 from rrodriguze/feature/traduction-pcre-es | Divay Prakash | 2020-01-24 | -0/+84 |
|\ \ | | | | | | | [pcre/es-es] Added spanish traduction for pcre | |||
| * | | Added spanish traduction for pcre | rrodriguze | 2019-10-01 | -0/+84 |
| | | | ||||
* | | | Merge pull request #3666 from rrodriguze/feature/traduction-hq9+-es | Divay Prakash | 2020-01-24 | -0/+44 |
|\ \ \ | |_|/ |/| | | [HQ9+/es-es] Added spanish traduction for hq9+ | |||
| * | | Added spanish traduction for hq9+ | rrodriguze | 2019-10-01 | -0/+44 |
| |/ | ||||
* | | Merge pull request #3683 from heitorPB/c-update-book-link | Divay Prakash | 2020-01-11 | -1/+2 |
|\ \ | | | | | | | [C/en,es,tr,pt-br,zh-cn,ru-ru] update book link | |||
| * | | [c/es] Fix book link | Heitor Pascoal de Bittencourt | 2019-10-08 | -1/+2 |
| |/ | ||||
* | | Merge pull request #3662 from rrodriguze/feature/traduction-factor-es | Adam Bard | 2020-01-06 | -0/+200 |
|\ \ | | | | | | | [factor/es-es] Add spanish traduction to factor | |||
| * | | Add spanish traduction for factor | rrodriguze | 2019-10-01 | -0/+200 |
| |/ | ||||
* | | Modified yaml spacing | rrodriguze | 2019-10-01 | -5/+5 |
| | | ||||
* | | add spanish traduction for hy | rrodriguze | 2019-10-01 | -0/+176 |
|/ | ||||
* | [dart/es] (#3534) | Divay Prakash | 2019-08-01 | -0/+529 |
|\ | | | | | [dart/es] | |||
| * | [dart/es] Translate to Spanish language | Jorge Atempa | 2019-05-18 | -88/+85 |
| | | ||||
| * | [WIP] Translated document to Spanish Language | Jorge Atempa | 2019-05-01 | -0/+532 |
| | | ||||
* | | Merge pull request #3549 from arranzropablo/master | Divay Prakash | 2019-08-01 | -0/+741 |
|\ \ | | | | | | | scala/es | |||
| * | | finished translation | Pablo | 2019-06-19 | -40/+36 |
| | | | ||||
| * | | more translated | Pablo | 2019-06-07 | -81/+76 |
| | | | ||||
| * | | more | Pablo | 2019-06-06 | -60/+61 |
| | | | ||||
| * | | more | Pablo | 2019-06-05 | -0/+749 |
| | | | ||||
| * | | more | Pablo | 2019-06-03 | -748/+0 |
| | | | ||||
| * | | some more tanslated | Pablo Arranz Ropero | 2019-06-02 | -28/+28 |
| | | | ||||
| * | | some more tanslated | Pablo Arranz Ropero | 2019-06-02 | -9/+8 |
| | | | ||||
| * | | some more translated+ | Pablo Arranz Ropero | 2019-06-01 | -35/+34 |
| | | | ||||
| * | | Traducido hasta funciones | Pablo Arranz Ropero | 2019-06-01 | -35/+31 |
| | | | ||||
| * | | translating scala | Pablo Arranz Ropero | 2019-06-01 | -0/+754 |
| |/ | ||||
* | | Update kotlin-es.html.markdown | Aitor Escolar | 2019-06-21 | -0/+1 |
| | | ||||
* | | update kotlin-es with some additional information and improved example | Aitor Escolar | 2019-06-20 | -14/+53 |
|/ | ||||
* | Remove unused fields | Adam Bard | 2019-03-14 | -2/+0 |
| | ||||
* | Move "awk" articles to the "tool" category | Pierre-François Clement | 2019-03-08 | -1/+2 |
| | ||||
* | Move pythonstatcomp-es to the "tool" category + fix typo in name | Pierre-François Clement | 2019-03-08 | -1/+2 |
| | ||||
* | Type correction for the output of math.sqrt() propagated across versions and ↵ | Anindya Srivastava | 2019-02-06 | -1/+1 |
| | | | | languages | |||
* | [common-lisp/es] Spanish Translation for Common Lisp | Andre Polykanine | 2018-12-07 | -0/+692 |
| | | | | | | Closes #3338. the original translation was edited according to my review. Co-authored-by: Ivan Choff <ivanchoff@gmail.com> | |||
* | Merge pull request #3363 from AlburIvan/coldfusion-es | Andre Polykanine | 2018-11-05 | -0/+330 |
|\ | | | | | [coldfusion/es-es] Translate ColdFusion to es_ES |