mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
0d390382d3
* reset to standard plural seperators for crowdin compatibility * update docs
20 lines
460 B
JavaScript
20 lines
460 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',
|
|
|
|
sort: true,
|
|
|
|
createOldCatalogs: false,
|
|
|
|
failOnWarnings: true,
|
|
|
|
verbose: false,
|
|
|
|
// Don't include default values for English, they'll remain in the source code
|
|
skipDefaultValues: (locale) => locale !== 'en-US',
|
|
};
|