MagicMirror/translations/translations.js
2017-06-29 10:05:14 +03:00

40 lines
1.4 KiB
JavaScript

/* Magic Mirror
* Translation Definition
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var translations = {
"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
"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
"gr" : "translations/gr.json", // Greek
"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
"kr" : "translations/kr.json", // Korean
"ro" : "translations/ro.json", // Romanian
};
if (typeof module !== "undefined") {module.exports = translations;}