A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
How to support multiple translations in different UI and API?
-
My modules would like to support multiple languages (e.g. zh-hk and zh-tw). But actually both language uses the same set of language (Traditional Chinese).
UI
I could support both language in the following function:
getTranslations: function () { return { ... "zh-hk": "translations/zh-tw.json" "zh-tw": "translations/zh-tw.json" };Is it possible that I could pre-map
zh-hktozh-twso that I only need to keepzh-twingetTranslations?API
The API also returned the localized value based on the language parameters. Therefore I would like to convert
zh-hkandzh-twintozh-hantrequired by the API (in two different lines). Currently I am doing the conversion in a hard-code way. Is it possible that I could pre-mapzh-hktozh-twso that I could translatezh-twintozh-hantin the API code?
