mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
18 lines
442 B
JavaScript
18 lines
442 B
JavaScript
module.exports = {
|
|
// Default namespace used in your i18next config
|
|
defaultNamespace: 'grafana',
|
|
|
|
locales: ['en-US', 'fr-FR', 'es-ES', "de-DE", "zh-Hans", 'pseudo-LOCALE'],
|
|
|
|
output: './public/locales/$LOCALE/$NAMESPACE.json',
|
|
|
|
pluralSeparator: '__',
|
|
|
|
sort: true,
|
|
|
|
createOldCatalogs: false,
|
|
|
|
// Don't include default values for English, they'll remain in the source code
|
|
skipDefaultValues: (locale) => locale !== 'en-US',
|
|
};
|