| Commit message (Collapse) | Author | Age | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
* [awk-fr], spell check, errors spot by @vendethiel
The commit accounts for errors in orthography identified by
@vendethiel.[1]
[1] https://github.com/adambard/learnxinyminutes-docs/pull/4440
* [awk-fr] spell check, own revision
Additional spell check.
|
|
|
|
| |
Following the recommendation to not exceed 80 characters/line.
|
|
|
|
|
|
|
| |
This corrects an error spot in the English edition of the document
spot earlier[1] and equally present in the French one.
[1] https://github.com/adambard/learnxinyminutes-docs/pull/4437
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Multiple errors prevented the translation from being displayed:
* contributors was indented with a tab instead of two spaces.
* the category was not the same as the original english file.
* a code block was closed at the end of the file, but never
opened.
|
|
|
|
| |
The name was different in english and in french, which prevented
the french translation from being displayed.
|
|
|
| |
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
|
|
|
| |
(#4135)
* [typescript/es] Fix broken link to JS page
* [typescript/fr] Fix broken link to JS page
* [typescript/pt-br] Fix broken JS link
|
| |
|
| |
|
| |
|
|
|
|
|
| |
code demo in the hyperliens section
was not rendered in the built site
converted from md ``` syntax to plain html <code>
|
|
|
|
| |
i forgot this was the french doc
|
|
|
|
|
|
|
|
| |
Co-authored-by: Carl20cent <carl.vincent38@gmail.com>
bump changed section variable declarations to ES6
Update fr-fr/javascript-fr.html.markdown
|
|\
| |
| | |
[fr-fr/elisp-fr.html.markdown] Fix typos
|
| |
| |
| |
| |
| | |
Also use "motif" as a translation for "pattern", but still mention
"pattern" as it is commonly understood.
|
|\ \
| | |
| | | |
[f#/fr] Add missing translation
|
| |/
| |
| | |
Translate untranslated comment and explicitly cite currying
|
|\ \
| | |
| | | |
[crystal/fr] Minor fix about "on/ont"
|
| |/ |
|
|/
|
|
|
|
|
|
|
|
|
| |
+ 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
|
|\
| |
| | |
[Python] Make Python 3 default
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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/' {} \;
```
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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/' {} \;
```
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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/' {} \;
```
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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)/' {} \;
```
|
| |
| |
| |
| |
| |
| |
| |
| | |
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
fnew=$(echo "$f" | sed 's/python3/python/')
git mv "$f" "$fnew"
done
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
git mv "$f" "$flegacy"
done
```
|
|/ |
|
|
|
|
|
|
| |
* Translate Elixir.html.markdown in french
* Add fixes in Elixir.html.markdown #3679
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* add awk-fr.html.markdown
* correction of an oversight
* it's done
* vendethiel review (1/2)
* vendethiel review (2/2)
* vendethiel review (3)
|
|
|
|
| |
languages
|
|
|
| |
Line 353 the word `centré` was write `centé`
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
* Fix issue #2864
* Fix formatting
* Fix ruby code snippet
* Fix translation
* Add missing keyboard keys section
|
| |\
| | |
| | | |
[dynamic-programming] Fix links
|
| | | |
|
| | | |
|
| |/ |
|