mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
27 lines
345 B
Elm
27 lines
345 B
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
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
|
|
]
|