diff --git a/UI/Contacts/Toolbars/SOGoContactFolder.toolbar b/UI/Contacts/Toolbars/SOGoContactFolder.toolbar index 2bcf4b68c..6c6971f5e 100644 --- a/UI/Contacts/Toolbars/SOGoContactFolder.toolbar +++ b/UI/Contacts/Toolbars/SOGoContactFolder.toolbar @@ -4,26 +4,31 @@ jsLink="js_card"; label="New Card"; image="new-card.png"; - onclick = "newContact(this); return false;"; }, + onclick = "newContact(this); return false;"; + tooltip = "Create a new address book card"; }, { link = "new_list"; enabled = "NO"; label="New List"; - image="new-list.png"; } + image="new-list.png"; + tooltip = "Create a new list"; } ), ( { link = "edit"; label = "Modify"; onclick = "return onToolbarEditSelectedContacts(this);"; - image = "properties.png"; }, + image = "properties.png"; + tooltip = "Edit the selected card"; }, { link = "write"; label="Write"; onclick = "return onToolbarWriteToSelectedContacts(this);"; - image="write.png"; } + image="write.png"; + tooltip = "Send a mail message"; } ), ( { link = "delete"; label="Delete"; onclick = "return uixDeleteSelectedContacts(this);"; - image="delete.png"; } + image="delete.png"; + tooltip = "Delete selected card or address book"; } ) ) diff --git a/UI/MailerUI/English.lproj/Localizable.strings b/UI/MailerUI/English.lproj/Localizable.strings index 01d4440b4..9e18ecd30 100644 --- a/UI/MailerUI/English.lproj/Localizable.strings +++ b/UI/MailerUI/English.lproj/Localizable.strings @@ -23,7 +23,7 @@ "Home" = "Home"; "Calendar" = "Calendar"; -"Addressbook" = "Addressbook"; +"Addressbook" = "Address Book"; "Mail" = "Mail"; "Right Administration" = "Right Administration"; @@ -71,7 +71,7 @@ "cc" = "Cc"; "bcc" = "Bcc"; -"Addressbook" = "Addressbook"; +"Addressbook" = "Address Book"; "Anais" = "Anais"; "Edit Draft..." = "Edit Draft..."; diff --git a/UI/MailerUI/Toolbars/SOGoDraftObject.toolbar b/UI/MailerUI/Toolbars/SOGoDraftObject.toolbar index 6355b0a0e..c78528b91 100644 --- a/UI/MailerUI/Toolbars/SOGoDraftObject.toolbar +++ b/UI/MailerUI/Toolbars/SOGoDraftObject.toolbar @@ -5,23 +5,27 @@ onclick = "return clickedEditorSend(this);"; image = "tb-compose-send-flat-24x24.png"; cssClass = "tbicon_send"; - label = "Send"; }, + label = "Send"; + tooltip = "Send this message now"; }, { link = "#"; onclick = "return onContactAdd(null);"; image = "tb-compose-contacts-flat-24x24.png"; cssClass = "tbicon_addressbook"; - label = "Contacts"; }, + label = "Contacts"; + tooltip = "Select a recipient from an Address Book"; }, { link = "#"; isSafe = NO; onclick = "return clickedEditorAttach(this)"; image = "tb-compose-attach-flat-24x24.png"; cssClass = "tbicon_attach"; - label = "Attach"; }, + label = "Attach"; + tooltip = "Include an attachment"; }, { link = "#"; isSafe = NO; onclick = "return clickedEditorSave(this);"; image = "tb-mail-file-flat-24x24.png"; cssClass = "tbicon_save"; - label = "Save"; }, + label = "Save"; + tooltip = "Save this message"; }, ) ) diff --git a/UI/MailerUI/Toolbars/SOGoMailObject.toolbar b/UI/MailerUI/Toolbars/SOGoMailObject.toolbar index ac4ad5a82..a2ba2dbef 100644 --- a/UI/MailerUI/Toolbars/SOGoMailObject.toolbar +++ b/UI/MailerUI/Toolbars/SOGoMailObject.toolbar @@ -6,16 +6,21 @@ cssClass = "tbicon_getmail"; label = "Get Mail"; onclick = "return refreshMailbox(this);"; - }, + tooltip = "Get new messages"; }, { link = "#"; isSafe = NO; image = "tb-mail-write-flat-24x24.png"; onclick = "return onComposeMessage();"; - cssClass = "tbicon_compose"; label = "Write"; }, - { link = "#"; target = "addressbook"; + cssClass = "tbicon_compose"; + label = "Write"; + tooltip = "Create a new message"; }, + { link = "#"; + target = "addressbook"; onclick = "openAddressbook(this);return false;"; image = "tb-mail-addressbook-flat-24x24.png"; - cssClass = "tbicon_addressbook"; label = "Addressbook"; }, + cssClass = "tbicon_addressbook"; + label = "Addressbook"; + tooltip = "Go to address book"; }, ), ( // second group @@ -23,19 +28,23 @@ onclick = "return openMessageWindowsForSelection('reply');"; isSafe = NO; image = "tb-mail-reply-flat-24x24.png"; - cssClass = "tbicon_reply"; label = "Reply"; }, - + cssClass = "tbicon_reply"; + label = "Reply"; + tooltip = "Reply to the message"; }, { link = "replyall"; onclick = "return openMessageWindowsForSelection('replyall');"; isSafe = NO; image = "tb-mail-replyall-flat-24x24.png"; - cssClass = "tbicon_replyall"; label = "Reply All"; }, - + cssClass = "tbicon_replyall"; + label = "Reply All"; + tooltip = "Reply to sender and all recipients"; }, { link = "forward"; onclick = "return openMessageWindowsForSelection('forward');"; isSafe = NO; image = "tb-mail-forward-flat-24x24.png"; - cssClass = "tbicon_forward"; label = "Forward"; }, + cssClass = "tbicon_forward"; + label = "Forward"; + tooltip = "Forward selected message"; }, ), ( // third group @@ -44,22 +53,27 @@ onclick = "onMenuDeleteMessage(event);"; // enabled = showMarkDeletedButton; image = "tb-mail-delete-flat-24x24.png"; - cssClass = "tbicon_delete"; label = "Delete"; }, + cssClass = "tbicon_delete"; + label = "Delete"; + tooltip = "Delete selected message or folder"; }, { link = "#"; isSafe = NO; image = "tb-mail-junk-flat-24x24.png"; - cssClass = "tbicon_junk"; label = "Junk"; - }, + cssClass = "tbicon_junk"; + label = "Junk"; + tooltip = "Mark the selected messages as junk"; }, ), ( { link = "#"; onclick = "return onPrintCurrentMessage(event);"; cssClass = "tbicon_print"; image = "tb-mail-print-flat-24x24.png"; - label = "Print"; }, + label = "Print"; + tooltip = "Print this message"; }, { link = "#"; image = "tb-mail-stop-flat-24x24.png"; cssClass = "tbicon_stop"; - label = "Stop"; }, + label = "Stop"; + tooltip = "Stop the current transfer"; }, ), ) diff --git a/UI/Scheduler/Toolbars/SOGoAppointmentFolder.toolbar b/UI/Scheduler/Toolbars/SOGoAppointmentFolder.toolbar index 296c30696..b50fa350e 100644 --- a/UI/Scheduler/Toolbars/SOGoAppointmentFolder.toolbar +++ b/UI/Scheduler/Toolbars/SOGoAppointmentFolder.toolbar @@ -3,39 +3,48 @@ isSafe = NO; label = "New Event"; onclick = "return newEvent(this, 'event');"; - image = "new-event.png"; }, + image = "new-event.png"; + tooltip = "Create a new event"; }, { link = "new_task"; label="New Task"; image = "new-task.png"; onclick = "return newEvent(this, 'task');"; - image = "new-task.png"; }, + image = "new-task.png"; + tooltip = "Create a new task"; }, { link = "edit"; label="Edit"; onclick = "return editEvent(this);"; - image = "edit.png"; }, + image = "edit.png"; + tooltip = "Edit this event or task"; }, { link = "delete"; label="Delete"; onclick = "return deleteEvent(this);"; - image = "delete.png"; } ), + image = "delete.png"; + tooltip = "Delete this event or task"; } ), ( { link = "today"; label="Go to Today"; onclick = "return gotoToday();"; - image = "goto-today.png" } ), + image = "goto-today.png"; + tooltip = "Go to today"; } ), ( { link = "dayoverview"; label="Day View"; onclick = "return onDayOverview();"; - image = "day-view.png"; }, + image = "day-view.png"; + tooltip = "Switch to day view"; }, /* disabled until we fix the view */ /* { link = "dayoverview"; label="Multicolumn Day View"; onclick = "return onMulticolumnDayOverview();"; - image = "day-view-multicolumn.png"; }, */ + image = "day-view-multicolumn.png"; + tooltip = ""; }, */ { link = "weekoverview"; label="Week View"; onclick = "return onWeekOverview();"; - image = "week-view.png"; }, + image = "week-view.png"; + tooltip = "Switch to week view"; }, { link = "monthoverview"; label="Month View"; onclick = "return onMonthOverview();"; - image = "month-view.png"; } ) + image = "month-view.png"; + tooltip = "Switch to month view"; } ) ) diff --git a/UI/Templates/UIxToolbar.wox b/UI/Templates/UIxToolbar.wox index 5ba95b34b..38ac3b24c 100644 --- a/UI/Templates/UIxToolbar.wox +++ b/UI/Templates/UIxToolbar.wox @@ -18,11 +18,11 @@ >