Reorganize messages to reflect page structure

This commit is contained in:
Eike Kettner
2021-04-10 00:30:42 +02:00
parent fa2c5750dd
commit 7c43fa0874
165 changed files with 585 additions and 586 deletions

View File

@ -0,0 +1,51 @@
module Messages.Page.Queue exposing (..)
import Messages.Basics
type alias Texts =
{ basics : Messages.Basics.Texts
, currentlyRunning : String
, queue : String
, waiting : String
, errored : String
, success : String
, noJobsRunning : String
, noJobsDisplay : String
, noJobsWaiting : String
, noJobsFailed : String
, noJobsSuccess : String
, deleteThisJob : String
, showLog : String
, remove : String
, retries : String
, changePriority : String
, prio : String
}
gb : Texts
gb =
{ basics = Messages.Basics.gb
, currentlyRunning = "Currently Running"
, queue = "Queue"
, waiting = "Waiting"
, errored = "Errored"
, success = "Success"
, noJobsRunning = "No jobs currently running."
, noJobsDisplay = "No jobs to display."
, noJobsWaiting = "No waiting jobs."
, noJobsFailed = "No failed jobs to display."
, noJobsSuccess = "No succesfull jobs to display."
, deleteThisJob = "Cancel/Delete this job?"
, showLog = "Show log"
, remove = "Remove"
, retries = "Retries"
, changePriority = "Change priority of this job"
, prio = "Prio"
}
de : Texts
de =
gb