summaryrefslogtreecommitdiffhomepage
path: root/fr-fr
Commit message (Collapse)AuthorAgeLines
* [set-theory/fr] Added French translation for Set theory (#4168)kieutrang17292021-07-11-0/+134
| | | | | | | | | | | | | | | * Update set-theory.html.markdown Fixed a minor typo. * Add files via upload Added a french translation for set theory. * Add suggested changes J'ai fait presque tous les changements suggérés. * Fix spacing before semicolons
* [asymptotic-notation/fr] fix small typos (#4186)tobihans2021-07-03-7/+7
|
* Rename OS X to macOS (#4166)Борис Верховский2021-05-25-3/+3
|
* [java/fr] Fix typo (#4165)Vincent Kosciuszko2021-05-13-32/+32
| | | | | | | | | | * Fixing typo in java-fr jours de la semaine = day of the week. jours de l'année = day of the year. * Update java-fr.html.markdown * Update java-fr.html.markdown
* [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
* Fix yet another french typo :)Gabriel Le Breton2020-12-06-1/+1
|
* Fix another small french typoGabriel Le Breton2020-12-06-1/+1
|
* Fix a small french typoGabriel Le Breton2020-12-06-1/+1
|
* fix unrendered md in markdown-fr (#3995)kevinnls2020-09-29-17/+17
| | | | | code demo in the hyperliens section was not rendered in the built site converted from md ``` syntax to plain html <code>
* traductionkevinnls2020-08-20-1/+1
| | | | i forgot this was the french doc
* [js/fr] fix for...of loopkevinnls2020-08-20-10/+12
| | | | | | | | Co-authored-by: Carl20cent <carl.vincent38@gmail.com> bump changed section variable declarations to ES6 Update fr-fr/javascript-fr.html.markdown
* Merge pull request #3935 from bzg/masterMax Schumacher2020-08-17-5/+5
|\ | | | | [fr-fr/elisp-fr.html.markdown] Fix typos
| * fr-fr/elisp-fr.html.markdown: Fix typosBastien Guerry2020-05-24-5/+5
| | | | | | | | | | Also use "motif" as a translation for "pattern", but still mention "pattern" as it is commonly understood.
* | Merge pull request #3903 from glecetre/patch-1Max Schumacher2020-07-08-1/+2
|\ \ | | | | | | [f#/fr] Add missing translation
| * | Update fsharp-fr.html.markdownGuillaume Lecêtre2020-04-12-1/+2
| |/ | | | | Translate untranslated comment and explicitly cite currying
* | Merge pull request #3886 from blankoworld/patch-1Max Schumacher2020-07-07-1/+1
|\ \ | | | | | | [crystal/fr] Minor fix about "on/ont"
| * | Minor fix about "on/ont"Olivier DOSSMANN2020-03-15-1/+1
| |/
* / Perl6 to Raku and many moresumanstats2020-06-10-2/+2
|/ | | | | | | | | | | + 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
* Merge pull request #3856 from sshine/make-python3-defaultAdam Bard2020-02-13-1011/+1011
|\ | | | | [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 ```
* | Purge my deadnameLeigh Brenecki2020-02-13-1/+1
|/
* [elixir/fr-fr] Add french translation (#3679)Timothe Pardieu2019-10-09-0/+479
| | | | | | * Translate Elixir.html.markdown in french * Add fixes in Elixir.html.markdown #3679
* fix syntaxAlexandre Peyroux2019-05-24-2/+2
|
* Move "make" articles to the "tool" categoryPierre-François Clement2019-03-08-1/+2
|
* Move "awk" articles to the "tool" categoryPierre-François Clement2019-03-08-1/+2
|
* [awk/fr] add awk-fr.html.markdown (#3482)GannonTdW2019-03-02-0/+376
| | | | | | | | | | | | | | * add awk-fr.html.markdown * correction of an oversight * it's done * vendethiel review (1/2) * vendethiel review (2/2) * vendethiel review (3)
* Type correction for the output of math.sqrt() propagated across versions and ↵Anindya Srivastava2019-02-06-1/+1
| | | | languages
* Correcting missing 'r'Antoine Braut2019-01-11-1/+1
| | | Line 353 the word `centré` was write `centé`
* [Dynamic programming - FR/FR] Fixed linksLukaxFeh2018-10-31-1/+1
|
* [Dynamic programmimg-DE/DE]LukaxFeh2018-10-30-3/+3
|
* Merge branch 'master' into MarkdownFRChangesDivay Prakash2018-10-24-84/+301
|\
| * Update markdown-fr-html.mardownVincent Chafouin2018-10-16-106/+188
| | | | | | | | | | | | | | | | * Fix issue #2864 * Fix formatting * Fix ruby code snippet * Fix translation * Add missing keyboard keys section
| * Merge pull request #3296 from divayprakash/fix-linksDivay Prakash2018-10-14-3/+3
| |\ | | | | | | [dynamic-programming] Fix links
| | * Fix linksDivay Prakash2018-10-14-3/+3
| | |
| * | Add new link from 2242ad7Divay Prakash2018-10-14-0/+1
| | |
| * | Fix links and list stylingDivay Prakash2018-10-14-4/+2
| |/
| * Update lambda-calculus-fr.html.markdownYvan Sraka2018-09-17-1/+2
| |
| * Merge pull request #3209 from Hugo1380/Hugo1380-Translate-PyQtDivay Prakash2018-09-12-0/+85
| |\ | | | | | | [PyQT/FR] Add french translation PyQT
| | * Update pyqt-fr.html.markdownDevHugo2018-09-10-1/+1
| | |
| | * Translate: Part 2DevHugo2018-09-05-9/+9
| | |
| | * Translate: Header + Part 1DevHugo2018-08-14-0/+85
| | |
| * | Merge pull request #3139 from yvan-sraka/lambda-calculus-frDivay Prakash2018-09-11-0/+105
| |\ \ | | | | | | | | [Lambda Calculus/fr-fr] Translation
| | * | Translate Lambda Calculus in FrenchYvan Sraka2018-06-09-0/+105
| | |/
| * | Merge pull request #3138 from yvan-sraka/dynamic-programming-frDivay Prakash2018-09-08-10/+6
| |\ \ | | | | | | | | [Dynamic Programming/fr-fr] Fix typos
| | * | Fix typos in French version of Dynamic Programming tutorialYvan Sraka2018-06-09-10/+6
| | |/