This commit is contained in:
Jimmy Girardet 2022-03-06 00:06:24 +01:00
parent adb723ee03
commit 28eb1f0060
2 changed files with 29 additions and 1 deletions

View File

@ -164,7 +164,7 @@ fr tz =
, newInvite = Messages.Page.NewInvite.fr
, upload = Messages.Page.Upload.fr
, itemDetail = Messages.Page.ItemDetail.fr tz
, queue = Messages.Page.Queue.gb tz
, queue = Messages.Page.Queue.fr tz
, userSettings = Messages.Page.UserSettings.gb tz
, manageData = Messages.Page.ManageData.gb tz
, search = Messages.Page.Search.gb tz

View File

@ -9,6 +9,7 @@ module Messages.Page.Queue exposing
( Texts
, de
, gb
, fr
)
import Data.TimeZone exposing (TimeZone)
@ -97,3 +98,30 @@ de tz =
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.German tz
, sidebarTitle = "Verarbeitung"
}
fr : TimeZone -> Texts
fr tz =
{ basics = Messages.Basics.fr
, httpError = Messages.Comp.HttpError.fr
, currentlyRunning = "En cours d'exécution"
, queue = "Tâches"
, waiting = "En attente"
, errored = "En échec"
, success = "Complétées"
, cancelled = "Annulées"
, noJobsRunning = "Aucune tâche en cours d'exécution."
, noJobsDisplay = "Aucune tâche à afficher."
, noJobsWaiting = "Aucune tâche en attente."
, noJobsFailed = "Aucune tâche échouée à afficher."
, noJobsSuccess = "Aucune tâche complétée à afficher."
, noJobsCancelled = "Aucune tâche annulée à afficher.."
, deleteThisJob = "Annuler/Supprimer cette tâche ?"
, showLog = "Afficher le journal"
, remove = "Supprimer"
, retries = "Réessais"
, changePriority = "Changer la priorité de cette tâche."
, prio = "Prio"
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.French tz
, sidebarTitle = "En cours"
}