feat(i18n): Add Dutch to i18n (#813)
* Create nl-NL.ts * Update index.ts * Update nl-NL.ts
This commit is contained in:
		@@ -3,12 +3,14 @@ import en from "./locales/en-US"
 | 
			
		||||
import fr from "./locales/fr-FR"
 | 
			
		||||
import ja from "./locales/ja-JP"
 | 
			
		||||
import de from "./locales/de-DE"
 | 
			
		||||
import nl from "./locales/nl-NL"
 | 
			
		||||
 | 
			
		||||
export const TRANSLATIONS = {
 | 
			
		||||
  "en-US": en,
 | 
			
		||||
  "fr-FR": fr,
 | 
			
		||||
  "ja-JP": ja,
 | 
			
		||||
  "de-DE": de,
 | 
			
		||||
  "nl-NL": nl,
 | 
			
		||||
} as const
 | 
			
		||||
 | 
			
		||||
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user