summaryrefslogtreecommitdiff
path: root/FS/FS/L10N
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-01-31 21:26:53 -0800
committerIvan Kohler <ivan@freeside.biz>2013-01-31 21:26:53 -0800
commita15834aba232f1b6239645053107766e30398c94 (patch)
tree5b9782d8a1769de8ea0d3bbb573e802db8f1340f /FS/FS/L10N
parent61097b876e692dbf5571a17b9aa415949607085f (diff)
fix using the message catalog for en_us, RT#19907
Diffstat (limited to 'FS/FS/L10N')
-rw-r--r--FS/FS/L10N/en_us.pm6
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;