mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 10:28:27 +00:00
Save and load dashboards
This commit is contained in:
@ -0,0 +1,44 @@
|
||||
module Messages.Comp.DashboardManage exposing (Texts, de, gb)
|
||||
|
||||
import Http
|
||||
import Messages.Basics
|
||||
import Messages.Comp.DashboardEdit
|
||||
import Messages.Comp.HttpError
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, dashboardEdit : Messages.Comp.DashboardEdit.Texts
|
||||
, httpError : Http.Error -> String
|
||||
, reallyDeleteDashboard : String
|
||||
, nameEmpty : String
|
||||
, nameExists : String
|
||||
, createDashboard : String
|
||||
, copyDashboard : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, dashboardEdit = Messages.Comp.DashboardEdit.gb
|
||||
, httpError = Messages.Comp.HttpError.gb
|
||||
, reallyDeleteDashboard = "Really delete this dashboard?"
|
||||
, nameEmpty = "The name must not be empty."
|
||||
, nameExists = "The name is already in use."
|
||||
, createDashboard = "New"
|
||||
, copyDashboard = "Copy"
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
{ basics = Messages.Basics.de
|
||||
, dashboardEdit = Messages.Comp.DashboardEdit.de
|
||||
, httpError = Messages.Comp.HttpError.de
|
||||
, reallyDeleteDashboard = "Das Dashboard wirklich entfernen?"
|
||||
, nameEmpty = "Ein Name muss angegeben werden."
|
||||
, nameExists = "Der Name wird bereits verwendet."
|
||||
, createDashboard = "Neu"
|
||||
, copyDashboard = "Kopie"
|
||||
}
|
Reference in New Issue
Block a user