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
Andre Polykanine
cdf90f01be
[sql/ru] Fix translation
2019-10-05 19:09:59 +03:00
Ilya Vorontsov
4a14d54eb5
[ruby/ru] [ruby/en] added notes about postfix-if and about
2019-09-05 11:06:51 +03:00
Divay Prakash
f035528ceb
Merge pull request #3481 from shaltaev/master
...
[sql/ru] SQL full translate
2019-08-21 12:23:52 +05:30
Divay Prakash
6f3c29b606
Update sql-ru.html.markdown
2019-08-21 12:17:17 +05:30
Alexander Kovalchuk
67cf7b10f9
Add name in to "translators" field
2019-08-02 21:55:27 +03:00
Alexander Kovalchuk
814825ef47
Add description of linker script
2019-06-23 18:41:25 +03:00
satory-ra
02d884d6ae
Аmended as requested
2019-03-14 21:48:23 +03:00
satory-ra
2387f8d8b6
Create Russian translation of VB tutorial
2019-03-14 00:44:59 +03:00
shaltaev
cedb7eca42
[ru-ru] SQL full translate
2019-02-21 22:18:12 +04: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
Andre Polykanine
9a12d28f30
[bash/ru] Sync with English original
2018-12-23 23:33:25 +02:00
Andre Polykanine
ae6f3fbb8e
[asymptotic-notation/ru] Proofreading
2018-12-23 00:51:28 +02:00
Andre Polykanine
50aafe69db
Add lang code
2018-12-13 01:04:14 +02:00
Serge
f62af9638f
Update ru translation for YAML
2018-12-12 23:30:16 +01:00
Serge
e7dd90a45e
Create yaml-ru.html.markdown
2018-12-11 23:48:06 +01:00
Andre Polykanine
1a6e92f6c0
[php-composer/ru] Update Russian translation for Composer
...
Fix various translation and spelling errors.
2018-12-07 01:33:28 +02:00
Divay Prakash
cebc11d309
Add lang code suffix to filename
2018-11-20 00:50:09 +05:30
Divay Prakash
69489ac4f0
Various fixes
2018-11-20 00:47:42 +05:30
Divay Prakash
e1daa5e5e4
Remove trailing spaces
2018-11-20 00:46:00 +05:30
Oleksii Lysenko
4bbe5dced4
Add Russian translation of Composer
2018-11-20 00:40:56 +05:30
Divay Prakash
99618d394e
Add new link from 2242ad7
2018-10-14 05:51:14 +05:30
Divay Prakash
59c13bdfa2
Fix links and list styling
2018-10-14 05:36:28 +05:30
Adam Bard
cbab877441
Fix bom situation
2018-10-07 22:40:41 -07:00
Den Patin
34183aa023
Add Russian translation for Crystal
2018-10-05 18:13:03 +03:00
Anatolij
6f61eabb74
add line after language: rust
...
I add line after language: rust
2018-09-20 13:31:37 +02:00
Anatolij
1ed457fec5
Fix all requarements related to metadata
...
I put in all into about this document and myself
2018-09-20 13:13:50 +02:00
Anatolij
1a9378ad68
Create traslation rust.html.markdown to Russian
...
Implement translation to Russian
2018-09-20 09:29:38 +02:00
Divay Prakash
5e4c651c6c
Merge pull request #3113 from filonenko-mikhail/master
...
[commonlisp/ru-ru] Added russian translation
2018-09-17 16:12:03 +05:30
Divay Prakash
f947bd3abc
Merge pull request #3173 from piumosso/patch-1
...
Update clojure-ru.html.markdown
2018-09-11 23:16:51 +05:30
Ev Bogdanov
0799909efb
Merge remote-tracking branch 'upstream/master' into jquery-ru
2018-09-08 21:09:42 +03:00
Ev Bogdanov
b622673dae
Slightly improve text for JS learning
2018-08-31 02:08:20 +03:00
Ev Bogdanov
d9d04d38d8
A better explanation of the Manipulation topic
2018-08-31 01:54:17 +03:00
Ev Bogdanov
df78ed16d4
Translate topic: Manipulation
2018-08-31 01:38:51 +03:00
Ev Bogdanov
656ef60a39
Translate topic: Events and Effects (part II)
2018-08-31 00:57:46 +03:00
Ev Bogdanov
d8beb06518
Translate topic: Events and Effects (part I)
2018-08-30 23:53:46 +03:00
Ev Bogdanov
cf3736c7f1
Translate topic: Selectors
2018-08-30 22:55:47 +03:00
Ev Bogdanov
6d8c4b1911
Start translating jQuery into Russian
2018-08-30 18:42:55 +03:00
Divay Prakash
afdacc70be
Fix build error in 'build/docs/ru-ru/markdown-ru/index.html'
2018-08-29 17:13:21 +05:30
Adam Bard
573b2f673c
md
2018-08-24 19:44:16 -07:00
Divay Prakash
e0f0d44a27
Fix build error in 'build/docs/ru-ru/markdown-ru/index.html'
2018-08-15 17:36:34 +05:30
Артём
4a2fa42bd8
Update clojure-ru.html.markdown
2018-08-02 14:21:51 +03:00
Michael Filonenko
3fd6697c5e
Common Lisp: ru-ru
2018-04-15 20:46:42 +03:00
brannx
7dcd513d39
Update kotlin-ru.html.markdown
2018-03-06 14:03:29 +03:00
Ilya Sosnovsky
50dbc5e779
Update python3-ru.html.markdown
...
Add multiplication of rows
2017-12-04 10:13:46 +03:00
Nasgul
90058a7672
Add delete of variable
...
Add delete of variable
2017-10-31 13:51:56 +02:00
Enshin Andrey
cccc97c01a
Update ruby-ru.html.markdown
2017-10-17 18:45:02 +09:00
Vasiliy Petrov
03d1072244
[haml/ru] Add Russian translation for haml
2017-10-10 23:44:57 +03:00
Damian Rzeszot
e8ee66c854
swift | fix style guidelines
2017-10-09 08:04:01 +02:00
Damian Rzeszot
9a9e52b54b
swift | fix style guidelines
2017-10-09 08:04:01 +02:00
Damian Rzeszot
d01e5242e1
swift | fix style guidelines
2017-10-09 08:04:01 +02:00
Damian Rzeszot
62d4b1483b
swift | fix style guidelines
2017-10-09 08:04:01 +02:00
Vasiliy Petrov
216044e4f3
[ruby/ru] Add missing from English version
2017-09-17 21:00:30 +03:00
Andrejs Mivreņiks
d3cdfe3327
Remove Dolphin's clutter from the repository
2017-09-12 15:33:36 +03:00
Pratik Karki
dfed6c3876
fix language code suffix( #2832 )
2017-08-25 14:06:36 +05:45
Pratik Karki
4939c23e6b
fix language code suffix( #2832 )
2017-08-25 14:05:57 +05:45