summaryrefslogtreecommitdiffhomepage
path: root/es-es
Commit message (Collapse)AuthorAgeLines
* [awk] Fix wrong example output (in all languages) (#4750)Adrien LUDWIG2023-09-08-1/+1
|
* [r/es] Fix typoNeomar Rodríguez2023-06-26-1/+1
|
* Update python-es.html.markdownGustavo Adolfo Mejía Sánchez2023-03-31-2/+2
| | | | - comment explanation - translate the say function to "decir" to match with the final print
* Make "MATLAB" an acronymBoris Verkhovskiy2023-01-22-9/+9
|
* [python/es-es] parentheses required in print functions are addedluovkle2023-01-21-4/+4
|
* Fix broken 4clojure linkswang sy2023-01-14-1/+1
|
* edit overly long lines, consider markdownlintNorwid Behrnd2022-11-23-5/+7
| | | | | | | Lines longer than 80 characters are edited. Withn reason, suggests by markdownlint[1] are equally considered, too. [1] https://github.com/markdownlint/markdownlint, version 0.12.0.
* substitute a tab space by explicit spacesNorwid Behrnd2022-11-23-1/+1
|
* run `sed -i "s/ *$//" awk-es.html.markdown`Norwid Behrnd2022-11-23-16/+16
| | | | Remove of trailing spaces.
* Cambio de "has" por "haz"Lucas2022-08-17-4/+4
| | | Esto se refiere al verbo "hacer", con ce; y no al verbo "haber".
* Update c++ to upercase C++Marcel Ribeiro-Dantas2022-08-01-1/+1
|
* Fix language nameMarcel Ribeiro Dantas, Ph.D2022-08-01-1/+1
|
* correct example of gsub in awk-esNorwid Behrnd2022-07-11-1/+1
| | | | | | Edit is based on the correction in the English edition.[1] [1] https://github.com/adambard/learnxinyminutes-docs/pull/4437
* Remove GitGuy dead link from git material (close #4314)Marcel Ribeiro-Dantas2022-07-08-2/+0
|
* [rust/es] fix spanish translation.Mathias Schmitt2022-07-06-1/+1
|
* [rust/all] Remove .iter() on array example (#4230)Ay3552021-11-01-1/+1
| | | As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
* [docker/es-es] translated docker to spanish (#4249)RUSLAN LÓPEZ CARRO2021-10-23-0/+167
| | | | | * translated docker to spanish * adding changes from review
* [c++/es-es] Fix more typosDiego Ramirez2021-09-18-14/+15
| | | | | | - Grammar errors - Unecessary capital letters I also added myself as a "translator".
* Fix some typos for the C++ article (Spanish)Diego Ramirez2021-09-17-20/+18
| | | The Spanish translation has some typos, so I have been fixing them.
* Rename OS X to macOS (#4166)Борис Верховский2021-05-25-4/+4
|
* [typescript/fr] + [typescript/es] + [typescript/pt-br] Fix broken JS link ↵Spencer Burris2021-03-06-1/+1
| | | | | | | | | (#4135) * [typescript/es] Fix broken link to JS page * [typescript/fr] Fix broken link to JS page * [typescript/pt-br] Fix broken JS link
* Reflect perl6 to raku renamesumanstats2020-06-15-61/+61
| | | | | | | + 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
* Perl6 to Raku and many moresumanstats2020-06-10-218/+218
| | | | | | | | | | | + 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
* Fixed a spelling mistakebrian2020-02-28-1/+1
|
* Merge pull request #3856 from sshine/make-python3-defaultAdam Bard2020-02-13-324/+324
|\ | | | | [Python] Make Python 3 default
| * Python 3: Use 'filename: learnpython*.py' (no '3')Simon Shine2020-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 Shine2020-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 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 branch 'master' of https://github.com/adambard/learnxinyminutes-docsLeigh Brenecki2020-02-13-96/+140
|\ \
| * \ Merge pull request #3843 from nihilismus/clojure-es-esMax Schumacher2020-02-12-96/+140
| |\ \ | | |/ | |/| [clojure/es] Update translation
| | * Update translationAntonio Hernández Blas2020-02-06-98/+136
| | |
| | * Limit document to 80 columns, where possibleAntonio Hernández Blas2020-02-05-17/+23
| | |
* | | Purge my deadnameLeigh Brenecki2020-02-13-4/+4
|/ /
* | 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
| |