diff options
author | alecpl <alec@alec.pl> | 2011-11-20 13:34:35 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-11-20 13:34:35 +0000 |
commit | b1867b8f198374d26e1bfdfeaeac16971608b551 (patch) | |
tree | 89b4a9533c01f6fa865d905f6dcd1eeefb42be53 /program/include | |
parent | bda028e31eb4b122859192a44e86f6e90d74b3b3 (diff) |
- Added TinyMCE localizations
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/main.inc | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index c84e5ad6b..1868f42d2 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1589,7 +1589,7 @@ function rcmail_display_server_error($fallback=null, $fallback_args=null) */ function rcube_html_editor($mode='') { - global $RCMAIL, $CONFIG; + global $RCMAIL; $hook = $RCMAIL->plugins->exec_hook('html_editor', array('mode' => $mode)); @@ -1598,8 +1598,11 @@ function rcube_html_editor($mode='') $lang = strtolower($_SESSION['language']); - // TinyMCE uses 'tw' for zh_TW (which is wrong, because tw is a code of Twi language) - $lang = ($lang == 'zh_tw') ? 'tw' : substr($lang, 0, 2); + // TinyMCE uses two-letter lang codes, with exception of Chinese + if (strpos($lang, 'zh_') === 0) + $lang = str_replace('_', '-', $lang); + else + $lang = substr($lang, 0, 2); if (!file_exists(INSTALL_PATH . 'program/js/tiny_mce/langs/'.$lang.'.js')) $lang = 'en'; @@ -1611,8 +1614,8 @@ function rcube_html_editor($mode='') 'mode' => $mode, 'skin_path' => '$__skin_path', 'lang' => $lang, - 'spellcheck' => intval($CONFIG['enable_spellcheck']), - 'spelldict' => intval($CONFIG['spellcheck_dictionary']), + 'spellcheck' => intval($RCMAIL->config->get('enable_spellcheck')), + 'spelldict' => intval($RCMAIL->config->get('spellcheck_dictionary')), ))), 'foot'); } |