mirror of
				https://github.com/TheAnachronism/docspell.git
				synced 2025-11-03 18:00:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Elm
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Elm
		
	
	
	
	
	
module Messages.Comp.CollectiveSettingsForm exposing (Texts, gb)
 | 
						|
 | 
						|
import Data.Language exposing (Language)
 | 
						|
import Messages.Basics
 | 
						|
import Messages.Comp.ClassifierSettingsForm
 | 
						|
import Messages.Data.Language
 | 
						|
 | 
						|
 | 
						|
type alias Texts =
 | 
						|
    { basics : Messages.Basics.Texts
 | 
						|
    , classifierSettingsForm : Messages.Comp.ClassifierSettingsForm.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
 | 
						|
    , languageLabel : Language -> String
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
gb : Texts
 | 
						|
gb =
 | 
						|
    { basics = Messages.Basics.gb
 | 
						|
    , classifierSettingsForm = Messages.Comp.ClassifierSettingsForm.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
 | 
						|
    }
 |