summaryrefslogtreecommitdiffhomepage
path: root/ru-ru
Commit message (Collapse)AuthorAgeLines
* Merge branch 'master' of https://github.com/torgeek/learnxinyminutes-docsDmitrii Kuznetsov2021-02-22-698/+6035
|\
| * Fix typo in the string definitionandreytemn2021-01-24-1/+1
| |
| * Update Russian translationAnton2020-09-02-278/+685
| | | | | | | | Add docs from latest English version
| * Merge pull request #3943 from dvska/patch-1Adam Bard2020-08-21-124/+130
| |\ | | | | | | Deeper translation
| | * One more fixDmitry / skype: dvska-at-skype2020-08-21-3/+3
| | |
| | * Bugfixing, thanks proshapro for reviewDmitry / skype: dvska-at-skype2020-08-21-9/+9
| | |
| | * Deeper translationDmitry / skype: dvska-at-skype2019-12-13-124/+130
| | | | | | | | | | | | tested @ Nim Compiler Version 1.1.1 [MacOSX: amd64]
| * | Fix error in output descriptionRoman Polomoshnov2020-08-12-1/+1
| | |
| * | added (human) lang to pascal-rukevinnls2020-08-09-0/+1
| | | | | | | | | | | | fixes doubled entry on homepage
| * | Merge pull request #3953 from sumanstats/masterMax Schumacher2020-07-07-15/+15
| |\ \ | | | | | | | | [language/raku-code] Perl6 to Raku and many more
| | * | Perl6 to Raku and many moresumanstats2020-06-10-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + 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 #3910 from isolovev/patch-1Max Schumacher2020-07-07-1/+1
| |\ \ \ | | |/ / | |/| | [ruby/ru] Fix comment of attr_accessor
| | * | Fix comment of attr_accessor. Ruby-RUIvan Solovev2020-04-19-1/+1
| | | |
| * | | Merge pull request #3798 from DartFNM/masterMax Schumacher2020-06-01-0/+216
| |\ \ \ | | |/ / | |/| | pascal-ru.html.markdown - Pascal translation to Russian language
| | * | pascal-ru.html.markdown - translation to RU localeDartFNM2019-12-16-0/+216
| | |/
| * | Merge pull request #3856 from sshine/make-python3-defaultAdam Bard2020-02-13-225/+225
| |\ \ | | | | | | | | [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)/' {} \; ```
| | * | 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-2/+2
| |/ /
| * | fix(javascript-ru): fixed return value comment in javascript-ru.html.markdownVitaliy Badalov2020-02-05-1/+1
| | |
| * | Merge pull request #3683 from heitorPB/c-update-book-linkDivay Prakash2020-01-11-1/+1
| |\ \ | | |/ | |/| [C/en,es,tr,pt-br,zh-cn,ru-ru] update book link
| | * [c/ru-ru] Fix book linkHeitor Pascoal de Bittencourt2019-10-08-1/+1
| | |
| * | Merge pull request #3792 from duboviy/masterAndre Polykanine2019-12-10-9/+9
| |\ \ | | | | | | | | [c,c++/ru-ru] Fix typos
| | * | [c/ru-ru] Fix typosEugene Duboviy2019-12-09-4/+4
| | | |
| | * | [c++/ru-ru] Fix typosEugene Duboviy2019-12-09-5/+5
| | | |
| * | | Update rust-ru.html.markdownMrn Om2019-12-08-1/+1
| | | | | | | | | | | | Fix typo
| * | | Merge pull request #3789 from duboviy/masterAndre Polykanine2019-12-06-2/+2
| |\| | | | | | | | | | [go/ru-ru] Fix typos
| | * | [go-ru] Fix typosEugene Duboviy2019-12-05-2/+2
| | | |
| * | | Update yaml-ru.html.markdownSergBobrovsky2019-11-24-1/+1
| | | |
| * | | Merge pull request #3767 from Basil22/patch-1Andre Polykanine2019-11-18-28/+25
| |\ \ \ | | | | | | | | | | [Rust/ru-ru] Update intro and fix some misspellings (Обновлена вводная часть и исправлены некоторые опечатки)
| | * | | Update rust-ru.html.markdownBasil222019-11-18-2/+3
| | | | |
| | * | | Обновлена вводная часть и исправлены ↵Basil222019-11-12-28/+24
| | | | | | | | | | | | | | | | | | | | некоторые опечатки
| * | | | Fix multiple minor typosvictor.mystery2019-11-17-5/+6
| |/ / /
| * | | Fixed indentationVlad Frolov2019-11-02-1/+1
| | | |
| * | | ru-ru/rust-ru: minor fix in translationVlad Frolov2019-11-02-2/+2
| |/ /
| * / [kotlin, ru] fix typoIlya Vorontsov2019-10-12-1/+1
| |/
| * [sql/ru] Fix translationAndre Polykanine2019-10-05-36/+53
| |
| * [ruby/ru] [ruby/en] added notes about postfix-if and aboutIlya Vorontsov2019-09-05-0/+10
| |
| * Merge pull request #3481 from shaltaev/masterDivay Prakash2019-08-21-0/+103
| |\ | | | | | | [sql/ru] SQL full translate
| | * Update sql-ru.html.markdownDivay Prakash2019-08-21-1/+1
| | |
| | * [ru-ru] SQL full translateshaltaev2019-02-21-0/+103
| | |
| * | Add name in to "translators" fieldAlexander Kovalchuk2019-08-02-2/+1
| | |
| * | Add description of linker scriptAlexander Kovalchuk2019-06-23-0/+204
| | |
| * | Аmended as requestedsatory-ra2019-03-14-2/+0
| | |
| * | Create Russian translation of VB tutorialsatory-ra2019-03-14-0/+286
| |/
| * Type correction for the output of math.sqrt() propagated across versions and ↵Anindya Srivastava2019-02-06-1/+1
| | | | | | | | languages