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-hk
tozh-tw
so that I only need to keepzh-tw
ingetTranslations
?API
The API also returned the localized value based on the language parameters. Therefore I would like to convert
zh-hk
andzh-tw
intozh-hant
required 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-hk
tozh-tw
so that I could translatezh-tw
intozh-hant
in the API code?