Merge branch 'master' of vc.linet-services.de:public/lx-office-erp
[kivitendo-erp.git] / SL / Template / Plugin / LxERP.pm
index df6cb6a..40bf195 100644 (file)
@@ -42,6 +42,8 @@ sub format_amount_units {
 sub format_percent {
   my ($self, $var, $places, $skip_zero) = @_;
 
+  $places ||= 2;
+
   return $self->format_amount($var * 100, $places, $skip_zero);
 }
 
@@ -107,9 +109,8 @@ sub abs {
 }
 
 sub t8 {
-  my ($self, $text, $args) = @_;
-  $self->{locale} ||= Locale->new($::myconfig{countrycode}, 'all');
-  return $self->{locale}->text($text, @{ $args || [] });
+  my ($self, $text, @args) = @_;
+  return $::locale->text($text, @args) || $text;
 }
 
 1;