mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
Reorganize messages to reflect page structure
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
module Messages.AddressFormComp exposing (..)
|
||||
module Messages.Comp.AddressForm exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,4 +1,4 @@
|
||||
module Messages.AttachmentMetaComp exposing (..)
|
||||
module Messages.Comp.AttachmentMeta exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.CalEventInputComp exposing (..)
|
||||
module Messages.Comp.CalEventInput exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,4 +1,4 @@
|
||||
module Messages.ChangePasswordFormComp exposing (..)
|
||||
module Messages.Comp.ChangePasswordForm exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,10 +1,10 @@
|
||||
module Messages.ClassifierSettingsFormComp exposing (..)
|
||||
module Messages.Comp.ClassifierSettingsForm exposing (..)
|
||||
|
||||
import Messages.CalEventInputComp
|
||||
import Messages.Comp.CalEventInput
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ calEventInput : Messages.CalEventInputComp.Texts
|
||||
{ calEventInput : Messages.Comp.CalEventInput.Texts
|
||||
, autoTaggingText : String
|
||||
, blacklistOrWhitelist : String
|
||||
, whitelistLabel : String
|
||||
@ -17,7 +17,7 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ calEventInput = Messages.CalEventInputComp.gb
|
||||
{ calEventInput = Messages.Comp.CalEventInput.gb
|
||||
, autoTaggingText =
|
||||
"""
|
||||
|
@ -1,12 +1,12 @@
|
||||
module Messages.CollectiveSettingsFormComp exposing (..)
|
||||
module Messages.Comp.CollectiveSettingsForm exposing (..)
|
||||
|
||||
import Data.Language exposing (Language)
|
||||
import Messages.ClassifierSettingsFormComp
|
||||
import Messages.LanguageData
|
||||
import Messages.Comp.ClassifierSettingsForm
|
||||
import Messages.Data.Language
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ classifierSettingsForm : Messages.ClassifierSettingsFormComp.Texts
|
||||
{ classifierSettingsForm : Messages.Comp.ClassifierSettingsForm.Texts
|
||||
, save : String
|
||||
, saveSettings : String
|
||||
, documentLanguage : String
|
||||
@ -25,7 +25,7 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ classifierSettingsForm = Messages.ClassifierSettingsFormComp.gb
|
||||
{ classifierSettingsForm = Messages.Comp.ClassifierSettingsForm.gb
|
||||
, save = "Save"
|
||||
, saveSettings = "Save Settings"
|
||||
, documentLanguage = "Document Language"
|
||||
@ -42,5 +42,5 @@ gb =
|
||||
++ "You must type OK before clicking the button to avoid accidental re-indexing."
|
||||
, autoTagging = "Auto-Tagging"
|
||||
, startNow = "Start now"
|
||||
, languageLabel = Messages.LanguageData.gb
|
||||
, languageLabel = Messages.Data.Language.gb
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
module Messages.CustomFieldFormComp exposing (..)
|
||||
module Messages.Comp.CustomFieldForm exposing (..)
|
||||
|
||||
import Data.CustomFieldType exposing (CustomFieldType)
|
||||
import Messages.Basics
|
||||
import Messages.CustomFieldTypeData
|
||||
import Messages.Data.CustomFieldType
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -25,7 +25,7 @@ gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, reallyDeleteField = "Really delete this custom field?"
|
||||
, fieldTypeLabel = Messages.CustomFieldTypeData.gb
|
||||
, fieldTypeLabel = Messages.Data.CustomFieldType.gb
|
||||
, createCustomField = "Create a new custom field."
|
||||
, modifyTypeWarning =
|
||||
"Note that changing the format may "
|
@ -1,4 +1,4 @@
|
||||
module Messages.CustomFieldInputComp exposing (..)
|
||||
module Messages.Comp.CustomFieldInput exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -0,0 +1,24 @@
|
||||
module Messages.Comp.CustomFieldManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.Comp.CustomFieldForm
|
||||
import Messages.Comp.CustomFieldTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, fieldForm : Messages.Comp.CustomFieldForm.Texts
|
||||
, fieldTable : Messages.Comp.CustomFieldTable.Texts
|
||||
, addCustomField : String
|
||||
, newCustomField : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, fieldForm = Messages.Comp.CustomFieldForm.gb
|
||||
, fieldTable = Messages.Comp.CustomFieldTable.gb
|
||||
, addCustomField = "Add a new custom field"
|
||||
, newCustomField = "New custom field"
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
module Messages.Comp.CustomFieldMultiInput exposing (..)
|
||||
|
||||
import Messages.Comp.CustomFieldInput
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ customFieldInput : Messages.Comp.CustomFieldInput.Texts
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ customFieldInput = Messages.Comp.CustomFieldInput.gb
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
module Messages.CustomFieldTableComp exposing (..)
|
||||
module Messages.Comp.CustomFieldTable exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
29
modules/webapp/src/main/elm/Messages/Comp/DetailEdit.elm
Normal file
29
modules/webapp/src/main/elm/Messages/Comp/DetailEdit.elm
Normal file
@ -0,0 +1,29 @@
|
||||
module Messages.Comp.DetailEdit exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.Comp.CustomFieldForm
|
||||
import Messages.Comp.EquipmentForm
|
||||
import Messages.Comp.OrgForm
|
||||
import Messages.Comp.PersonForm
|
||||
import Messages.Comp.TagForm
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, tagForm : Messages.Comp.TagForm.Texts
|
||||
, personForm : Messages.Comp.PersonForm.Texts
|
||||
, orgForm : Messages.Comp.OrgForm.Texts
|
||||
, equipmentForm : Messages.Comp.EquipmentForm.Texts
|
||||
, customFieldForm : Messages.Comp.CustomFieldForm.Texts
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, tagForm = Messages.Comp.TagForm.gb
|
||||
, personForm = Messages.Comp.PersonForm.gb
|
||||
, orgForm = Messages.Comp.OrgForm.gb
|
||||
, equipmentForm = Messages.Comp.EquipmentForm.gb
|
||||
, customFieldForm = Messages.Comp.CustomFieldForm.gb
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
module Messages.DropzoneComp exposing (..)
|
||||
module Messages.Comp.Dropzone exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,7 +1,7 @@
|
||||
module Messages.EmailSettingsFormComp exposing (..)
|
||||
module Messages.Comp.EmailSettingsForm exposing (..)
|
||||
|
||||
import Data.SSLType exposing (SSLType)
|
||||
import Messages.SSLTypeData
|
||||
import Messages.Data.SSLType
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -27,7 +27,7 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ sslTypeLabel = Messages.SSLTypeData.gb
|
||||
{ sslTypeLabel = Messages.Data.SSLType.gb
|
||||
, name = "Name"
|
||||
, connectionPlaceholder = "Connection name, e.g. 'gmail.com'"
|
||||
, connectionNameInfo = "The connection name must not contain whitespace or special characters."
|
@ -1,14 +1,14 @@
|
||||
module Messages.EmailSettingsManageComp exposing (..)
|
||||
module Messages.Comp.EmailSettingsManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.EmailSettingsFormComp
|
||||
import Messages.EmailSettingsTableComp
|
||||
import Messages.Comp.EmailSettingsForm
|
||||
import Messages.Comp.EmailSettingsTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, settingsForm : Messages.EmailSettingsFormComp.Texts
|
||||
, settingsTable : Messages.EmailSettingsTableComp.Texts
|
||||
, settingsForm : Messages.Comp.EmailSettingsForm.Texts
|
||||
, settingsTable : Messages.Comp.EmailSettingsTable.Texts
|
||||
, newSettings : String
|
||||
, addNewSmtpSettings : String
|
||||
, reallyDeleteConnection : String
|
||||
@ -19,8 +19,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, settingsForm = Messages.EmailSettingsFormComp.gb
|
||||
, settingsTable = Messages.EmailSettingsTableComp.gb
|
||||
, settingsForm = Messages.Comp.EmailSettingsForm.gb
|
||||
, settingsTable = Messages.Comp.EmailSettingsTable.gb
|
||||
, newSettings = "New Settings"
|
||||
, addNewSmtpSettings = "Add new SMTP settings"
|
||||
, reallyDeleteConnection = "Really delete these connection?"
|
@ -1,4 +1,4 @@
|
||||
module Messages.EmailSettingsTableComp exposing (..)
|
||||
module Messages.Comp.EmailSettingsTable exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,7 +1,7 @@
|
||||
module Messages.EquipmentFormComp exposing (..)
|
||||
module Messages.Comp.EquipmentForm exposing (..)
|
||||
|
||||
import Data.EquipmentUse exposing (EquipmentUse)
|
||||
import Messages.EquipmentUseData
|
||||
import Messages.Data.EquipmentUse
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -11,5 +11,5 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ equipmentUseLabel = Messages.EquipmentUseData.gb
|
||||
{ equipmentUseLabel = Messages.Data.EquipmentUse.gb
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
module Messages.EquipmentManageComp exposing (..)
|
||||
module Messages.Comp.EquipmentManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.EquipmentFormComp
|
||||
import Messages.EquipmentTableComp
|
||||
import Messages.Comp.EquipmentForm
|
||||
import Messages.Comp.EquipmentTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, equipmentTable : Messages.EquipmentTableComp.Texts
|
||||
, equipmentForm : Messages.EquipmentFormComp.Texts
|
||||
, equipmentTable : Messages.Comp.EquipmentTable.Texts
|
||||
, equipmentForm : Messages.Comp.EquipmentForm.Texts
|
||||
, createNewEquipment : String
|
||||
, newEquipment : String
|
||||
, reallyDeleteEquipment : String
|
||||
@ -19,8 +19,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, equipmentTable = Messages.EquipmentTableComp.gb
|
||||
, equipmentForm = Messages.EquipmentFormComp.gb
|
||||
, equipmentTable = Messages.Comp.EquipmentTable.gb
|
||||
, equipmentForm = Messages.Comp.EquipmentForm.gb
|
||||
, createNewEquipment = "Create a new equipment"
|
||||
, newEquipment = "New Equipment"
|
||||
, reallyDeleteEquipment = "Really delete this equipment?"
|
@ -1,7 +1,7 @@
|
||||
module Messages.EquipmentTableComp exposing (..)
|
||||
module Messages.Comp.EquipmentTable exposing (..)
|
||||
|
||||
import Data.EquipmentUse exposing (EquipmentUse)
|
||||
import Messages.EquipmentUseData
|
||||
import Messages.Data.EquipmentUse
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -15,5 +15,5 @@ gb : Texts
|
||||
gb =
|
||||
{ name = "Name"
|
||||
, use = "Use"
|
||||
, equipmentUseLabel = Messages.EquipmentUseData.gb
|
||||
, equipmentUseLabel = Messages.Data.EquipmentUse.gb
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
module Messages.FolderDetailComp exposing (..)
|
||||
module Messages.Comp.FolderDetail exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,14 +1,14 @@
|
||||
module Messages.FolderManageComp exposing (..)
|
||||
module Messages.Comp.FolderManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.FolderDetailComp
|
||||
import Messages.FolderTableComp
|
||||
import Messages.Comp.FolderDetail
|
||||
import Messages.Comp.FolderTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, folderDetail : Messages.FolderDetailComp.Texts
|
||||
, folderTable : Messages.FolderTableComp.Texts
|
||||
, folderDetail : Messages.Comp.FolderDetail.Texts
|
||||
, folderTable : Messages.Comp.FolderTable.Texts
|
||||
, showOwningFoldersOnly : String
|
||||
, createNewFolder : String
|
||||
, newFolder : String
|
||||
@ -18,8 +18,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, folderDetail = Messages.FolderDetailComp.gb
|
||||
, folderTable = Messages.FolderTableComp.gb
|
||||
, folderDetail = Messages.Comp.FolderDetail.gb
|
||||
, folderTable = Messages.Comp.FolderTable.gb
|
||||
, showOwningFoldersOnly = "Show owning folders only"
|
||||
, createNewFolder = "Create a new folder"
|
||||
, newFolder = "New Folder"
|
@ -1,4 +1,4 @@
|
||||
module Messages.FolderTableComp exposing (..)
|
||||
module Messages.Comp.FolderTable exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,7 +1,7 @@
|
||||
module Messages.ImapSettingsFormComp exposing (..)
|
||||
module Messages.Comp.ImapSettingsForm exposing (..)
|
||||
|
||||
import Data.SSLType exposing (SSLType)
|
||||
import Messages.SSLTypeData
|
||||
import Messages.Data.SSLType
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -25,7 +25,7 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ sslTypeLabel = Messages.SSLTypeData.gb
|
||||
{ sslTypeLabel = Messages.Data.SSLType.gb
|
||||
, name = "Name"
|
||||
, connectionNamePlaceholder = "Connection name, e.g. 'gmail.com'"
|
||||
, connectionNameInfo = "The connection name must not contain whitespace or special characters."
|
@ -1,14 +1,14 @@
|
||||
module Messages.ImapSettingsManageComp exposing (..)
|
||||
module Messages.Comp.ImapSettingsManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.ImapSettingsFormComp
|
||||
import Messages.ImapSettingsTableComp
|
||||
import Messages.Comp.ImapSettingsForm
|
||||
import Messages.Comp.ImapSettingsTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, imapForm : Messages.ImapSettingsFormComp.Texts
|
||||
, imapTable : Messages.ImapSettingsTableComp.Texts
|
||||
, imapForm : Messages.Comp.ImapSettingsForm.Texts
|
||||
, imapTable : Messages.Comp.ImapSettingsTable.Texts
|
||||
, addNewImapSettings : String
|
||||
, newSettings : String
|
||||
, reallyDeleteSettings : String
|
||||
@ -19,8 +19,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, imapForm = Messages.ImapSettingsFormComp.gb
|
||||
, imapTable = Messages.ImapSettingsTableComp.gb
|
||||
, imapForm = Messages.Comp.ImapSettingsForm.gb
|
||||
, imapTable = Messages.Comp.ImapSettingsTable.gb
|
||||
, addNewImapSettings = "Add new IMAP settings"
|
||||
, newSettings = "New Settings"
|
||||
, reallyDeleteSettings = "Really delete this mail-box connection?"
|
@ -1,4 +1,4 @@
|
||||
module Messages.ImapSettingsTableComp exposing (..)
|
||||
module Messages.Comp.ImapSettingsTable exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,4 +1,4 @@
|
||||
module Messages.ItemCardComp exposing (..)
|
||||
module Messages.Comp.ItemCard exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
14
modules/webapp/src/main/elm/Messages/Comp/ItemCardList.elm
Normal file
14
modules/webapp/src/main/elm/Messages/Comp/ItemCardList.elm
Normal file
@ -0,0 +1,14 @@
|
||||
module Messages.Comp.ItemCardList exposing (..)
|
||||
|
||||
import Messages.Comp.ItemCard
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ itemCard : Messages.Comp.ItemCard.Texts
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ itemCard = Messages.Comp.ItemCard.gb
|
||||
}
|
@ -1,22 +1,22 @@
|
||||
module Messages.ItemDetailComp exposing (..)
|
||||
module Messages.Comp.ItemDetail exposing (..)
|
||||
|
||||
import Messages.DetailEditComp
|
||||
import Messages.ItemDetail.AddFilesForm
|
||||
import Messages.ItemInfoHeaderComp
|
||||
import Messages.ItemMailComp
|
||||
import Messages.NotesComp
|
||||
import Messages.SentMailsComp
|
||||
import Messages.SingleAttachmentComp
|
||||
import Messages.Comp.DetailEdit
|
||||
import Messages.Comp.ItemDetail.AddFilesForm
|
||||
import Messages.Comp.ItemDetail.ItemInfoHeader
|
||||
import Messages.Comp.ItemDetail.Notes
|
||||
import Messages.Comp.ItemDetail.SingleAttachment
|
||||
import Messages.Comp.ItemMail
|
||||
import Messages.Comp.SentMails
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ addFilesForm : Messages.ItemDetail.AddFilesForm.Texts
|
||||
, itemInfoHeader : Messages.ItemInfoHeaderComp.Texts
|
||||
, singleAttachment : Messages.SingleAttachmentComp.Texts
|
||||
, sentMails : Messages.SentMailsComp.Texts
|
||||
, notes : Messages.NotesComp.Texts
|
||||
, itemMail : Messages.ItemMailComp.Texts
|
||||
, detailEdit : Messages.DetailEditComp.Texts
|
||||
{ addFilesForm : Messages.Comp.ItemDetail.AddFilesForm.Texts
|
||||
, itemInfoHeader : Messages.Comp.ItemDetail.ItemInfoHeader.Texts
|
||||
, singleAttachment : Messages.Comp.ItemDetail.SingleAttachment.Texts
|
||||
, sentMails : Messages.Comp.SentMails.Texts
|
||||
, notes : Messages.Comp.ItemDetail.Notes.Texts
|
||||
, itemMail : Messages.Comp.ItemMail.Texts
|
||||
, detailEdit : Messages.Comp.DetailEdit.Texts
|
||||
, key : String
|
||||
, backToSearchResults : String
|
||||
, previousItem : String
|
||||
@ -39,13 +39,13 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ addFilesForm = Messages.ItemDetail.AddFilesForm.gb
|
||||
, itemInfoHeader = Messages.ItemInfoHeaderComp.gb
|
||||
, singleAttachment = Messages.SingleAttachmentComp.gb
|
||||
, sentMails = Messages.SentMailsComp.gb
|
||||
, notes = Messages.NotesComp.gb
|
||||
, itemMail = Messages.ItemMailComp.gb
|
||||
, detailEdit = Messages.DetailEditComp.gb
|
||||
{ addFilesForm = Messages.Comp.ItemDetail.AddFilesForm.gb
|
||||
, itemInfoHeader = Messages.Comp.ItemDetail.ItemInfoHeader.gb
|
||||
, singleAttachment = Messages.Comp.ItemDetail.SingleAttachment.gb
|
||||
, sentMails = Messages.Comp.SentMails.gb
|
||||
, notes = Messages.Comp.ItemDetail.Notes.gb
|
||||
, itemMail = Messages.Comp.ItemMail.gb
|
||||
, detailEdit = Messages.Comp.DetailEdit.gb
|
||||
, key = "Key"
|
||||
, backToSearchResults = "Back to search results"
|
||||
, previousItem = "Previous item."
|
@ -1,11 +1,11 @@
|
||||
module Messages.ItemDetail.AddFilesForm exposing (..)
|
||||
module Messages.Comp.ItemDetail.AddFilesForm exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.DropzoneComp
|
||||
import Messages.Comp.Dropzone
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ dropzone : Messages.DropzoneComp.Texts
|
||||
{ dropzone : Messages.Comp.Dropzone.Texts
|
||||
, basics : Messages.Basics.Texts
|
||||
, addMoreFilesToItem : String
|
||||
, reset : String
|
||||
@ -16,7 +16,7 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ dropzone = Messages.DropzoneComp.gb
|
||||
{ dropzone = Messages.Comp.Dropzone.gb
|
||||
, basics = Messages.Basics.gb
|
||||
, addMoreFilesToItem = "Add more files to this item"
|
||||
, reset = "Reset"
|
@ -1,12 +1,12 @@
|
||||
module Messages.EditFormComp exposing (..)
|
||||
module Messages.Comp.ItemDetail.EditForm exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CustomFieldMultiInputComp
|
||||
import Messages.Comp.CustomFieldMultiInput
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, customFieldInput : Messages.CustomFieldMultiInputComp.Texts
|
||||
, customFieldInput : Messages.Comp.CustomFieldMultiInput.Texts
|
||||
, createNewCustomField : String
|
||||
, chooseDirection : String
|
||||
, selectPlaceholder : String
|
||||
@ -36,7 +36,7 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, customFieldInput = Messages.CustomFieldMultiInputComp.gb
|
||||
, customFieldInput = Messages.Comp.CustomFieldMultiInput.gb
|
||||
, createNewCustomField = "Create new custom field"
|
||||
, chooseDirection = "Choose a direction…"
|
||||
, selectPlaceholder = "Select…"
|
@ -1,4 +1,4 @@
|
||||
module Messages.ItemInfoHeaderComp exposing (..)
|
||||
module Messages.Comp.ItemDetail.ItemInfoHeader exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,12 +1,12 @@
|
||||
module Messages.MultiEditMenuComp exposing (..)
|
||||
module Messages.Comp.ItemDetail.MultiEditMenu exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CustomFieldMultiInputComp
|
||||
import Messages.Comp.CustomFieldMultiInput
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, customFieldMultiInput : Messages.CustomFieldMultiInputComp.Texts
|
||||
, customFieldMultiInput : Messages.Comp.CustomFieldMultiInput.Texts
|
||||
, tagModeAddInfo : String
|
||||
, tagModeRemoveInfo : String
|
||||
, tagModeReplaceInfo : String
|
||||
@ -34,7 +34,7 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, customFieldMultiInput = Messages.CustomFieldMultiInputComp.gb
|
||||
, customFieldMultiInput = Messages.Comp.CustomFieldMultiInput.gb
|
||||
, tagModeAddInfo = "Tags chosen here are *added* to all selected items."
|
||||
, tagModeRemoveInfo = "Tags chosen here are *removed* from all selected items."
|
||||
, tagModeReplaceInfo = "Tags chosen here *replace* those on selected items."
|
@ -1,4 +1,4 @@
|
||||
module Messages.NotesComp exposing (..)
|
||||
module Messages.Comp.ItemDetail.Notes exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,10 +1,10 @@
|
||||
module Messages.SingleAttachmentComp exposing (..)
|
||||
module Messages.Comp.ItemDetail.SingleAttachment exposing (..)
|
||||
|
||||
import Messages.AttachmentMetaComp
|
||||
import Messages.Comp.AttachmentMeta
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ attachmentMeta : Messages.AttachmentMetaComp.Texts
|
||||
{ attachmentMeta : Messages.Comp.AttachmentMeta.Texts
|
||||
, noName : String
|
||||
, openFileInNewTab : String
|
||||
, downloadFile : String
|
||||
@ -20,7 +20,7 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ attachmentMeta = Messages.AttachmentMetaComp.gb
|
||||
{ attachmentMeta = Messages.Comp.AttachmentMeta.gb
|
||||
, noName = "No name"
|
||||
, openFileInNewTab = "Open file in new tab"
|
||||
, downloadFile = "Download file"
|
@ -1,4 +1,4 @@
|
||||
module Messages.ItemMailComp exposing (..)
|
||||
module Messages.Comp.ItemMail exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,12 +1,12 @@
|
||||
module Messages.NotificationFormComp exposing (..)
|
||||
module Messages.Comp.NotificationForm exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CalEventInputComp
|
||||
import Messages.Comp.CalEventInput
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, calEventInput : Messages.CalEventInputComp.Texts
|
||||
, calEventInput : Messages.Comp.CalEventInput.Texts
|
||||
, reallyDeleteTask : String
|
||||
, startOnce : String
|
||||
, startTaskNow : String
|
||||
@ -36,7 +36,7 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, calEventInput = Messages.CalEventInputComp.gb
|
||||
, calEventInput = Messages.Comp.CalEventInput.gb
|
||||
, reallyDeleteTask = "Really delete this notification task?"
|
||||
, startOnce = "Start Once"
|
||||
, startTaskNow = "Start this task now"
|
@ -0,0 +1,24 @@
|
||||
module Messages.Comp.NotificationManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.Comp.NotificationForm
|
||||
import Messages.Comp.NotificationTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, notificationForm : Messages.Comp.NotificationForm.Texts
|
||||
, notificationTable : Messages.Comp.NotificationTable.Texts
|
||||
, newTask : String
|
||||
, createNewTask : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, notificationForm = Messages.Comp.NotificationForm.gb
|
||||
, notificationTable = Messages.Comp.NotificationTable.gb
|
||||
, newTask = "New Task"
|
||||
, createNewTask = "Create a new notification task"
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
module Messages.NotificationTableComp exposing (..)
|
||||
module Messages.Comp.NotificationTable exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,14 +1,14 @@
|
||||
module Messages.OrgFormComp exposing (..)
|
||||
module Messages.Comp.OrgForm exposing (..)
|
||||
|
||||
import Data.ContactType exposing (ContactType)
|
||||
import Data.OrgUse exposing (OrgUse)
|
||||
import Messages.AddressFormComp
|
||||
import Messages.ContactTypeData
|
||||
import Messages.OrgUseData
|
||||
import Messages.Comp.AddressForm
|
||||
import Messages.Data.ContactType
|
||||
import Messages.Data.OrgUse
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ addressForm : Messages.AddressFormComp.Texts
|
||||
{ addressForm : Messages.Comp.AddressForm.Texts
|
||||
, orgUseLabel : OrgUse -> String
|
||||
, name : String
|
||||
, shortName : String
|
||||
@ -24,8 +24,8 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ addressForm = Messages.AddressFormComp.gb
|
||||
, orgUseLabel = Messages.OrgUseData.gb
|
||||
{ addressForm = Messages.Comp.AddressForm.gb
|
||||
, orgUseLabel = Messages.Data.OrgUse.gb
|
||||
, name = "Name"
|
||||
, shortName = "Short Name"
|
||||
, use = "Use"
|
||||
@ -33,6 +33,6 @@ gb =
|
||||
, dontUseForSuggestions = "Do not use for suggestions."
|
||||
, address = "Address"
|
||||
, contacts = "Contacts"
|
||||
, contactTypeLabel = Messages.ContactTypeData.gb
|
||||
, contactTypeLabel = Messages.Data.ContactType.gb
|
||||
, notes = "Notes"
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
module Messages.OrgManageComp exposing (..)
|
||||
module Messages.Comp.OrgManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.OrgFormComp
|
||||
import Messages.OrgTableComp
|
||||
import Messages.Comp.OrgForm
|
||||
import Messages.Comp.OrgTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, orgForm : Messages.OrgFormComp.Texts
|
||||
, orgTable : Messages.OrgTableComp.Texts
|
||||
, orgForm : Messages.Comp.OrgForm.Texts
|
||||
, orgTable : Messages.Comp.OrgTable.Texts
|
||||
, newOrganization : String
|
||||
, createNewOrganization : String
|
||||
, reallyDeleteOrg : String
|
||||
@ -19,8 +19,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, orgForm = Messages.OrgFormComp.gb
|
||||
, orgTable = Messages.OrgTableComp.gb
|
||||
, orgForm = Messages.Comp.OrgForm.gb
|
||||
, orgTable = Messages.Comp.OrgTable.gb
|
||||
, newOrganization = "New Organization"
|
||||
, createNewOrganization = "Create a new organization"
|
||||
, reallyDeleteOrg = "Really delete this organization?"
|
@ -1,8 +1,8 @@
|
||||
module Messages.OrgTableComp exposing (..)
|
||||
module Messages.Comp.OrgTable exposing (..)
|
||||
|
||||
import Data.OrgUse exposing (OrgUse)
|
||||
import Messages.Basics
|
||||
import Messages.OrgUseData
|
||||
import Messages.Data.OrgUse
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -20,5 +20,5 @@ gb =
|
||||
, name = "Name"
|
||||
, address = "Address"
|
||||
, contact = "Contact"
|
||||
, orgUseLabel = Messages.OrgUseData.gb
|
||||
, orgUseLabel = Messages.Data.OrgUse.gb
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
module Messages.PersonFormComp exposing (..)
|
||||
module Messages.Comp.PersonForm exposing (..)
|
||||
|
||||
import Data.ContactType exposing (ContactType)
|
||||
import Data.PersonUse exposing (PersonUse)
|
||||
import Messages.AddressFormComp
|
||||
import Messages.ContactTypeData
|
||||
import Messages.PersonUseData
|
||||
import Messages.Comp.AddressForm
|
||||
import Messages.Data.ContactType
|
||||
import Messages.Data.PersonUse
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ addressForm : Messages.AddressFormComp.Texts
|
||||
{ addressForm : Messages.Comp.AddressForm.Texts
|
||||
, personUseLabel : PersonUse -> String
|
||||
, name : String
|
||||
, useOfPerson : String
|
||||
@ -27,8 +27,8 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ addressForm = Messages.AddressFormComp.gb
|
||||
, personUseLabel = Messages.PersonUseData.gb
|
||||
{ addressForm = Messages.Comp.AddressForm.gb
|
||||
, personUseLabel = Messages.Data.PersonUse.gb
|
||||
, name = "Name"
|
||||
, useOfPerson = "Use of this person"
|
||||
, useAsConcerningOnly = "Use as concerning person only"
|
||||
@ -39,6 +39,6 @@ gb =
|
||||
, chooseAnOrg = "Choose an organization"
|
||||
, address = "Address"
|
||||
, contacts = "Contacts"
|
||||
, contactTypeLabel = Messages.ContactTypeData.gb
|
||||
, contactTypeLabel = Messages.Data.ContactType.gb
|
||||
, notes = "Notes"
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
module Messages.PersonManageComp exposing (..)
|
||||
module Messages.Comp.PersonManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.PersonFormComp
|
||||
import Messages.PersonTableComp
|
||||
import Messages.Comp.PersonForm
|
||||
import Messages.Comp.PersonTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, personForm : Messages.PersonFormComp.Texts
|
||||
, personTable : Messages.PersonTableComp.Texts
|
||||
, personForm : Messages.Comp.PersonForm.Texts
|
||||
, personTable : Messages.Comp.PersonTable.Texts
|
||||
, newPerson : String
|
||||
, createNewPerson : String
|
||||
, reallyDeletePerson : String
|
||||
@ -19,8 +19,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, personForm = Messages.PersonFormComp.gb
|
||||
, personTable = Messages.PersonTableComp.gb
|
||||
, personForm = Messages.Comp.PersonForm.gb
|
||||
, personTable = Messages.Comp.PersonTable.gb
|
||||
, newPerson = "New Person"
|
||||
, createNewPerson = "Create a new person"
|
||||
, reallyDeletePerson = "Really delete this person?"
|
@ -1,8 +1,8 @@
|
||||
module Messages.PersonTableComp exposing (..)
|
||||
module Messages.Comp.PersonTable exposing (..)
|
||||
|
||||
import Data.PersonUse exposing (PersonUse)
|
||||
import Messages.Basics
|
||||
import Messages.PersonUseData
|
||||
import Messages.Data.PersonUse
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -20,5 +20,5 @@ gb =
|
||||
, name = "Name"
|
||||
, address = "Address"
|
||||
, contact = "Contact"
|
||||
, personUseLabel = Messages.PersonUseData.gb
|
||||
, personUseLabel = Messages.Data.PersonUse.gb
|
||||
}
|
@ -1,12 +1,12 @@
|
||||
module Messages.ScanMailboxFormComp exposing (..)
|
||||
module Messages.Comp.ScanMailboxForm exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CalEventInputComp
|
||||
import Messages.Comp.CalEventInput
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, calEventInput : Messages.CalEventInputComp.Texts
|
||||
, calEventInput : Messages.Comp.CalEventInput.Texts
|
||||
, reallyDeleteTask : String
|
||||
, startOnce : String
|
||||
, startNow : String
|
||||
@ -60,7 +60,7 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, calEventInput = Messages.CalEventInputComp.gb
|
||||
, calEventInput = Messages.Comp.CalEventInput.gb
|
||||
, reallyDeleteTask = "Really delete this scan mailbox task?"
|
||||
, startOnce = "Start Once"
|
||||
, startNow = "Start this task now"
|
@ -0,0 +1,24 @@
|
||||
module Messages.Comp.ScanMailboxManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.Comp.ScanMailboxForm
|
||||
import Messages.Comp.ScanMailboxTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, form : Messages.Comp.ScanMailboxForm.Texts
|
||||
, table : Messages.Comp.ScanMailboxTable.Texts
|
||||
, newTask : String
|
||||
, createNewTask : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, form = Messages.Comp.ScanMailboxForm.gb
|
||||
, table = Messages.Comp.ScanMailboxTable.gb
|
||||
, newTask = "New Task"
|
||||
, createNewTask = "Create a new scan mailbox task"
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
module Messages.ScanMailboxTableComp exposing (..)
|
||||
module Messages.Comp.ScanMailboxTable exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,14 +1,14 @@
|
||||
module Messages.SearchMenuComp exposing (..)
|
||||
module Messages.Comp.SearchMenu exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CustomFieldMultiInputComp
|
||||
import Messages.TagSelectComp
|
||||
import Messages.Comp.CustomFieldMultiInput
|
||||
import Messages.Comp.TagSelect
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, customFieldMultiInput : Messages.CustomFieldMultiInputComp.Texts
|
||||
, tagSelect : Messages.TagSelectComp.Texts
|
||||
, customFieldMultiInput : Messages.Comp.CustomFieldMultiInput.Texts
|
||||
, tagSelect : Messages.Comp.TagSelect.Texts
|
||||
, chooseDirection : String
|
||||
, choosePerson : String
|
||||
, chooseEquipment : String
|
||||
@ -45,8 +45,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, customFieldMultiInput = Messages.CustomFieldMultiInputComp.gb
|
||||
, tagSelect = Messages.TagSelectComp.gb
|
||||
, customFieldMultiInput = Messages.Comp.CustomFieldMultiInput.gb
|
||||
, tagSelect = Messages.Comp.TagSelect.gb
|
||||
, chooseDirection = "Choose a direction…"
|
||||
, choosePerson = "Choose a person"
|
||||
, chooseEquipment = "Choose an equipment"
|
@ -1,4 +1,4 @@
|
||||
module Messages.SearchStatsViewComp exposing (..)
|
||||
module Messages.Comp.SearchStatsView exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,4 +1,4 @@
|
||||
module Messages.SentMailsComp exposing (..)
|
||||
module Messages.Comp.SentMails exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,8 +1,8 @@
|
||||
module Messages.SourceFormComp exposing (..)
|
||||
module Messages.Comp.SourceForm exposing (..)
|
||||
|
||||
import Data.Language exposing (Language)
|
||||
import Messages.Basics
|
||||
import Messages.LanguageData
|
||||
import Messages.Data.Language
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -62,6 +62,6 @@ Specify a file glob to filter files when uploading archives
|
||||
, languageInfo =
|
||||
"Used for text extraction and analysis. The collective's "
|
||||
++ "default language is used if not specified here."
|
||||
, languageLabel = Messages.LanguageData.gb
|
||||
, languageLabel = Messages.Data.Language.gb
|
||||
, selectPlaceholder = "Select…"
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
module Messages.SourceManageComp exposing (..)
|
||||
module Messages.Comp.SourceManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.SourceFormComp
|
||||
import Messages.SourceTableComp
|
||||
import Messages.Comp.SourceForm
|
||||
import Messages.Comp.SourceTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, sourceTable : Messages.SourceTableComp.Texts
|
||||
, sourceForm : Messages.SourceFormComp.Texts
|
||||
, sourceTable : Messages.Comp.SourceTable.Texts
|
||||
, sourceForm : Messages.Comp.SourceForm.Texts
|
||||
, addSourceUrl : String
|
||||
, newSource : String
|
||||
, publicUploads : String
|
||||
@ -28,8 +28,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, sourceTable = Messages.SourceTableComp.gb
|
||||
, sourceForm = Messages.SourceFormComp.gb
|
||||
, sourceTable = Messages.Comp.SourceTable.gb
|
||||
, sourceForm = Messages.Comp.SourceForm.gb
|
||||
, addSourceUrl = "Add a source url"
|
||||
, newSource = "New source"
|
||||
, publicUploads = "Public Uploads"
|
@ -1,4 +1,4 @@
|
||||
module Messages.SourceTableComp exposing (..)
|
||||
module Messages.Comp.SourceTable exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,4 +1,4 @@
|
||||
module Messages.TagFormComp exposing (..)
|
||||
module Messages.Comp.TagForm exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,14 +1,14 @@
|
||||
module Messages.TagManageComp exposing (..)
|
||||
module Messages.Comp.TagManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.TagFormComp
|
||||
import Messages.TagTableComp
|
||||
import Messages.Comp.TagForm
|
||||
import Messages.Comp.TagTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, tagTable : Messages.TagTableComp.Texts
|
||||
, tagForm : Messages.TagFormComp.Texts
|
||||
, tagTable : Messages.Comp.TagTable.Texts
|
||||
, tagForm : Messages.Comp.TagForm.Texts
|
||||
, createNewTag : String
|
||||
, newTag : String
|
||||
, reallyDeleteTag : String
|
||||
@ -19,8 +19,8 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, tagTable = Messages.TagTableComp.gb
|
||||
, tagForm = Messages.TagFormComp.gb
|
||||
, tagTable = Messages.Comp.TagTable.gb
|
||||
, tagForm = Messages.Comp.TagForm.gb
|
||||
, createNewTag = "Create a new tag"
|
||||
, newTag = "New Tag"
|
||||
, reallyDeleteTag = "Really delete this tag?"
|
@ -1,4 +1,4 @@
|
||||
module Messages.TagSelectComp exposing (..)
|
||||
module Messages.Comp.TagSelect exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,4 +1,4 @@
|
||||
module Messages.TagTableComp exposing (..)
|
||||
module Messages.Comp.TagTable exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,9 +1,9 @@
|
||||
module Messages.UiSettingsFormComp exposing (..)
|
||||
module Messages.Comp.UiSettingsForm exposing (..)
|
||||
|
||||
import Data.Color exposing (Color)
|
||||
import Data.Fields exposing (Field)
|
||||
import Messages.ColorData
|
||||
import Messages.FieldsData
|
||||
import Messages.Data.Color
|
||||
import Messages.Data.Fields
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@ -78,10 +78,10 @@ gb =
|
||||
, browserNativePdfView = "Browser-native PDF preview"
|
||||
, keyboardShortcutLabel = "Use keyboard shortcuts for navigation and confirm/unconfirm with open edit menu."
|
||||
, tagCategoryColors = "Tag Category Colors"
|
||||
, colorLabel = Messages.ColorData.gb
|
||||
, colorLabel = Messages.Data.Color.gb
|
||||
, chooseTagColorLabel = "Choose color for tag categories"
|
||||
, tagColorDescription = "Tags can be represented differently based on their category."
|
||||
, fields = "Fields"
|
||||
, fieldsInfo = "Choose which fields to display in search and edit menus."
|
||||
, fieldLabel = Messages.FieldsData.gb
|
||||
, fieldLabel = Messages.Data.Fields.gb
|
||||
}
|
@ -1,12 +1,12 @@
|
||||
module Messages.UiSettingsManageComp exposing (..)
|
||||
module Messages.Comp.UiSettingsManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.UiSettingsFormComp
|
||||
import Messages.Comp.UiSettingsForm
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, uiSettingsForm : Messages.UiSettingsFormComp.Texts
|
||||
, uiSettingsForm : Messages.Comp.UiSettingsForm.Texts
|
||||
, saveSettings : String
|
||||
}
|
||||
|
||||
@ -14,6 +14,6 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, uiSettingsForm = Messages.UiSettingsFormComp.gb
|
||||
, uiSettingsForm = Messages.Comp.UiSettingsForm.gb
|
||||
, saveSettings = "Save settings"
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
module Messages.UserFormComp exposing (..)
|
||||
module Messages.Comp.UserForm exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
@ -1,13 +1,13 @@
|
||||
module Messages.UserManageComp exposing (..)
|
||||
module Messages.Comp.UserManage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.UserFormComp
|
||||
import Messages.UserTableComp
|
||||
import Messages.Comp.UserForm
|
||||
import Messages.Comp.UserTable
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ userTable : Messages.UserTableComp.Texts
|
||||
, userForm : Messages.UserFormComp.Texts
|
||||
{ userTable : Messages.Comp.UserTable.Texts
|
||||
, userForm : Messages.Comp.UserForm.Texts
|
||||
, users : String
|
||||
, newUser : String
|
||||
, addNewUser : String
|
||||
@ -21,8 +21,8 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ userTable = Messages.UserTableComp.gb
|
||||
, userForm = Messages.UserFormComp.gb
|
||||
{ userTable = Messages.Comp.UserTable.gb
|
||||
, userForm = Messages.Comp.UserForm.gb
|
||||
, basics = Messages.Basics.gb
|
||||
, users = "Users"
|
||||
, newUser = "New user"
|
@ -1,4 +1,4 @@
|
||||
module Messages.UserTableComp exposing (..)
|
||||
module Messages.Comp.UserTable exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,24 +0,0 @@
|
||||
module Messages.CustomFieldManageComp exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CustomFieldFormComp
|
||||
import Messages.CustomFieldTableComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, fieldForm : Messages.CustomFieldFormComp.Texts
|
||||
, fieldTable : Messages.CustomFieldTableComp.Texts
|
||||
, addCustomField : String
|
||||
, newCustomField : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, fieldForm = Messages.CustomFieldFormComp.gb
|
||||
, fieldTable = Messages.CustomFieldTableComp.gb
|
||||
, addCustomField = "Add a new custom field"
|
||||
, newCustomField = "New custom field"
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
module Messages.CustomFieldMultiInputComp exposing (..)
|
||||
|
||||
import Messages.CustomFieldInputComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ customFieldInput : Messages.CustomFieldInputComp.Texts
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ customFieldInput = Messages.CustomFieldInputComp.gb
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
module Messages.ColorData exposing (..)
|
||||
module Messages.Data.Color exposing (..)
|
||||
|
||||
import Data.Color exposing (Color(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.ContactTypeData exposing (..)
|
||||
module Messages.Data.ContactType exposing (..)
|
||||
|
||||
import Data.ContactType exposing (ContactType(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.CustomFieldTypeData exposing (..)
|
||||
module Messages.Data.CustomFieldType exposing (..)
|
||||
|
||||
import Data.CustomFieldType exposing (CustomFieldType(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.EquipmentUseData exposing (..)
|
||||
module Messages.Data.EquipmentUse exposing (..)
|
||||
|
||||
import Data.EquipmentUse exposing (EquipmentUse(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.FieldsData exposing (..)
|
||||
module Messages.Data.Fields exposing (..)
|
||||
|
||||
import Data.Fields exposing (Field(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.LanguageData exposing (..)
|
||||
module Messages.Data.Language exposing (..)
|
||||
|
||||
import Data.Language exposing (Language(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.OrgUseData exposing (..)
|
||||
module Messages.Data.OrgUse exposing (..)
|
||||
|
||||
import Data.OrgUse exposing (OrgUse(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.PersonUseData exposing (..)
|
||||
module Messages.Data.PersonUse exposing (..)
|
||||
|
||||
import Data.PersonUse exposing (PersonUse(..))
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.SSLTypeData exposing (..)
|
||||
module Messages.Data.SSLType exposing (..)
|
||||
|
||||
import Data.SSLType exposing (SSLType(..))
|
||||
|
@ -1,29 +0,0 @@
|
||||
module Messages.DetailEditComp exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CustomFieldFormComp
|
||||
import Messages.EquipmentFormComp
|
||||
import Messages.OrgFormComp
|
||||
import Messages.PersonFormComp
|
||||
import Messages.TagFormComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, tagForm : Messages.TagFormComp.Texts
|
||||
, personForm : Messages.PersonFormComp.Texts
|
||||
, orgForm : Messages.OrgFormComp.Texts
|
||||
, equipmentForm : Messages.EquipmentFormComp.Texts
|
||||
, customFieldForm : Messages.CustomFieldFormComp.Texts
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, tagForm = Messages.TagFormComp.gb
|
||||
, personForm = Messages.PersonFormComp.gb
|
||||
, orgForm = Messages.OrgFormComp.gb
|
||||
, equipmentForm = Messages.EquipmentFormComp.gb
|
||||
, customFieldForm = Messages.CustomFieldFormComp.gb
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
module Messages.ItemCardListComp exposing (..)
|
||||
|
||||
import Messages.ItemCardComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ itemCard : Messages.ItemCardComp.Texts
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ itemCard = Messages.ItemCardComp.gb
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
module Messages.ItemDetailPage exposing (..)
|
||||
|
||||
import Messages.EditFormComp
|
||||
import Messages.ItemDetailComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ itemDetail : Messages.ItemDetailComp.Texts
|
||||
, editForm : Messages.EditFormComp.Texts
|
||||
, editMetadata : String
|
||||
, collapseExpand : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ itemDetail = Messages.ItemDetailComp.gb
|
||||
, editForm = Messages.EditFormComp.gb
|
||||
, editMetadata = "Edit Metadata"
|
||||
, collapseExpand = "Collapse/Expand"
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
gb
|
@ -1,49 +0,0 @@
|
||||
module Messages.ManageDataPage exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CustomFieldManageComp
|
||||
import Messages.EquipmentManageComp
|
||||
import Messages.FolderManageComp
|
||||
import Messages.OrgManageComp
|
||||
import Messages.PersonManageComp
|
||||
import Messages.TagManageComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, tagManage : Messages.TagManageComp.Texts
|
||||
, equipmentManage : Messages.EquipmentManageComp.Texts
|
||||
, orgManage : Messages.OrgManageComp.Texts
|
||||
, personManage : Messages.PersonManageComp.Texts
|
||||
, folderManage : Messages.FolderManageComp.Texts
|
||||
, customFieldManage : Messages.CustomFieldManageComp.Texts
|
||||
, manageData : String
|
||||
, equipment : String
|
||||
, organization : String
|
||||
, person : String
|
||||
, folder : String
|
||||
, customFields : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, tagManage = Messages.TagManageComp.gb
|
||||
, equipmentManage = Messages.EquipmentManageComp.gb
|
||||
, orgManage = Messages.OrgManageComp.gb
|
||||
, personManage = Messages.PersonManageComp.gb
|
||||
, folderManage = Messages.FolderManageComp.gb
|
||||
, customFieldManage = Messages.CustomFieldManageComp.gb
|
||||
, manageData = "Manage Data"
|
||||
, equipment = "Equipment"
|
||||
, organization = "Organization"
|
||||
, person = "Person"
|
||||
, folder = "Folder"
|
||||
, customFields = "Custom Fields"
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
gb
|
@ -1,24 +0,0 @@
|
||||
module Messages.NotificationManageComp exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.NotificationFormComp
|
||||
import Messages.NotificationTableComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, notificationForm : Messages.NotificationFormComp.Texts
|
||||
, notificationTable : Messages.NotificationTableComp.Texts
|
||||
, newTask : String
|
||||
, createNewTask : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, notificationForm = Messages.NotificationFormComp.gb
|
||||
, notificationTable = Messages.NotificationTableComp.gb
|
||||
, newTask = "New Task"
|
||||
, createNewTask = "Create a new notification task"
|
||||
}
|
@ -1,16 +1,16 @@
|
||||
module Messages.CollectiveSettingsPage exposing (..)
|
||||
module Messages.Page.CollectiveSettings exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.CollectiveSettingsFormComp
|
||||
import Messages.SourceManageComp
|
||||
import Messages.UserManageComp
|
||||
import Messages.Comp.CollectiveSettingsForm
|
||||
import Messages.Comp.SourceManage
|
||||
import Messages.Comp.UserManage
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, userManage : Messages.UserManageComp.Texts
|
||||
, collectiveSettingsForm : Messages.CollectiveSettingsFormComp.Texts
|
||||
, sourceManage : Messages.SourceManageComp.Texts
|
||||
, userManage : Messages.Comp.UserManage.Texts
|
||||
, collectiveSettingsForm : Messages.Comp.CollectiveSettingsForm.Texts
|
||||
, sourceManage : Messages.Comp.SourceManage.Texts
|
||||
, collectiveSettings : String
|
||||
, insights : String
|
||||
, sources : String
|
||||
@ -25,9 +25,9 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, userManage = Messages.UserManageComp.gb
|
||||
, collectiveSettingsForm = Messages.CollectiveSettingsFormComp.gb
|
||||
, sourceManage = Messages.SourceManageComp.gb
|
||||
, userManage = Messages.Comp.UserManage.gb
|
||||
, collectiveSettingsForm = Messages.Comp.CollectiveSettingsForm.gb
|
||||
, sourceManage = Messages.Comp.SourceManage.gb
|
||||
, collectiveSettings = "Collective Settings"
|
||||
, insights = "Insights"
|
||||
, sources = "Sources"
|
@ -1,16 +1,16 @@
|
||||
module Messages.HomePage exposing (..)
|
||||
module Messages.Page.Home exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.HomeSideMenu
|
||||
import Messages.ItemCardListComp
|
||||
import Messages.SearchStatsViewComp
|
||||
import Messages.Comp.ItemCardList
|
||||
import Messages.Comp.SearchStatsView
|
||||
import Messages.Page.HomeSideMenu
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, sideMenu : Messages.HomeSideMenu.Texts
|
||||
, itemCardList : Messages.ItemCardListComp.Texts
|
||||
, searchStatsView : Messages.SearchStatsViewComp.Texts
|
||||
, itemCardList : Messages.Comp.ItemCardList.Texts
|
||||
, searchStatsView : Messages.Comp.SearchStatsView.Texts
|
||||
, sideMenu : Messages.Page.HomeSideMenu.Texts
|
||||
, contentSearch : String
|
||||
, searchInNames : String
|
||||
, selectModeTitle : String
|
||||
@ -32,9 +32,9 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, sideMenu = Messages.HomeSideMenu.gb
|
||||
, itemCardList = Messages.ItemCardListComp.gb
|
||||
, searchStatsView = Messages.SearchStatsViewComp.gb
|
||||
, itemCardList = Messages.Comp.ItemCardList.gb
|
||||
, searchStatsView = Messages.Comp.SearchStatsView.gb
|
||||
, sideMenu = Messages.Page.HomeSideMenu.gb
|
||||
, contentSearch = "Content search…"
|
||||
, searchInNames = "Search in names…"
|
||||
, selectModeTitle = "Select Mode"
|
@ -1,12 +1,12 @@
|
||||
module Messages.HomeSideMenu exposing (..)
|
||||
module Messages.Page.HomeSideMenu exposing (..)
|
||||
|
||||
import Messages.MultiEditMenuComp
|
||||
import Messages.SearchMenuComp
|
||||
import Messages.Comp.ItemDetail.MultiEditMenu
|
||||
import Messages.Comp.SearchMenu
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ searchMenu : Messages.SearchMenuComp.Texts
|
||||
, multiEdit : Messages.MultiEditMenuComp.Texts
|
||||
{ searchMenu : Messages.Comp.SearchMenu.Texts
|
||||
, multiEdit : Messages.Comp.ItemDetail.MultiEditMenu.Texts
|
||||
, editMode : String
|
||||
, resetSearchForm : String
|
||||
, multiEditHeader : String
|
||||
@ -17,8 +17,8 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ searchMenu = Messages.SearchMenuComp.gb
|
||||
, multiEdit = Messages.MultiEditMenuComp.gb
|
||||
{ searchMenu = Messages.Comp.SearchMenu.gb
|
||||
, multiEdit = Messages.Comp.ItemDetail.MultiEditMenu.gb
|
||||
, editMode = "Edit Mode"
|
||||
, resetSearchForm = "Reset search form"
|
||||
, multiEditHeader = "Multi-Edit"
|
26
modules/webapp/src/main/elm/Messages/Page/ItemDetail.elm
Normal file
26
modules/webapp/src/main/elm/Messages/Page/ItemDetail.elm
Normal file
@ -0,0 +1,26 @@
|
||||
module Messages.Page.ItemDetail exposing (..)
|
||||
|
||||
import Messages.Comp.ItemDetail
|
||||
import Messages.Comp.ItemDetail.EditForm
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ itemDetail : Messages.Comp.ItemDetail.Texts
|
||||
, editForm : Messages.Comp.ItemDetail.EditForm.Texts
|
||||
, editMetadata : String
|
||||
, collapseExpand : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ itemDetail = Messages.Comp.ItemDetail.gb
|
||||
, editForm = Messages.Comp.ItemDetail.EditForm.gb
|
||||
, editMetadata = "Edit Metadata"
|
||||
, collapseExpand = "Collapse/Expand"
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
gb
|
@ -1,4 +1,4 @@
|
||||
module Messages.LoginPage exposing
|
||||
module Messages.Page.Login exposing
|
||||
( Texts
|
||||
, de
|
||||
, gb
|
49
modules/webapp/src/main/elm/Messages/Page/ManageData.elm
Normal file
49
modules/webapp/src/main/elm/Messages/Page/ManageData.elm
Normal file
@ -0,0 +1,49 @@
|
||||
module Messages.Page.ManageData exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.Comp.CustomFieldManage
|
||||
import Messages.Comp.EquipmentManage
|
||||
import Messages.Comp.FolderManage
|
||||
import Messages.Comp.OrgManage
|
||||
import Messages.Comp.PersonManage
|
||||
import Messages.Comp.TagManage
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, tagManage : Messages.Comp.TagManage.Texts
|
||||
, equipmentManage : Messages.Comp.EquipmentManage.Texts
|
||||
, orgManage : Messages.Comp.OrgManage.Texts
|
||||
, personManage : Messages.Comp.PersonManage.Texts
|
||||
, folderManage : Messages.Comp.FolderManage.Texts
|
||||
, customFieldManage : Messages.Comp.CustomFieldManage.Texts
|
||||
, manageData : String
|
||||
, equipment : String
|
||||
, organization : String
|
||||
, person : String
|
||||
, folder : String
|
||||
, customFields : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, tagManage = Messages.Comp.TagManage.gb
|
||||
, equipmentManage = Messages.Comp.EquipmentManage.gb
|
||||
, orgManage = Messages.Comp.OrgManage.gb
|
||||
, personManage = Messages.Comp.PersonManage.gb
|
||||
, folderManage = Messages.Comp.FolderManage.gb
|
||||
, customFieldManage = Messages.Comp.CustomFieldManage.gb
|
||||
, manageData = "Manage Data"
|
||||
, equipment = "Equipment"
|
||||
, organization = "Organization"
|
||||
, person = "Person"
|
||||
, folder = "Folder"
|
||||
, customFields = "Custom Fields"
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
gb
|
@ -1,4 +1,4 @@
|
||||
module Messages.NewInvitePage exposing (..)
|
||||
module Messages.Page.NewInvite exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.QueuePage exposing (..)
|
||||
module Messages.Page.Queue exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Messages.RegisterPage exposing (..)
|
||||
module Messages.Page.Register exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
@ -1,14 +1,14 @@
|
||||
module Messages.UploadPage exposing (..)
|
||||
module Messages.Page.Upload exposing (..)
|
||||
|
||||
import Data.Language exposing (Language)
|
||||
import Messages.Basics
|
||||
import Messages.DropzoneComp
|
||||
import Messages.LanguageData
|
||||
import Messages.Comp.Dropzone
|
||||
import Messages.Data.Language
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, dropzone : Messages.DropzoneComp.Texts
|
||||
, dropzone : Messages.Comp.Dropzone.Texts
|
||||
, reset : String
|
||||
, allFilesOneItem : String
|
||||
, skipExistingFiles : String
|
||||
@ -34,7 +34,7 @@ type alias Texts =
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, dropzone = Messages.DropzoneComp.gb
|
||||
, dropzone = Messages.Comp.Dropzone.gb
|
||||
, reset = "Reset"
|
||||
, allFilesOneItem = "All files are one single item"
|
||||
, skipExistingFiles = "Skip files already present in docspell"
|
||||
@ -57,7 +57,7 @@ gb =
|
||||
, resetLine2 = " to upload more files."
|
||||
}
|
||||
, selectedFiles = "Selected Files"
|
||||
, languageLabel = Messages.LanguageData.gb
|
||||
, languageLabel = Messages.Data.Language.gb
|
||||
}
|
||||
|
||||
|
@ -1,20 +1,20 @@
|
||||
module Messages.UserSettingsPage exposing (..)
|
||||
module Messages.Page.UserSettings exposing (..)
|
||||
|
||||
import Messages.ChangePasswordFormComp
|
||||
import Messages.EmailSettingsManageComp
|
||||
import Messages.ImapSettingsManageComp
|
||||
import Messages.NotificationManageComp
|
||||
import Messages.ScanMailboxManageComp
|
||||
import Messages.UiSettingsManageComp
|
||||
import Messages.Comp.ChangePasswordForm
|
||||
import Messages.Comp.EmailSettingsManage
|
||||
import Messages.Comp.ImapSettingsManage
|
||||
import Messages.Comp.NotificationManage
|
||||
import Messages.Comp.ScanMailboxManage
|
||||
import Messages.Comp.UiSettingsManage
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ changePasswordForm : Messages.ChangePasswordFormComp.Texts
|
||||
, uiSettingsManage : Messages.UiSettingsManageComp.Texts
|
||||
, emailSettingsManage : Messages.EmailSettingsManageComp.Texts
|
||||
, imapSettingsManage : Messages.ImapSettingsManageComp.Texts
|
||||
, notificationManage : Messages.NotificationManageComp.Texts
|
||||
, scanMailboxManage : Messages.ScanMailboxManageComp.Texts
|
||||
{ changePasswordForm : Messages.Comp.ChangePasswordForm.Texts
|
||||
, uiSettingsManage : Messages.Comp.UiSettingsManage.Texts
|
||||
, emailSettingsManage : Messages.Comp.EmailSettingsManage.Texts
|
||||
, imapSettingsManage : Messages.Comp.ImapSettingsManage.Texts
|
||||
, notificationManage : Messages.Comp.NotificationManage.Texts
|
||||
, scanMailboxManage : Messages.Comp.ScanMailboxManage.Texts
|
||||
, userSettings : String
|
||||
, uiSettings : String
|
||||
, notifications : String
|
||||
@ -32,12 +32,12 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ changePasswordForm = Messages.ChangePasswordFormComp.gb
|
||||
, uiSettingsManage = Messages.UiSettingsManageComp.gb
|
||||
, emailSettingsManage = Messages.EmailSettingsManageComp.gb
|
||||
, imapSettingsManage = Messages.ImapSettingsManageComp.gb
|
||||
, notificationManage = Messages.NotificationManageComp.gb
|
||||
, scanMailboxManage = Messages.ScanMailboxManageComp.gb
|
||||
{ changePasswordForm = Messages.Comp.ChangePasswordForm.gb
|
||||
, uiSettingsManage = Messages.Comp.UiSettingsManage.gb
|
||||
, emailSettingsManage = Messages.Comp.EmailSettingsManage.gb
|
||||
, imapSettingsManage = Messages.Comp.ImapSettingsManage.gb
|
||||
, notificationManage = Messages.Comp.NotificationManage.gb
|
||||
, scanMailboxManage = Messages.Comp.ScanMailboxManage.gb
|
||||
, userSettings = "User Settings"
|
||||
, uiSettings = "UI Settings"
|
||||
, notifications = "Notifications"
|
@ -1,24 +0,0 @@
|
||||
module Messages.ScanMailboxManageComp exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
import Messages.ScanMailboxFormComp
|
||||
import Messages.ScanMailboxTableComp
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ basics : Messages.Basics.Texts
|
||||
, form : Messages.ScanMailboxFormComp.Texts
|
||||
, table : Messages.ScanMailboxTableComp.Texts
|
||||
, newTask : String
|
||||
, createNewTask : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ basics = Messages.Basics.gb
|
||||
, form = Messages.ScanMailboxFormComp.gb
|
||||
, table = Messages.ScanMailboxTableComp.gb
|
||||
, newTask = "New Task"
|
||||
, createNewTask = "Create a new scan mailbox task"
|
||||
}
|
Reference in New Issue
Block a user