diff options
author | thomascube <thomas@roundcube.net> | 2012-03-03 18:32:31 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-03-03 18:32:31 +0000 |
commit | 6357223bd1a8d5ce8d3658e5940aa71e663cf033 (patch) | |
tree | a98ddd3d9cacd28c9d8ceefa1975854746670993 | |
parent | 1837c330028ab7906ac67d0b50882d7b1fa59a3d (diff) |
Fix spelling
-rw-r--r-- | program/js/app.js | 8 | ||||
-rw-r--r-- | program/steps/mail/compose.inc | 6 | ||||
-rw-r--r-- | skins/larry/templates/compose.html | 2 | ||||
-rw-r--r-- | skins/larry/templates/messagepreview.html | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/program/js/app.js b/program/js/app.js index ca73db57c..430d92daf 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -277,13 +277,13 @@ function rcube_webmail() if (this.gui_objects.contactslist) { this.contact_list = new rcube_list_widget(this.gui_objects.contactslist, { multiselect:true, draggable:false, keyboard:false }); - this.contact_list.addEventListener('select', function(o){ ref.compose_recipeint_select(o); }); + this.contact_list.addEventListener('select', function(o){ ref.compose_recipient_select(o); }); this.contact_list.addEventListener('dblclick', function(o){ ref.compose_add_recipient('to'); }); this.contact_list.init(); } - if (this.gui_objects.adressbookslist) { - this.gui_objects.folderlist = this.gui_objects.adressbookslist; + if (this.gui_objects.addressbookslist) { + this.gui_objects.folderlist = this.gui_objects.addressbookslist; this.enable_command('list-adresses', true); } } @@ -2998,7 +2998,7 @@ function rcube_webmail() .attr('autocomplete', 'off'); }; - this.compose_recipeint_select = function(list) + this.compose_recipient_select = function(list) { this.enable_command('add-recipient', list.selection.length > 0); }; diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index d5356e0cf..8c3e61183 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -1519,7 +1519,7 @@ function get_form_tags($attrib) } -function rcmail_adressbook_list($attrib = array()) +function rcmail_addressbook_list($attrib = array()) { global $RCMAIL, $OUTPUT; @@ -1548,7 +1548,7 @@ function rcmail_adressbook_list($attrib = array()) $js_id, (!empty($source['name']) ? Q($source['name']) : Q($id))); } - $OUTPUT->add_gui_object('adressbookslist', $attrib['id']); + $OUTPUT->add_gui_object('addressbookslist', $attrib['id']); return html::tag('ul', $attrib, $out, html::$common_attrib); } @@ -1584,7 +1584,7 @@ $OUTPUT->add_handlers(array( 'receiptcheckbox' => 'rcmail_receipt_checkbox', 'dsncheckbox' => 'rcmail_dsn_checkbox', 'storetarget' => 'rcmail_store_target_selection', - 'adressbooks' => 'rcmail_adressbook_list', + 'addressbooks' => 'rcmail_addressbook_list', 'addresslist' => 'rcmail_contacts_list', )); diff --git a/skins/larry/templates/compose.html b/skins/larry/templates/compose.html index e2b835d7f..20bead41c 100644 --- a/skins/larry/templates/compose.html +++ b/skins/larry/templates/compose.html @@ -16,7 +16,7 @@ <!-- inline address book --> <div id="compose-contacts" class="uibox listbox"> <h2 class="boxtitle"><roundcube:label name="contacts" /></h2> - <roundcube:object name="adressbooks" id="directorylist" class="listing" /> + <roundcube:object name="addressbooks" id="directorylist" class="listing" /> <div class="scroller withfooter"> <roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" /> </div> diff --git a/skins/larry/templates/messagepreview.html b/skins/larry/templates/messagepreview.html index a8040841f..cd9c2349a 100644 --- a/skins/larry/templates/messagepreview.html +++ b/skins/larry/templates/messagepreview.html @@ -29,7 +29,7 @@ <div id="countcontrols" class="pagenav"> <roundcube:if condition="env:mailbox != config:drafts_mbox"> <roundcube:button command="reply" type="link" class="button reply" classSel="button reply pressed" innerClass="inner" title="replytomessage" content="<-" /> - <roundcube:button command="replyall" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="<<-" /> + <roundcube:button command="reply-all" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="<<-" /> <roundcube:button command="forward" type="link" class="button forward" classSel="button forward pressed" innerClass="inner" title="forwardmessage" content="->" /> <roundcube:endif /> |