Move ui language into messages

This commit is contained in:
Eike Kettner
2021-04-10 16:13:49 +02:00
parent 92ae22a68d
commit e630786104
6 changed files with 18 additions and 13 deletions

View 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
]