Add German translation for home page

This commit is contained in:
eikek
2021-06-06 13:59:50 +02:00
parent fe4f48dd7f
commit 78938c9980
19 changed files with 235 additions and 38 deletions

View File

@ -1,4 +1,8 @@
module Messages.Comp.ItemCard exposing (Texts, gb)
module Messages.Comp.ItemCard exposing
( Texts
, de
, gb
)
import Data.Direction exposing (Direction)
import Messages.Basics
@ -32,3 +36,17 @@ gb =
, formatDateShort = Messages.DateFormat.formatDateShort Messages.UiLanguage.English
, directionLabel = Messages.Data.Direction.gb
}
de : Texts
de =
{ basics = Messages.Basics.de
, dueOn = "Fällig am"
, new = "Neu"
, openAttachmentFile = "Öffne Anhang"
, gotoDetail = "Gehe zur Detail-Ansicht"
, cycleAttachments = "Gehe durch Anhänge"
, formatDateLong = Messages.DateFormat.formatDateLong Messages.UiLanguage.German
, formatDateShort = Messages.DateFormat.formatDateShort Messages.UiLanguage.German
, directionLabel = Messages.Data.Direction.de
}