mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 19:08:26 +00:00
Move ui language into messages
This commit is contained in:
19
modules/webapp/src/main/elm/Messages/UiLanguage.elm
Normal file
19
modules/webapp/src/main/elm/Messages/UiLanguage.elm
Normal file
@ -0,0 +1,19 @@
|
||||
module Messages.UiLanguage exposing
|
||||
( UiLanguage(..)
|
||||
, all
|
||||
)
|
||||
|
||||
{-| This module defines the languages supported in the web app.
|
||||
-}
|
||||
|
||||
|
||||
type UiLanguage
|
||||
= English
|
||||
| German
|
||||
|
||||
|
||||
all : List UiLanguage
|
||||
all =
|
||||
[ English
|
||||
, German
|
||||
]
|
Reference in New Issue
Block a user