aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/Model/Message/Translations.hs14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/server/Model/Message/Translations.hs b/src/server/Model/Message/Translations.hs
index 0a1226a..a3603b8 100644
--- a/src/server/Model/Message/Translations.hs
+++ b/src/server/Model/Message/Translations.hs
@@ -211,15 +211,19 @@ m l Monthly =
French -> "Mensuel"
m l SingularMonthlyCount =
- case l of
- English -> "You have {1} monthly payment."
- French -> "Vous avez {1} paiement mensuel."
+ T.concat
+ [ case l of
+ English -> "{1} monthly payment of {2} "
+ French -> "{1} paiement mensuel de {2} "
+ , m l MoneySymbol
+ , "."
+ ]
m l PluralMonthlyCount =
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} "
+ English -> "{1} monthly payments totalling {2} "
+ French -> "{1} paiements mensuels comptabilisant {2} "
, m l MoneySymbol
, "."
]