docspell/modules/webapp/src/main/elm/Messages/Basics.elm

131 lines
3.1 KiB
Elm
Raw Normal View History

2021-07-04 08:24:49 +00:00
{-
2021-07-25 12:00:11 +00:00
Copyright 2020 Docspell Contributors
2021-07-04 08:24:49 +00:00
2021-07-25 12:00:11 +00:00
SPDX-License-Identifier: GPL-3.0-or-later
2021-07-04 08:24:49 +00:00
-}
2021-07-25 12:00:11 +00:00
module Messages.Basics exposing
( Texts
, de
, gb
)
2021-03-28 16:23:43 +00:00
type alias Texts =
{ incoming : String
, outgoing : String
, tags : String
, items : String
, submit : String
, submitThisForm : String
, cancel : String
, delete : String
, created : String
, edit : String
, back : String
, backToList : String
, searchPlaceholder : String
, selectPlaceholder : String
, id : String
2021-04-05 19:31:45 +00:00
, ok : String
, yes : String
, no : String
2021-04-06 23:09:58 +00:00
, chooseTag : String
, loading : String
2021-04-10 14:02:34 +00:00
, name : String
, organization : String
, person : String
, equipment : String
, folder : String
, date : String
, correspondent : String
, concerning : String
, customFields : String
, direction : String
2021-06-06 11:59:50 +00:00
, folderNotOwnerWarning : String
2021-03-28 16:23:43 +00:00
}
gb : Texts
gb =
{ incoming = "Incoming"
, outgoing = "Outgoing"
, tags = "Tags"
, items = "Items"
, submit = "Submit"
, submitThisForm = "Submit this form"
, cancel = "Cancel"
, delete = "Delete"
, created = "Created"
, edit = "Edit"
, back = "Back"
, backToList = "Back to list"
, searchPlaceholder = "Search"
, selectPlaceholder = "Select"
, id = "Id"
2021-04-05 19:31:45 +00:00
, ok = "Ok"
, yes = "Yes"
, no = "No"
2021-04-06 23:09:58 +00:00
, chooseTag = "Choose a tag"
, loading = "Loading"
2021-04-10 14:02:34 +00:00
, name = "Name"
, organization = "Organization"
, person = "Person"
, equipment = "Equipment"
, folder = "Folder"
, date = "Date"
, correspondent = "Correspondent"
, concerning = "Concerning"
, customFields = "Custom Fields"
, direction = "Direction"
2021-06-06 11:59:50 +00:00
, folderNotOwnerWarning =
"""
You are **not a member** of this folder. This item will be **hidden**
from any search now. Use a folder where you are a member of to make this
item visible. This message will disappear then.
"""
2021-03-28 16:23:43 +00:00
}
de : Texts
de =
{ incoming = "Eingehend"
, outgoing = "Ausgehend"
, tags = "Tags"
, items = "Dokumente"
, submit = "Speichern"
, submitThisForm = "Formular abschicken"
, cancel = "Abbrechen"
, delete = "Löschen"
, created = "Erstellt"
, edit = "Ändern"
, back = "Zurück"
, backToList = "Zurück zur Liste"
, searchPlaceholder = "Suche"
, selectPlaceholder = "Auswahl"
, id = "ID"
, ok = "Ok"
, yes = "Ja"
, no = "Nein"
2021-06-29 15:34:47 +00:00
, chooseTag = "Wähle einen Tag"
, loading = "Laden"
, name = "Name"
, organization = "Organisation"
, person = "Person"
2021-06-29 15:34:47 +00:00
, equipment = "Ausstattung"
, folder = "Ordner"
, date = "Datum"
, correspondent = "Korrespondent"
, concerning = "Betreffend"
2021-06-29 15:34:47 +00:00
, customFields = "Benutzerfelder"
, direction = "Richtung"
2021-06-06 11:59:50 +00:00
, folderNotOwnerWarning =
"""
Du bist *kein* Mitglied dieses Ordners. Dokumnte, welche durch diese
URL hochgeladen werden, sind für dich in der Suche *nicht* sichtbar.
Nutze lieber einen Ordner, dem Du als Mitglied zugeordnet bist. Diese
Nachricht verschwindet dann.
"""
}