feat: Add Turkish translations

closes #3461
This commit is contained in:
Tom Moor
2022-04-25 20:07:49 -07:00
parent 93f770c4d4
commit 5cbea1eab2
2 changed files with 6 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import {
pt,
pl,
ru,
tr,
vi,
zhCN,
zhTW,
@@ -29,6 +30,7 @@ const locales = {
pt_PT: pt,
pl_PL: pl,
ru_RU: ru,
tr_TR: tr,
vi_VN: vi,
zh_CN: zhCN,
zh_TW: zhTW,

View File

@@ -65,6 +65,10 @@ export const languageOptions = [
label: "Tiếng Việt (Vietnamese)",
value: "vi_VN",
},
{
label: "Türkçe (Turkey)",
value: "tr_TR",
},
];
export const languages: string[] = languageOptions.map((i) => i.value);