From 09b6b1bb05550bab5193f8e24791877f85ed6a59 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Wed, 20 May 2020 22:58:19 +0200 Subject: [PATCH] Improve user-task texts --- .../src/main/elm/Page/UserSettings/View.elm | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/modules/webapp/src/main/elm/Page/UserSettings/View.elm b/modules/webapp/src/main/elm/Page/UserSettings/View.elm index 0ea0a609..14a69583 100644 --- a/modules/webapp/src/main/elm/Page/UserSettings/View.elm +++ b/modules/webapp/src/main/elm/Page/UserSettings/View.elm @@ -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)