1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 18:32:34 +01:00
lossless-cut/public/i18n-common.js
2023-01-15 18:08:38 +08:00

54 lines
1.7 KiB
JavaScript

// intentionally disabled because I don't know the quality of the languages, so better to default to english
// const LanguageDetector = window.require('i18next-electron-language-detector');
const isDev = require('electron-is-dev');
const { app } = require('electron');
const { join } = require('path');
const getLangPath = (subPath) => (isDev ? join('public', subPath) : join(app.getAppPath(), 'build', subPath));
// Weblate hardcodes different lang codes than electron
// https://www.electronjs.org/docs/api/app#appgetlocale
// https://source.chromium.org/chromium/chromium/src/+/master:ui/base/l10n/l10n_util.cc
const mapLang = (lng) => ({
nb: 'nb_NO',
no: 'nb_NO',
nn: 'nb_NO',
zh: 'zh_Hans',
// https://source.chromium.org/chromium/chromium/src/+/master:ui/base/l10n/l10n_util.cc;l=354
'zh-CN': 'zh_Hans', // Chinese simplified (mainland China)
'zh-TW': 'zh_Hant', // Chinese traditional (Taiwan)
fr: 'fr',
'fr-CA': 'fr',
'fr-CH': 'fr',
'fr-FR': 'fr',
it: 'it',
'it-CH': 'it',
'it-IT': 'it',
'ru-RU': 'ru',
}[lng] || lng);
const fallbackLng = 'en';
const commonI18nOptions = {
fallbackLng,
// debug: isDev,
// saveMissing: isDev,
// updateMissing: isDev,
// saveMissingTo: 'all',
// TODO improve keys?
// Maybe do something like this: https://stackoverflow.com/a/19405314/6519037
// https://www.i18next.com/translation-function/context
keySeparator: false,
nsSeparator: false,
pluralSeparator: false,
contextSeparator: false,
};
const loadPath = (lng, ns) => getLangPath(`locales/${mapLang(lng)}/${ns}.json`);
const addPath = (lng, ns) => getLangPath(`locales/${mapLang(lng)}/${ns}.missing.json`);
module.exports = { fallbackLng, loadPath, addPath, commonI18nOptions };