mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-10 23:16:38 +00:00
4 lines
226 B
TypeScript
4 lines
226 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'] as const;
|
|
export const defaultLocale: Locale = 'en-US'; |