mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 00:47:38 -06:00
fe24404432
* I18n: Support for Enterprise translations * don't attempt to link to enterprise in tests * move extract script to makefile to optionally support enterprise * update references to old extract script * update docs * thank god for unit tests
9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
const baseConfig = require('./i18next-parser.config.cjs');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
defaultNamespace: 'grafana-enterprise',
|
|
input: ['../../public/app/extensions/**/*.{tsx,ts}'],
|
|
output: './public/app/extensions/locales/$LOCALE/$NAMESPACE.json',
|
|
};
|