mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-07 23:55:28 +00:00
25 lines
609 B
Elm
25 lines
609 B
Elm
module Messages.Comp.ScanMailboxManage exposing (Texts, gb)
|
|
|
|
import Messages.Basics
|
|
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
|
|
, newTask : String
|
|
, createNewTask : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, form = Messages.Comp.ScanMailboxForm.gb
|
|
, table = Messages.Comp.ScanMailboxTable.gb
|
|
, newTask = "New Task"
|
|
, createNewTask = "Create a new scan mailbox task"
|
|
}
|