diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2013-01-31 21:26:55 -0800 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2013-01-31 21:26:55 -0800 |
| commit | f7b496e18b998a6eae027e56dc4943d0d6cc9c4b (patch) | |
| tree | 004efb0ca1437cbeb0577619d1b7dfaeb0ed386a | |
| parent | db81b071af31d803a7707376d06f6b1c6c674bd9 (diff) | |
fix using the message catalog for en_us, RT#19907
| -rw-r--r-- | FS/FS/L10N/en_us.pm | 6 |
1 files changed, 4 insertions, 2 deletions
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; |
