From: Ivan Kohler Date: Fri, 1 Feb 2013 05:26:53 +0000 (-0800) Subject: fix using the message catalog for en_us, RT#19907 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=a15834aba232f1b6239645053107766e30398c94 fix using the message catalog for en_us, RT#19907 --- diff --git a/FS/FS/L10N/en_us.pm b/FS/FS/L10N/en_us.pm index 6ad136be0..ed936a5d4 100644 --- a/FS/FS/L10N/en_us.pm +++ b/FS/FS/L10N/en_us.pm @@ -1,6 +1,8 @@ package FS::L10N::en_us; -use base qw(FS::L10N); +use base qw(FS::L10N::DBI); -our %Lexicon = ( _AUTO=>1 ); +#prevents english "translation" via FS::L10N::DBI, FS::Msgcat::_gettext already +# does the same sort of fallback +#our %Lexicon = ( _AUTO=>1 ); 1;