mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
commit
8430ba0379
@ -2,6 +2,7 @@ const fs = require('fs');
|
||||
const path = require('path');
|
||||
const chalk = require('chalk');
|
||||
const messages = require('../lang/en-US.json');
|
||||
const ignore = require('./lang-ignore.json');
|
||||
|
||||
const dir = path.resolve(__dirname, '../lang');
|
||||
const files = fs.readdirSync(dir);
|
||||
@ -10,13 +11,15 @@ const keys = Object.keys(messages).sort();
|
||||
files.forEach(file => {
|
||||
if (file !== 'en-US.json') {
|
||||
const lang = require(`../lang/${file}`);
|
||||
const id = file.replace('.json', '');
|
||||
|
||||
console.log(chalk.yellowBright(`\n## ${file}`));
|
||||
keys.forEach(key => {
|
||||
const orig = messages[key];
|
||||
const check = lang[key];
|
||||
const ignored = ignore[id]?.includes(key);
|
||||
|
||||
if (!check || check === orig) {
|
||||
if (!ignored && (!check || check === orig)) {
|
||||
console.log(chalk.redBright('*'), chalk.greenBright(`${key}:`), orig);
|
||||
}
|
||||
});
|
||||
|
10
scripts/lang-ignore.json
Normal file
10
scripts/lang-ignore.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"de-DE": [
|
||||
"label.administrator",
|
||||
"label.name",
|
||||
"metrics.device.desktop",
|
||||
"metrics.device.laptop",
|
||||
"metrics.device.tablet",
|
||||
"metrics.referrers"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user