Outline share detail page

This commit is contained in:
eikek
2021-10-06 11:04:18 +02:00
parent 1a10216e3d
commit b6187bb88d
21 changed files with 622 additions and 157 deletions

View File

@ -0,0 +1,33 @@
module Messages.Comp.SharePasswordForm exposing (Texts, de, gb)
import Http
import Messages.Comp.HttpError
type alias Texts =
{ httpError : Http.Error -> String
, passwordRequired : String
, password : String
, passwordSubmitButton : String
, passwordFailed : String
}
gb : Texts
gb =
{ httpError = Messages.Comp.HttpError.gb
, passwordRequired = "Password required"
, password = "Password"
, passwordSubmitButton = "Submit"
, passwordFailed = "Das Passwort ist falsch"
}
de : Texts
de =
{ httpError = Messages.Comp.HttpError.de
, passwordRequired = "Passwort benötigt"
, password = "Passwort"
, passwordSubmitButton = "Submit"
, passwordFailed = "Password is wrong"
}