mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-05 22:55:58 +00:00
43 lines
698 B
Elm
43 lines
698 B
Elm
module Messages.Comp.SourceTable exposing
|
|
( Texts
|
|
, de
|
|
, gb
|
|
)
|
|
|
|
import Messages.Basics
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, abbrev : String
|
|
, enabled : String
|
|
, counter : String
|
|
, priority : String
|
|
, id : String
|
|
, show : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, abbrev = "Abbrev"
|
|
, enabled = "Enabled"
|
|
, counter = "Counter"
|
|
, priority = "Priority"
|
|
, id = "Id"
|
|
, show = "Show"
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ basics = Messages.Basics.de
|
|
, abbrev = "Name"
|
|
, enabled = "Aktiviert"
|
|
, counter = "Zähler"
|
|
, priority = "Priorität"
|
|
, id = "Id"
|
|
, show = "Anzeigen"
|
|
}
|