Without the _decode pragma, Locale::Maketext::Lexixcon did not
understand that it was being handed Unicode and generated some funky
output in the TPAC templates.
Signed-off-by: Dan Scott <dscott@laurentian.ca>
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous@esilibrary.com>
package OpenILS::WWW::EGWeb::I18N::$tag;
use base 'OpenILS::WWW::EGWeb::I18N$parent_tag';
if(\$messages) {
+ use Locale::Maketext::Lexicon {
+ _decode => 1
+ };
use Locale::Maketext::Lexicon::Gettext;
if(open F, '$messages') {
our %Lexicon = (%Lexicon, %{ Locale::Maketext::Lexicon::Gettext->parse(<F>) });