X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FI18N%2Fi_default.pm;h=23db4a251d0cbe5d867fd4018ba6f3e8c2ba4766;hb=7322f2afedcc2f427e997d1535a503613a83f088;hp=277ffbf04ebd56af7aabfed6949e85ef9a41f3c9;hpb=fc6209f398899f0211cfcedeb81a3cd65e04a941;p=freeside.git diff --git a/rt/lib/RT/I18N/i_default.pm b/rt/lib/RT/I18N/i_default.pm index 277ffbf04..23db4a251 100644 --- a/rt/lib/RT/I18N/i_default.pm +++ b/rt/lib/RT/I18N/i_default.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -46,14 +46,13 @@ # # END BPS TAGGED BLOCK }}} +use strict; +use warnings; + package RT::I18N::i_default; use base 'RT::I18N'; -use strict; -eval "require RT::I18N::i_default_Vendor"; -die $@ if ($@ && $@ !~ qr{^Can't locate RT/I18N/i_default_Vendor.pm}); -eval "require RT::I18N::i_default_Local"; -die $@ if ($@ && $@ !~ qr{^Can't locate RT/I18N/i_default_Local.pm}); +RT::Base->_ImportOverlays(); 1;