Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Fixed some typos in translation | caminsha | 2020-03-20 | -20/+21 |
| | ||||
* | changed ss to ß | caminsha | 2020-03-20 | -13/+13 |
| | ||||
* | added example program | caminsha | 2020-03-20 | -0/+73 |
| | ||||
* | added import section | caminsha | 2020-03-08 | -0/+12 |
| | ||||
* | Added styling and textures | caminsha | 2020-03-02 | -0/+42 |
| | ||||
* | Added transformamtions sections to translation | caminsha | 2020-03-01 | -0/+24 |
| | ||||
* | added some new things in drawing shapes | caminsha | 2020-03-01 | -0/+46 |
| | ||||
* | Started to translate the drawing part | caminsha | 2020-02-29 | -0/+51 |
| | ||||
* | added control flows | caminsha | 2020-02-27 | -0/+62 |
| | ||||
* | finished section mathematics | caminsha | 2020-02-27 | -0/+26 |
| | ||||
* | Started with German translation of processing | caminsha | 2020-02-25 | -0/+161 |
| | ||||
* | reworded variable declaration comment | caminsha | 2020-02-25 | -3/+4 |
| | | | | | I reworded the comment so that the English and the German version have the same content. See PR #3864 | |||
* | Merge pull request #3854 from caminsha/de-de/python3_typofix | Max Schumacher | 2020-02-17 | -27/+19 |
|\ | | | | | [python3/de-de] fixed some small typos in German translation | |||
| * | Added example for f-strings | caminsha | 2020-02-17 | -0/+8 |
| | | ||||
| * | Changed sentence about deprecated python 2 | caminsha | 2020-02-17 | -1/+1 |
| | | ||||
| * | removed section with different .format for stringformatting | caminsha | 2020-02-16 | -4/+0 |
| | | ||||
| * | Fixed explanation about legacy python | caminsha | 2020-02-16 | -5/+2 |
| | | ||||
| * | Delete python3-de.html.markdown | caminsha | 2020-02-15 | -646/+0 |
| | | | | | | | | | | I deleted the old file. I'm sorry I had to commit twice. Was my first time to fetch upstream and merge it with old files. | |||
| * | fetched upstream and made some translations to Python | caminsha | 2020-02-15 | -397/+1043 |
| |\ | ||||
| * | | fixed some small typos in German translation | caminsha | 2020-02-10 | -21/+12 |
| | | | ||||
* | | | made a whitespace after character | caminsha | 2020-02-16 | -27/+27 |
| |/ |/| | | | | | I changed the indentation because of a discussion in PR #3839 | |||
* | | Merge pull request #3856 from sshine/make-python3-default | Adam Bard | 2020-02-13 | -1012/+1012 |
|\ \ | | | | | | | [Python] Make Python 3 default | |||
| * | | Python 3: Use 'filename: learnpython*.py' (no '3') | Simon Shine | 2020-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 Shine | 2020-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 Shine | 2020-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 Shine | 2020-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)/' {} \; ``` | |||
| * | | Switch links: 'python3 <-> python' and 'python <-> pythonlegacy' | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | The list of references is exhausted by running 'ack docs/python'. | |||
| * | | Rename Python 3 markdown files into 'python' | Simon Shine | 2020-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 Shine | 2020-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 deadname | Leigh Brenecki | 2020-02-13 | -3/+3 |
|/ / | ||||
* | | fixed some typos in German translation | caminsha | 2020-02-09 | -27/+27 |
| | | ||||
* | | started fixing the translation | caminsha | 2020-02-09 | -5/+5 |
|/ | ||||
* | Merge pull request #3839 from caminsha/de-de/c | Max Schumacher | 2020-02-04 | -0/+868 |
|\ | | | | | [de-de/c] Translated C to German (See Issue #3592) | |||
| * | Removed unnecessary lines about google | caminsha | 2020-02-02 | -3/+0 |
| | | ||||
| * | Fixed small typo | caminsha | 2020-02-02 | -1/+1 |
| | | | | | | | | Resource => Ressource | |||
| * | added link to useful compiler options | caminsha | 2020-02-02 | -0/+5 |
| | | ||||
| * | Changed all occurences of ss to ß | caminsha | 2020-02-02 | -24/+24 |
| | | | | | | | | I have changed all occurences of 'ss' to 'ß' according to duden.de | |||
| * | reordered section about operators and changed variables to numbers | caminsha | 2020-02-02 | -82/+83 |
| | | ||||
| * | Removed section about goto | caminsha | 2020-02-02 | -17/+0 |
| | | ||||
| * | Made whitespace more consistent | caminsha | 2020-02-02 | -5/+5 |
| | | ||||
| * | Changed gross to groß because it's de-de | caminsha | 2020-02-02 | -8/+8 |
| | | ||||
| * | Added description for argc and argv | caminsha | 2020-02-02 | -3/+4 |
| | | ||||
| * | Changed german variables to english | caminsha | 2020-02-02 | -87/+87 |
| | | ||||
| * | Fixed small typo and added Abstraktionsniveau | caminsha | 2020-02-02 | -3/+4 |
| | | | | | | | | | | Typo: maneullen => manuelllen - Added new word because it makes the sentence more clear | |||
| * | Changed some lines so that it is not more than 80 chars | caminsha | 2020-02-01 | -29/+46 |
| | | ||||
| * | Changed italic typing to bold | caminsha | 2020-02-01 | -1/+1 |
| | | ||||
| * | Fixed small typo in include statement | caminsha | 2020-02-01 | -1/+1 |
| | | ||||
| * | Added suffix to filename because of contributing guidelines | caminsha | 2020-02-01 | -1/+1 |
| | | ||||
| * | Fixed some small typos in german translation | caminsha | 2020-02-01 | -48/+50 |
| | | ||||
| * | translated further reading | caminsha | 2020-02-01 | -0/+22 |
| | |