mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
d4250918cf
* fix fallback for pluralized cases Signed-off-by: Kerry Archibald <kerrya@element.io> * add test case for no pluralizer Signed-off-by: Kerry Archibald <kerrya@element.io>
40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
const en = require("../src/i18n/strings/en_EN");
|
|
const de = require("../src/i18n/strings/de_DE");
|
|
const lv = {
|
|
"Save": "Saglabāt",
|
|
"Uploading %(filename)s and %(count)s others|one": "Качване на %(filename)s и %(count)s друг",
|
|
};
|
|
|
|
// Mock the browser-request for the languageHandler tests to return
|
|
// 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
|
|
module.exports = jest.fn((opts, cb) => {
|
|
const url = opts.url || opts.uri;
|
|
if (url && url.endsWith("languages.json")) {
|
|
cb(undefined, {status: 200}, JSON.stringify({
|
|
"en": {
|
|
"fileName": "en_EN.json",
|
|
"label": "English",
|
|
},
|
|
"de": {
|
|
"fileName": "de_DE.json",
|
|
"label": "German",
|
|
},
|
|
"lv": {
|
|
"fileName": "lv.json",
|
|
"label": "Latvian"
|
|
}
|
|
}));
|
|
} else if (url && url.endsWith("en_EN.json")) {
|
|
cb(undefined, {status: 200}, JSON.stringify(en));
|
|
} else if (url && url.endsWith("de_DE.json")) {
|
|
cb(undefined, {status: 200}, JSON.stringify(de));
|
|
} else if (url && url.endsWith("lv.json")) {
|
|
cb(undefined, {status: 200}, JSON.stringify(lv));
|
|
} else {
|
|
cb(true, {status: 404}, "");
|
|
}
|
|
});
|