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 [] , p []
[ text "Docspell can notify you once the due dates of your items come closer. " [ text """
, text "Notification is done via e-mail. You need to provide a connection in " Docspell can notify you once the due dates of your items
, text "your e-mail settings." come closer. Notification is done via e-mail. You need to
provide a connection in your e-mail settings."""
] ]
, p [] , 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" ] , em [] [ text "Remind Days" ]
, text " days." , text " days and sends this list via e-mail."
] ]
, Html.map NotificationMsg , Html.map NotificationMsg
(Comp.NotificationForm.view "segment" model.notificationModel) (Comp.NotificationForm.view "segment" model.notificationModel)
@ -134,14 +135,20 @@ viewScanMailboxForm model =
] ]
] ]
, p [] , 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 "You need to provide a connection in "
, text "your e-mail (imap) settings." , text "your e-mail (imap) settings."
] ]
, p [] , p []
[ text "Each time this is executed, docspell goes through all configured folders " [ text """
, text "and imports mails matching the search criteria. The number of mails to import " Docspell goes through all configured folders and imports
, text "at one task run is limited. Mails already read in are skipped." 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 , Html.map ScanMailboxMsg
(Comp.ScanMailboxForm.view "segment" model.scanMailboxModel) (Comp.ScanMailboxForm.view "segment" model.scanMailboxModel)