2016-05-11 12:38:41 +02:00
|
|
|
/* Magic Mirror
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var translations = {
|
2016-06-04 21:36:03 +02:00
|
|
|
"en" : "translations/en.json", // English
|
|
|
|
"nl" : "translations/nl.json", // Dutch
|
|
|
|
"de" : "translations/de.json", // German
|
2016-09-30 20:44:53 +03:00
|
|
|
"fi" : "translations/fi.json", // Suomi
|
2016-06-04 21:36:03 +02:00
|
|
|
"fr" : "translations/fr.json", // French
|
|
|
|
"fy" : "translations/fy.json", // Frysk
|
|
|
|
"es" : "translations/es.json", // Spanish
|
2017-10-17 22:24:13 +02:00
|
|
|
"ca" : "translations/ca.json", // Catalan
|
2016-06-04 21:36:03 +02:00
|
|
|
"nb" : "translations/nb.json", // Norsk bokmål
|
|
|
|
"nn" : "translations/nn.json", // Norsk nynorsk
|
|
|
|
"pt" : "translations/pt.json", // Português
|
2018-06-27 14:09:02 +08:00
|
|
|
"pt-br" : "translations/pt-br.json", // Português Brasileiro
|
2016-06-04 21:36:03 +02:00
|
|
|
"sv" : "translations/sv.json", // Svenska
|
2017-03-17 22:36:09 -03:00
|
|
|
"id" : "translations/id.json", // Indonesian
|
2016-06-04 21:36:03 +02:00
|
|
|
"it" : "translations/it.json", // Italian
|
2018-06-27 14:09:02 +08:00
|
|
|
"zh-cn" : "translations/zh-cn.json", // Simplified Chinese
|
|
|
|
"zh-tw" : "translations/zh-tw.json", // Traditional Chinese
|
2016-06-07 22:23:17 +08:00
|
|
|
"ja" : "translations/ja.json", // Japanese
|
2016-06-09 13:56:41 +02:00
|
|
|
"pl" : "translations/pl.json", // Polish
|
2017-09-28 14:41:30 +02:00
|
|
|
"gr" : "translations/gr.json", // Greek
|
2016-09-24 10:57:02 +02:00
|
|
|
"da" : "translations/da.json", // Danish
|
2016-11-02 22:01:14 +00:00
|
|
|
"tr" : "translations/tr.json", // Turkish
|
2017-01-06 11:21:20 -08:00
|
|
|
"ru" : "translations/ru.json", // Russian
|
2017-01-04 16:26:49 +02:00
|
|
|
"af" : "translations/af.json", // Afrikaans
|
2017-01-24 08:59:37 +01:00
|
|
|
"hu" : "translations/hu.json", // Hungarian
|
|
|
|
"is" : "translations/is.json", // Icelandic
|
2017-02-05 05:12:31 +02:00
|
|
|
"et" : "translations/et.json", // Estonian
|
2017-02-09 17:54:47 +09:00
|
|
|
"kr" : "translations/kr.json", // Korean
|
2017-06-29 10:00:25 +03:00
|
|
|
"ro" : "translations/ro.json", // Romanian
|
2017-10-13 21:51:21 +03:00
|
|
|
"cy" : "translations/cy.json", // Welsh (Cymraeg)
|
2020-01-22 22:03:34 +02:00
|
|
|
"bg" : "translations/bg.json", // Bulgarian
|
|
|
|
"cs" : "translations/cs.json", // Czech
|
2019-02-23 10:37:24 +01:00
|
|
|
"hr" : "translations/hr.json", // Croatian
|
2020-01-22 22:03:34 +02:00
|
|
|
"sk" : "translations/sk.json", // Slovak
|
2019-08-06 08:36:39 +08:00
|
|
|
"tlh" : "translations/tlh.json", // Klingon
|
2020-01-22 22:03:34 +02:00
|
|
|
"ms-my" : "translations/ms-my.json", // Malay
|
2020-01-31 11:18:43 +02:00
|
|
|
"he" : "translations/he.json", // Hebrew
|
|
|
|
"uk" : "translations/uk.json" // Ukrainian
|
2017-01-24 08:59:37 +01:00
|
|
|
};
|
2017-01-25 21:00:06 +01:00
|
|
|
|
|
|
|
if (typeof module !== "undefined") {module.exports = translations;}
|
2017-09-28 14:41:30 +02:00
|
|
|
|