mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
20 lines
249 B
Elm
20 lines
249 B
Elm
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
|
|
]
|