aboutsummaryrefslogtreecommitdiff
path: root/app/i18n/ru/admin.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2020-05-15 17:31:21 +0200
committerGravatar GitHub <noreply@github.com> 2020-05-15 17:31:21 +0200
commit8487fa6248d1d5dac81640de9c55c1eab9f324b3 (patch)
treef3209fdeb8341870bd4fe765e30a0a395a12c4ea /app/i18n/ru/admin.php
parent62a42a20630c5dfb4a677a42bbc3dd6c7cd203d2 (diff)
Reformat i18n correctly (#2976)
* Ignore i18n gen.dir key * Add a makefile target to update an i18n key * Mark some i18n keys to ignore * Reformat i18n files correctly * Make i18n keys sort case-sensitive Calling `make i18n-format` was always inverting 4 lines: - gen.date.dec with gen.date.Dec - and gen.date.nov with gen.date.Nov I don't know why these particular lines and not the others, but it appeared the sort function was case insensitive due to the `SORT_FLAG_CASE` flag passed to the `ksort` function. Removing this flag makes the calls to the formatter idempotent and more reliable. Unfortunately it moves a lot of lines since the `_` character is considered differently. * Check i18n files are correctly formatted on Travis
Diffstat (limited to 'app/i18n/ru/admin.php')
-rw-r--r--app/i18n/ru/admin.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/i18n/ru/admin.php b/app/i18n/ru/admin.php
index 993a90cca..9c93cf62c 100644
--- a/app/i18n/ru/admin.php
+++ b/app/i18n/ru/admin.php
@@ -83,9 +83,9 @@ return array(
'ok' => 'У вас установлен PDO и как минимум один из поддерживаемых драйверов (pdo_mysql, pdo_sqlite, pdo_pgsql).',
),
'php' => array(
+ '_' => 'PHP installation', // TODO - Translation
'nok' => 'У вас установлен PHP версии %s, но FreshRSS необходима версия не ниже %s.',
'ok' => 'У вас установлен PHP версии %s, который совместим с FreshRSS.',
- '_' => 'PHP installation', // TODO - Translation
),
'tables' => array(
'nok' => 'В базе данных отсуствует одна или больше таблица.',
@@ -116,8 +116,8 @@ return array(
'name' => 'Name', // TODO - Translation
'no_configure_view' => 'Это расширение нельзя настроить.',
'system' => array(
- 'no_rights' => 'Системные расширения (у вас нет к ним доступа)',
'_' => 'Системные расширения',
+ 'no_rights' => 'Системные расширения (у вас нет к ним доступа)',
),
'title' => 'Расширения',
'update' => 'Update available', // TODO - Translation
@@ -125,6 +125,7 @@ return array(
'version' => 'Version', // TODO - Translation
),
'stats' => array(
+ '_' => 'Статистика',
'all_feeds' => 'Все подписки',
'category' => 'Категория',
'entry_count' => 'Количество статей',
@@ -154,9 +155,9 @@ return array(
'status_unread' => 'Не прочитано',
'title' => 'Статистика',
'top_feed' => '10 лучших подписок',
- '_' => 'Статистика',
),
'system' => array(
+ '_' => 'Системные настройки',
'auto-update-url' => 'Адрес сервера для автоматического обновления',
'cookie-duration' => array(
'help' => 'in seconds', // TODO - Translation
@@ -170,21 +171,20 @@ return array(
'help' => '0 означает неограниченное количество пользователей',
'number' => 'Максимальное количество пользователей',
),
- '_' => 'Системные настройки',
),
'update' => array(
+ '_' => 'Обновление системы',
'apply' => 'Применить',
'check' => 'Проверить обновления',
'current_version' => 'Ваша текущая версия FreshRSS: %s.',
'last' => 'Последняя проверка: %s',
'none' => 'Нечего обновлять',
'title' => 'Обновить систему',
- '_' => 'Обновление системы',
),
'user' => array(
'admin' => 'Administrator', // TODO - Translation
- 'articles_and_size' => '%s статей (%s)',
'article_count' => 'Articles', // TODO - Translation
+ 'articles_and_size' => '%s статей (%s)',
'back_to_manage' => '← Return to user list', // TODO - Translation
'create' => 'Создать нового пользователя',
'database_size' => 'Database size', // TODO - Translation
@@ -202,8 +202,8 @@ return array(
'selected' => 'Selected user', // TODO - Translation
'title' => 'Управление пользователями',
'update_users' => 'Update user', // TODO - Translation
+ 'user_list' => 'Список пользователей',
'username' => 'Имя пользователя',
'users' => 'Пользователи',
- 'user_list' => 'Список пользователей',
),
);