From e08b17561e523277904513f11f935712ff66b187 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Tue, 23 Feb 2021 10:35:50 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20Capitalize=20P=D1=83=D1=81=D1=81=D0=BA?= =?UTF-8?q?=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/i18n/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/i18n/index.js b/shared/i18n/index.js index 7f56f6081..9be2fb6e8 100644 --- a/shared/i18n/index.js +++ b/shared/i18n/index.js @@ -14,7 +14,7 @@ export const languageOptions = [ { label: "Italiano (Italia)", value: "it_IT" }, { label: "한국어 (Korean)", value: "ko_KR" }, { label: "Português (Portugal)", value: "pt_PT" }, - { label: "русский (Россия)", value: "ru_RU" }, + { label: "Pусский (Россия)", value: "ru_RU" }, ]; export const languages: string[] = languageOptions.map((i) => i.value);