X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FI18N%2Ffr.pm;h=d253cf3ebcf6aaf243fa899bd7e6756b89142cf0;hb=44dd00a3ff974a17999e86e64488e996edc71e3c;hp=904b84199c8db35a90ed9c60072bdb04f0e53667;hpb=4e7efe58f1a20dfc4fd306fad2c14c8040585be1;p=freeside.git diff --git a/rt/lib/RT/I18N/fr.pm b/rt/lib/RT/I18N/fr.pm index 904b84199..d253cf3eb 100644 --- a/rt/lib/RT/I18N/fr.pm +++ b/rt/lib/RT/I18N/fr.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2019 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -56,11 +56,11 @@ use strict; use warnings; sub numf { - my ($handle, $num) = @_[0,1]; - my $fr_num = $handle->SUPER::numf($num); - # French prefer to print 1000 as 1(nbsp)000 rather than 1,000 - $fr_num =~ tr<.,><,\x{A0}>; - return $fr_num; + my ($handle, $num) = @_[0,1]; + my $fr_num = $handle->SUPER::numf($num); + # French prefer to print 1000 as 1(nbsp)000 rather than 1,000 + $fr_num =~ tr<.,><,\x{A0}>; + return $fr_num; } RT::Base->_ImportOverlays();