@selfcommunity/react-core
Version:
React Core Components useful for integrating UI Community components (react-ui).
9 lines (8 loc) • 307 B
JavaScript
// locale-i18n
export const LOCALE_OPTION = 'locale';
export const LOCALE_DEFAULT_OPTION = 'default';
export const LOCALE_MESSAGES_OPTION = 'messages';
export const LOCALE_EN = 'en';
export const LOCALE_IT = 'it';
export const LOCALES = [LOCALE_EN, LOCALE_IT];
export const DEFAULT_LANGUAGE_UI = LOCALE_EN;