-
Notifications
You must be signed in to change notification settings - Fork 678
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(i18n): add Russian language support (#402)
* feat(i18n): add Russian language support Added Russian translations to the application, including localization for app content, common phrases, external resources, language settings, and shortcuts. * fix: import format * feat: support lang/*.json * fix: Lowercase to uppercase * update Signed-off-by: Innei <[email protected]> --------- Signed-off-by: Innei <[email protected]> Co-authored-by: Innei <[email protected]>
- Loading branch information
Showing
21 changed files
with
532 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"app.copied_to_clipboard": "Скопировано в буфер обмена", | ||
"cancel": "Отменить", | ||
"confirm": "Подтвердить", | ||
"ok": "ОК", | ||
"quantifier.piece": "", | ||
"time.last_night": "Прошлой ночью", | ||
"time.the_night_before_last": "Позапрошлой ночью", | ||
"time.today": "Сегодня", | ||
"time.yesterday": "Вчера", | ||
"tips.load-lng-error": "Не удалось загрузить языковой пакет", | ||
"words.back": "Назад", | ||
"words.copy": "Копировать", | ||
"words.edit": "Редактировать", | ||
"words.entry": "Запись", | ||
"words.id": "ID", | ||
"words.items_one": "Элемент", | ||
"words.items_other": "Элементы", | ||
"words.local": "локальный", | ||
"words.record": "запись", | ||
"words.record_one": "запись", | ||
"words.record_other": "записи", | ||
"words.result": "результат", | ||
"words.result_one": "результат", | ||
"words.result_other": "результаты", | ||
"words.space": " ", | ||
"words.which.all": "Все" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"feed": { | ||
"follow_one": "подписка", | ||
"follow_other": "подписки", | ||
"followsAndReads": "{{subscriptionCount}} {{subscriptionNoun}} с {{readCount}} {{readNoun}} на {{appName}}", | ||
"read_one": "чтение", | ||
"read_other": "чтений" | ||
}, | ||
"header": { | ||
"app": "Приложение", | ||
"download": "Скачать" | ||
}, | ||
"invitation": { | ||
"activate": "Активировать", | ||
"codeOptions": { | ||
"1": "Ищите пользователей для приглашения на альфа-тестирование.", | ||
"2": "Присоединяйтесь к нашему серверу Discord для участия в раздачах.", | ||
"3": "Подпишитесь на наш аккаунт X для участия в раздачах." | ||
}, | ||
"earlyAccess": "В настоящее время Follow находится в раннем доступе и требует пригласительного кода для использования.", | ||
"earlyAccessMessage": "😰 Извините, Follow находится в раннем доступе и требует пригласительного кода для использования.", | ||
"generateButton": "Сгенерировать новый код", | ||
"generateCost": "Вы можете потратить {{INVITATION_PRICE}} Power, чтобы сгенерировать пригласительный код для ваших друзей.", | ||
"getCodeMessage": "Вы можете получить пригласительный код следующими способами:", | ||
"title": "Пригласительный код" | ||
}, | ||
"login": { | ||
"backToWebApp": "Вернуться к веб-приложению", | ||
"continueWithGitHub": "Продолжить через GitHub", | ||
"continueWithGoogle": "Продолжить через Google", | ||
"logInTo": "Войти в ", | ||
"openApp": "Открыть приложение", | ||
"redirecting": "Перенаправление", | ||
"welcomeTo": "Добро пожаловать в " | ||
}, | ||
"redirect": { | ||
"continueInBrowser": "Продолжить в браузере", | ||
"instruction": "Сейчас самое время открыть {{APP_NAME}} и безопасно закрыть эту страницу.", | ||
"openApp": "Открыть {{APP_NAME}}", | ||
"successMessage": "Вы успешно подключились к аккаунту {{APP_NAME}}." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.