From 5539705bf3daf9101affb51e71338336d485f42b Mon Sep 17 00:00:00 2001 From: Denis Korablev Date: Tue, 7 Dec 2021 17:18:05 +0400 Subject: [PATCH] add Russian translations (#607) Co-authored-by: Denis Korablev --- src/translations/ru.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/translations/ru.ts diff --git a/src/translations/ru.ts b/src/translations/ru.ts new file mode 100644 index 000000000..89cd7f55a --- /dev/null +++ b/src/translations/ru.ts @@ -0,0 +1,20 @@ +import { registerTranslation } from '../utilities/localize'; +import type { Translation } from '../utilities/localize'; + +const translation: Translation = { + $code: 'en', + $name: 'Русский', + $dir: 'ltr', + + close: 'Закрыть', + copy: 'Скопировать', + progress: 'Прогресс', + scroll_to_end: 'Пролистать до конца', + scroll_to_start: 'Пролистать к началу', + select_a_color_from_the_screen: 'Выберите цвет на экране', + toggle_color_format: 'Переключить цветовую модель' +}; + +registerTranslation(translation); + +export default translation;