diff options
Diffstat (limited to 'rt/lib/RT/I18N/fr.pm')
| -rw-r--r-- | rt/lib/RT/I18N/fr.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rt/lib/RT/I18N/fr.pm b/rt/lib/RT/I18N/fr.pm index 904b84199..cd1273d7a 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-2015 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (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(); |
