rt 4.0.23
[freeside.git] / rt / lib / RT / I18N / fr.pm
index 23b047a..2253768 100644 (file)
@@ -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)
@@ -48,7 +48,6 @@
 
 use strict;
 use warnings;
-use utf8;
 
 package RT::I18N::fr;
 use base 'RT::I18N';
@@ -59,8 +58,8 @@ use warnings;
 sub numf {
        my ($handle, $num) = @_[0,1];
        my $fr_num = $handle->SUPER::numf($num);
-       # French prefer to print 1000 as 1 000 rather than 1,000
-       $fr_num =~ tr<.,><, >;
+       # French prefer to print 1000 as 1(nbsp)000 rather than 1,000
+       $fr_num =~ tr<.,><,\x{A0}>;
        return $fr_num;
 }