docspell/modules/webapp/src/main/elm/Messages/CollectiveSettingsFormComp.elm
2021-04-02 11:28:21 +02:00

43 lines
1.5 KiB
Elm

module Messages.CollectiveSettingsFormComp exposing (..)
import Messages.ClassifierSettingsFormComp
type alias Texts =
{ classifierSettingsForm : Messages.ClassifierSettingsFormComp.Texts
, save : String
, saveSettings : String
, documentLanguage : String
, documentLanguageHelp : String
, integrationEndpoint : String
, integrationEndpointLabel : String
, integrationEndpointHelp : String
, fulltextSearch : String
, reindexAllData : String
, reindexAllDataHelp : String
, autoTagging : String
, startNow : String
}
gb : Texts
gb =
{ classifierSettingsForm = Messages.ClassifierSettingsFormComp.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"
}