Mikhail Krylatykh
7403163113
Make some russian spellcheck
2022-04-07 16:58:24 +03:00
OnlyDev
d9416193ba
Fixed typo in word "Возвращаемая" ( #4322 )
2022-03-15 23:50:45 +01:00
Marat Amerov
819cb6b275
[javascript/ru] s/функционал/функциональность ( #4336 )
2022-03-15 23:48:38 +01:00
Marat Amerov
8215ee614d
[kotlin/ru] s/функционал/функциональность ( #4337 )
2022-03-15 23:47:18 +01:00
Marat Amerov
7b265947e9
[lua/ru] s/функционал/функциональность ( #4338 )
2022-03-15 23:46:05 +01:00
Marat Amerov
6efd95e6db
[swift/ru] s/функционал/функциональность ( #4339 )
2022-03-15 23:44:58 +01:00
Marat Amerov
32c8adcccb
[objective-c/ru] s/функционал/функциональность ( #4340 )
2022-03-15 23:43:39 +01:00
Ay355
9552f2a1fe
[rust/all] Remove .iter() on array example ( #4230 )
...
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
2021-11-01 22:27:42 +01:00
Борис Верховский
a502f8d723
Rename OS X to macOS ( #4166 )
2021-05-25 13:42:50 +02:00
Dmitrii Kuznetsov
e09fefaa3e
Merge branch 'master' of https://github.com/torgeek/learnxinyminutes-docs
2021-02-22 18:42:33 +03:00
Dmitrii Kuznetsov
f4c740839d
correct a typo in the word
2021-02-22 18:41:28 +03:00
andreytemn
b76c2e7ed4
Fix typo in the string definition
2021-01-24 18:03:43 +01:00
Anton
e6e45b6a7a
Update Russian translation
...
Add docs from latest English version
2020-09-02 01:33:37 +02:00
Adam Bard
83a249250c
Merge pull request #3943 from dvska/patch-1
...
Deeper translation
2020-08-21 09:45:50 -07:00
Dmitry / skype: dvska-at-skype
11c83ffd4f
One more fix
2020-08-21 17:36:27 +03:00
Dmitry / skype: dvska-at-skype
b9eda036b9
Bugfixing, thanks proshapro for review
2020-08-21 17:34:01 +03:00
Roman Polomoshnov
fd851cbac2
Fix error in output description
2020-08-12 15:07:32 +03:00
kevinnls
65d6363883
added (human) lang to pascal-ru
...
fixes doubled entry on homepage
2020-08-09 00:12:38 +05:30
Max Schumacher
3afac7ea62
Merge pull request #3953 from sumanstats/master
...
[language/raku-code] Perl6 to Raku and many more
2020-07-07 15:28:05 +02:00
Max Schumacher
3e1eccc2f3
Merge pull request #3910 from isolovev/patch-1
...
[ruby/ru] Fix comment of attr_accessor
2020-07-07 15:26:58 +02:00
sumanstats
0ecb826429
Perl6 to Raku and many more
...
+ 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
2020-06-10 16:33:01 +05:45
Max Schumacher
bf39f18a78
Merge pull request #3798 from DartFNM/master
...
pascal-ru.html.markdown - Pascal translation to Russian language
2020-06-01 10:28:59 +02:00
Ivan Solovev
4d572a9994
Fix comment of attr_accessor. Ruby-RU
2020-04-19 17:48:39 +03:00
Adam Bard
0a0a40dc2d
Merge pull request #3856 from sshine/make-python3-default
...
[Python] Make Python 3 default
2020-02-13 22:00:05 -08:00
Leigh Brenecki
5864aba42d
Purge my deadname
2020-02-13 10:38:29 +10:30
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
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
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
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
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
Vitaliy Badalov
ff5dcd91cc
fix(javascript-ru): fixed return value comment in javascript-ru.html.markdown
2020-02-05 16:58:57 +03:00
Divay Prakash
1d00814fb7
Merge pull request #3683 from heitorPB/c-update-book-link
...
[C/en,es,tr,pt-br,zh-cn,ru-ru] update book link
2020-01-11 14:06:52 +05:30
DartFNM
f31459d3ac
pascal-ru.html.markdown - translation to RU locale
2019-12-16 21:21:02 +03:00
Dmitry / skype: dvska-at-skype
efb6931f26
Deeper translation
...
tested @
Nim Compiler Version 1.1.1 [MacOSX: amd64]
2019-12-13 20:58:03 +03:00
Andre Polykanine
2e04696cf7
Merge pull request #3792 from duboviy/master
...
[c,c++/ru-ru] Fix typos
2019-12-10 17:46:44 +02:00
Eugene Duboviy
b1701de45f
[c/ru-ru] Fix typos
2019-12-09 18:01:09 +02:00
Eugene Duboviy
f3d22f501f
[c++/ru-ru] Fix typos
2019-12-09 17:53:02 +02:00
Mrn Om
1843e27c18
Update rust-ru.html.markdown
...
Fix typo
2019-12-08 20:46:30 +02:00
Andre Polykanine
7b80429925
Merge pull request #3789 from duboviy/master
...
[go/ru-ru] Fix typos
2019-12-06 15:59:10 +02:00
Eugene Duboviy
856aa05e4f
[go-ru] Fix typos
2019-12-05 13:02:55 +02:00
SergBobrovsky
d99741e41b
Update yaml-ru.html.markdown
2019-11-24 09:26:14 +03:00
Andre Polykanine
3382cbf45c
Merge pull request #3767 from Basil22/patch-1
...
[Rust/ru-ru] Update intro and fix some misspellings (Обновлена вводная часть и исправлены некоторые опечатки)
2019-11-18 14:48:14 +02:00
Basil22
17835958cc
Update rust-ru.html.markdown
2019-11-18 15:10:41 +03:00
victor.mystery
b453b18839
Fix multiple minor typos
2019-11-17 11:17:07 +03:00
Basil22
32095409c3
Обновлена вводная часть и исправлены некоторые опечатки
2019-11-12 19:42:28 +03:00
Vlad Frolov
c9cdda1405
Fixed indentation
2019-11-02 14:24:20 +02:00
Vlad Frolov
816613fac9
ru-ru/rust-ru: minor fix in translation
2019-11-02 12:05:10 +02:00
Ilya Vorontsov
cd08fd0018
[kotlin, ru] fix typo
2019-10-12 17:30:15 +03:00
Heitor Pascoal de Bittencourt
ce9d59bdb2
[c/ru-ru] Fix book link
2019-10-08 21:31:20 -03:00