Skip to content
Snippets Groups Projects
Commit 662f7e5b authored by Baptiste Lemoine's avatar Baptiste Lemoine
Browse files

:bug: fix appearance of monetary mass on overview, add number separators

parent 1e401240
Branches
No related tags found
1 merge request!28Traduction Française de duniter-ui
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
.card-content .card-content
i.fa.fa-chain.fa-5x i.fa.fa-chain.fa-5x
.card-title .card-title
span {{ current_number }} span {{ current_number | number:0}}
.card-action .card-action
p {{ 'home.current.number' | translate }} p {{ 'home.current.number' | translate }}
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
.card-content .card-content
i.fa.fa-users.fa-5x i.fa.fa-users.fa-5x
.card-title .card-title
span {{ current_membersCount }} span {{ current_membersCount | number:0 }}
.card-action .card-action
p {{ 'home.current.membersCount' | translate }} p {{ 'home.current.membersCount' | translate }}
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
.card-content .card-content
i.fa.fa-graduation-cap.fa-5x i.fa.fa-graduation-cap.fa-5x
.card-title .card-title
span {{ current_powMin }} span {{ current_powMin | number:0}}
.card-action .card-action
p {{ 'home.current.powMin' | translate }} p {{ 'home.current.powMin' | translate }}
...@@ -105,7 +105,8 @@ ...@@ -105,7 +105,8 @@
.card-content .card-content
i.fa.fa-money.fa-5x i.fa.fa-money.fa-5x
.card-title .card-title
span {{ monetaryMass }} UD span {{ (monetaryMass / 1000 ) | number:0:'fr-FR' }}
span(title="'home.current.mmass_kud' | translate ") kUD
.card-action .card-action
p {{ 'home.current.mmass' | translate }} p {{ 'home.current.mmass' | translate }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment