mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 10:28:27 +00:00
Prepare for selecting languages
UI language is stored in user settings for authenticated users; otherwise is only stored in the current model (not persisted).
This commit is contained in:
22
modules/webapp/src/main/elm/Messages/App.elm
Normal file
22
modules/webapp/src/main/elm/Messages/App.elm
Normal file
@ -0,0 +1,22 @@
|
||||
module Messages.App exposing
|
||||
( Texts
|
||||
, de
|
||||
, gb
|
||||
)
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ login : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ login = "Login"
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
{ login = "Anmelden"
|
||||
}
|
Reference in New Issue
Block a user