Commit Graph

292 Commits

Author SHA1 Message Date
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
5864aba42d Purge my deadname 2020-02-13 10:38:29 +10:30
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
Timothe Pardieu
f0eb830ebd [elixir/fr-fr] Add french translation (#3679)
* Translate Elixir.html.markdown in french

* Add fixes in Elixir.html.markdown #3679
2019-10-09 11:41:14 +02:00
Alexandre Peyroux
9b3fc28432
fix syntax 2019-05-24 16:36:31 +02:00
Pierre-François Clement
0a3207587d
Move "make" articles to the "tool" category 2019-03-08 17:21:53 +01:00
Pierre-François Clement
ed100434e3
Move "awk" articles to the "tool" category 2019-03-08 17:19:27 +01:00
GannonTdW
77310658c8 [awk/fr] add awk-fr.html.markdown (#3482)
* add awk-fr.html.markdown

* correction of an oversight

* it's done

* vendethiel review (1/2)

* vendethiel review (2/2)

* vendethiel review (3)
2019-03-02 23:48:17 +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
Antoine Braut
89ff5da650
Correcting missing 'r'
Line 353 the word `centré` was write `centé`
2019-01-11 11:27:25 +01:00
LukaxFeh
d553a02345 [Dynamic programming - FR/FR] Fixed links 2018-10-31 18:10:03 -03:00
LukaxFeh
3027bf2c30 [Dynamic programmimg-DE/DE] 2018-10-30 23:29:14 -03:00
Divay Prakash
adfd3064e5
Merge branch 'master' into MarkdownFRChanges 2018-10-24 11:30:23 +05:30
Vincent Chafouin
8b6e7fb9e3 Update markdown-fr-html.mardown
* Fix issue #2864
* Fix formatting
* Fix ruby code snippet
* Fix translation
* Add missing keyboard keys section
2018-10-16 20:56:16 +03:00
Divay Prakash
69dd941c17
Merge pull request #3296 from divayprakash/fix-links
[dynamic-programming] Fix links
2018-10-14 06:11:15 +05:30
Divay Prakash
3359cb0a20 Fix links 2018-10-14 06:04:13 +05:30
Divay Prakash
99618d394e Add new link from 2242ad7 2018-10-14 05:51:14 +05:30
Divay Prakash
4b9c35047b Fix links and list styling 2018-10-14 05:33:23 +05:30
Yvan Sraka
d3335643d1
Update lambda-calculus-fr.html.markdown 2018-09-17 08:14:02 +02:00
Divay Prakash
fdd5e19dc5
Merge pull request #3209 from Hugo1380/Hugo1380-Translate-PyQt
[PyQT/FR] Add french translation PyQT
2018-09-12 19:42:23 +05:30
Divay Prakash
ddbd0a7e53
Merge pull request #3139 from yvan-sraka/lambda-calculus-fr
[Lambda Calculus/fr-fr] Translation
2018-09-11 10:40:00 +05:30
DevHugo
305e08b959
Update pyqt-fr.html.markdown 2018-09-10 11:54:47 +02:00
Divay Prakash
8bfba2422b
Merge pull request #3138 from yvan-sraka/dynamic-programming-fr
[Dynamic Programming/fr-fr] Fix typos
2018-09-08 18:07:32 +05:30
DevHugo
b955d9386b
Translate: Part 2 2018-09-05 10:34:20 +02:00
Divay Prakash
478a43c1d4 Add language code suffix (#3206) 2018-09-04 18:25:57 +05:30
Adam Bard
440247a597
Update jquery-fr.html.markdown 2018-08-28 08:49:41 -07:00
DevHugo
93499a0946
Translate: Header + Part 1 2018-08-14 19:20:36 +02:00
DevHugo
21c899e41b
Fix(mardown layout): Missing one caracter
Just a Markdown fix for the layout that broke the display on the website.
2018-08-14 19:15:58 +02:00
boissonnfive
92022da0a6 Corrections de majuscules, sauts de lignes, guillemets, accents + reformulations. 2018-06-27 14:45:10 +02:00
boissonnfive
ee013dd2da Several corrections + copy english markdown page format. 2018-06-26 23:17:27 +02:00
Yvan Sraka
a1680153e0
Translate Lambda Calculus in French 2018-06-09 19:06:33 +02:00
Yvan Sraka
8aa693c8cb
Fix typos in French version of Dynamic Programming tutorial 2018-06-09 18:35:45 +02:00
Pratik Karki
0345980fea
Update bf-fr.html.markdown 2018-03-14 08:42:39 +05:45
Adam Bard
caa8993076 Assorted fixes 2018-03-04 19:48:44 -08:00
Pratik Karki
d57fe66c43
Fix language name 2018-02-28 16:08:29 +05:45
louis
c086850651 [crystal/fr] Corrected mistake 2018-02-27 16:27:32 +01:00
ven
83d3efe45f
follow-up on #2971 2017-12-07 12:16:08 +01:00
Julien M'Poy
5e81853768 Merge remote-tracking branch 'upstream/master' 2017-11-08 13:29:24 +01:00
Julien M'Poy
20893f5d83 Change file name as requested by @prertik 2017-11-08 13:27:20 +01:00
LukaxFeh
0aaae2653c Fix file names in french (#2984)
* fix file name

* fix file names

* fix file names

* fix file names

* fix file names

* fix file names
2017-10-29 20:54:01 +05:45
Julien M'Poy
5a9f042ea5 Corrected french mistakes 2017-10-27 09:51:28 +02:00
Mathieu Gemard
cfb7b656ae [java/fr] -Create java-fr.html.markdown (#2762)
* Create java-fr.html.markdown

* Update java-fr.html.markdown

* Update java-fr.html.markdown translation finished

* typos

* [java/en] changement switch/polymorphisme/interface

* [java/fr] ajout d'un exemple pour l'opérateur ?:

On pouvait penser qu'il fallait obligatoirement utiliser = avec ?:

* [java/fr] typo
2017-10-09 12:03:58 +02:00
Julien M'Poy
2c774e7e19 Added link to he-arc/livre-python book 2017-09-20 17:51:32 +02:00
Julien M'Poy
d14d97c2da Translated the f-string example and updated translators list 2017-09-19 08:32:04 +02:00
Julien M'Poy
da6ee99ff9 Corrected some spelling mistakes and added an f-string example 2017-09-18 12:13:53 +02:00