mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 10:28:27 +00:00
Outline share detail page
This commit is contained in:
@ -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"
|
||||
}
|
Reference in New Issue
Block a user