diff --git a/src/i18n/fr_FR.json b/src/i18n/fr_FR.json index c3a8bfe43..15639dc53 100644 --- a/src/i18n/fr_FR.json +++ b/src/i18n/fr_FR.json @@ -70,6 +70,7 @@ "Activate notifications": "Activer les notifications", "Activated": "Activé", "Active": "Actif·ive", + "Activities are disabled on this instance.|An event with a duration of more than one day will be categorized as an activity.|An event with a duration of more than {number} days will be categorized as an activity.": "Les activités sont désactivées sur cette instance.|Un événement avec une durée de plus d'un jour sera considéré comme une activité.|Un événement avec une durée de plus de {number} jours sera considéré comme une activité.", "Activity": "Activité", "Actor": "Acteur", "Adapt to system theme": "S’adapter au thème du système", diff --git a/src/views/Event/EditView.vue b/src/views/Event/EditView.vue index d46e36961..53aced04a 100644 --- a/src/views/Event/EditView.vue +++ b/src/views/Event/EditView.vue @@ -99,6 +99,21 @@ +
+ {{ + t( + "Activities are disabled on this instance.|An event with a duration of more than one day will be categorized as an activity.|An event with a duration of more than {number} days will be categorized as an activity.", + { number: configResult.config.durationOfLongEvent }, + configResult.config.durationOfLongEvent + ) + }} +
+