Created
September 11, 2020 10:52
-
-
Save fredriccliver/533e61612c39342169133d3ea41c4009 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Locale { | |
label: string | |
value: string | |
} | |
interface Constants { | |
localeList: Array<Locale> | |
} | |
let CONSTANTS: Constants = { | |
localeList: [ | |
{ label: "๐ฌ๐ง English UK", value: "en-GB" }, | |
{ label: "๐บ๐ธ English USA", value: "en-US" }, | |
{ label: "๐ฉ๐ช German", value: "de-DE" }, | |
{ label: "๐ซ๐ท French", value: "fr-FR" }, | |
{ label: "๐ฐ๐ท Korean", value: "ko-KR" }, | |
{ label: "๐ฎ๐น Italian", value: "it-IT" }, | |
{ label: "๐ท๐บ Russian", value: "ru-RU" }, | |
{ label: "๐ธ๐ช Swedish", value: "sv-SE" }, | |
{ label: "๐ฏ๐ต japan", value: "ja-JP" }, | |
{ label: "๐ช๐ธ Espaรฑol in Spain", value: "es-ES" }, | |
{ label: "โช๏ธ Arabic multi-region", value: "ar-XA" } | |
] | |
} | |
export default CONSTANTS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment