-
-
Notifications
You must be signed in to change notification settings - Fork 84
Start translating concept_configuration in guide to ru lang #260
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
Start translating concept_configuration in guide to ru lang #260
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR begins translating the concept/configuration guide from English to Russian. It creates a new Russian translation file and updates translation metadata files.
- Adds complete Russian translation for the core concepts section about configuration
- Updates PO files to mark the "Configuration" section as translated
- Includes mixed content with both Russian and English sections in the configuration guide
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| guide/ru/views/view-injections.md | New Russian view injections documentation with mixed language content |
| guide/ru/concept/configuration.md | New Russian configuration guide with partial translation |
| _translations/guide/po/ru/views_view-injections.md.po | Updated translation metadata for view injections |
| _translations/guide/po/ru/tutorial_using-yii-with-roadrunner.md.po | Updated translation metadata for configuration section |
| _translations/guide/po/ru/tutorial_performance-tuning.md.po | Updated translation metadata with timestamp changes |
| _translations/guide/po/ru/concept_configuration.md.po | Updated translation metadata for configuration concept |
| # View injections | ||
|
|
||
| The view injections are designed to provide a standardized way to pass | ||
| parameters to the common layer of views in an application. It allows | ||
| developers to manage the data that will be available across various views, | ||
| ensuring flexibility and reusability of code. | ||
|
|
||
| The view injections could be used if you require `yiisoft/yii-view-renderer` | ||
| package: |
Copilot
AI
Oct 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The document title and introduction are in English while this is supposed to be a Russian translation file. All content should be consistently translated to Russian.
| There are many named configs defined. For each name, there is a | ||
| configuration. | ||
|
|
||
| A string means that the plugin takes config as is and merges it with | ||
| same-named configs from packages you require. That happens if these | ||
| packages have `config-plugin` in their `composer.json`. | ||
|
|
||
| The array means that the plugin will merge many files in the order they're | ||
| specified. | ||
|
|
||
| `?` at the beginning of the file path indicated that the file may be | ||
| absent. In this case, it's skipped. | ||
|
|
||
| `$` at the beginning of the name means a reference to another named config. | ||
|
|
||
| `params` is a bit special because it's reserved for application | ||
| parameters. These are automatically available as `$params` in all other | ||
| configuration files. | ||
|
|
||
| You can learn more about config plugin features [from its | ||
| documentation](https://github.com/yiisoft/config/blob/master/README.md). | ||
|
|
||
| ## Config files | ||
|
|
||
| Now, as you know how the plugin assembles configs, look at `config` | ||
| directory: |
Copilot
AI
Oct 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This large section is in English while the file is supposed to be a Russian translation. All content should be consistently translated to Russian according to the translation guidelines.
| The application consists of a set of services registered in a [dependency | ||
| container](di-container.md). The config files that responsible for direct | ||
| dependency container configuration are under `common/`, `console/` and | ||
| `web/` directories. We use `web/` for config specific to web application | ||
| and `console/` for config specific to console commands. Both web and console | ||
| are sharing configuration under `common/`. |
Copilot
AI
Oct 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section and the majority of content that follows is in English. The entire document should be consistently translated to Russian.
No description provided.