diff --git a/app/views/stats/index.html.haml b/app/views/stats/index.html.haml
index 42d6ea90c..9eef92610 100644
--- a/app/views/stats/index.html.haml
+++ b/app/views/stats/index.html.haml
@@ -43,11 +43,11 @@
.stat-card.stat-card-half.big-number-card.pull-left
%span.big-number-card-title TOTAL DÉMARCHES DÉMATÉRIALISÉES
%span.big-number-card-number
- = @procedures_count
+ = number_with_delimiter(@procedures_count, :locale => :fr)
.stat-card.stat-card-half.big-number-card.pull-left
%span.big-number-card-title TOTAL DOSSIERS DÉPOSÉS
%span.big-number-card-number
- = @dossiers_count
+ = number_with_delimiter(@dossiers_count, :locale => :fr)
.clearfix
diff --git a/config/locales/fr.yml b/config/locales/fr.yml
index 5f8a4ad9e..1a47bd2a1 100644
--- a/config/locales/fr.yml
+++ b/config/locales/fr.yml
@@ -37,13 +37,53 @@ fr:
first: Premier
number:
- currency:
- format:
- unit: '€'
- delimiter: ' '
- separator: ','
- precision: 2
- format: '%n %u'
+ currency:
+ format:
+ delimiter: " "
+ format: "%n %u"
+ precision: 2
+ separator: ","
+ significant: false
+ strip_insignificant_zeros: false
+ unit: "€"
+ format:
+ delimiter: " "
+ precision: 3
+ separator: ","
+ significant: false
+ strip_insignificant_zeros: false
+ human:
+ decimal_units:
+ format: "%n %u"
+ units:
+ billion: milliard
+ million: million
+ quadrillion: million de milliards
+ thousand: millier
+ trillion: billion
+ unit: ''
+ format:
+ delimiter: ''
+ precision: 3
+ significant: true
+ strip_insignificant_zeros: true
+ storage_units:
+ format: "%n %u"
+ units:
+ byte:
+ one: octet
+ other: octets
+ gb: Go
+ kb: ko
+ mb: Mo
+ tb: To
+ percentage:
+ format:
+ delimiter: ''
+ format: "%n%"
+ precision:
+ format:
+ delimiter: ''
activerecord:
errors:
models: