Commit Graph

336 Commits

Author SHA1 Message Date
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
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