Externalize strings in register page

This commit is contained in:
Eike Kettner
2021-03-30 22:12:25 +02:00
parent ec237a2eaa
commit db6198673b
4 changed files with 70 additions and 24 deletions

View File

@ -0,0 +1,41 @@
module Messages.RegisterPage exposing (..)
import Messages.Basics
type alias Texts =
{ basics : Messages.Basics.Texts
, signupToDocspell : String
, collectiveId : String
, collective : String
, userLogin : String
, username : String
, password : String
, passwordRepeat : String
, invitationKey : String
, alreadySignedUp : String
, signIn : String
, registrationSuccessful : String
}
gb : Texts
gb =
{ basics = Messages.Basics.gb
, signupToDocspell = "Signup to Docspell"
, collectiveId = "Collective ID"
, collective = "Collective"
, userLogin = "User Login"
, username = "Username"
, password = "Password"
, passwordRepeat = "Password (repeat)"
, invitationKey = "Invitation Key"
, alreadySignedUp = "Already signed up?"
, signIn = "Sign in"
, registrationSuccessful = "Registration successful."
}
de : Texts
de =
gb