Commit Graph

23 Commits

Author SHA1 Message Date
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
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
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
Bob
e157a92b38 Added zh-tw translation to Dart 2020-01-30 17:19:48 +08:00
carl
edcfd31759
Tweak markdown to properly render html 2019-09-20 14:12:41 +10: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
963331453f
Update pcre-tw.html.markdown 2018-02-28 15:09:56 +05:45
Hinet60613
0e04652185 Create PCRE-tw. 2017-11-15 21:57:30 +08:00
Weihang Lo
7d585f8174 [bash/zh-tw] delete extra line 2016-08-03 02:05:09 +08:00
Weihang Lo
fdc1cf944d [bash/zh-tw] add missing line for rm command 2016-08-03 01:45:22 +08:00
Weihang Lo
83bca49896 [bash/zh-tw] add zh-tw translation 2016-07-31 13:37:58 +08:00
Tai An Su
4daae2c627 [Elixir/zh-Tw]Translation for Elixir of zh-tw 2016-04-22 05:01:11 +08:00
Hinet60613
4b4024b495 Fix typo 2015-12-17 01:51:19 +08:00
Hinet60613
b19714080a Fix some typo and non-fluency. 2015-12-17 01:48:19 +08:00
Hinet60613
73fbc7f755 Rename file by adding -tw suffix. 2015-12-06 00:00:07 +08:00
rainjay
a25d4db0bc fix typo 2015-11-03 11:09:19 +08:00
Hinet60613
2ecf370ce4 Sec. 6 translated. All sections translated. Hooray. 2015-11-02 02:32:25 +08:00
Hinet60613
3544a43d11 Finish Sec. 7 translation. 2015-11-02 02:27:42 +08:00
Hinet60613
e2b93f579c Finish translation of Sec. 6 2015-11-02 02:18:21 +08:00
Hinet60613
6c9bf0dc5b Translate to Sec. 4 finished. 2015-11-02 02:06:40 +08:00
Hinet60613
09cd1ab461 Add lang of translation. Translate to Line 255 2015-11-02 00:40:41 +08:00
Hinet60613
96f0b3b390 Transated Python 2 to zh-tw. Line 01 .. 143 2015-11-02 00:03:58 +08:00