mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-22 10:22:31 +01:00
53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
// 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 };
|