rt 4.2.16
[freeside.git] / rt / lib / RT / I18N / fr.pm
index 2253768..d253cf3 100644 (file)
@@ -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
 #                                          <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();