Skip to content

[RU] Translation update #1844

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Oct 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fb06a6d
navigation-guards.md нумерация версии
Alex-Sokolov Aug 29, 2017
1f39d4f
Merge pull request #40 from vuejs/dev
Alex-Sokolov Sep 3, 2017
71a43e9
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Sep 7, 2017
9f69591
history-mode.md правки по IIS
Alex-Sokolov Sep 7, 2017
c255dc6
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Sep 27, 2017
95b109f
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Oct 3, 2017
14a43eb
lazy-loading HTTPS
Alex-Sokolov Oct 3, 2017
0510340
dynamic-mathcing.md HTTPS
Alex-Sokolov Oct 3, 2017
9d204ec
getting-started.md HTTPS
Alex-Sokolov Oct 3, 2017
f7e98d8
navigation.md мелкие правки
Alex-Sokolov Oct 3, 2017
6031463
nested-routes.md HTTPS
Alex-Sokolov Oct 3, 2017
ef4b1bc
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Oct 10, 2017
7c6c78c
navigation-guards.md правки
Alex-Sokolov Oct 10, 2017
313a797
history-mode.md кавычки и добавлена секция про Firebase
Alex-Sokolov Oct 10, 2017
b0ada13
redirect-and-alias.md добавлено уточнение
Alex-Sokolov Oct 10, 2017
24673fd
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Oct 12, 2017
c789300
SUMMARY.md правка
Alex-Sokolov Oct 12, 2017
adf7b8d
options.md обновлён пример сигнатуры
Alex-Sokolov Oct 12, 2017
1334c8b
getting-started.md добавлены новые правки
Alex-Sokolov Oct 12, 2017
6b7cdfa
navigation-guards.md новые правки
Alex-Sokolov Oct 12, 2017
c8a6e29
scroll-behavior.md новые правки
Alex-Sokolov Oct 12, 2017
b2ef3fa
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Oct 12, 2017
0bd7c80
getting-started.md опечатки
Alex-Sokolov Oct 12, 2017
77196bd
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Oct 19, 2017
f8e010d
Merge remote-tracking branch 'upstream/dev' into ru-translation
Alex-Sokolov Oct 25, 2017
8e79f2b
SUMMARY.md правка версий
Alex-Sokolov Oct 25, 2017
a2f7f61
passing-props.md правка
Alex-Sokolov Oct 25, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ru/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Vue-router 2

> Примечание: для пользователей TypeScript, vue-router@>= 3.0 требуется vue@>=2.5, и наоборот.
> Примечание: для пользователей TypeScript, vue-router@3.0+ требуется vue@2.5+, и наоборот.

**[История изменений](https://github.com/vuejs/vue-router/releases)**

Expand Down
6 changes: 3 additions & 3 deletions docs/ru/essentials/passing-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

Использование `$route` в вашем компоненте создаёт жёсткую связь с маршрутом, что ограничивает гибкость компонента, потому что он может быть использован только для определённых URL-адресов.

Для разделения компонента от маршрутизатора можно использовать входные данные:
Для разделения компонента от маршрутизатора можно использовать входные параметры:

** Жёсткая связь с `$route`**
** Вместо жёсткой связи с `$route`**

``` js
const User = {
Expand All @@ -17,7 +17,7 @@ const router = new VueRouter({
})
```

** Разделение с помощью входных параметров**
** Разделяем с помощью входных параметров**

``` js
const User = {
Expand Down