xmpp.chapril.org-conversejs/src/i18n/index.js

133 lines
4.2 KiB
JavaScript
Raw Normal View History

2020-01-26 16:21:20 +01:00
/**
* @module i18n
2022-04-02 16:28:01 +02:00
* @copyright 2022, the Converse.js contributors
2020-01-26 16:21:20 +01:00
* @license Mozilla Public License (MPLv2)
* @description This is the internationalization module
*/
import Jed from 'jed';
2023-01-02 09:45:04 +01:00
import log from "@converse/headless/log.js";
import { _converse, api, converse, i18n } from '@converse/headless/core.js';
const { dayjs } = converse.env;
2018-11-15 11:51:43 +01:00
function detectLocale (library_check) {
/* Determine which locale is supported by the user's system as well
2019-05-06 11:16:56 +02:00
* as by the relevant library (e.g. converse.js or dayjs).
* @param { Function } library_check - Returns a boolean indicating whether
* the locale is supported.
2018-11-15 11:51:43 +01:00
*/
2021-03-03 22:24:13 +01:00
let locale;
2018-11-15 11:51:43 +01:00
if (window.navigator.userLanguage) {
locale = isLocaleAvailable(window.navigator.userLanguage, library_check);
}
if (window.navigator.languages && !locale) {
2021-03-03 22:24:13 +01:00
for (let i=0; i<window.navigator.languages.length && !locale; i++) {
2018-11-15 11:51:43 +01:00
locale = isLocaleAvailable(window.navigator.languages[i], library_check);
}
}
2018-11-15 11:51:43 +01:00
if (window.navigator.browserLanguage && !locale) {
locale = isLocaleAvailable(window.navigator.browserLanguage, library_check);
}
2018-11-15 11:51:43 +01:00
if (window.navigator.language && !locale) {
locale = isLocaleAvailable(window.navigator.language, library_check);
}
2018-11-15 11:51:43 +01:00
if (window.navigator.systemLanguage && !locale) {
locale = isLocaleAvailable(window.navigator.systemLanguage, library_check);
}
return locale || 'en';
}
2018-11-15 11:51:43 +01:00
function isConverseLocale (locale, supported_locales) {
return typeof locale === 'string' && supported_locales.includes(locale);
2018-11-15 11:51:43 +01:00
}
function getLocale (preferred_locale, isSupportedByLibrary) {
if (typeof preferred_locale === 'string') {
2018-11-15 11:51:43 +01:00
if (preferred_locale === 'en' || isSupportedByLibrary(preferred_locale)) {
return preferred_locale;
}
}
2018-11-15 11:51:43 +01:00
return detectLocale(isSupportedByLibrary) || 'en';
}
/* Check whether the locale or sub locale (e.g. en-US, en) is supported.
* @param { String } locale - The locale to check for
* @param { Function } available - Returns a boolean indicating whether the locale is supported
*/
2018-11-15 11:51:43 +01:00
function isLocaleAvailable (locale, available) {
if (available(locale)) {
return locale;
} else {
var sublocale = locale.split("-")[0];
if (sublocale !== locale && available(sublocale)) {
return sublocale;
}
}
2018-11-15 11:51:43 +01:00
}
/* Fetch the translations for the given local at the given URL.
* @private
* @method i18n#fetchTranslations
* @param { _converse }
*/
async function fetchTranslations (_converse) {
const { api, locale } = _converse;
2020-10-15 11:13:43 +02:00
const dayjs_locale = locale.toLowerCase().replace('_', '-');
if (!isConverseLocale(locale, api.settings.get("locales")) || locale === 'en') {
return;
}
const { default: data } = await import(/*webpackChunkName: "locales/[request]" */ `../i18n/${locale}/LC_MESSAGES/converse.po`);
await import(/*webpackChunkName: "locales/dayjs/[request]" */ `dayjs/locale/${dayjs_locale}.js`);
2020-10-15 11:13:43 +02:00
dayjs.locale(getLocale(dayjs_locale, l => dayjs.locale(l)));
jed_instance = new Jed(data);
}
2018-11-15 11:51:43 +01:00
let jed_instance;
/**
* @namespace i18n
*/
Object.assign(i18n, {
getLocale (preferred_locale, available_locales) {
return getLocale(preferred_locale, preferred => isConverseLocale(preferred, available_locales));
2018-11-15 11:51:43 +01:00
},
2018-11-15 11:51:43 +01:00
translate (str) {
if (!jed_instance) {
2018-11-15 11:51:43 +01:00
return Jed.sprintf.apply(Jed, arguments);
}
const t = jed_instance.translate(str);
if (arguments.length > 1) {
2018-11-15 11:51:43 +01:00
return t.fetch.apply(t, [].slice.call(arguments, 1));
} else {
return t.fetch();
}
},
async initialize () {
if (_converse.isTestEnv()) {
_converse.locale = 'en';
} else {
try {
2021-03-03 22:24:13 +01:00
const preferred_locale = api.settings.get('i18n');
_converse.locale = i18n.getLocale(preferred_locale, api.settings.get("locales"));
await fetchTranslations(_converse);
} catch (e) {
log.fatal(e.message);
_converse.locale = 'en';
}
}
},
__ (...args) {
return i18n.translate(...args);
}
});
export const __ = i18n.__;