Add wizard_js to translations that can be overridden from a plugin

This commit is contained in:
Angus McLeod 2018-04-05 16:52:17 +10:00 committed by Gerhard Schlager
parent a2b9a55036
commit fa7ddf7238
1 changed files with 3 additions and 1 deletions

View File

@ -47,7 +47,8 @@ module JsLocaleHelper
translations = {
locale_str => {
'js' => {},
'admin_js' => {}
'admin_js' => {},
'wizard_js' => {}
}
}
end
@ -56,6 +57,7 @@ module JsLocaleHelper
if translations[locale_str] && plugin_translations(locale_str)
translations[locale_str]['js'].deep_merge!(plugin_translations(locale_str)['js']) if plugin_translations(locale_str)['js']
translations[locale_str]['admin_js'].deep_merge!(plugin_translations(locale_str)['admin_js']) if plugin_translations(locale_str)['admin_js']
translations[locale_str]['wizard_js'].deep_merge!(plugin_translations(locale_str)['wizard_js']) if plugin_translations(locale_str)['wizard_js']
end
translations