diff options
-rwxr-xr-x | LedgerSMB/Form.pm | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index ee1c42f9..a934440f 100755 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -3142,16 +3142,7 @@ sub text { sub findsub { my ($self, $text) = @_; - - if (exists $self{subs}{$text}) { - $text = $self{subs}{$text}; - } else { - if ($self->{countrycode} && $self->{NLS_file}) { - Form->error("$text not defined in locale/$self->{countrycode}/$self->{NLS_file}"); - } - } - - $text; + return $text; } |