diff options
-rw-r--r-- | ui/ChangeLog | 8 | ||||
-rw-r--r-- | ui/evolution-event-editor.xml | 11 | ||||
-rw-r--r-- | ui/evolution-task-editor.xml | 73 |
3 files changed, 84 insertions, 8 deletions
diff --git a/ui/ChangeLog b/ui/ChangeLog index df6942c02a..8333569bff 100644 --- a/ui/ChangeLog +++ b/ui/ChangeLog @@ -1,3 +1,11 @@ +2005-11-16 Chenthill Palanisamy <pchenthill@novell.com> + + * evolution-event-editor.xml: Removed the view attendee + from menu bar and corrected the recurrence spelling. + * Makefile.am: + * evolution-task-editor.xml: Added the file for task + editor. + 2005-11-14 Srinivasa Ragavan <sragavan@novell.com> * Makefile.am: Added two ui files evolution-editor.xml diff --git a/ui/evolution-event-editor.xml b/ui/evolution-event-editor.xml index addb75bf15..2b35a0be3c 100644 --- a/ui/evolution-event-editor.xml +++ b/ui/evolution-event-editor.xml @@ -1,9 +1,5 @@ <Root> <commands> - <cmd name="ViewAttendee" _label="_Attendee" - _tip="Toggles whether the Attendee field is displayed" - type="toggle" state="0"/> - <cmd name="ViewRole" _label="R_ole Field" _tip="Toggles whether the Role field is displayed" type="toggle" state="0"/> @@ -45,7 +41,7 @@ <cmd name="ActionClassConfidential" _label="_Confidential" type="radio" group="class" _tip="Classify as Confidential"/> - <cmd name="ActionRecurrance" _label="Recurrance" + <cmd name="ActionRecurrence" _label="Recurrence" _tip="Make this a recurring event" pixtype="pixbuf"/> <cmd name="ActionFreeBusy" _label="Free/Busy" _tip="Query free / busy information for the attendees" pixtype="pixbuf"/> @@ -57,7 +53,6 @@ <menu> <submenu name="View"> <placeholder name="AttendeeOptions"> - <menuitem name="ViewAttendee" verb=""/> <menuitem name="ViewType" verb="" /> <menuitem name="ViewStatus" verb="" /> <menuitem name="ViewRole" verb="" /> @@ -79,7 +74,7 @@ <menuitem name="ActionClassPrivate" id="ActionClassPrivate" verb=""/> <menuitem name="ActionClassConfidential" id="ActionClassConfidential" verb=""/> </submenu> - <menuitem name="ActionRecurrance" verb="" _label="Recurrance" pixtype="pixbuf"/> + <menuitem name="ActionRecurrence" verb="" _label="Recurrence" pixtype="pixbuf"/> <menuitem name="ActionFreeBusy" verb="" _label="Free/Busy"/> </submenu> </menu> @@ -88,7 +83,7 @@ <toolitem name="ActionAlarm" verb="" _label="Alarms" pixtype="pixbuf" /> <toolitem name="ActionAllDayEvent" verb="" _label="All day Event" pixtype="pixbuf"/> <toolitem name="ViewTimeZone" verb="" _label="Time Zone" pixtype="pixbuf"/> - <toolitem name="ActionRecurrance" verb="" _label="Recurrance" pixtype="pixbuf"/> + <toolitem name="ActionRecurrence" verb="" _label="Recurrence" pixtype="pixbuf"/> <toolitem name="ActionFreeBusy" verb="" _label="Free/Busy" pixtype="pixbuf"/> </dockitem> diff --git a/ui/evolution-task-editor.xml b/ui/evolution-task-editor.xml new file mode 100644 index 0000000000..8704d36910 --- /dev/null +++ b/ui/evolution-task-editor.xml @@ -0,0 +1,73 @@ +<Root> + <commands> + <cmd name="ViewRole" _label="R_ole Field" + _tip="Toggles whether the Role field is displayed" + type="toggle" state="0"/> + + <cmd name="ViewRSVP" _label="_RSVP" + _tip="Toggles whether the RSVP field is displayed" + type="toggle" state="0"/> + + <cmd name="ViewType" _label="_Type Field" + _tip="Toggles whether the Attendee Type field is displayed" + type="toggle" state="0"/> + + <cmd name="ViewStatus" _label="_Status Field" + _tip="Toggles whether the Status field is displayed" + type="toggle" state="0"/> + + <cmd name="ViewTimeZone" _label="Show Time _Zone" + _tip="Toggles whether the time zone is displayed" + type="toggle" state="0" pixtype="pixbuf"/> + + <cmd name="ViewCategories" _label="_Categories" + _tip="Toggles whether to display categories" + type="toggle" state="0"/> + + <cmd name="ActionClassPublic" _label="Pu_blic" + type="radio" group="class" _tip="Classify as public"/> + + <cmd name="ActionClassPrivate" _label="_Private" + type="radio" group="class" _tip="Classify as Private"/> + + <cmd name="ActionClassConfidential" _label="_Confidential" + type="radio" group="class" _tip="Classify as Confidential"/> + + <cmd name="OptionStatus" + _tip="Click change / view the status details of the task" accel="*Control**Alt*t" pixtype="pixbuf"/> + <cmd name="InsertSendOptions" _label="Send Options" + _tip="Insert advanced send options"/> + + </commands> + + <menu> + <submenu name="View"> + <placeholder name="AttendeeOptions"> + <menuitem name="ViewType" verb="" /> + <menuitem name="ViewStatus" verb="" /> + <menuitem name="ViewRole" verb="" /> + <menuitem name="ViewRSVP" verb="" /> + <separator f="" name="timezonesep"/> + <menuitem name="ViewTimeZone" verb=""/> + <menuitem name="ViewCategories" verb=""/> + </placeholder> + </submenu> + <submenu name="Insert"> + <menuitem name="InsertSendOptions" verb="" _label="Send Options"/> + </submenu> + <submenu name="Options"> + <submenu name="Classification" _label="_Classification"> + <menuitem name="ActionClassPublic" id="ActionClassPublic" verb=""/> + <menuitem name="ActionClassPrivate" id="ActionClassPrivate" verb=""/> + <menuitem name="ActionClassConfidential" id="ActionClassConfidential" verb=""/> + </submenu> + <menuitem name="OptionStatus" verb="" _label="_Status Details" pixtype="pixbuf"/> + </submenu> + </menu> + + <dockitem name="Toolbar"> + <toolitem name="ViewTimeZone" verb="" _label="Time Zone" pixtype="pixbuf"/> + <toolitem name="OptionStatus" verb="" _label="Status Details" pixtype="pixbuf"/> + </dockitem> + +</Root> |