mirror of
https://github.com/vector-im/element-web.git
synced 2026-01-15 13:31:12 +01:00
* Split translations between EW and shared components Uses update module API with global TranslationKey type that can be overridden. WIP. * Removed the wrong script (for now) * Add the type files * Add shared components i18n file * More i18n strings * Add i18n check for shared conmponents * Needs a different name * rerun i18n for merge from develop, fix test * Move translated strings to shared components file NB. there are lots of removed strings for a few languages where we seem to have hit a localazy bug or something where the key/value for plurals got switched, making the translations invalid. They've been missing for a while so I'm removing them rather than trying to restore them, * Add shared components files to localazy * Merge element web & shared component translations for the built app * Use right translations for shared component tests and fix missign en_EN strings * Pull shared components translations too * Fix/disable warnings * We can now remove the build:res call ...right? (right?) * Remove webpack import for languages index ..and just load it using a relative path which we do for the individual language files and also did anyway for the index because even in non-test it was an object, not a string, so we always usesd the 'test' code path. * Make the storybook language selector work ...without referring to the parent app's files * Revert unnecessary yarn lock change * Typo Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> * Add comment on why we use merge * Fix localazy download config to actually put the translations in the right place * Better typescript syntax Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> * Watch both translations files --------- Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import fetchMock from "fetch-mock-jest";
|
|
import { ModuleLoader } from "@element-hq/element-web-module-api";
|
|
import { merge } from "lodash";
|
|
|
|
import * as languageHandler from "../../src/languageHandler";
|
|
import enElementWeb from "../../src/i18n/strings/en_EN.json";
|
|
import deElementWeb from "../../src/i18n/strings/de_DE.json";
|
|
// Cheat and import relatively here as these aren't exported by the module (should they be?)
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import enSharedComponents from "../../packages/shared-components/src/i18n/strings/en_EN.json";
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import deSharedComponents from "../../packages/shared-components/src/i18n/strings/de_DE.json";
|
|
import { ModuleApi } from "../../src/modules/Api";
|
|
|
|
const lv = {
|
|
Save: "Saglabāt",
|
|
room: {
|
|
upload: {
|
|
uploading_multiple_file: {
|
|
one: "Качване на %(filename)s и %(count)s друг",
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
// Fake languages.json containing references to en_EN, de_DE and lv
|
|
// en_EN.json
|
|
// de_DE.json
|
|
// lv.json - mock version with few translations, used to test fallback translation
|
|
|
|
export function setupLanguageMock() {
|
|
// Pull the translations from shared components too as they have
|
|
// the strings for things like `humanizeTime` which do appear in
|
|
// snapshots (needs 'merge' which does a deep-merge rather than just
|
|
// replacing top-level keys).
|
|
const enTranslations = merge(enElementWeb, enSharedComponents);
|
|
const deTranslations = merge(deElementWeb, deSharedComponents);
|
|
|
|
fetchMock
|
|
.get("/i18n/languages.json", {
|
|
en: "en_EN.json",
|
|
de: "de_DE.json",
|
|
lv: "lv.json",
|
|
})
|
|
.get("end:en_EN.json", enTranslations)
|
|
.get("end:de_DE.json", deTranslations)
|
|
.get("end:lv.json", lv);
|
|
}
|
|
setupLanguageMock();
|
|
|
|
languageHandler.setLanguage("en");
|
|
languageHandler.setMissingEntryGenerator((key) => key.split("|", 2)[1]);
|
|
|
|
// Set up the mdule API (so the i18n API exists)
|
|
const moduleLoader = new ModuleLoader(ModuleApi.instance);
|
|
window.mxModuleLoader = moduleLoader;
|