* Update go-de.html.markdown
corrected an error in the number pi
* Update go.html.markdown
corrected an error in the number pi
* Update go-pt.html.markdown
corrected an error in the number pi
* Update go-hu.html.markdown
corrected an error in the number pi
* Update go-cn.html.markdown
corrected an error in the number pi
* Update go-kr.html.markdown
corrected an error in the number pi
* Update go-ca.html.markdown
corrected an error in the number pi
* Update go-es.html.markdown
corrected an error in the number pi
* Update go-fi.html.markdown
corrected an error in the number pi
* Update go-fr.html.markdown
corrected an error in the number pi
* Update go-ru.html.markdown
corrected an error in the number pi
* Update go-it.html.markdown
corrected an error in the number pi
* Update go.html.markdown
corrected an error in the number pi
This contains translations:
7d6d0311 [yaml/en] Remove unused anchor
f2b4df9a UTF-8/16/32 characters need to be encoded
699ab981 Correct wording, closes#309862e9ea6b Explain regexp, closes#2197dba905ff Fix YAML, closes#3172 (#3329)
7cd43d8a [yaml/en] Use preferred style; add missing uses
ae1d18ad [yaml/en] Fix#2558 1 is interpreted as a number not as a boolean. For a boolean use we use true
Signed-off-by: Justin Yang <justin.yang@themedium.io>
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/' {} \;
```
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
git mv "$f" "$flegacy"
done
```
* Removed whitespace in variable declaration with explicit type (Kotlin)
* Removed whitespace in variable declaration with explicit type (Kotlin translations)