Revision 49b7cab6
Von Sven Schöling vor mehr als 14 Jahren hinzugefügt
SL/Template/Plugin/LxERP.pm | ||
---|---|---|
109 | 109 |
sub t8 { |
110 | 110 |
my ($self, $text, $args) = @_; |
111 | 111 |
$self->{locale} ||= Locale->new($::myconfig{countrycode}, 'all'); |
112 |
return $self->{locale}->text($text, @{ $args || [] });
|
|
112 |
return $self->{locale}->text($text, @args) || $text;
|
|
113 | 113 |
} |
114 | 114 |
|
115 | 115 |
1; |
SL/Template/Plugin/T8.pm | ||
---|---|---|
18 | 18 |
|
19 | 19 |
sub filter { |
20 | 20 |
my ($self, $text, $args) = @_; |
21 |
return $locale->text($text, @{ $args || [] }); |
|
21 |
return $locale->text($text, @{ $args || [] }) || $text;
|
|
22 | 22 |
} |
23 | 23 |
|
24 | 24 |
return 'SL::Template::Plugin::T8'; |
Auch abrufbar als: Unified diff
Bei fehlender Übersetzung nicht übersetzten Begriff zurückggeben.
Conflicts: