X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=rt%2Flib%2FRT%2FI18N%2Ffr.pm;h=d253cf3ebcf6aaf243fa899bd7e6756b89142cf0;hb=44dd00a3ff974a17999e86e64488e996edc71e3c;hp=2253768842b8f512dff16808c9191fe7dea011e8;hpb=73a6a80a9ca5edbd43d139b7cb25bfee4abfd35e;p=freeside.git diff --git a/rt/lib/RT/I18N/fr.pm b/rt/lib/RT/I18N/fr.pm index 225376884..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-2015 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();