mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-02-06 01:53:26 +00:00
19 lines
276 B
Elm
19 lines
276 B
Elm
|
module Messages.UserFormComp exposing (..)
|
||
|
|
||
|
|
||
|
type alias Texts =
|
||
|
{ login : String
|
||
|
, state : String
|
||
|
, email : String
|
||
|
, password : String
|
||
|
}
|
||
|
|
||
|
|
||
|
gb : Texts
|
||
|
gb =
|
||
|
{ login = "Login"
|
||
|
, state = "State"
|
||
|
, email = "E-Mail"
|
||
|
, password = "Password"
|
||
|
}
|