element-desktop/src/language-helper.ts

137 lines
4.9 KiB
TypeScript
Raw Normal View History

2021-04-26 17:58:22 +02:00
/*
2024-09-06 18:56:18 +02:00
Copyright 2021-2024 New Vector Ltd.
2021-04-26 17:58:22 +02:00
2024-09-06 18:56:18 +02:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
2021-04-26 17:58:22 +02:00
*/
import counterpart from "counterpart";
import { TranslationKey as TKey } from "matrix-web-i18n";
2022-01-10 13:57:33 +01:00
2022-12-15 12:00:58 +01:00
import type Store from "electron-store";
import type EN from "./i18n/strings/en_EN.json";
import { loadJsonFile } from "./utils";
2022-12-15 12:00:58 +01:00
const FALLBACK_LOCALE = "en";
type TranslationKey = TKey<typeof EN>;
type SubstitutionValue = number | string;
interface Variables {
2022-10-13 13:42:33 +02:00
[key: string]: SubstitutionValue | undefined;
count?: number;
}
export function _t(text: TranslationKey, variables: Variables = {}): string {
2022-10-21 17:45:34 +02:00
const { count } = variables;
// Horrible hack to avoid https://github.com/vector-im/element-web/issues/4191
// The interpolation library that counterpart uses does not support undefined/null
// values and instead will throw an error. This is a problem since everywhere else
// in JS land passing undefined/null will simply stringify instead, and when converting
// valid ES6 template strings to i18n strings it's extremely easy to pass undefined/null
// if there are no existing null guards. To avoid this making the app completely inoperable,
// we'll check all the values for undefined/null and stringify them here.
2022-10-21 17:45:34 +02:00
Object.keys(variables).forEach((key) => {
if (variables[key] === undefined) {
console.warn("safeCounterpartTranslate called with undefined interpolation name: " + key);
2022-12-15 12:00:58 +01:00
variables[key] = "undefined";
}
2022-10-21 17:45:34 +02:00
if (variables[key] === null) {
console.warn("safeCounterpartTranslate called with null interpolation name: " + key);
2022-12-15 12:00:58 +01:00
variables[key] = "null";
}
});
2022-10-21 17:45:34 +02:00
let translated = counterpart.translate(text, variables);
if (!translated && count !== undefined) {
// counterpart does not do fallback if no pluralisation exists in the preferred language, so do it here
translated = counterpart.translate(text, { ...variables, locale: FALLBACK_LOCALE });
}
// The translation returns text so there's no XSS vector here (no unsafe HTML, no code execution)
return translated;
}
type Component = () => void;
type TypedStore = Store<{ locale?: string | string[] }>;
export class AppLocalization {
private static readonly STORE_KEY = "locale";
2021-05-27 15:44:41 +02:00
private readonly store: TypedStore;
2022-10-13 13:42:33 +02:00
private readonly localizedComponents?: Set<Component>;
2022-12-15 12:00:58 +01:00
public constructor({ store, components = [] }: { store: TypedStore; components: Component[] }) {
2022-10-21 17:45:34 +02:00
counterpart.registerTranslations(FALLBACK_LOCALE, this.fetchTranslationJson("en_EN"));
counterpart.setFallbackLocale(FALLBACK_LOCALE);
2022-12-15 12:00:58 +01:00
counterpart.setSeparator("|");
if (Array.isArray(components)) {
this.localizedComponents = new Set(components);
}
this.store = store;
if (this.store.has(AppLocalization.STORE_KEY)) {
const locales = this.store.get(AppLocalization.STORE_KEY);
2022-10-13 13:42:33 +02:00
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
this.setAppLocale(locales!);
}
this.resetLocalizedUI();
}
// Format language strings from normalized form to non-normalized form (e.g. en-gb to en_GB)
private denormalize(locale: string): string {
if (locale === "en") {
locale = "en_EN";
}
const parts = locale.split("-");
if (parts.length > 1) {
parts[1] = parts[1].toUpperCase();
}
return parts.join("_");
}
public fetchTranslationJson(locale: string): Record<string, string> {
try {
console.log("Fetching translation json for locale: " + locale);
2024-02-20 12:36:49 +01:00
return loadJsonFile(__dirname, "i18n", "strings", `${this.denormalize(locale)}.json`);
} catch (e) {
console.log(`Could not fetch translation json for locale: '${locale}'`, e);
2022-10-13 13:42:33 +02:00
return {};
}
}
public setAppLocale(locales: string | string[]): void {
console.log(`Changing application language to ${locales}`);
if (!Array.isArray(locales)) {
locales = [locales];
}
2022-12-15 12:00:58 +01:00
const loadedLocales = locales.filter((locale) => {
const translations = this.fetchTranslationJson(locale);
if (translations !== null) {
counterpart.registerTranslations(locale, translations);
}
2022-10-21 17:45:34 +02:00
return !!translations;
});
2022-10-21 17:45:34 +02:00
counterpart.setLocale(loadedLocales[0]);
this.store.set(AppLocalization.STORE_KEY, locales);
this.resetLocalizedUI();
}
public resetLocalizedUI(): void {
console.log("Resetting the UI components after locale change");
2022-12-15 12:00:58 +01:00
this.localizedComponents?.forEach((componentSetup) => {
if (typeof componentSetup === "function") {
componentSetup();
}
});
}
}