Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

translations.js 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* Magic Mirror
  2. * Translation Definition
  3. *
  4. * By Michael Teeuw https://michaelteeuw.nl
  5. * MIT Licensed.
  6. */
  7. let translations = {
  8. en: "translations/en.json", // English
  9. nl: "translations/nl.json", // Dutch
  10. de: "translations/de.json", // German
  11. fi: "translations/fi.json", // Suomi
  12. fr: "translations/fr.json", // French
  13. fy: "translations/fy.json", // Frysk
  14. es: "translations/es.json", // Spanish
  15. ca: "translations/ca.json", // Catalan
  16. cv: "translations/cv.json", // Chuvash
  17. nb: "translations/nb.json", // Norsk bokmål
  18. nn: "translations/nn.json", // Norsk nynorsk
  19. pt: "translations/pt.json", // Português
  20. "pt-br": "translations/pt-br.json", // Português Brasileiro
  21. sv: "translations/sv.json", // Svenska
  22. id: "translations/id.json", // Indonesian
  23. it: "translations/it.json", // Italian
  24. "zh-cn": "translations/zh-cn.json", // Simplified Chinese
  25. "zh-tw": "translations/zh-tw.json", // Traditional Chinese
  26. ja: "translations/ja.json", // Japanese
  27. pl: "translations/pl.json", // Polish
  28. el: "translations/el.json", // Greek
  29. da: "translations/da.json", // Danish
  30. tr: "translations/tr.json", // Turkish
  31. ru: "translations/ru.json", // Russian
  32. af: "translations/af.json", // Afrikaans
  33. hu: "translations/hu.json", // Hungarian
  34. is: "translations/is.json", // Icelandic
  35. et: "translations/et.json", // Estonian
  36. kr: "translations/kr.json", // Korean
  37. ro: "translations/ro.json", // Romanian
  38. cy: "translations/cy.json", // Welsh (Cymraeg)
  39. bg: "translations/bg.json", // Bulgarian
  40. cs: "translations/cs.json", // Czech
  41. hr: "translations/hr.json", // Croatian
  42. sk: "translations/sk.json", // Slovak
  43. tlh: "translations/tlh.json", // Klingon
  44. "ms-my": "translations/ms-my.json", // Malay
  45. he: "translations/he.json", // Hebrew
  46. uk: "translations/uk.json", // Ukrainian
  47. hi: "translations/hi.json", // Hindi
  48. gu: "translations/gu.json", // Gujarati
  49. gl: "translations/gl.json" // Galego
  50. };
  51. if (typeof module !== "undefined") {
  52. module.exports = translations;
  53. }