Show a message when a new document arrived

This commit is contained in:
eikek
2021-11-07 17:14:02 +01:00
parent 8ae314bead
commit 62d02d75b4
5 changed files with 37 additions and 4 deletions

View File

@ -23,6 +23,7 @@ type alias Texts =
, processingQueue : String
, newInvites : String
, help : String
, newItemsArrived : String
}
@ -38,6 +39,7 @@ gb =
, processingQueue = "Processing Queue"
, newInvites = "New Invites"
, help = "Help"
, newItemsArrived = "New items arrived!"
}
@ -53,4 +55,5 @@ de =
, processingQueue = "Verarbeitung"
, newInvites = "Neue Einladung"
, help = "Hilfe (English)"
, newItemsArrived = "Neue Dokumente eingetroffen!"
}