mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
Reorganize messages to reflect page structure
This commit is contained in:
51
modules/webapp/src/main/elm/Messages/Page/Queue.elm
Normal file
51
modules/webapp/src/main/elm/Messages/Page/Queue.elm
Normal 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
|
Reference in New Issue
Block a user