mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-09 08:29:32 +00:00
61 lines
2.2 KiB
Elm
61 lines
2.2 KiB
Elm
module Messages.Comp.CollectiveSettingsForm exposing (Texts, gb)
|
|
|
|
import Data.Language exposing (Language)
|
|
import Http
|
|
import Messages.Basics
|
|
import Messages.Comp.ClassifierSettingsForm
|
|
import Messages.Comp.HttpError
|
|
import Messages.Data.Language
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, classifierSettingsForm : Messages.Comp.ClassifierSettingsForm.Texts
|
|
, httpError : Http.Error -> String
|
|
, save : String
|
|
, saveSettings : String
|
|
, documentLanguage : String
|
|
, documentLanguageHelp : String
|
|
, integrationEndpoint : String
|
|
, integrationEndpointLabel : String
|
|
, integrationEndpointHelp : String
|
|
, fulltextSearch : String
|
|
, reindexAllData : String
|
|
, reindexAllDataHelp : String
|
|
, autoTagging : String
|
|
, startNow : String
|
|
, languageLabel : Language -> String
|
|
, classifierTaskStarted : String
|
|
, fulltextReindexSubmitted : String
|
|
, fulltextReindexOkMissing : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, classifierSettingsForm = Messages.Comp.ClassifierSettingsForm.gb
|
|
, httpError = Messages.Comp.HttpError.gb
|
|
, save = "Save"
|
|
, saveSettings = "Save Settings"
|
|
, documentLanguage = "Document Language"
|
|
, documentLanguageHelp = "The language of your documents. This helps text recognition (OCR) and text analysis."
|
|
, integrationEndpoint = "Integration Endpoint"
|
|
, integrationEndpointLabel = "Enable integration endpoint"
|
|
, integrationEndpointHelp =
|
|
"The integration endpoint allows (local) applications to submit files. "
|
|
++ "You can choose to disable it for your collective."
|
|
, fulltextSearch = "Full-Text Search"
|
|
, reindexAllData = "Re-Index All Data"
|
|
, reindexAllDataHelp =
|
|
"This starts a task that clears the full-text index and re-indexes all your data again."
|
|
++ "You must type OK before clicking the button to avoid accidental re-indexing."
|
|
, autoTagging = "Auto-Tagging"
|
|
, startNow = "Start now"
|
|
, languageLabel = Messages.Data.Language.gb
|
|
, classifierTaskStarted = "Classifier task started."
|
|
, fulltextReindexSubmitted = "Fulltext Re-Index started."
|
|
, fulltextReindexOkMissing =
|
|
"Please type OK in the field if you really want to start re-indexing your data."
|
|
}
|