Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 47x 47x 47x 463x | // The name of the cookie storing the current locale.
export const LOCALE_COOKIE_NAME = "NEXT_LOCALE";
// Final fallback locale if none other matches. Always available.
export const DEFAULT_LOCALE = "en";
// Locales which don't rely on translation progress.
export const ALWAYS_AVAILABLE_LOCALES = ["en"];
// Autonym = a language name as written in its own language.
export const LOCALE_AUTONYMS: Record<string, string> = {
ca: "Català",
cs: "Čeština",
de: "Deutsch",
en: "English",
es: "Español (España)",
"es-419": "Español (Latinoamérica)",
fr: "Français",
he: "עברית",
hi: "हिन्दी",
hu: "Magyar",
it: "Italiano",
ja: "日本語",
"nb-NO": "Norsk (bokmål)",
nl: "Nederlands",
pl: "Polski",
pt: "Português (Portugal)",
"pt-BR": "Português (Brasil)",
ru: "Русский",
sv: "Svenska",
tr: "Türkçe",
uk: "Українська",
"zh-Hans": "中文(简体)",
"zh-Hant": "中文(繁體)",
};
|