mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
UI language is stored in user settings for authenticated users; otherwise is only stored in the current model (not persisted).
17 lines
172 B
Elm
17 lines
172 B
Elm
module UiLanguage exposing
|
|
( UiLanguage(..)
|
|
, all
|
|
)
|
|
|
|
|
|
type UiLanguage
|
|
= English
|
|
| German
|
|
|
|
|
|
all : List UiLanguage
|
|
all =
|
|
[ English
|
|
, German
|
|
]
|