Commit Graph

291 Commits

Author SHA1 Message Date
caminsha
2533ae9d9e reworded variable declaration comment
I reworded the comment so that the English and the German version have the same content.
See PR #3864
2020-02-25 17:13:36 +01:00
Max Schumacher
07f13d5e1c
Merge pull request #3854 from caminsha/de-de/python3_typofix
[python3/de-de] fixed some small typos in German translation
2020-02-17 18:04:24 +01:00
caminsha
c5362aaed1 Added example for f-strings 2020-02-17 00:26:43 +01:00
caminsha
254a609876 Changed sentence about deprecated python 2 2020-02-17 00:24:53 +01:00
caminsha
b27296c82a made a whitespace after character
I changed the indentation because of a discussion in PR #3839
2020-02-16 22:27:19 +01:00
caminsha
9f1addce40 removed section with different .format for stringformatting 2020-02-16 22:07:55 +01:00
caminsha
d533a06ba0 Fixed explanation about legacy python 2020-02-16 22:02:27 +01:00
caminsha
1055a42304
Delete python3-de.html.markdown
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.
2020-02-15 00:01:53 +01:00
caminsha
16506a1575 fetched upstream and made some translations to Python 2020-02-15 00:00:05 +01:00
Adam Bard
0a0a40dc2d
Merge pull request #3856 from sshine/make-python3-default
[Python] Make Python 3 default
2020-02-13 22:00:05 -08:00
Leigh Brenecki
5864aba42d Purge my deadname 2020-02-13 10:38:29 +10:30
Simon Shine
ae848c481f Python 3: Use 'filename: learnpython*.py' (no '3')
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/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
887cbee8af Change 'filename:' for Python 2 (legacy)
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/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
8f5fac9895 Python 3: 'language: Python'
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/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
95c8b24ebf Python 2 'language': Python 2 (legacy)
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)/' {} \;
```
2020-02-12 05:09:13 +01:00
Simon Shine
efe00fd06e Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'
The list of references is exhausted by running 'ack docs/python'.
2020-02-12 05:03:08 +01:00
Simon Shine
a3b0585374 Rename Python 3 markdown files into 'python'
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
  fnew=$(echo "$f" | sed 's/python3/python/')
  git mv "$f" "$fnew"
done
2020-02-12 04:54:36 +01:00
Simon Shine
1adab9bc3f Rename Python 2 markdown files into 'pythonlegacy'
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
  flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
  git mv "$f" "$flegacy"
done
```
2020-02-12 04:53:08 +01:00
caminsha
ad90485802 fixed some small typos in German translation 2020-02-10 20:28:04 +01:00
caminsha
5c06bbba57 fixed some typos in German translation 2020-02-09 23:20:16 +01:00
caminsha
c7e03628fc started fixing the translation 2020-02-09 23:01:52 +01:00
Max Schumacher
cfe737647c
Merge pull request #3839 from caminsha/de-de/c
[de-de/c] Translated C to German (See Issue #3592)
2020-02-04 13:23:44 +01:00
caminsha
fbb24b487e Removed unnecessary lines about google 2020-02-02 23:09:36 +01:00
caminsha
e24e38a1b9 Fixed small typo
Resource => Ressource
2020-02-02 23:08:55 +01:00
caminsha
e48d05c98d added link to useful compiler options 2020-02-02 23:08:38 +01:00
caminsha
ca042dcb65 Changed all occurences of ss to ß
I have changed all occurences of 'ss' to 'ß' according to duden.de
2020-02-02 21:44:15 +01:00
caminsha
8ab886330e reordered section about operators and changed variables to numbers 2020-02-02 21:25:23 +01:00
caminsha
ec76a960a6 Removed section about goto 2020-02-02 21:20:09 +01:00
caminsha
06c51c70e1 Made whitespace more consistent 2020-02-02 21:19:06 +01:00
caminsha
603af4b36e Changed gross to groß because it's de-de 2020-02-02 21:08:18 +01:00
caminsha
4670481fa2 Added description for argc and argv 2020-02-02 21:04:40 +01:00
caminsha
28fe657526 Changed german variables to english 2020-02-02 21:02:01 +01:00
caminsha
4686ba1bba Fixed small typo and added Abstraktionsniveau
Typo: maneullen => manuelllen
- Added new word because it makes the sentence more clear
2020-02-02 20:27:41 +01:00
caminsha
8e1372e08b Changed some lines so that it is not more than 80 chars 2020-02-01 02:26:58 +01:00
caminsha
a765253cd4 Changed italic typing to bold 2020-02-01 02:19:22 +01:00
caminsha
8041d796bb Fixed small typo in include statement 2020-02-01 02:18:13 +01:00
caminsha
5ff9fd5659 Added suffix to filename because of contributing guidelines 2020-02-01 01:05:29 +01:00
caminsha
0996b5a20e Fixed some small typos in german translation 2020-02-01 01:00:55 +01:00
caminsha
edeb77b893 translated further reading 2020-02-01 00:28:07 +01:00
caminsha
f3975fdc0e Translated part headerfiles to German 2020-02-01 00:27:55 +01:00
caminsha
bc9c26d44c translated associativity of operators 2020-02-01 00:27:18 +01:00
caminsha
38d3c33507 translated section of function pointers to German 2020-01-31 05:15:23 +01:00
caminsha
a0d2ed81ae added user defined types and structs 2020-01-31 05:14:28 +01:00
caminsha
b8d10209a6 added german translation to function in c 2020-01-31 04:30:57 +01:00
caminsha
e08467e872 Fixed some small typos 2020-01-31 03:41:40 +01:00
caminsha
09a4d598ae translated section pointers to german 2020-01-31 03:16:16 +01:00
caminsha
a53f355f9f added translation for type casting 2020-01-31 01:47:49 +01:00
caminsha
dcf628e286 translated control structures to German 2020-01-31 01:42:28 +01:00
caminsha
ea00cc1fda translated operators to german 2020-01-31 01:11:48 +01:00
caminsha
b4e6dc73c1 Continued with german translation of C 2020-01-31 00:00:39 +01:00