Switch to "lingui" for better DX. Tried to persist existing languages as much as possible. Removed "vite-plugin-node-polyfills" because it's incompatible with "lingui"
74 lines
2.5 KiB
TypeScript
74 lines
2.5 KiB
TypeScript
/*
|
|
* Copyright (C) Contributors to the Suwayomi project
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
import path from 'path';
|
|
import fs from 'fs';
|
|
import { execSync } from 'child_process';
|
|
import {
|
|
fetchWeblateLanguageStats,
|
|
getWeblateLanguageStatsFor,
|
|
meetsTranslatedPercentThreshold as meetsTranslatedPercentThresholdBase,
|
|
} from './Weblate.utils.ts';
|
|
import { WeblateLanguageStatistic } from './Weblate.types.ts';
|
|
import { TRANSLATED_PERCENT_THRESHOLD } from './Weblate.constants.ts';
|
|
|
|
const FILE_PATH = 'src/i18n/locales.json';
|
|
|
|
const outputFilePath = path.join(import.meta.dirname, `../../../${FILE_PATH}`);
|
|
const resourcesDirPath = path.join(import.meta.dirname, '../../../src/i18n/locales');
|
|
|
|
const extractLanguageCode = (resourceFileNames: string): string =>
|
|
path.basename(resourceFileNames, path.extname(resourceFileNames));
|
|
|
|
const meetsTranslatedPercentThreshold = (
|
|
resourceFileName: string,
|
|
weblateLanguageStats: WeblateLanguageStatistic[],
|
|
): boolean => {
|
|
const code = extractLanguageCode(resourceFileName);
|
|
const { name, translated_percent: translatedPercent } = getWeblateLanguageStatsFor(code, weblateLanguageStats);
|
|
|
|
const meetsThreshold = meetsTranslatedPercentThresholdBase(translatedPercent);
|
|
|
|
if (!meetsThreshold) {
|
|
console.log(
|
|
`Language "${name} (${code})" does not meet the required translation percentage threshold (${translatedPercent} < ${TRANSLATED_PERCENT_THRESHOLD})`,
|
|
);
|
|
}
|
|
|
|
return meetsThreshold;
|
|
};
|
|
|
|
const generateResources = async () => {
|
|
const weblateLanguageStats = await fetchWeblateLanguageStats();
|
|
|
|
const resourceFileNames = fs.readdirSync(resourcesDirPath);
|
|
|
|
const resourceNames = resourceFileNames
|
|
.filter((resourceFileName) => meetsTranslatedPercentThreshold(resourceFileName, weblateLanguageStats))
|
|
.map(extractLanguageCode);
|
|
|
|
const localesConfig = JSON.parse(fs.readFileSync(outputFilePath, 'utf-8'));
|
|
|
|
localesConfig.locales = resourceNames;
|
|
|
|
fs.writeFileSync(outputFilePath, `${JSON.stringify(localesConfig, null, 2)}\n`);
|
|
|
|
execSync('yarn tsc', { stdio: 'inherit' });
|
|
|
|
const hasFileChanged = execSync('git status --porcelain').toString().includes(FILE_PATH);
|
|
if (!hasFileChanged) {
|
|
return;
|
|
}
|
|
|
|
execSync('git reset');
|
|
execSync(`git add ${FILE_PATH}`);
|
|
execSync('git commit -m "Update available languages"');
|
|
};
|
|
|
|
generateResources();
|