X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/Locale/String.pm diff --git a/SL/Locale/String.pm b/SL/Locale/String.pm index 63a53231b..722974393 100644 --- a/SL/Locale/String.pm +++ b/SL/Locale/String.pm @@ -13,7 +13,8 @@ our @EXPORT = qw(t8); use overload '""' => \&translated, - eq => \&my_eq; + eq => \&my_eq, + ne => \&my_ne; sub translated { my ($self) = @_; @@ -31,6 +32,10 @@ sub my_eq { $_[1] eq $_[0]->translated; } +sub my_ne { + $_[1] ne $_[0]->translated; +} + sub TO_JSON { return $_[0]->translated; }