mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-01-26 00:18: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"
|
|
}
|