Bug 24661: Fix inclusion of locale-related javascript files
authorJulian Maurice <julian.maurice@biblibre.com>
Fri, 14 Feb 2020 08:46:01 +0000 (09:46 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 14 Feb 2020 11:55:16 +0000 (11:55 +0000)
2 js files (Gettext.js, i18n.js) + 1 generated js file (locale_data.js)
were added by bug 21156. Their URL are broken and the files are not loaded.

Use Template::Toolkit plugin Asset to include these files, and exclude
locale_data.js when language is english, because obviously translations
are not needed in this case.

Test plan:
1. Just make sure the files mentioned above are loaded correctly when in
   English and in other languages as well

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc

index 45bd999..1ad6197 100644 (file)
 var Koha = {};
 </script>
 
-<script src="[% themelang | url %]/js/locale_data.js"></script>
-<script src="[% interface | url %]/js/Gettext.js"></script>
-<script src="[% interface | url %]/js/i18n.js"></script>
+[% IF lang != 'en' %]
+    [% Asset.js(lang _ '/js/locale_data.js') | $raw %]
+[% END %]
+[% Asset.js('js/Gettext.js') | $raw %]
+[% Asset.js('js/i18n.js') | $raw %]
 
 [% IF ( login ) %]
     [% Asset.css("css/login.css") | $raw %]