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

View File

@ -47,7 +47,8 @@ module JsLocaleHelper
translations = { translations = {
locale_str => { locale_str => {
'js' => {}, 'js' => {},
'admin_js' => {} 'admin_js' => {},
'wizard_js' => {}
} }
} }
end end
@ -56,6 +57,7 @@ module JsLocaleHelper
if translations[locale_str] && plugin_translations(locale_str) 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]['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]['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 end
translations translations