Skip to content

Commit

Permalink
docs: [RU] Translation update (vuejs#2401) [ci skip]
Browse files Browse the repository at this point in the history
* docs: [RU] build-targets.md fix

* docs: [RU] deployment.md added new section

* Update deployment.md

* docs: (ru) deployment.md fix

* docs: [RU] html-and-static-assets.md правка

* docs: image translated into russian

* added ai assets for en and ru

* docs: (ru) ui-api.md changed to localized image
  • Loading branch information
Alex-Sokolov authored and haoqunjiang committed Sep 8, 2018
1 parent da31b87 commit 1392ba5
Show file tree
Hide file tree
Showing 6 changed files with 8,720 additions and 3 deletions.
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

0 comments on commit 1392ba5

Please sign in to comment.