summaryrefslogtreecommitdiffhomepage
path: root/es-es
Commit message (Collapse)AuthorAgeLines
* Python 3: 'language: Python'Simon Shine2020-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 Shine2020-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 Shine2020-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 Shine2020-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 pull request #3819 from FedeHC/masterMax Schumacher2020-02-11-0/+115
|\ | | | | [sql/es] Translate SQL to Spanish
| * Update es-es/sql-es.html.markdownFedeHC2020-02-07-1/+1
| | | | | | Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
| * Update es-es/sql-es.html.markdownFedeHC2020-02-07-1/+1
| | | | | | Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
| * Update es-es/sql-es.html.markdownFedeHC2020-02-07-1/+1
| | | | | | Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
| * [sql/es] Translate SQL to SpanishFedeHC2020-01-14-0/+115
| |
* | Merge pull request #3667 from rrodriguze/feature/traduction-pcre-esDivay Prakash2020-01-24-0/+84
|\ \ | | | | | | [pcre/es-es] Added spanish traduction for pcre
| * | Added spanish traduction for pcrerrodriguze2019-10-01-0/+84
| | |
* | | Merge pull request #3666 from rrodriguze/feature/traduction-hq9+-esDivay Prakash2020-01-24-0/+44
|\ \ \ | |_|/ |/| | [HQ9+/es-es] Added spanish traduction for hq9+
| * | Added spanish traduction for hq9+rrodriguze2019-10-01-0/+44
| |/
* | Merge pull request #3683 from heitorPB/c-update-book-linkDivay Prakash2020-01-11-1/+2
|\ \ | | | | | | [C/en,es,tr,pt-br,zh-cn,ru-ru] update book link
| * | [c/es] Fix book linkHeitor Pascoal de Bittencourt2019-10-08-1/+2
| |/
* | Merge pull request #3662 from rrodriguze/feature/traduction-factor-esAdam Bard2020-01-06-0/+200
|\ \ | | | | | | [factor/es-es] Add spanish traduction to factor
| * | Add spanish traduction for factorrrodriguze2019-10-01-0/+200
| |/
* | Modified yaml spacingrrodriguze2019-10-01-5/+5
| |
* | add spanish traduction for hyrrodriguze2019-10-01-0/+176
|/
* [dart/es] (#3534)Divay Prakash2019-08-01-0/+529
|\ | | | | [dart/es]
| * [dart/es] Translate to Spanish languageJorge Atempa2019-05-18-88/+85
| |
| * [WIP] Translated document to Spanish LanguageJorge Atempa2019-05-01-0/+532
| |
* | Merge pull request #3549 from arranzropablo/masterDivay Prakash2019-08-01-0/+741
|\ \ | | | | | | scala/es
| * | finished translationPablo2019-06-19-40/+36
| | |
| * | more translatedPablo2019-06-07-81/+76
| | |
| * | morePablo2019-06-06-60/+61
| | |
| * | morePablo2019-06-05-0/+749
| | |
| * | morePablo2019-06-03-748/+0
| | |
| * | some more tanslatedPablo Arranz Ropero2019-06-02-28/+28
| | |
| * | some more tanslatedPablo Arranz Ropero2019-06-02-9/+8
| | |
| * | some more translated+Pablo Arranz Ropero2019-06-01-35/+34
| | |
| * | Traducido hasta funcionesPablo Arranz Ropero2019-06-01-35/+31
| | |
| * | translating scalaPablo Arranz Ropero2019-06-01-0/+754
| |/
* | Update kotlin-es.html.markdownAitor Escolar2019-06-21-0/+1
| |
* | update kotlin-es with some additional information and improved exampleAitor Escolar2019-06-20-14/+53
|/
* Remove unused fieldsAdam Bard2019-03-14-2/+0
|
* Move "awk" articles to the "tool" categoryPierre-François Clement2019-03-08-1/+2
|
* Move pythonstatcomp-es to the "tool" category + fix typo in namePierre-François Clement2019-03-08-1/+2
|
* Type correction for the output of math.sqrt() propagated across versions and ↵Anindya Srivastava2019-02-06-1/+1
| | | | languages
* [common-lisp/es] Spanish Translation for Common LispAndre Polykanine2018-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-esAndre Polykanine2018-11-05-0/+330
|\ | | | | [coldfusion/es-es] Translate ColdFusion to es_ES
| * Merge branch 'coldfusion-es' of github.com:AlburIvan/learnxinyminutes-docs ↵AlburIvan2018-11-04-1/+2
| |\ | | | | | | | | | into coldfusion-es
| | * Fix YAML indentation issueIvan Alburquerque2018-10-31-1/+1
| | |
| | * Fix YAML frontmatter missing lang confIvan Alburquerque2018-10-31-2/+3
| | |
| * | Fix tildes & other miss translated wordsAlburIvan2018-11-04-4/+4
| |/
| * Finish coldfusion translationAlburIvan2018-10-31-0/+329
| |
* | Merge pull request #3346 from AlburIvan/pascal-esAndre Polykanine2018-11-05-0/+205
|\ \ | | | | | | [pascal/es-es] Translate Pascal to es_ES
| * | Add some missing translationAlburIvan2018-11-04-10/+10
| | |
| * | Fix YAML frontmatter missing lang confIvan Alburquerque2018-10-31-1/+2
| | |
| * | Initial es-es translation for PascalAlburIvan2018-10-29-0/+204
| | |