Changeset 2b4855b in github


Ignore:
Timestamp:
Feb 28, 2012 7:00:12 AM (16 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
8f77c03
Parents:
e4f822a
Message:
  • Add Russian to the spellchecker languages list (#1488135)
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r40d246f r2b4855b  
    22=========================== 
    33 
     4- Add Russian to the spellchecker languages list (#1488135) 
    45- Remember custom skin selection after logout (#1488355) 
    56- Make sure About tab is always the last tab (#1488257) 
  • program/js/googiespell.js

    r7fe3811 r2b4855b  
    4343    this.org_lang_to_word = { 
    4444            "da": "Dansk", "de": "Deutsch", "en": "English", 
    45         "es": "Espa&#241;ol", "fr": "Fran&#231;ais", "it": "Italiano",  
    46         "nl": "Nederlands", "pl": "Polski", "pt": "Portugu&#234;s", 
    47         "fi": "Suomi", "sv": "Svenska" 
     45        "es": "Español", "fr": "Français", "it": "Italiano", 
     46        "nl": "Nederlands", "pl": "Polski", "pt": "Português", 
     47        "ru": "РусскОй", "fi": "Suomi", "sv": "Svenska" 
    4848    }; 
    4949    this.lang_to_word = this.org_lang_to_word; 
  • program/steps/mail/compose.inc

    r33423a5 r2b4855b  
    785785  rcube_html_editor(); 
    786786 
    787   // include GoogieSpell 
     787  // Set language list 
    788788  if (!empty($CONFIG['enable_spellcheck'])) { 
    789789    $engine           = $RCMAIL->config->get('spellcheck_engine','googie'); 
     
    792792      array('da'=>'Dansk', 'de'=>'Deutsch', 'en' => 'English', 'es'=>'Español', 
    793793            'fr'=>'Français', 'it'=>'Italiano', 'nl'=>'Nederlands', 'pl'=>'Polski', 
    794             'pt'=>'Português', 'fi'=>'Suomi', 'sv'=>'Svenska')); 
     794            'pt'=>'Português', 'ru'=>'РусскОй', 'fi'=>'Suomi', 'sv'=>'Svenska')); 
    795795 
    796796    // googie works only with two-letter codes 
     
    819819    } 
    820820 
     821    // include GoogieSpell 
    821822    $OUTPUT->include_script('googiespell.js'); 
    822823    $OUTPUT->add_script(sprintf( 
Note: See TracChangeset for help on using the changeset viewer.