mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-13 01:39:33 +00:00
43 lines
1.5 KiB
Elm
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"
|
|
}
|