X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FI18N%2Ffr.pm;h=f9eb7470cfa8fc5b8d39561598fcf1399d744822;hb=0c9802e5aeff0c80059db9f14135cf4826bf500b;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..f9eb7470c 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-2017 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();