mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -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
16 lines
393 B
JavaScript
16 lines
393 B
JavaScript
module.exports = {
|
|
// Default namespace used in your i18next config
|
|
defaultNamespace: 'grafana',
|
|
|
|
locales: ['en-US', 'fr-FR', 'es-ES', 'pseudo-LOCALE'],
|
|
|
|
output: './public/locales/$LOCALE/$NAMESPACE.json',
|
|
|
|
pluralSeparator: '__',
|
|
|
|
sort: true,
|
|
|
|
// Don't include default values for English, they'll remain in the source code
|
|
skipDefaultValues: (locale) => locale !== 'en-US',
|
|
};
|