mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
24bcf9b3fd
prettier.format is now a promise -> await it!
25 lines
868 B
JavaScript
25 lines
868 B
JavaScript
const fs = require('fs/promises');
|
|
const pseudoizer = require('pseudoizer');
|
|
const prettier = require('prettier');
|
|
|
|
function pseudoizeJsonReplacer(key, value) {
|
|
if (typeof value === 'string') {
|
|
// Split string on brace-enclosed segments. Odd indices will be {{variables}}
|
|
const phraseParts = value.split(/(\{\{[^}]+}\})/g);
|
|
const translatedParts = phraseParts.map((str, index) => index % 2 ? str : pseudoizer.pseudoize(str))
|
|
return translatedParts.join("")
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
fs.readFile('./public/locales/en-US/grafana.json').then(async (enJson) => {
|
|
const enMessages = JSON.parse(enJson);
|
|
// Add newline to make prettier happy
|
|
const pseudoJson = await prettier.format(JSON.stringify(enMessages, pseudoizeJsonReplacer, 2), {
|
|
parser: 'json',
|
|
});
|
|
|
|
return fs.writeFile('./public/locales/pseudo-LOCALE/grafana.json', pseudoJson);
|
|
});
|