From 9c771e193e90d422317e91062008be07697e81b4 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Tue, 10 Oct 2023 10:22:22 +0100 Subject: [PATCH] lang: fix typo in french `{n]` instead of `{n}` meant expiry times on the user page weren't being rendered. --- lang/common/fr-fr.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lang/common/fr-fr.json b/lang/common/fr-fr.json index e3a06c5..e3aeace 100644 --- a/lang/common/fr-fr.json +++ b/lang/common/fr-fr.json @@ -52,16 +52,16 @@ }, "quantityStrings": { "year": { - "plural": "{n] années", - "singular": "{n] année" + "plural": "{n} années", + "singular": "{n} année" }, "day": { - "singular": "{n] jour", - "plural": "{n] jours" + "singular": "{n} jour", + "plural": "{n} jours" }, "month": { - "singular": "{n] mois", - "plural": "{n] mois" + "singular": "{n} mois", + "plural": "{n} mois" } } }