MagicMirror² v2.24.0 is available! For more information about this release, check out this topic.
Forcing language translations in module
-
How do I go about forcing translations in a module?
I want my configuration option to overwrite the main config language setting, how do I do that in the code? I have included translation json files in the module and include them using
getTranslations: function() { return { en: "translations/en.json", sv: "translations/sv.json" } },
and then use
this.translate('word')
I guess this is really simple, but I’m lost