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
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