mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Switch from lingui from i18next * Change lingui messages to i18next messages * Change lingui messages to i18next messages (grafana-ui) * Init i18n for tests
9 lines
299 B
TypeScript
9 lines
299 B
TypeScript
export const ENGLISH_US = 'en-US';
|
|
export const FRENCH_FRANCE = 'fr-FR';
|
|
export const SPANISH_SPAIN = 'es-ES';
|
|
export const PSEUDO_LOCALE = 'pseudo-LOCALE';
|
|
|
|
export const DEFAULT_LOCALE = ENGLISH_US;
|
|
|
|
export const VALID_LOCALES: string[] = [ENGLISH_US, FRENCH_FRANCE, SPANISH_SPAIN, PSEUDO_LOCALE];
|