Skip to content

Commit ffd39ef

Browse files
committed
Rewrite help for clarity
1 parent 55802e4 commit ffd39ef

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

outlook/indico_outlook/plugin.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,20 @@ class SettingsForm(IndicoForm):
6060
class OutlookUserPreferences(ExtraUserPreferences):
6161
fields = {
6262
'outlook_active': BooleanField(_('Sync with Outlook'), widget=SwitchWidget(),
63-
description=_('Add Indico events in which I participate to my Outlook '
64-
'calendar')),
63+
description=_('Add Indico events to my Outlook calendar')),
6564
'outlook_registered': BooleanField(_('Sync event registrations with Outlook'),
6665
[HiddenUnless('extra_outlook_active', preserve_data=True)],
6766
widget=SwitchWidget(),
68-
description=_("Add events I'm registered for to my Outlook calendar")),
67+
description=_("Add to my Outlook calendar events I'm registered for")),
6968
'outlook_favorite_events': BooleanField(_('Sync favorite events with Outlook'),
7069
[HiddenUnless('extra_outlook_active', preserve_data=True)],
7170
widget=SwitchWidget(),
72-
description=_('Add events I mark as favorite to my Outlook calendar')),
71+
description=_('Add to my Outlook calendar events that I mark as favorite')),
7372
'outlook_favorite_categories': BooleanField(_('Sync favorite categories with Outlook'),
7473
[HiddenUnless('extra_outlook_active', preserve_data=True)],
7574
widget=SwitchWidget(),
76-
description=_('Add all events in categories (and their first-level subcategories) I mark as '
77-
'favorite to my Outlook calendar')),
75+
description=_('Add to my Outlook calendar all events in categories (and their '
76+
'first-level subcategories) that I mark as favorite')),
7877
'outlook_status': SelectField(_('Outlook entry status'),
7978
[HiddenUnless('extra_outlook_active', preserve_data=True)],
8079
choices=_status_choices,

0 commit comments

Comments
 (0)