mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-22 21:06:37 +00:00
22 lines
338 B
TypeScript
22 lines
338 B
TypeScript
export type Locale = (typeof locales)[number];
|
|
|
|
export const locales = [
|
|
"en-US",
|
|
"es-ES",
|
|
"fr-FR",
|
|
"de-DE",
|
|
"nl-NL",
|
|
"it-IT",
|
|
"pl-PL",
|
|
"pt-PT",
|
|
"tr-TR",
|
|
"zh-CN",
|
|
"ko-KR",
|
|
"bg-BG",
|
|
"cs-CZ",
|
|
"ru-RU",
|
|
"nb-NO",
|
|
"zh-TW"
|
|
] as const;
|
|
export const defaultLocale: Locale = "en-US";
|