summaryrefslogtreecommitdiffhomepage
path: root/zh-cn
Commit message (Collapse)AuthorAgeLines
* Create wolfram-cn.html.markdownwuyudi2020-08-21-0/+140
|
* Merge pull request #3979 from krutik-k/patch-1Max Schumacher2020-08-18-0/+1
|\ | | | | YAML to JSON
| * YAML to JSONkrutik-k2020-07-18-0/+1
| | | | | | You can also use https://yamlonline.com/ for the yaml validator as well as yaml converter to json,csv,xml,base64 also for beautify and minify YAML.
* | Merge pull request #3985 from HermitSun/masterMax Schumacher2020-08-18-27/+27
|\ \ | | | | | | [yaml/zh-cn] retranslate some content
| * | [yaml/zh-cn]: modify some translationWen Sun2020-08-08-1/+1
| | |
| * | [yaml/zh-cn]: revert spacesWen Sun2020-08-08-1/+1
| | |
| * | [yaml/zh-cn]: revert spacesWen Sun2020-08-08-13/+12
| | |
| * | [yaml/zh-cn] remove translation notesWen Sun2020-07-26-22/+1
| | |
| * | [yaml/zh-cn]: retranslate some contentWen Sun2020-07-26-30/+52
| | |
* | | Merge pull request #3919 from but0n/fix-pythonlegacy-cnMax Schumacher2020-08-17-1/+1
|\ \ \ | | | | | | | | [python/zh-cn] Fix a translation mistake
| * | | fix translation mistakebut0n2020-04-29-1/+1
| | | | | | | | | | | | | | | | #210
* | | | Merge pull request #3929 from Saafo/patch-1Max Schumacher2020-08-14-4/+4
|\ \ \ \ | |_|/ / |/| | | [make/zh-cn] fix translation error for make-cn.html.markdown
| * | | fix translation error for make-cn.html.markdownSaafo2020-05-18-4/+4
| |/ /
* | / Fix wrong method name in commentdengzhenpeng2020-07-19-3/+3
| |/ |/|
* | Merge pull request #3968 from GengchenXU/masterMax Schumacher2020-07-08-1/+1
|\ \ | | | | | | fix translation error for opencv-cn.html.markdown
| * | Update opencv-cn.html.markdown即使孤独依旧前行2020-07-08-1/+1
| | |
* | | Merge pull request #3930 from GengchenXU/masterMax Schumacher2020-07-08-0/+145
|\| | | | | | | | [OpenCV/zh-cn]Add translation for opencv
| * | Add files via upload即使孤独依旧前行2020-05-19-0/+145
| |/
* | Merge pull request #3955 from muxueqz/patch-2Max Schumacher2020-07-07-1/+1
|\ \ | | | | | | [C][zh-cn]Fix typo
| * | Fix typomuxueqz2020-06-13-1/+1
| |/
* / Perl6 to Raku and many moresumanstats2020-06-10-2/+2
|/ | | | | | | | | | | + As the Perl 6 is renamed to raku, it is good to reflect that https://github.com/Raku/problem-solving/blob/master/solutions/language/Path-to-Raku.md + perl6.org is now raku.org + change references of perl 6 to raku + rename file perl6-pod.html.markdown to raku-pod.html.markdown + Perl refers to Perl 5, there is no ambiguity after rename of Perl6 to Raku, use Perl only to refer to Perl 5 + fix links inside raku.html.markdown
* Merge pull request #3855 from kdxcxs/pyqt-cnMax Schumacher2020-02-18-0/+80
|\ | | | | [pyqt/zh-cn] PyQT Chinese translation
| * Update pyqt-cn.html.markdownkdxcxs2020-02-18-0/+2
| | | | | | Update translators list
| * Update pyqt-cn.html.markdownkdxcxs2020-02-18-3/+3
| | | | | | Suggestions from lsvih
| * Apply suggestions from code reviewkdxcxs2020-02-18-1/+1
| | | | | | Co-Authored-By: lsvih <lsvih@qq.com>
| * Apply suggestions from code review kdxcxs2020-02-18-2/+2
| | | | | | | | | | 完善注释 Co-Authored-By: lsvih <lsvih@qq.com>
| * 纠正语法错误,中英文连接处加空格kdxcxs2020-02-18-14/+14
| |
| * Replace tabs with spaceskdxcxs2020-02-18-10/+10
| |
| * remove a translated sentencekdxcxs2020-02-18-1/+0
| |
| * Add PyQT Chinese translationkdxcxs2020-02-12-1/+1
| |
| * Add PyQT Chinese translationkdxcxs2020-02-12-21/+24
| |
| * Add PyQT Chinese translationkdxcxs2020-02-12-0/+76
| |
* | Merge pull request #3856 from sshine/make-python3-defaultAdam Bard2020-02-13-867/+867
|\ \ | | | | | | [Python] Make Python 3 default
| * | 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 ```
* / Purge my deadnameLeigh Brenecki2020-02-13-4/+4
|/
* Merge pull request #3810 from imba-tjd/patch-2Max Schumacher2020-01-29-1/+1
|\ | | | | [markdown/zh-cn] Fix typo
| * [markdown/zh-cn] Fix typo谭九鼎2020-01-12-1/+1
| |
* | Merge pull request #3815 from Fotia5230/patch-1Max Schumacher2020-01-29-1/+1
|\ \ | | | | | | [CSS/zh-cn] Fixed typo
| * | Update css-cn.html.markdownFotia52302020-01-13-1/+1
| |/
* | Merge pull request #3809 from imba-tjd/patch-1Max Schumacher2020-01-29-2/+4
|\ \ | | | | | | [yaml/zh-cn] Fix typo and minor sync
| * | Update yaml-cn.html.markdown谭九鼎2020-01-23-1/+1
| | |
| * | Update zh-cn/yaml-cn.html.markdown谭九鼎2020-01-23-1/+1
| | | | | | | | | Co-Authored-By: woclass <inkydragon@users.noreply.github.com>
| * | Update yaml-cn.html.markdown谭九鼎2020-01-12-1/+3
| |/
* | Merge pull request #3799 from infancy/masterMax Schumacher2020-01-28-1/+1
|\ \ | | | | | | [racket/zh-cn] fix typo