mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
commit
5a70011810
@ -192,6 +192,7 @@ view2 texts settings model =
|
|||||||
{ display = Data.ListType.label
|
{ display = Data.ListType.label
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div []
|
div []
|
||||||
|
@ -203,7 +203,7 @@ view2 flags texts settings model =
|
|||||||
{ text = texts.languageLabel l
|
{ text = texts.languageLabel l
|
||||||
, additional = ""
|
, additional = ""
|
||||||
}
|
}
|
||||||
, placeholder = ""
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
}
|
}
|
||||||
|
@ -93,6 +93,7 @@ type alias ViewOpts =
|
|||||||
, colorLabel : Color -> String
|
, colorLabel : Color -> String
|
||||||
, label : String
|
, label : String
|
||||||
, description : Maybe String
|
, description : Maybe String
|
||||||
|
, selectPlaceholder : String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -103,6 +104,7 @@ view2 data opts model =
|
|||||||
{ display = identity
|
{ display = identity
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = opts.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
|
@ -119,6 +119,7 @@ update msg model =
|
|||||||
type alias ViewSettings =
|
type alias ViewSettings =
|
||||||
{ contactTypeLabel : ContactType -> String
|
{ contactTypeLabel : ContactType -> String
|
||||||
, mobile : Bool
|
, mobile : Bool
|
||||||
|
, selectPlaceholder : String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -129,6 +130,7 @@ view2 cfg _ model =
|
|||||||
{ display = cfg.contactTypeLabel
|
{ display = cfg.contactTypeLabel
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = cfg.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
|
@ -209,6 +209,7 @@ view2 texts viewSettings model =
|
|||||||
{ display = texts.fieldTypeLabel
|
{ display = texts.fieldTypeLabel
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
(if viewSettings.showControls then
|
(if viewSettings.showControls then
|
||||||
|
@ -316,6 +316,7 @@ type alias ViewSettings =
|
|||||||
, fieldIcon : CustomField -> Maybe String
|
, fieldIcon : CustomField -> Maybe String
|
||||||
, style : DS.DropdownStyle
|
, style : DS.DropdownStyle
|
||||||
, createCustomFieldTitle : String
|
, createCustomFieldTitle : String
|
||||||
|
, selectPlaceholder : String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -340,6 +341,7 @@ viewMenuBar2 viewSettings model =
|
|||||||
{ display = \f -> Maybe.withDefault f.name f.label
|
{ display = \f -> Maybe.withDefault f.name f.label
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = { ddstyle | root = ddstyle.root ++ " flex-grow" }
|
, style = { ddstyle | root = ddstyle.root ++ " flex-grow" }
|
||||||
|
, selectPlaceholder = viewSettings.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div
|
div
|
||||||
|
@ -155,7 +155,7 @@ view2 texts model =
|
|||||||
, lineColor = "bg-gray-300 dark:bg-bluegray-600"
|
, lineColor = "bg-gray-300 dark:bg-bluegray-600"
|
||||||
}
|
}
|
||||||
, B.primaryBasicButton
|
, B.primaryBasicButton
|
||||||
{ label = texts.select
|
{ label = texts.basics.selectPlaceholder
|
||||||
, icon = "fa fa-folder-open font-thin"
|
, icon = "fa fa-folder-open font-thin"
|
||||||
, handler = onClick PickFiles
|
, handler = onClick PickFiles
|
||||||
, attrs = [ href "#" ]
|
, attrs = [ href "#" ]
|
||||||
|
@ -180,7 +180,7 @@ view2 texts settings model =
|
|||||||
{ text = texts.sslTypeLabel s
|
{ text = texts.sslTypeLabel s
|
||||||
, additional = ""
|
, additional = ""
|
||||||
}
|
}
|
||||||
, placeholder = ""
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
}
|
}
|
||||||
|
@ -107,6 +107,7 @@ view2 texts model =
|
|||||||
{ display = texts.equipmentUseLabel
|
{ display = texts.equipmentUseLabel
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
|
@ -152,6 +152,7 @@ update msg model =
|
|||||||
type alias ViewSettings a =
|
type alias ViewSettings a =
|
||||||
{ display : a -> String
|
{ display : a -> String
|
||||||
, icon : a -> Maybe String
|
, icon : a -> Maybe String
|
||||||
|
, selectPlaceholder : String
|
||||||
, style : DS.DropdownStyle
|
, style : DS.DropdownStyle
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -204,7 +205,7 @@ viewStyled2 cfg error sel model =
|
|||||||
]
|
]
|
||||||
[ selIcon
|
[ selIcon
|
||||||
, Maybe.map cfg.display sel
|
, Maybe.map cfg.display sel
|
||||||
|> Maybe.withDefault "Select…"
|
|> Maybe.withDefault cfg.selectPlaceholder
|
||||||
|> text
|
|> text
|
||||||
]
|
]
|
||||||
, div
|
, div
|
||||||
|
@ -372,6 +372,7 @@ viewMembers2 texts model =
|
|||||||
{ display = .name
|
{ display = .name
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
if model.folder.id == "" then
|
if model.folder.id == "" then
|
||||||
|
@ -172,7 +172,7 @@ view2 texts settings model =
|
|||||||
{ text = texts.sslTypeLabel s
|
{ text = texts.sslTypeLabel s
|
||||||
, additional = ""
|
, additional = ""
|
||||||
}
|
}
|
||||||
, placeholder = ""
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
}
|
}
|
||||||
|
@ -102,6 +102,7 @@ formTabs texts flags settings model =
|
|||||||
, fieldIcon = \f -> Dict.get f.id model.customFieldSavingIcon
|
, fieldIcon = \f -> Dict.get f.id model.customFieldSavingIcon
|
||||||
, style = dds
|
, style = dds
|
||||||
, createCustomFieldTitle = texts.createNewCustomField
|
, createCustomFieldTitle = texts.createNewCustomField
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
|
|
||||||
optional fields html =
|
optional fields html =
|
||||||
@ -127,7 +128,7 @@ formTabs texts flags settings model =
|
|||||||
|
|
||||||
folderCfg =
|
folderCfg =
|
||||||
{ makeOption = Util.Folder.mkFolderOption flags model.allFolders
|
{ makeOption = Util.Folder.mkFolderOption flags model.allFolders
|
||||||
, placeholder = texts.selectPlaceholder
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = dds
|
, style = dds
|
||||||
}
|
}
|
||||||
@ -135,14 +136,14 @@ formTabs texts flags settings model =
|
|||||||
idNameCfg =
|
idNameCfg =
|
||||||
{ makeOption = \e -> { text = e.name, additional = "" }
|
{ makeOption = \e -> { text = e.name, additional = "" }
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, placeholder = texts.selectPlaceholder
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, style = dds
|
, style = dds
|
||||||
}
|
}
|
||||||
|
|
||||||
personCfg =
|
personCfg =
|
||||||
{ makeOption = \p -> Util.Person.mkPersonOption p model.allPersons
|
{ makeOption = \p -> Util.Person.mkPersonOption p model.allPersons
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, placeholder = texts.selectPlaceholder
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, style = dds
|
, style = dds
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
|
@ -662,6 +662,7 @@ renderEditForm2 texts flags cfg settings model =
|
|||||||
, fieldIcon = customFieldIcon
|
, fieldIcon = customFieldIcon
|
||||||
, style = dds
|
, style = dds
|
||||||
, createCustomFieldTitle = ""
|
, createCustomFieldTitle = ""
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
|
|
||||||
dds =
|
dds =
|
||||||
@ -672,7 +673,7 @@ renderEditForm2 texts flags cfg settings model =
|
|||||||
|
|
||||||
folderCfg =
|
folderCfg =
|
||||||
{ makeOption = Util.Folder.mkFolderOption flags model.allFolders
|
{ makeOption = Util.Folder.mkFolderOption flags model.allFolders
|
||||||
, placeholder = ""
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = dds
|
, style = dds
|
||||||
}
|
}
|
||||||
@ -680,7 +681,7 @@ renderEditForm2 texts flags cfg settings model =
|
|||||||
idNameCfg =
|
idNameCfg =
|
||||||
{ makeOption = \e -> { text = e.name, additional = "" }
|
{ makeOption = \e -> { text = e.name, additional = "" }
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, placeholder = texts.selectPlaceholder
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, style = dds
|
, style = dds
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,11 +154,13 @@ view2 texts mobile settings model =
|
|||||||
{ display = texts.orgUseLabel
|
{ display = texts.orgUseLabel
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
|
|
||||||
contactTypeCfg =
|
contactTypeCfg =
|
||||||
{ mobile = mobile
|
{ mobile = mobile
|
||||||
, contactTypeLabel = texts.contactTypeLabel
|
, contactTypeLabel = texts.contactTypeLabel
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
|
@ -186,11 +186,13 @@ view2 texts mobile settings model =
|
|||||||
{ display = texts.personUseLabel
|
{ display = texts.personUseLabel
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
|
|
||||||
contactCfg =
|
contactCfg =
|
||||||
{ mobile = mobile
|
{ mobile = mobile
|
||||||
, contactTypeLabel = texts.contactTypeLabel
|
, contactTypeLabel = texts.contactTypeLabel
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
|
@ -883,22 +883,6 @@ viewGeneral2 texts settings model =
|
|||||||
[ text texts.mailbox
|
[ text texts.mailbox
|
||||||
, B.inputRequired
|
, B.inputRequired
|
||||||
]
|
]
|
||||||
, div [ class "mb-4" ]
|
|
||||||
[ label [ class S.inputLabel ]
|
|
||||||
[ text texts.summary
|
|
||||||
]
|
|
||||||
, input
|
|
||||||
[ type_ "text"
|
|
||||||
, onInput SetSummary
|
|
||||||
, class S.textInput
|
|
||||||
, Maybe.withDefault "" model.summary
|
|
||||||
|> value
|
|
||||||
]
|
|
||||||
[]
|
|
||||||
, span [ class "opacity-50 text-sm" ]
|
|
||||||
[ text texts.summaryInfo
|
|
||||||
]
|
|
||||||
]
|
|
||||||
, Html.map ConnMsg
|
, Html.map ConnMsg
|
||||||
(Comp.Dropdown.view2
|
(Comp.Dropdown.view2
|
||||||
connectionCfg
|
connectionCfg
|
||||||
@ -909,6 +893,22 @@ viewGeneral2 texts settings model =
|
|||||||
[ text texts.connectionInfo
|
[ text texts.connectionInfo
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
, div [ class "mb-4" ]
|
||||||
|
[ label [ class S.inputLabel ]
|
||||||
|
[ text texts.summary
|
||||||
|
]
|
||||||
|
, input
|
||||||
|
[ type_ "text"
|
||||||
|
, onInput SetSummary
|
||||||
|
, class S.textInput
|
||||||
|
, Maybe.withDefault "" model.summary
|
||||||
|
|> value
|
||||||
|
]
|
||||||
|
[]
|
||||||
|
, span [ class "opacity-50 text-sm" ]
|
||||||
|
[ text texts.summaryInfo
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@ -924,7 +924,7 @@ viewProcessing2 texts model =
|
|||||||
model.folders
|
model.folders
|
||||||
model.foldersModel
|
model.foldersModel
|
||||||
)
|
)
|
||||||
, span [ class "opacity-50 text-sm mt-1" ]
|
, span [ class "opacity-50 text-sm" ]
|
||||||
[ text texts.foldersInfo
|
[ text texts.foldersInfo
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
@ -1034,7 +1034,7 @@ viewMetadata2 texts flags settings model =
|
|||||||
let
|
let
|
||||||
folderCfg =
|
folderCfg =
|
||||||
{ makeOption = Util.Folder.mkFolderOption flags model.allFolders
|
{ makeOption = Util.Folder.mkFolderOption flags model.allFolders
|
||||||
, placeholder = ""
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
}
|
}
|
||||||
@ -1043,6 +1043,7 @@ viewMetadata2 texts flags settings model =
|
|||||||
{ display = Messages.Data.Language.gb
|
{ display = Messages.Data.Language.gb
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyleWith "flex-grow mr-2"
|
, style = DS.mainStyleWith "flex-grow mr-2"
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
[ div [ class "mb-4" ]
|
[ div [ class "mb-4" ]
|
||||||
|
@ -1317,6 +1317,7 @@ searchTabs texts ddd flags settings model =
|
|||||||
, fieldIcon = \_ -> Nothing
|
, fieldIcon = \_ -> Nothing
|
||||||
, style = DS.sidebarStyle
|
, style = DS.sidebarStyle
|
||||||
, createCustomFieldTitle = texts.createCustomFieldTitle
|
, createCustomFieldTitle = texts.createCustomFieldTitle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
model.customFieldModel
|
model.customFieldModel
|
||||||
)
|
)
|
||||||
|
@ -316,7 +316,7 @@ view2 flags texts settings model =
|
|||||||
let
|
let
|
||||||
folderCfg =
|
folderCfg =
|
||||||
{ makeOption = mkFolderOption flags model.allFolders
|
{ makeOption = mkFolderOption flags model.allFolders
|
||||||
, placeholder = ""
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
}
|
}
|
||||||
@ -330,7 +330,7 @@ view2 flags texts settings model =
|
|||||||
{ text = texts.languageLabel a
|
{ text = texts.languageLabel a
|
||||||
, additional = ""
|
, additional = ""
|
||||||
}
|
}
|
||||||
, placeholder = texts.selectPlaceholder
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
}
|
}
|
||||||
@ -339,6 +339,7 @@ view2 flags texts settings model =
|
|||||||
{ display = Data.Priority.toName
|
{ display = Data.Priority.toName
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
|
@ -469,6 +469,7 @@ tagColorViewOpts2 texts =
|
|||||||
, colorLabel = texts.colorLabel
|
, colorLabel = texts.colorLabel
|
||||||
, label = texts.chooseTagColorLabel
|
, label = texts.chooseTagColorLabel
|
||||||
, description = Just texts.tagColorDescription
|
, description = Just texts.tagColorDescription
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -497,6 +498,7 @@ settingFormTabs texts flags _ model =
|
|||||||
{ display = \lang -> Messages.get lang |> .label
|
{ display = \lang -> Messages.get lang |> .label
|
||||||
, icon = \lang -> Just (Messages.get lang |> .flagIcon)
|
, icon = \lang -> Just (Messages.get lang |> .flagIcon)
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
[ { name = "general"
|
[ { name = "general"
|
||||||
|
@ -162,7 +162,7 @@ view2 texts settings model =
|
|||||||
{ text = Data.UserState.toString s
|
{ text = Data.UserState.toString s
|
||||||
, additional = ""
|
, additional = ""
|
||||||
}
|
}
|
||||||
, placeholder = ""
|
, placeholder = texts.basics.selectPlaceholder
|
||||||
, style = DS.mainStyle
|
, style = DS.mainStyle
|
||||||
, labelColor = \_ -> \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,7 @@ type alias Texts =
|
|||||||
, back : String
|
, back : String
|
||||||
, backToList : String
|
, backToList : String
|
||||||
, searchPlaceholder : String
|
, searchPlaceholder : String
|
||||||
|
, selectPlaceholder : String
|
||||||
, id : String
|
, id : String
|
||||||
, ok : String
|
, ok : String
|
||||||
, yes : String
|
, yes : String
|
||||||
@ -49,6 +50,7 @@ gb =
|
|||||||
, back = "Back"
|
, back = "Back"
|
||||||
, backToList = "Back to list"
|
, backToList = "Back to list"
|
||||||
, searchPlaceholder = "Search…"
|
, searchPlaceholder = "Search…"
|
||||||
|
, selectPlaceholder = "Select…"
|
||||||
, id = "Id"
|
, id = "Id"
|
||||||
, ok = "Ok"
|
, ok = "Ok"
|
||||||
, yes = "Yes"
|
, yes = "Yes"
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
module Messages.Comp.ClassifierSettingsForm exposing (Texts, gb)
|
module Messages.Comp.ClassifierSettingsForm exposing (Texts, gb)
|
||||||
|
|
||||||
|
import Messages.Basics
|
||||||
import Messages.Comp.CalEventInput
|
import Messages.Comp.CalEventInput
|
||||||
|
|
||||||
|
|
||||||
type alias Texts =
|
type alias Texts =
|
||||||
{ calEventInput : Messages.Comp.CalEventInput.Texts
|
{ basics : Messages.Basics.Texts
|
||||||
|
, calEventInput : Messages.Comp.CalEventInput.Texts
|
||||||
, autoTaggingText : String
|
, autoTaggingText : String
|
||||||
, blacklistOrWhitelist : String
|
, blacklistOrWhitelist : String
|
||||||
, whitelistLabel : String
|
, whitelistLabel : String
|
||||||
@ -17,7 +19,8 @@ type alias Texts =
|
|||||||
|
|
||||||
gb : Texts
|
gb : Texts
|
||||||
gb =
|
gb =
|
||||||
{ calEventInput = Messages.Comp.CalEventInput.gb
|
{ basics = Messages.Basics.gb
|
||||||
|
, calEventInput = Messages.Comp.CalEventInput.gb
|
||||||
, autoTaggingText =
|
, autoTaggingText =
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
module Messages.Comp.CollectiveSettingsForm exposing (Texts, gb)
|
module Messages.Comp.CollectiveSettingsForm exposing (Texts, gb)
|
||||||
|
|
||||||
import Data.Language exposing (Language)
|
import Data.Language exposing (Language)
|
||||||
|
import Messages.Basics
|
||||||
import Messages.Comp.ClassifierSettingsForm
|
import Messages.Comp.ClassifierSettingsForm
|
||||||
import Messages.Data.Language
|
import Messages.Data.Language
|
||||||
|
|
||||||
|
|
||||||
type alias Texts =
|
type alias Texts =
|
||||||
{ classifierSettingsForm : Messages.Comp.ClassifierSettingsForm.Texts
|
{ basics : Messages.Basics.Texts
|
||||||
|
, classifierSettingsForm : Messages.Comp.ClassifierSettingsForm.Texts
|
||||||
, save : String
|
, save : String
|
||||||
, saveSettings : String
|
, saveSettings : String
|
||||||
, documentLanguage : String
|
, documentLanguage : String
|
||||||
@ -25,7 +27,8 @@ type alias Texts =
|
|||||||
|
|
||||||
gb : Texts
|
gb : Texts
|
||||||
gb =
|
gb =
|
||||||
{ classifierSettingsForm = Messages.Comp.ClassifierSettingsForm.gb
|
{ basics = Messages.Basics.gb
|
||||||
|
, classifierSettingsForm = Messages.Comp.ClassifierSettingsForm.gb
|
||||||
, save = "Save"
|
, save = "Save"
|
||||||
, saveSettings = "Save Settings"
|
, saveSettings = "Save Settings"
|
||||||
, documentLanguage = "Document Language"
|
, documentLanguage = "Document Language"
|
||||||
|
@ -1,19 +1,21 @@
|
|||||||
module Messages.Comp.Dropzone exposing (Texts, gb)
|
module Messages.Comp.Dropzone exposing (Texts, gb)
|
||||||
|
|
||||||
|
import Messages.Basics
|
||||||
|
|
||||||
|
|
||||||
type alias Texts =
|
type alias Texts =
|
||||||
{ dropFilesHere : String
|
{ basics : Messages.Basics.Texts
|
||||||
|
, dropFilesHere : String
|
||||||
, or : String
|
, or : String
|
||||||
, select : String
|
|
||||||
, selectInfo : String
|
, selectInfo : String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
gb : Texts
|
gb : Texts
|
||||||
gb =
|
gb =
|
||||||
{ dropFilesHere = "Drop files here"
|
{ basics = Messages.Basics.gb
|
||||||
|
, dropFilesHere = "Drop files here"
|
||||||
, or = "Or"
|
, or = "Or"
|
||||||
, select = "Select ..."
|
|
||||||
, selectInfo =
|
, selectInfo =
|
||||||
"Choose document files (pdf, docx, txt, html, …). "
|
"Choose document files (pdf, docx, txt, html, …). "
|
||||||
++ "Archives (zip and eml) are extracted."
|
++ "Archives (zip and eml) are extracted."
|
||||||
|
@ -9,7 +9,6 @@ type alias Texts =
|
|||||||
, customFieldInput : Messages.Comp.CustomFieldMultiInput.Texts
|
, customFieldInput : Messages.Comp.CustomFieldMultiInput.Texts
|
||||||
, createNewCustomField : String
|
, createNewCustomField : String
|
||||||
, chooseDirection : String
|
, chooseDirection : String
|
||||||
, selectPlaceholder : String
|
|
||||||
, folderNotOwnerWarning : String
|
, folderNotOwnerWarning : String
|
||||||
, dueDateTab : String
|
, dueDateTab : String
|
||||||
, addNewOrg : String
|
, addNewOrg : String
|
||||||
@ -31,7 +30,6 @@ gb =
|
|||||||
, customFieldInput = Messages.Comp.CustomFieldMultiInput.gb
|
, customFieldInput = Messages.Comp.CustomFieldMultiInput.gb
|
||||||
, createNewCustomField = "Create new custom field"
|
, createNewCustomField = "Create new custom field"
|
||||||
, chooseDirection = "Choose a direction…"
|
, chooseDirection = "Choose a direction…"
|
||||||
, selectPlaceholder = "Select…"
|
|
||||||
, folderNotOwnerWarning =
|
, folderNotOwnerWarning =
|
||||||
"""
|
"""
|
||||||
You are **not a member** of this folder. This item will be **hidden**
|
You are **not a member** of this folder. This item will be **hidden**
|
||||||
|
@ -10,7 +10,6 @@ type alias Texts =
|
|||||||
, tagModeAddInfo : String
|
, tagModeAddInfo : String
|
||||||
, tagModeRemoveInfo : String
|
, tagModeRemoveInfo : String
|
||||||
, tagModeReplaceInfo : String
|
, tagModeReplaceInfo : String
|
||||||
, selectPlaceholder : String
|
|
||||||
, chooseDirection : String
|
, chooseDirection : String
|
||||||
, confirmUnconfirm : String
|
, confirmUnconfirm : String
|
||||||
, confirm : String
|
, confirm : String
|
||||||
@ -28,7 +27,6 @@ gb =
|
|||||||
, tagModeAddInfo = "Tags chosen here are *added* to all selected items."
|
, tagModeAddInfo = "Tags chosen here are *added* to all selected items."
|
||||||
, tagModeRemoveInfo = "Tags chosen here are *removed* from all selected items."
|
, tagModeRemoveInfo = "Tags chosen here are *removed* from all selected items."
|
||||||
, tagModeReplaceInfo = "Tags chosen here *replace* those on selected items."
|
, tagModeReplaceInfo = "Tags chosen here *replace* those on selected items."
|
||||||
, selectPlaceholder = "Select…"
|
|
||||||
, chooseDirection = "Choose a direction…"
|
, chooseDirection = "Choose a direction…"
|
||||||
, confirmUnconfirm = "Confirm/Unconfirm item metadata"
|
, confirmUnconfirm = "Confirm/Unconfirm item metadata"
|
||||||
, confirm = "Confirm"
|
, confirm = "Confirm"
|
||||||
|
@ -21,7 +21,6 @@ type alias Texts =
|
|||||||
, language : String
|
, language : String
|
||||||
, languageInfo : String
|
, languageInfo : String
|
||||||
, languageLabel : Language -> String
|
, languageLabel : Language -> String
|
||||||
, selectPlaceholder : String
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -59,5 +58,4 @@ Specify a file glob to filter files when uploading archives
|
|||||||
"Used for text extraction and analysis. The collective's "
|
"Used for text extraction and analysis. The collective's "
|
||||||
++ "default language is used if not specified here."
|
++ "default language is used if not specified here."
|
||||||
, languageLabel = Messages.Data.Language.gb
|
, languageLabel = Messages.Data.Language.gb
|
||||||
, selectPlaceholder = "Select…"
|
|
||||||
}
|
}
|
||||||
|
@ -2,12 +2,14 @@ module Messages.Comp.UiSettingsForm exposing (Texts, gb)
|
|||||||
|
|
||||||
import Data.Color exposing (Color)
|
import Data.Color exposing (Color)
|
||||||
import Data.Fields exposing (Field)
|
import Data.Fields exposing (Field)
|
||||||
|
import Messages.Basics
|
||||||
import Messages.Data.Color
|
import Messages.Data.Color
|
||||||
import Messages.Data.Fields
|
import Messages.Data.Fields
|
||||||
|
|
||||||
|
|
||||||
type alias Texts =
|
type alias Texts =
|
||||||
{ general : String
|
{ basics : Messages.Basics.Texts
|
||||||
|
, general : String
|
||||||
, showSideMenuByDefault : String
|
, showSideMenuByDefault : String
|
||||||
, uiLanguage : String
|
, uiLanguage : String
|
||||||
, itemSearch : String
|
, itemSearch : String
|
||||||
@ -45,7 +47,8 @@ type alias Texts =
|
|||||||
|
|
||||||
gb : Texts
|
gb : Texts
|
||||||
gb =
|
gb =
|
||||||
{ general = "General"
|
{ basics = Messages.Basics.gb
|
||||||
|
, general = "General"
|
||||||
, showSideMenuByDefault = "Show side menu by default"
|
, showSideMenuByDefault = "Show side menu by default"
|
||||||
, uiLanguage = "UI Language"
|
, uiLanguage = "UI Language"
|
||||||
, itemSearch = "Item Search"
|
, itemSearch = "Item Search"
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
module Messages.Comp.UserForm exposing (Texts, gb)
|
module Messages.Comp.UserForm exposing (Texts, gb)
|
||||||
|
|
||||||
|
import Messages.Basics
|
||||||
|
|
||||||
|
|
||||||
type alias Texts =
|
type alias Texts =
|
||||||
{ login : String
|
{ basics : Messages.Basics.Texts
|
||||||
|
, login : String
|
||||||
, state : String
|
, state : String
|
||||||
, email : String
|
, email : String
|
||||||
, password : String
|
, password : String
|
||||||
@ -11,7 +14,8 @@ type alias Texts =
|
|||||||
|
|
||||||
gb : Texts
|
gb : Texts
|
||||||
gb =
|
gb =
|
||||||
{ login = "Login"
|
{ basics = Messages.Basics.gb
|
||||||
|
, login = "Login"
|
||||||
, state = "State"
|
, state = "State"
|
||||||
, email = "E-Mail"
|
, email = "E-Mail"
|
||||||
, password = "Password"
|
, password = "Password"
|
||||||
|
@ -76,6 +76,7 @@ renderForm texts model =
|
|||||||
{ display = texts.languageLabel
|
{ display = texts.languageLabel
|
||||||
, icon = \_ -> Nothing
|
, icon = \_ -> Nothing
|
||||||
, style = DS.mainStyleWith "w-40"
|
, style = DS.mainStyleWith "w-40"
|
||||||
|
, selectPlaceholder = texts.basics.selectPlaceholder
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
div [ class "row" ]
|
div [ class "row" ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user