mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-07 23:55:28 +00:00
56 lines
1.4 KiB
Elm
56 lines
1.4 KiB
Elm
module Messages.Comp.ScanMailboxManage exposing
|
|
( Texts
|
|
, de
|
|
, gb
|
|
)
|
|
|
|
import Http
|
|
import Messages.Basics
|
|
import Messages.Comp.HttpError
|
|
import Messages.Comp.ScanMailboxForm
|
|
import Messages.Comp.ScanMailboxTable
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, form : Messages.Comp.ScanMailboxForm.Texts
|
|
, table : Messages.Comp.ScanMailboxTable.Texts
|
|
, httpError : Http.Error -> String
|
|
, newTask : String
|
|
, createNewTask : String
|
|
, taskCreated : String
|
|
, taskUpdated : String
|
|
, taskStarted : String
|
|
, taskDeleted : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, form = Messages.Comp.ScanMailboxForm.gb
|
|
, table = Messages.Comp.ScanMailboxTable.gb
|
|
, httpError = Messages.Comp.HttpError.gb
|
|
, newTask = "New Task"
|
|
, createNewTask = "Create a new scan mailbox task"
|
|
, taskCreated = "Task created."
|
|
, taskUpdated = "Task updated."
|
|
, taskStarted = "Task started."
|
|
, taskDeleted = "Task deleted."
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ basics = Messages.Basics.de
|
|
, form = Messages.Comp.ScanMailboxForm.de
|
|
, table = Messages.Comp.ScanMailboxTable.de
|
|
, httpError = Messages.Comp.HttpError.de
|
|
, newTask = "Neuer Auftrag"
|
|
, createNewTask = "Einen neuen E-Mail Such Auftrag erstellen"
|
|
, taskCreated = "Auftrag created."
|
|
, taskUpdated = "Auftrag updated."
|
|
, taskStarted = "Auftrag started."
|
|
, taskDeleted = "Auftrag deleted."
|
|
}
|