diff options
Diffstat (limited to 'comm/calendar/base/content/calendar-status-bar.inc.xhtml')
-rw-r--r-- | comm/calendar/base/content/calendar-status-bar.inc.xhtml | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/comm/calendar/base/content/calendar-status-bar.inc.xhtml b/comm/calendar/base/content/calendar-status-bar.inc.xhtml new file mode 100644 index 0000000000..e99078a27b --- /dev/null +++ b/comm/calendar/base/content/calendar-status-bar.inc.xhtml @@ -0,0 +1,75 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +<!-- event/task in tab statusbarpanels --> +<hbox id="status-privacy" + class="statusbarpanel event-dialog" + align="center" + flex="1" + collapsed="true" + pack="start"> + <label value="&event.statusbarpanel.privacy.label;"/> + <hbox id="status-privacy-public-box" privacy="PUBLIC"> + <label value="&event.menu.options.privacy.public.label;"/> + </hbox> + <hbox id="status-privacy-confidential-box" privacy="CONFIDENTIAL"> + <label value="&event.menu.options.privacy.confidential.label;"/> + </hbox> + <hbox id="status-privacy-private-box" privacy="PRIVATE"> + <label value="&event.menu.options.privacy.private.label;"/> + </hbox> +</hbox> +<hbox id="status-priority" + class="statusbarpanel event-dialog" + align="center" + flex="1" + collapsed="true" + pack="start"> + <label value="&event.priority2.label;"/> + <html:img class="cal-statusbar-1" /> +</hbox> +<hbox id="status-status" + class="statusbarpanel event-dialog" + align="center" + flex="1" + collapsed="true" + pack="start"> + <label value="&task.status.label;"/> + <label id="status-status-tentative-label" + value="&newevent.status.tentative.label;" + hidden="true"/> + <label id="status-status-confirmed-label" + value="&newevent.status.confirmed.label;" + hidden="true"/> + <label id="status-status-cancelled-label" + value="&newevent.eventStatus.cancelled.label;" + hidden="true"/> +</hbox> +<hbox id="status-freebusy" + class="statusbarpanel event-only event-dialog" + align="center" + flex="1" + collapsed="true" + pack="start"> + <label value="&event.statusbarpanel.freebusy.label;"/> + <label id="status-freebusy-free-label" + value="&event.freebusy.legend.free;" + hidden="true"/> + <label id="status-freebusy-busy-label" + value="&event.freebusy.legend.busy;" + hidden="true"/> +</hbox> +<!-- end event/task in tab statusbarpanels --> + +<calendar-modebox id="calendar-show-todaypane-panel" + class="statusbarpanel themeable-brighttext hide-when-calendar-deactivated" + mode="mail,calendar,task,chat,calendarEvent,calendarTask" + collapsedinmodes="special" + pack="center"> + <toolbarbutton id="calendar-status-todaypane-button" + type="checkbox" + label="&todaypane.statusButton.label;" + tooltiptext="&calendar.todaypane.button.tooltip;" + command="calendar_toggle_todaypane_command"/> +</calendar-modebox> |