[next] Dutch locale for stream (#2439)

* stream dutch translation

* added nl-NL locale

* missed line

* Dutch translation for framework (date/time)
This commit is contained in:
Bogdan Deren
2019-08-05 16:39:06 -04:00
committed by Kim Gardner
parent 3694794b01
commit 1f07c23dea
3 changed files with 364 additions and 2 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
* LanguageCode is the type represented by the internally identifiable types for
* the different languages that can be supported.
*/
export type LanguageCode = "en-US" | "pt-BR" | "es" | "de";
export type LanguageCode = "en-US" | "pt-BR" | "es" | "de" | "nl-NL";
/**
* LOCALES is an array of supported language codes that can be accessed as a
* value.
*/
export const LOCALES: LanguageCode[] = ["en-US", "pt-BR", "es", "de"];
export const LOCALES: LanguageCode[] = ["en-US", "pt-BR", "es", "de", "nl-NL"];