summaryrefslogtreecommitdiffhomepage
path: root/de-de
Commit message (Collapse)AuthorAgeLines
* Python 3: Use 'filename: learnpython*.py' (no '3')Simon Shine2020-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 Shine2020-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 Shine2020-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 Shine2020-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 Shine2020-02-12-1/+1
| | | | The list of references is exhausted by running 'ack docs/python'.
* Rename Python 3 markdown files into 'python'Simon Shine2020-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 Shine2020-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 ```
* fixed some typos in German translationcaminsha2020-02-09-27/+27
|
* started fixing the translationcaminsha2020-02-09-5/+5
|
* Merge pull request #3839 from caminsha/de-de/cMax Schumacher2020-02-04-0/+868
|\ | | | | [de-de/c] Translated C to German (See Issue #3592)
| * Removed unnecessary lines about googlecaminsha2020-02-02-3/+0
| |
| * Fixed small typocaminsha2020-02-02-1/+1
| | | | | | | | Resource => Ressource
| * added link to useful compiler optionscaminsha2020-02-02-0/+5
| |
| * Changed all occurences of ss to ßcaminsha2020-02-02-24/+24
| | | | | | | | I have changed all occurences of 'ss' to 'ß' according to duden.de
| * reordered section about operators and changed variables to numberscaminsha2020-02-02-82/+83
| |
| * Removed section about gotocaminsha2020-02-02-17/+0
| |
| * Made whitespace more consistentcaminsha2020-02-02-5/+5
| |
| * Changed gross to groß because it's de-decaminsha2020-02-02-8/+8
| |
| * Added description for argc and argvcaminsha2020-02-02-3/+4
| |
| * Changed german variables to englishcaminsha2020-02-02-87/+87
| |
| * Fixed small typo and added Abstraktionsniveaucaminsha2020-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 charscaminsha2020-02-01-29/+46
| |
| * Changed italic typing to boldcaminsha2020-02-01-1/+1
| |
| * Fixed small typo in include statementcaminsha2020-02-01-1/+1
| |
| * Added suffix to filename because of contributing guidelinescaminsha2020-02-01-1/+1
| |
| * Fixed some small typos in german translationcaminsha2020-02-01-48/+50
| |
| * translated further readingcaminsha2020-02-01-0/+22
| |
| * Translated part headerfiles to Germancaminsha2020-02-01-0/+60
| |
| * translated associativity of operatorscaminsha2020-02-01-0/+22
| |
| * translated section of function pointers to Germancaminsha2020-01-31-0/+72
| |
| * added user defined types and structscaminsha2020-01-31-0/+53
| |
| * added german translation to function in ccaminsha2020-01-31-0/+100
| |
| * translated section pointers to germancaminsha2020-01-31-1/+131
| |
| * added translation for type castingcaminsha2020-01-31-0/+27
| |
| * translated control structures to Germancaminsha2020-01-31-0/+85
| |
| * translated operators to germancaminsha2020-01-31-3/+138
| |
| * Continued with german translation of Ccaminsha2020-01-31-0/+72
| |
| * Started german translation in Ccaminsha2020-01-30-0/+83
| |
* | Fixed some small typoscaminsha2020-01-31-3/+3
| |
* | Merge pull request #3808 from caminsha/de-de/bcMax Schumacher2020-01-30-0/+102
|\ \ | | | | | | [bc/de-de] added translation in german for bc
| * | added ternary operatorcaminsha2020-01-30-2/+2
| | |
| * | made newlines so that the content is not more than 80 charcaminsha2020-01-30-2/+4
| | |
| * | removed Wagenrücklauf because it is not very commoncaminsha2020-01-30-1/+1
| | |
| * | removed doubled linecaminsha2020-01-30-1/+0
| | |
| * | [bc/de-de] added translation in german for bccaminsha2020-01-09-0/+101
| | |
* | | Merge pull request #3817 from caminsha/de-de/latex-typoMax Schumacher2020-01-28-4/+4
|\ \ \ | | |/ | |/| [latex/de-de] fixed some small typos in translation
| * | fixed some small typos in translationcaminsha2020-01-14-4/+4
| |/
* | Merge pull request #3821 from caminsha/make_de-de_typosMax Schumacher2020-01-28-21/+22
|\ \ | | | | | | [make/de-de] Fixed typos and comma errors
| * | fixed typos and grammarcaminsha2020-01-18-21/+22
| |/ | | | | | | I have fixed some typos and comama errors in make
* | Merge pull request #3822 from danielgolf/masterMax Schumacher2020-01-28-1/+1
|\ \ | | | | | | [bash/de-de] typo fixed