mirror of
https://github.com/vercel/eve.git
synced 2026-09-20 05:35:39 +08:00
bf04750363
Signed-off-by: John Pham <john.pham@vercel.com>
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
export const defaultLanguage = "en" as const;
|
|
|
|
export const translations = {
|
|
[defaultLanguage]: {
|
|
displayName: "English",
|
|
},
|
|
};
|
|
|
|
export const supportedLanguages = Object.freeze(Object.keys(translations));
|
|
|
|
export const isSupportedLanguage = (language: string): language is keyof typeof translations =>
|
|
Object.hasOwn(translations, language);
|