From ffd39ef874837394bd9715c44e27ef3c2845016f Mon Sep 17 00:00:00 2001 From: Alex Iribarren Date: Sun, 17 Nov 2024 18:10:40 +0100 Subject: [PATCH] Rewrite help for clarity --- outlook/indico_outlook/plugin.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/outlook/indico_outlook/plugin.py b/outlook/indico_outlook/plugin.py index 60c95cc4..d8b9c8ba 100644 --- a/outlook/indico_outlook/plugin.py +++ b/outlook/indico_outlook/plugin.py @@ -60,21 +60,20 @@ class SettingsForm(IndicoForm): class OutlookUserPreferences(ExtraUserPreferences): fields = { 'outlook_active': BooleanField(_('Sync with Outlook'), widget=SwitchWidget(), - description=_('Add Indico events in which I participate to my Outlook ' - 'calendar')), + description=_('Add Indico events to my Outlook calendar')), 'outlook_registered': BooleanField(_('Sync event registrations with Outlook'), [HiddenUnless('extra_outlook_active', preserve_data=True)], widget=SwitchWidget(), - description=_("Add events I'm registered for to my Outlook calendar")), + description=_("Add to my Outlook calendar events I'm registered for")), 'outlook_favorite_events': BooleanField(_('Sync favorite events with Outlook'), [HiddenUnless('extra_outlook_active', preserve_data=True)], widget=SwitchWidget(), - description=_('Add events I mark as favorite to my Outlook calendar')), + description=_('Add to my Outlook calendar events that I mark as favorite')), 'outlook_favorite_categories': BooleanField(_('Sync favorite categories with Outlook'), [HiddenUnless('extra_outlook_active', preserve_data=True)], widget=SwitchWidget(), - description=_('Add all events in categories (and their first-level subcategories) I mark as ' - 'favorite to my Outlook calendar')), + description=_('Add to my Outlook calendar all events in categories (and their ' + 'first-level subcategories) that I mark as favorite')), 'outlook_status': SelectField(_('Outlook entry status'), [HiddenUnless('extra_outlook_active', preserve_data=True)], choices=_status_choices,