2016-05-11 12:38:41 +02:00
|
|
|
/* Magic Mirror
|
|
|
|
* Translation Definition
|
|
|
|
*
|
|
|
|
* By Michael Teeuw http://michaelteeuw.nl
|
|
|
|
* 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
|
|
|
|
"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
|
2016-07-25 16:11:01 -03:00
|
|
|
"pt_br" : "translations/pt_br.json", // Português Brasileiro
|
2016-06-04 21:36:03 +02:00
|
|
|
"sv" : "translations/sv.json", // Svenska
|
|
|
|
"it" : "translations/it.json", // Italian
|
2016-06-07 21:51:35 +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
|
2016-07-25 16:11:01 -03:00
|
|
|
|
2016-05-11 12:38:41 +02:00
|
|
|
};
|