add Russian translations (#607)

Co-authored-by: Denis Korablev <d.korablev@nominex.io>
This commit is contained in:
Denis Korablev
2021-12-07 17:18:05 +04:00
committed by GitHub
parent 1061873788
commit 5539705bf3

20
src/translations/ru.ts Normal file
View File

@@ -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;