This commit is contained in:
Jimmy Girardet
2022-03-08 15:13:29 +01:00
parent 79e9afc76e
commit 7186df2e60
5 changed files with 94 additions and 0 deletions

View File

@ -9,6 +9,7 @@ module Messages.Comp.NotificationHookManage exposing
( Texts
, de
, gb
, fr
)
import Http
@ -82,3 +83,24 @@ de =
, updateWebhook = "Webhook aktualisieren"
, addWebhook = "Neuen Webhook hinzufügen"
}
fr : Texts
fr =
{ basics = Messages.Basics.fr
, notificationForm = Messages.Comp.NotificationHookForm.fr
, notificationTable = Messages.Comp.NotificationHookTable.fr
, httpError = Messages.Comp.HttpError.fr
, channelType = Messages.Data.ChannelType.fr
, newHook = "Nouveau webhook"
, httpRequest = "Requête HTTP"
, hookCreated = "Webhook créé"
, hookUpdated = "Webhook mis à jour"
, hookStarted = "Webhook démarré"
, hookDeleted = "Webhook supprimé"
, deleteThisHook = "Supprimer ce webhook"
, reallyDeleteHook = "Confirmer la suppression de ce webhook ?"
, formInvalid = "Veuillez remplir tous les champs requis"
, invalidJsonFilter = \m -> "Filtre d'événement invalide " ++ m
, updateWebhook = "Mettre à jour le webhook"
, addWebhook = "Ajouter un webhook"
}