2022-01-26 23:09:26 +01:00
|
|
|
/* MagicMirror²
|
2016-05-11 12:38:41 +02:00
|
|
|
* Translation Definition
|
|
|
|
*
|
2020-04-28 23:05:28 +02:00
|
|
|
* By Michael Teeuw https://michaelteeuw.nl
|
2016-05-11 12:38:41 +02:00
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
|
|
|
|
2021-07-14 15:06:23 +02:00
|
|
|
let translations = {
|
2020-05-11 22:22:32 +02:00
|
|
|
en: "translations/en.json", // English
|
|
|
|
nl: "translations/nl.json", // Dutch
|
|
|
|
de: "translations/de.json", // German
|
|
|
|
fi: "translations/fi.json", // Suomi
|
|
|
|
fr: "translations/fr.json", // French
|
|
|
|
fy: "translations/fy.json", // Frysk
|
|
|
|
es: "translations/es.json", // Spanish
|
|
|
|
ca: "translations/ca.json", // Catalan
|
2020-11-08 23:13:28 +01:00
|
|
|
cv: "translations/cv.json", // Chuvash
|
2020-05-11 22:22:32 +02:00
|
|
|
nb: "translations/nb.json", // Norsk bokmål
|
|
|
|
nn: "translations/nn.json", // Norsk nynorsk
|
|
|
|
pt: "translations/pt.json", // Português
|
|
|
|
"pt-br": "translations/pt-br.json", // Português Brasileiro
|
|
|
|
sv: "translations/sv.json", // Svenska
|
|
|
|
id: "translations/id.json", // Indonesian
|
|
|
|
it: "translations/it.json", // Italian
|
|
|
|
"zh-cn": "translations/zh-cn.json", // Simplified Chinese
|
|
|
|
"zh-tw": "translations/zh-tw.json", // Traditional Chinese
|
|
|
|
ja: "translations/ja.json", // Japanese
|
|
|
|
pl: "translations/pl.json", // Polish
|
2020-10-15 09:26:56 +02:00
|
|
|
el: "translations/el.json", // Greek
|
2020-05-11 22:22:32 +02:00
|
|
|
da: "translations/da.json", // Danish
|
|
|
|
tr: "translations/tr.json", // Turkish
|
|
|
|
ru: "translations/ru.json", // Russian
|
|
|
|
af: "translations/af.json", // Afrikaans
|
|
|
|
hu: "translations/hu.json", // Hungarian
|
|
|
|
is: "translations/is.json", // Icelandic
|
|
|
|
et: "translations/et.json", // Estonian
|
2021-10-06 15:42:01 +02:00
|
|
|
ko: "translations/ko.json", // Korean
|
2020-05-11 22:22:32 +02:00
|
|
|
ro: "translations/ro.json", // Romanian
|
|
|
|
cy: "translations/cy.json", // Welsh (Cymraeg)
|
|
|
|
bg: "translations/bg.json", // Bulgarian
|
|
|
|
cs: "translations/cs.json", // Czech
|
|
|
|
hr: "translations/hr.json", // Croatian
|
|
|
|
sk: "translations/sk.json", // Slovak
|
|
|
|
tlh: "translations/tlh.json", // Klingon
|
|
|
|
"ms-my": "translations/ms-my.json", // Malay
|
|
|
|
he: "translations/he.json", // Hebrew
|
2020-11-11 16:01:03 +01:00
|
|
|
uk: "translations/uk.json", // Ukrainian
|
|
|
|
hi: "translations/hi.json", // Hindi
|
2021-03-21 22:59:13 +01:00
|
|
|
gu: "translations/gu.json", // Gujarati
|
2021-12-03 17:28:59 +02:00
|
|
|
gl: "translations/gl.json", // Galego
|
|
|
|
lt: "translations/lt.json" // Lithuanian
|
2017-01-24 08:59:37 +01:00
|
|
|
};
|
2017-01-25 21:00:06 +01:00
|
|
|
|
2020-05-11 22:22:32 +02:00
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = translations;
|
|
|
|
}
|