diff options
author | Joris | 2015-09-06 19:29:07 +0200 |
---|---|---|
committer | Joris | 2015-09-06 19:29:07 +0200 |
commit | dab9e42dae6e5287935e5dfc418fcb2adf036b9a (patch) | |
tree | 1caa783df89c38a3d527c259824da4709311620d /src/server | |
parent | 082faae086433440b76c533d1a5afd22e7baafe1 (diff) |
Showing the total amount of monthly payments
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/Model/Message/Translations.hs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/server/Model/Message/Translations.hs b/src/server/Model/Message/Translations.hs index 501f00f..0a1226a 100644 --- a/src/server/Model/Message/Translations.hs +++ b/src/server/Model/Message/Translations.hs @@ -216,6 +216,10 @@ m l SingularMonthlyCount = French -> "Vous avez {1} paiement mensuel." m l PluralMonthlyCount = - case l of - English -> "You have {1} monthly payments." - French -> "Vous avez {1} paiements mensuels." + T.concat + [ case l of + English -> "You have {1} monthly payments with a total of {2} " + French -> "Vous avez {1} paiements mensuels d'une valeur totale de {2} " + , m l MoneySymbol + , "." + ] |