Hi community,
I’ve noticed a translation issue with the openStatus
formatter. When applying this formatter in a non-English experience, one of the text strings within the formatter is not translated:
When an entity is currently closed but opens later today, “opens at” still appears in English.
The openStatus
formatter pulls from this file: themes > answers-hitchhiker-theme > static > hours > open-status > messagefactory.js
. While most of the strings are translated, OpenStatusStrings.OPENS_AT
is missing the getTranslation
call.
Until this is fixed in a future release, you can add the missing translator yourself. I recommend overriding the file by clicking Jambo Commands > Override Theme > messagefactory.js
.
Next, add the missing translator. Your code should look like this:
</span> · ${this._localizer.getTranslation(OpenStatusStrings.OPENS_AT)} <span class="HoursInterval-time Hours-opensAtTime">
Best,
Max