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:
28
modules/webapp/src/main/elm/Messages/Comp/PersonManage.elm
Normal file
28
modules/webapp/src/main/elm/Messages/Comp/PersonManage.elm
Normal file
@ -0,0 +1,28 @@
|
||||
module Messages.Comp.PersonManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.Comp.PersonForm
|
||||
import Messages.Comp.PersonTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, personForm : Messages.Comp.PersonForm.Texts
|
||||
, personTable : Messages.Comp.PersonTable.Texts
|
||||
, newPerson : String
|
||||
, createNewPerson : String
|
||||
, reallyDeletePerson : String
|
||||
, deleteThisPerson : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, personForm = Messages.Comp.PersonForm.gb
|
||||
, personTable = Messages.Comp.PersonTable.gb
|
||||
, newPerson = "New Person"
|
||||
, createNewPerson = "Create a new person"
|
||||
, reallyDeletePerson = "Really delete this person?"
|
||||
, deleteThisPerson = "Delete this person"
|
||||
}
|
Reference in New Issue
Block a user