Skip to content

docs: [RU] Translation update #2401

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 13 commits into from
Sep 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file added docs/.vuepress/public/ru/vue-cli-ui-schema.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4,474 changes: 4,474 additions & 0 deletions docs/assets/en-vue-cli-ui-schema.ai

Large diffs are not rendered by default.

4,243 changes: 4,243 additions & 0 deletions docs/assets/ru-vue-cli-ui-schema.ai

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ru/dev-guide/ui-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

С помощью API `cli-ui` возможно дополнять конфигурацию и задачи проекта, а также обмениваться данными и взаимодействовать с другими процессами.

![UI Plugin architecture](/vue-cli-ui-schema.png)
![UI Plugin architecture](/ru/vue-cli-ui-schema.png)

## Файлы UI

Expand Down
2 changes: 1 addition & 1 deletion docs/ru/guide/html-and-static-assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ module.exports = {

Обратите внимание, что мы рекомендуем импортировать ресурсы как часть дерева зависимостей модуля, чтобы они обрабатывались webpack со следующими преимуществами:

- Скрипты и стили минифицируются и объединяются, для уменьшения количества сетевых запросов.
- Скрипты и стили минифицируются и объединяются, уменьшая количество сетевых запросов.
- Недостающие файлы вызывают ошибку сборки вместо ошибок 404 для пользователей.
- Имена файлов в результате будут с хэшем, поэтому не нужно беспокоиться о том, что браузеры используют старые версии из кэша.

Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-service/lib/commands/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ module.exports = (api, options) => {
console.log()

if (args.open || projectDevServerOptions.open) {
const pageUri = ( projectDevServerOptions.openPage && typeof projectDevServerOptions.openPage === 'string' )
const pageUri = (projectDevServerOptions.openPage && typeof projectDevServerOptions.openPage === 'string')
? projectDevServerOptions.openPage
: ''
openBrowser(urls.localUrlForBrowser + pageUri)
Expand Down