Commit Graph

10 Commits

Author SHA1 Message Date
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
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
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
Anindya Srivastava
9b5b5f6d31 Type correction for the output of math.sqrt() propagated across versions and languages 2019-02-06 07:31:34 +05:30
Pratik Karki
0cd9364ac0 Add language code suffix(#2832) 2017-08-25 13:49:08 +05:45
Tommaso
304439b65c Bring this version up to date with the english one (#2508)
* Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
777423dcc5
9ee3a68720
ba06e9af37
c05400477b
e1d2f8c718
375f0c18ae
a9bcaffd36
85adff2c39
451ccaec5b
c60ddc6ef5
a6eb459b61
b238a58c97
e60a7d73e8
db903ac5b6
cdd64ecee3
14c85ba0ff
5bda926dcc
ab1acb1bb2
0049a475ed
a4a7b2dd83
299d064ecf
2c94436824
5f89f277b9
b3b5ece63c
912d546dc7
0387bd30fc
e053806775

* Add myself as a translator
2016-10-25 23:07:19 +02:00
Tommaso
f78b5834a1 Bring this version up to date with the english one (#2507)
The following commits were taken into consideration and translated into italian:
777423dcc5
9ee3a68720
ba06e9af37
c05400477b
e1d2f8c718
375f0c18ae
a9bcaffd36
85adff2c39
451ccaec5b
c60ddc6ef5
a6eb459b61
b238a58c97
e60a7d73e8
db903ac5b6
cdd64ecee3
14c85ba0ff
5bda926dcc
ab1acb1bb2
0049a475ed
a4a7b2dd83
299d064ecf
2c94436824
5f89f277b9
b3b5ece63c
912d546dc7
0387bd30fc
e053806775
2016-10-25 23:04:35 +02:00
Ale46
e7d5e28788 fix typos/mistakes 2015-12-19 17:09:57 +01:00
Ale46
05559e8620 [python/it] Translated python to Italian 2015-10-02 18:41:55 +02:00