| | |
| | | | Authors: 4mir Salihefendic <amix@amix.dk> | |
| | | | Aleksander Machniak - <alec [at] alec.pl> | |
| | | +-----------------------------------------------------------------------+ |
| | | |
| | | $Id$ |
| | | */ |
| | | |
| | | var GOOGIE_CUR_LANG, |
| | |
| | | function GoogieSpell(img_dir, server_url, has_dict) |
| | | { |
| | | var ref = this, |
| | | cookie_value = getCookie('language'); |
| | | cookie_value = rcmail.get_cookie('language'); |
| | | |
| | | GOOGIE_CUR_LANG = cookie_value != null ? cookie_value : GOOGIE_DEFAULT_LANG; |
| | | |
| | |
| | | |
| | | this.org_lang_to_word = { |
| | | "da": "Dansk", "de": "Deutsch", "en": "English", |
| | | "es": "Español", "fr": "Français", "it": "Italiano", |
| | | "nl": "Nederlands", "pl": "Polski", "pt": "Português", |
| | | "fi": "Suomi", "sv": "Svenska" |
| | | "es": "Español", "fr": "Français", "it": "Italiano", |
| | | "nl": "Nederlands", "pl": "Polski", "pt": "Português", |
| | | "ru": "Русский", "fi": "Suomi", "sv": "Svenska" |
| | | }; |
| | | this.lang_to_word = this.org_lang_to_word; |
| | | this.langlist_codes = this.array_keys(this.lang_to_word); |
| | |
| | | //Set cookie |
| | | var now = new Date(); |
| | | now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000); |
| | | setCookie('language', lan_code, now); |
| | | rcmail.set_cookie('language', lan_code, now); |
| | | }; |
| | | |
| | | this.setForceWidthHeight = function(width, height) |