| Commit message (Collapse) | Author | Age | Lines | 
| |  | 
 | 
| |\  
| | 
| |  | 
[pyqt/zh-cn] PyQT Chinese translation
 | 
| | | 
| | 
| |  | 
Update translators list
 | 
| | | 
| | 
| |  | 
Suggestions from lsvih
 | 
| | | 
| | 
| |  | 
Co-Authored-By: lsvih <lsvih@qq.com>
 | 
| | | 
| | 
| | 
| | 
| |  | 
完善注释
Co-Authored-By: lsvih <lsvih@qq.com>
 | 
| | |  | 
 | 
| | |  | 
 | 
| | |  | 
 | 
| | |  | 
 | 
| | |  | 
 | 
| | |  | 
 | 
| |\ \  
| | | 
| | |  | 
[Python] Make Python 3 default
 | 
| | | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | |  | 
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/' {} \;
```
 | 
| | | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | |  | 
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/' {} \;
```
 | 
| | | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | |  | 
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/' {} \;
```
 | 
| | | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | |  | 
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)/' {} \;
```
 | 
| | | | 
| | | 
| | | 
| | |  | 
The list of references is exhausted by running 'ack docs/python'.
 | 
| | | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | | 
| | |  | 
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
  fnew=$(echo "$f" | sed 's/python3/python/')
  git mv "$f" "$fnew"
done
 | 
| | |/  
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |    | 
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
  flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
  git mv "$f" "$flegacy"
done
```
 | 
| |/   | 
 | 
| |\  
| | 
| |  | 
[markdown/zh-cn] Fix typo
 | 
| | |  | 
 | 
| |\ \  
| | | 
| | |  | 
[CSS/zh-cn] Fixed typo
 | 
| | |/   | 
 | 
| |\ \  
| | | 
| | |  | 
[yaml/zh-cn] Fix typo and minor sync
 | 
| | | |  | 
 | 
| | | | 
| | | 
| | |  | 
Co-Authored-By: woclass <inkydragon@users.noreply.github.com>
 | 
| | |/   | 
 | 
| |\ \  
| | | 
| | |  | 
[racket/zh-cn] fix typo
 | 
| | | |  | 
 | 
| |\ \ \  
| | | | 
| | | |  | 
[Git/zh-CN] Fixed typo
 | 
| | | |/  
| |/|    | 
 | 
| |\ \ \  
| |/ /  
|/| |    | 
[powershell/zh-cn] Add poweshell Simplified Chinsese version
 | 
| | | | 
| | | 
| | |  | 
Add lang code
 | 
| | | |  | 
 | 
| |\ \ \  
| |_|/  
|/| |    | 
[C/en,es,tr,pt-br,zh-cn,ru-ru] update book link
 | 
| | |/   | 
 | 
| |/   | 
 | 
| |  | 
 | 
| |\  
| | 
| |  | 
[sql/zh-cn] Update Chinese version of SQL
 | 
| | |  | 
 | 
| | | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| |  | 
* Add Chinese translation of lambda calculus.
* Update zh-cn/lambda-calculus-cn.html.markdown
Co-Authored-By: woclass <inkydragon@users.noreply.github.com>
* Update zh-cn/lambda-calculus-cn.html.markdown
Co-Authored-By: woclass <inkydragon@users.noreply.github.com>
* Update zh-cn/lambda-calculus-cn.html.markdown
Co-Authored-By: woclass <inkydragon@users.noreply.github.com>
* add language attribute for lambda-calculus-cn.html.markdown
 | 
| |\ \  
| |/  
|/|    | 
[Markdown/zh-cn] More Examples and visualization
 | 
| | | 
| | 
| |  | 
Known issue: "HTML标签"的目录链接不工作
 | 
| |\ \  
| |/  
|/|    | 
[ruby/zh-cn] sync with english version
 | 
| | | 
| | 
| | 
| |  | 
- sync code, result andcontributors
 | 
| | | 
| | 
| |  | 
fix typo and gramma mistakes
 | 
| | |  | 
 | 
| | |  | 
 |