mirror of
https://github.com/grafana/grafana.git
synced 2025-01-24 07:17:08 -06:00
36a1f28086
* Update dependency i18next-parser to v8 * remove deprecated option * fix lockfile --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
17 lines
367 B
JavaScript
17 lines
367 B
JavaScript
module.exports = {
|
|
// Default namespace used in your i18next config
|
|
defaultNamespace: 'grafana',
|
|
// Adds changes only to en-US when extracting keys, every other language is provided by Crowdin
|
|
locales: ['en-US'],
|
|
|
|
output: './public/locales/$LOCALE/$NAMESPACE.json',
|
|
|
|
sort: true,
|
|
|
|
createOldCatalogs: false,
|
|
|
|
failOnWarnings: true,
|
|
|
|
verbose: false,
|
|
};
|