fix: set default locale for lang attribute
This commit is contained in:
		@@ -20,5 +20,6 @@ export const TRANSLATIONS = {
 | 
			
		||||
  "uk-UA": uk,
 | 
			
		||||
} as const
 | 
			
		||||
 | 
			
		||||
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale ?? "en-US"]
 | 
			
		||||
export const defaultTranslation = "en-US"
 | 
			
		||||
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale ?? defaultTranslation]
 | 
			
		||||
export type ValidLocale = keyof typeof TRANSLATIONS
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user