diff --git a/webapp/plugins/i18n.js b/webapp/plugins/i18n.js index 7af8c292a..63e051b8e 100644 --- a/webapp/plugins/i18n.js +++ b/webapp/plugins/i18n.js @@ -44,7 +44,9 @@ export default ({ app, req, cookie, store }) => { }) if (!app.$i18n.localeExists(localeInStore)) { import(`~/locales/${localeInStore}.json`).then((res) => { - app.$i18n.add(localeInStore, res.default) + const translation = res.default + translation.html = htmlTranslations[localeInStore] + app.$i18n.add(localeInStore, translation) }) }