forked from Geoxor/Amethyst
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsync_locale_keys.ts
57 lines (43 loc) · 1.83 KB
/
sync_locale_keys.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import fs from "fs";
import path from "path";
import chalk from "chalk";
const localesFolder = path.join(__dirname, "../src/renderer/locales");
const defaultLocaleFile = path.join(localesFolder, "en-US.json");
function readJsonFile(filePath: string): Record<string, string> {
const fileContent = fs.readFileSync(filePath, "utf-8");
return JSON.parse(fileContent);
}
function writeJsonFile(filePath: string, data: Record<string, string>): void {
const content = JSON.stringify(data, null, 2);
fs.writeFileSync(filePath, content, "utf-8");
}
function updateLocaleKeys(targetLocalePath: string, defaultLocale: Record<string, string>): void {
const targetLocale = readJsonFile(targetLocalePath);
// Find missing keys in the target locale
const missingKeys = Object.keys(defaultLocale).filter(key => !(key in targetLocale));
if (missingKeys.length > 0) {
// Add missing keys to the target locale
missingKeys.forEach(key => {
targetLocale[key] = defaultLocale[key];
});
// Write the updated locale back to the file
writeJsonFile(targetLocalePath, targetLocale);
console.log(chalk.green(`Updated ${path.basename(targetLocalePath)} with missing keys.`));
}
}
function synchronizeLocalesWithDefault(): void {
const defaultLocale = readJsonFile(defaultLocaleFile);
// Read all locale files in the locales folder
const localeFiles = fs.readdirSync(localesFolder).filter(file => file.endsWith(".json"));
// Update each locale file
localeFiles.forEach(localeFile => {
const localeFilePath = path.join(localesFolder, localeFile);
// Skip the default locale file
if (localeFilePath !== defaultLocaleFile) {
updateLocaleKeys(localeFilePath, defaultLocale);
}
});
console.log(chalk.blue("Locales synchronized successfully!"));
}
// Run the synchronization
synchronizeLocalesWithDefault();