mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
81 lines
1.8 KiB
Elm
81 lines
1.8 KiB
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
module Messages.App exposing
|
|
( Texts
|
|
, de
|
|
, fr
|
|
, gb
|
|
)
|
|
|
|
|
|
type alias Texts =
|
|
{ collectiveProfile : String
|
|
, userProfile : String
|
|
, lightDark : String
|
|
, logout : String
|
|
, items : String
|
|
, manageData : String
|
|
, uploadFiles : String
|
|
, processingQueue : String
|
|
, newInvites : String
|
|
, help : String
|
|
, newItemsArrived : String
|
|
, dashboard : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ collectiveProfile = "Collective Profile"
|
|
, userProfile = "User Profile"
|
|
, lightDark = "Light/Dark"
|
|
, logout = "Logout"
|
|
, items = "Items"
|
|
, manageData = "Manage Data"
|
|
, uploadFiles = "Upload Files"
|
|
, processingQueue = "Processing Queue"
|
|
, newInvites = "New Invites"
|
|
, help = "Help"
|
|
, newItemsArrived = "New items arrived!"
|
|
, dashboard = "Dashboard"
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ collectiveProfile = "Kollektivprofil"
|
|
, userProfile = "Benutzerprofil"
|
|
, lightDark = "Hell/Dunkel"
|
|
, logout = "Abmelden"
|
|
, items = "Dokumente"
|
|
, manageData = "Daten verwalten"
|
|
, uploadFiles = "Dateien hochladen"
|
|
, processingQueue = "Verarbeitung"
|
|
, newInvites = "Neue Einladung"
|
|
, help = "Hilfe (English)"
|
|
, newItemsArrived = "Neue Dokumente eingetroffen!"
|
|
, dashboard = "Dashboard"
|
|
}
|
|
|
|
|
|
fr : Texts
|
|
fr =
|
|
{ collectiveProfile = "Profile groupe"
|
|
, userProfile = "Profile utilisateur"
|
|
, lightDark = "Clair/Sombre"
|
|
, logout = "Déconnexion "
|
|
, items = "Documents"
|
|
, manageData = "Gérer les métadonnées"
|
|
, uploadFiles = "Envoyer des documents"
|
|
, processingQueue = "File de traitement"
|
|
, newInvites = "Nouvelles invitations"
|
|
, help = "Aide"
|
|
, newItemsArrived = "De nouveaux documents sont arrivés!"
|
|
, dashboard = "Tableau de bord"
|
|
}
|