🇹🇷 Enable turkish locale

This commit is contained in:
Luke Vella 2023-07-25 17:15:48 +01:00
parent a7fd5fcd76
commit 9b90f9afba
2 changed files with 6 additions and 0 deletions

View file

@ -133,6 +133,11 @@ const dayjsLocales: Record<
timeFormat: "hours24", timeFormat: "hours24",
import: () => import("dayjs/locale/vi"), import: () => import("dayjs/locale/vi"),
}, },
tr: {
weekStart: 1,
timeFormat: "hours24",
import: () => import("dayjs/locale/tr"),
},
}; };
dayjs.extend(localizedFormat); dayjs.extend(localizedFormat);

View file

@ -15,5 +15,6 @@
"sk": "Slovenčina", "sk": "Slovenčina",
"fi": "Suomi", "fi": "Suomi",
"sv": "Svenska", "sv": "Svenska",
"tr": "Türkçe",
"zh": "汉语" "zh": "汉语"
} }