[next] Add pt-BR translation (#2338)

* Add pt-BR translation

* Add pt-BR translation on server
This commit is contained in:
Cristian Dean
2019-06-05 18:04:07 +02:00
committed by Kiwi
parent 593d94ddbb
commit 39d7540987
15 changed files with 1084 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" | "es" | "de";
export type LanguageCode = "en-US" | "pt-BR" | "es" | "de";
/**
* LOCALES is an array of supported language codes that can be accessed as a
* value.
*/
export const LOCALES: LanguageCode[] = ["en-US", "es", "de"];
export const LOCALES: LanguageCode[] = ["en-US", "pt-BR", "es", "de"];