@@ -60,21 +60,20 @@ class SettingsForm(IndicoForm):
60
60
class OutlookUserPreferences (ExtraUserPreferences ):
61
61
fields = {
62
62
'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' )),
65
64
'outlook_registered' : BooleanField (_ ('Sync event registrations with Outlook' ),
66
65
[HiddenUnless ('extra_outlook_active' , preserve_data = True )],
67
66
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" )),
69
68
'outlook_favorite_events' : BooleanField (_ ('Sync favorite events with Outlook' ),
70
69
[HiddenUnless ('extra_outlook_active' , preserve_data = True )],
71
70
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' )),
73
72
'outlook_favorite_categories' : BooleanField (_ ('Sync favorite categories with Outlook' ),
74
73
[HiddenUnless ('extra_outlook_active' , preserve_data = True )],
75
74
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 ' )),
78
77
'outlook_status' : SelectField (_ ('Outlook entry status' ),
79
78
[HiddenUnless ('extra_outlook_active' , preserve_data = True )],
80
79
choices = _status_choices ,
0 commit comments