| Commit message (Collapse) | Author | Age | Lines |
... | |
|\ \
| | |
| | | |
[pythonstatcomp/pt-br]
|
| | |
| | |
| | |
| | | |
Create pythonstatcomp.html.markdown with translate to pt-br
|
|\ \ \
| | | |
| | | | |
[YAML/pt-br] Some fixes and update
|
| | | |
| | | |
| | | | |
Forgot to traslate this part
|
| | |/
| |/|
| | |
| | |
| | | |
- Updated to latest EN version (with respective translation)
- Fixed some pt-BR typos
- Fixed indentations to be equal to the original EN version
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This commit includes suggestions originally proposed by @halian-vilela
Co-authored-by: Halian Vilela <halian@verlindo.com>
|
|/ /
| |
| | |
Translation of the markdown file of R to Brazilian Portuguese and update of the header with some information regarding the translator.
|
| |
| |
| | |
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
|
| | |
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
|
| |
(#4135)
* [typescript/es] Fix broken link to JS page
* [typescript/fr] Fix broken link to JS page
* [typescript/pt-br] Fix broken JS link
|
|\
| |
| | |
[pt-br/lua] Add translation for Lua to pt-BR
|
| |
| |
| | |
omg
|
| | |
|
| | |
|
| |
| |
| | |
Translation to pt-br.
|
|\ \
| | |
| | | |
[typescript/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[css/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[groovy/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[kotlin/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[language/lang-code] Typo fix and adding translation on needed lines
|
| |/
| |
| | |
A couple of typo fixes, and I saw some lines that were not translated so I went ahead and fixed that on this commit.
|
|\ \
| | |
| | | |
[language/lang-code] Accentuation fix
|
| |/ |
|
|\ \
| | |
| | | |
[julia/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[self/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[kotlin/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[matlab/pt-br] Small corrections
|
| |/ |
|
|\ \
| | |
| | | |
[awk/pt-br] Small corrections
|
| |/ |
|
|\ \
| |/
|/| |
[F#/pt-br] Add translation for F# to Brazilian Portuguese
|
| | |
|
| | |
|
|/ |
|
|
|
| |
Update in sass-pt markdown file with orthography corrections.
|
|
|
|
|
|
|
|
|
|
|
| |
+ 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/' {} \;
```
|