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
|
|
|
|
2021-06-05 22:28:35 +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
|
2021-04-04 13:55:49 +00:00
|
|
|
, searchPlaceholder : String
|
2021-04-11 18:37:16 +00:00
|
|
|
, selectPlaceholder : String
|
2021-04-04 13:55:49 +00:00
|
|
|
, 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
|
2021-04-09 20:39:44 +00:00
|
|
|
, 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"
|
2021-04-04 13:55:49 +00:00
|
|
|
, searchPlaceholder = "Search…"
|
2021-04-11 18:37:16 +00:00
|
|
|
, selectPlaceholder = "Select…"
|
2021-04-04 13:55:49 +00:00
|
|
|
, 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…"
|
2021-04-09 20:39:44 +00:00
|
|
|
, 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
|
|
|
}
|
2021-06-05 22:28:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
de : Texts
|
|
|
|
de =
|
|
|
|
{ incoming = "Eingehend"
|
|
|
|
, outgoing = "Ausgehend"
|
|
|
|
, tags = "Tags"
|
|
|
|
, items = "Dokumente"
|
2021-07-01 20:45:12 +00:00
|
|
|
, submit = "Speichern"
|
2021-06-05 22:28:35 +00:00
|
|
|
, submitThisForm = "Formular abschicken"
|
|
|
|
, cancel = "Abbrechen"
|
|
|
|
, delete = "Löschen"
|
|
|
|
, created = "Erstellt"
|
|
|
|
, edit = "Ändern"
|
|
|
|
, back = "Zurück"
|
|
|
|
, backToList = "Zurück zur Liste"
|
|
|
|
, searchPlaceholder = "Suche…"
|
|
|
|
, selectPlaceholder = "Auswahl…"
|
2021-07-01 20:45:12 +00:00
|
|
|
, id = "ID"
|
2021-06-05 22:28:35 +00:00
|
|
|
, ok = "Ok"
|
|
|
|
, yes = "Ja"
|
|
|
|
, no = "Nein"
|
2021-06-29 15:34:47 +00:00
|
|
|
, chooseTag = "Wähle einen Tag…"
|
2021-06-05 22:28:35 +00:00
|
|
|
, loading = "Laden…"
|
|
|
|
, name = "Name"
|
|
|
|
, organization = "Organisation"
|
|
|
|
, person = "Person"
|
2021-06-29 15:34:47 +00:00
|
|
|
, equipment = "Ausstattung"
|
2021-06-05 22:28:35 +00:00
|
|
|
, folder = "Ordner"
|
|
|
|
, date = "Datum"
|
|
|
|
, correspondent = "Korrespondent"
|
|
|
|
, concerning = "Betreffend"
|
2021-06-29 15:34:47 +00:00
|
|
|
, customFields = "Benutzerfelder"
|
2021-06-05 22:28:35 +00:00
|
|
|
, 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.
|
|
|
|
"""
|
2021-06-05 22:28:35 +00:00
|
|
|
}
|