Changeset 5955 in subversion


Ignore:
Timestamp:
Mar 3, 2012 1:32:31 PM (15 months ago)
Author:
thomasb
Message:

Fix spelling

Location:
trunk/roundcubemail
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/js/app.js

    r5951 r5955  
    278278            this.contact_list = new rcube_list_widget(this.gui_objects.contactslist, 
    279279              { multiselect:true, draggable:false, keyboard:false }); 
    280             this.contact_list.addEventListener('select', function(o){ ref.compose_recipeint_select(o); }); 
     280            this.contact_list.addEventListener('select', function(o){ ref.compose_recipient_select(o); }); 
    281281            this.contact_list.addEventListener('dblclick', function(o){ ref.compose_add_recipient('to'); }); 
    282282            this.contact_list.init(); 
    283283          } 
    284284 
    285           if (this.gui_objects.adressbookslist) { 
    286             this.gui_objects.folderlist = this.gui_objects.adressbookslist; 
     285          if (this.gui_objects.addressbookslist) { 
     286            this.gui_objects.folderlist = this.gui_objects.addressbookslist; 
    287287            this.enable_command('list-adresses', true); 
    288288          } 
     
    29992999  }; 
    30003000   
    3001   this.compose_recipeint_select = function(list) 
     3001  this.compose_recipient_select = function(list) 
    30023002  { 
    30033003    this.enable_command('add-recipient', list.selection.length > 0); 
  • trunk/roundcubemail/program/steps/mail/compose.inc

    r5925 r5955  
    15201520 
    15211521 
    1522 function rcmail_adressbook_list($attrib = array()) 
     1522function rcmail_addressbook_list($attrib = array()) 
    15231523{ 
    15241524    global $RCMAIL, $OUTPUT; 
     
    15491549    } 
    15501550 
    1551     $OUTPUT->add_gui_object('adressbookslist', $attrib['id']); 
     1551    $OUTPUT->add_gui_object('addressbookslist', $attrib['id']); 
    15521552 
    15531553    return html::tag('ul', $attrib, $out, html::$common_attrib); 
     
    15851585  'dsncheckbox' => 'rcmail_dsn_checkbox', 
    15861586  'storetarget' => 'rcmail_store_target_selection', 
    1587   'adressbooks' => 'rcmail_adressbook_list', 
     1587  'addressbooks' => 'rcmail_addressbook_list', 
    15881588  'addresslist' => 'rcmail_contacts_list', 
    15891589)); 
  • trunk/roundcubemail/skins/larry/templates/compose.html

    r5809 r5955  
    1717<div id="compose-contacts" class="uibox listbox"> 
    1818<h2 class="boxtitle"><roundcube:label name="contacts" /></h2> 
    19         <roundcube:object name="adressbooks" id="directorylist" class="listing" /> 
     19        <roundcube:object name="addressbooks" id="directorylist" class="listing" /> 
    2020        <div class="scroller withfooter"> 
    2121                <roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" /> 
  • trunk/roundcubemail/skins/larry/templates/messagepreview.html

    r5916 r5955  
    3030<roundcube:if condition="env:mailbox != config:drafts_mbox"> 
    3131        <roundcube:button command="reply" type="link" class="button reply" classSel="button reply pressed" innerClass="inner" title="replytomessage" content="&lt;-" /> 
    32         <roundcube:button command="replyall" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="&lt;&lt;-" /> 
     32        <roundcube:button command="reply-all" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="&lt;&lt;-" /> 
    3333        <roundcube:button command="forward" type="link" class="button forward" classSel="button forward pressed" innerClass="inner" title="forwardmessage" content="-&gt;" /> 
    3434        &nbsp; 
Note: See TracChangeset for help on using the changeset viewer.