Improve user-task texts

This commit is contained in:
Eike Kettner 2020-05-20 22:58:19 +02:00
parent d9782582d8
commit 09b6b1bb05

View File

@ -111,14 +111,15 @@ viewNotificationForm model =
]
]
, p []
[ text "Docspell can notify you once the due dates of your items come closer. "
, text "Notification is done via e-mail. You need to provide a connection in "
, text "your e-mail settings."
[ text """
Docspell can notify you once the due dates of your items
come closer. Notification is done via e-mail. You need to
provide a connection in your e-mail settings."""
]
, p []
[ text "Each time this is executed, docspell finds all items that are due in "
[ text "Docspell finds all items that are due in "
, em [] [ text "Remind Days" ]
, text " days."
, text " days and sends this list via e-mail."
]
, Html.map NotificationMsg
(Comp.NotificationForm.view "segment" model.notificationModel)
@ -134,14 +135,20 @@ viewScanMailboxForm model =
]
]
, p []
[ text "Docspell can scan folders of your mailbox for mails to import. "
[ text "Docspell can scan folders of your mailbox to import your mails. "
, text "You need to provide a connection in "
, text "your e-mail (imap) settings."
]
, p []
[ text "Each time this is executed, docspell goes through all configured folders "
, text "and imports mails matching the search criteria. The number of mails to import "
, text "at one task run is limited. Mails already read in are skipped."
[ text """
Docspell goes through all configured folders and imports
mails matching the search criteria. Mails are skipped if
they were imported in a previous run and the corresponding
items still exist. After submitting a mail into docspell,
you can choose to move it to another folder, to delete it
or to just leave it there. In the latter case you should
adjust the schedule to avoid reading over the same mails
again."""
]
, Html.map ScanMailboxMsg
(Comp.ScanMailboxForm.view "segment" model.scanMailboxModel)