diff options
Diffstat (limited to 'shared/core-utils')
-rw-r--r-- | shared/core-utils/i18n/i18n.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shared/core-utils/i18n/i18n.ts b/shared/core-utils/i18n/i18n.ts index c43e249a6..38c1b0cc9 100644 --- a/shared/core-utils/i18n/i18n.ts +++ b/shared/core-utils/i18n/i18n.ts | |||
@@ -75,8 +75,7 @@ const I18N_LOCALE_ALIAS = { | |||
75 | 'zh': 'zh-Hans-CN' | 75 | 'zh': 'zh-Hans-CN' |
76 | } | 76 | } |
77 | 77 | ||
78 | export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES) | 78 | export const POSSIBLE_LOCALES = (Object.keys(I18N_LOCALES) as string[]).concat(Object.keys(I18N_LOCALE_ALIAS)) |
79 | .concat(Object.keys(I18N_LOCALE_ALIAS)) | ||
80 | 79 | ||
81 | export function getDefaultLocale () { | 80 | export function getDefaultLocale () { |
82 | return 'en-US' | 81 | return 'en-US' |