Skip to content

Commit d21c993

Browse files
author
whybot
committed
add: Turkish (Türkçe) language support
Add Turkish translation (tr.ts) and register it in the i18n module. Users can now select Türkçe as their interface language.
1 parent 5222bae commit d21c993

File tree

2 files changed

+478
-0
lines changed

2 files changed

+478
-0
lines changed

src/i18n/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { de } from "./de.js";
33
import { es } from "./es.js";
44
import { fr } from "./fr.js";
55
import { ru } from "./ru.js";
6+
import { tr } from "./tr.js";
67
import { zh } from "./zh.js";
78

89
interface LocaleDefinition {
@@ -43,6 +44,12 @@ const LOCALE_DEFINITIONS = [
4344
dateLocale: "ru-RU",
4445
dictionary: ru,
4546
},
47+
{
48+
code: "tr",
49+
label: "Türkçe",
50+
dateLocale: "tr-TR",
51+
dictionary: tr,
52+
},
4653
{
4754
code: "zh",
4855
label: "简体中文",

0 commit comments

Comments
 (0)