| Commit message (Collapse) | Author | Age | Lines |
|
|
| |
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/' {} \;
```
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
```
|
|/ |
|
| |
|
|\
| |
| | |
[pascal/pt-br] Update contributors in pascal-pt
|
| |
| |
| | |
I translated this a while back and decided to add myself as a contributor besides a translator because I changed much of the original text to what I feel is a more legible, better explanation of the Pascal language.
|
|\ \
| | |
| | | |
[pt-br/vim] Add command tips and examples, fix wild text
|