feat: Add Russian language support

closes #1916
This commit is contained in:
Tom Moor
2021-02-21 20:42:01 -08:00
parent a1e885f057
commit d0f1fd533a
2 changed files with 2 additions and 0 deletions

View File

@@ -14,6 +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" },
];
export const languages: string[] = languageOptions.map((i) => i.value);