- * 'id' - (string) The ID of the text area to turn into an editor.
- * 'no_notify' - (boolean) Don't output JS code automatically. Code will
- * be stored for access via getJS().
- *
- */
- public function __construct($params = array())
- {
- parent::__construct($params);
-
- if (!$this->supportedByBrowser()) {
- return;
- }
-
- $fck_path = $GLOBALS['registry']->get('webroot', 'horde') . '/services/editor/fckeditor/';
- $js = array(
- 'var oFCKeditor = new FCKeditor("' . $params['id'] . '")',
- 'oFCKeditor.BasePath = "' . $fck_path . '"'
- );
-
- if (!empty($params['no_notify'])) {
- $this->_js = '';
- } else {
- Horde::addScriptFile('prototype.js', 'horde');
- Horde::addScriptFile($fck_path . 'fckeditor.js', null, array('external' => true));
- $js[] = 'oFCKeditor.ReplaceTextarea()';
- Horde::addInlineScript($js, 'load');
- }
- }
-
- /**
- * Does the current browser support the Horde_Editor driver.
- *
- * @return boolean True if the browser supports the editor.
- */
- public function supportedByBrowser()
- {
- if (!$this->_browser) {
- return true;
- }
-
- switch ($this->_browser->getBrowser()) {
- case 'webkit':
- case 'msie':
- case 'mozilla':
- case 'opera':
- // MSIE: 5.5+
- // Firefox: 1.5+
- // Opera: 9.5+
- // Safari: 3.0+
- return $this->_browser->hasFeature('rte');
-
- default:
- return false;
- }
- }
-
-}
diff --git a/framework/Editor/package.xml b/framework/Editor/package.xml
index 8e3e746b5..4f249590a 100644
--- a/framework/Editor/package.xml
+++ b/framework/Editor/package.xml
@@ -32,6 +32,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
LGPL* Removed Xinha driver.
* Added CKEditor driver.
+ * Removed FCKEditor driver
* Initial Horde 4 package.
@@ -41,7 +42,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
-
@@ -78,7 +78,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
-
diff --git a/horde/docs/CHANGES b/horde/docs/CHANGES
index 3a137a7ec..25537ee17 100644
--- a/horde/docs/CHANGES
+++ b/horde/docs/CHANGES
@@ -2,6 +2,7 @@
v4.0-cvs
--------
+[cjh] Remove fckeditor, standardizing on ckeditor.
[jan] Move all translations from po/ to locale/ and use short locale
identifiers where possible.
[jan] Remove frameset.
diff --git a/horde/docs/LICENSES b/horde/docs/LICENSES
index 13240884b..72bde144f 100644
--- a/horde/docs/LICENSES
+++ b/horde/docs/LICENSES
@@ -4,5 +4,3 @@ Licenses for software distributed with Horde
TODO...
prototypejs/scriptaculous: MIT
-fckeditor: ?
-xinha: ?
diff --git a/horde/services/editor/ckeditor/LICENSE.html b/horde/js/ckeditor/LICENSE.html
similarity index 100%
rename from horde/services/editor/ckeditor/LICENSE.html
rename to horde/js/ckeditor/LICENSE.html
diff --git a/horde/services/editor/ckeditor/ckeditor.js b/horde/js/ckeditor/ckeditor.js
similarity index 100%
rename from horde/services/editor/ckeditor/ckeditor.js
rename to horde/js/ckeditor/ckeditor.js
diff --git a/horde/services/editor/ckeditor/ckeditor_basic.js b/horde/js/ckeditor/ckeditor_basic.js
similarity index 100%
rename from horde/services/editor/ckeditor/ckeditor_basic.js
rename to horde/js/ckeditor/ckeditor_basic.js
diff --git a/horde/services/editor/ckeditor/config.js b/horde/js/ckeditor/config.js
similarity index 100%
rename from horde/services/editor/ckeditor/config.js
rename to horde/js/ckeditor/config.js
diff --git a/horde/services/editor/ckeditor/contents.css b/horde/js/ckeditor/contents.css
similarity index 100%
rename from horde/services/editor/ckeditor/contents.css
rename to horde/js/ckeditor/contents.css
diff --git a/horde/services/editor/ckeditor/images/spacer.gif b/horde/js/ckeditor/images/spacer.gif
similarity index 100%
rename from horde/services/editor/ckeditor/images/spacer.gif
rename to horde/js/ckeditor/images/spacer.gif
diff --git a/horde/services/editor/ckeditor/lang/_languages.js b/horde/js/ckeditor/lang/_languages.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/_languages.js
rename to horde/js/ckeditor/lang/_languages.js
diff --git a/horde/services/editor/ckeditor/lang/af.js b/horde/js/ckeditor/lang/af.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/af.js
rename to horde/js/ckeditor/lang/af.js
diff --git a/horde/services/editor/ckeditor/lang/ar.js b/horde/js/ckeditor/lang/ar.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/ar.js
rename to horde/js/ckeditor/lang/ar.js
diff --git a/horde/services/editor/ckeditor/lang/bg.js b/horde/js/ckeditor/lang/bg.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/bg.js
rename to horde/js/ckeditor/lang/bg.js
diff --git a/horde/services/editor/ckeditor/lang/bn.js b/horde/js/ckeditor/lang/bn.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/bn.js
rename to horde/js/ckeditor/lang/bn.js
diff --git a/horde/services/editor/ckeditor/lang/bs.js b/horde/js/ckeditor/lang/bs.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/bs.js
rename to horde/js/ckeditor/lang/bs.js
diff --git a/horde/services/editor/ckeditor/lang/ca.js b/horde/js/ckeditor/lang/ca.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/ca.js
rename to horde/js/ckeditor/lang/ca.js
diff --git a/horde/services/editor/ckeditor/lang/cs.js b/horde/js/ckeditor/lang/cs.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/cs.js
rename to horde/js/ckeditor/lang/cs.js
diff --git a/horde/services/editor/ckeditor/lang/cy.js b/horde/js/ckeditor/lang/cy.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/cy.js
rename to horde/js/ckeditor/lang/cy.js
diff --git a/horde/services/editor/ckeditor/lang/da.js b/horde/js/ckeditor/lang/da.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/da.js
rename to horde/js/ckeditor/lang/da.js
diff --git a/horde/services/editor/ckeditor/lang/de.js b/horde/js/ckeditor/lang/de.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/de.js
rename to horde/js/ckeditor/lang/de.js
diff --git a/horde/services/editor/ckeditor/lang/el.js b/horde/js/ckeditor/lang/el.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/el.js
rename to horde/js/ckeditor/lang/el.js
diff --git a/horde/services/editor/ckeditor/lang/en-au.js b/horde/js/ckeditor/lang/en-au.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/en-au.js
rename to horde/js/ckeditor/lang/en-au.js
diff --git a/horde/services/editor/ckeditor/lang/en-ca.js b/horde/js/ckeditor/lang/en-ca.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/en-ca.js
rename to horde/js/ckeditor/lang/en-ca.js
diff --git a/horde/services/editor/ckeditor/lang/en-gb.js b/horde/js/ckeditor/lang/en-gb.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/en-gb.js
rename to horde/js/ckeditor/lang/en-gb.js
diff --git a/horde/services/editor/ckeditor/lang/en.js b/horde/js/ckeditor/lang/en.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/en.js
rename to horde/js/ckeditor/lang/en.js
diff --git a/horde/services/editor/ckeditor/lang/eo.js b/horde/js/ckeditor/lang/eo.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/eo.js
rename to horde/js/ckeditor/lang/eo.js
diff --git a/horde/services/editor/ckeditor/lang/es.js b/horde/js/ckeditor/lang/es.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/es.js
rename to horde/js/ckeditor/lang/es.js
diff --git a/horde/services/editor/ckeditor/lang/et.js b/horde/js/ckeditor/lang/et.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/et.js
rename to horde/js/ckeditor/lang/et.js
diff --git a/horde/services/editor/ckeditor/lang/eu.js b/horde/js/ckeditor/lang/eu.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/eu.js
rename to horde/js/ckeditor/lang/eu.js
diff --git a/horde/services/editor/ckeditor/lang/fa.js b/horde/js/ckeditor/lang/fa.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/fa.js
rename to horde/js/ckeditor/lang/fa.js
diff --git a/horde/services/editor/ckeditor/lang/fi.js b/horde/js/ckeditor/lang/fi.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/fi.js
rename to horde/js/ckeditor/lang/fi.js
diff --git a/horde/services/editor/ckeditor/lang/fo.js b/horde/js/ckeditor/lang/fo.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/fo.js
rename to horde/js/ckeditor/lang/fo.js
diff --git a/horde/services/editor/ckeditor/lang/fr-ca.js b/horde/js/ckeditor/lang/fr-ca.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/fr-ca.js
rename to horde/js/ckeditor/lang/fr-ca.js
diff --git a/horde/services/editor/ckeditor/lang/fr.js b/horde/js/ckeditor/lang/fr.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/fr.js
rename to horde/js/ckeditor/lang/fr.js
diff --git a/horde/services/editor/ckeditor/lang/gl.js b/horde/js/ckeditor/lang/gl.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/gl.js
rename to horde/js/ckeditor/lang/gl.js
diff --git a/horde/services/editor/ckeditor/lang/gu.js b/horde/js/ckeditor/lang/gu.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/gu.js
rename to horde/js/ckeditor/lang/gu.js
diff --git a/horde/services/editor/ckeditor/lang/he.js b/horde/js/ckeditor/lang/he.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/he.js
rename to horde/js/ckeditor/lang/he.js
diff --git a/horde/services/editor/ckeditor/lang/hi.js b/horde/js/ckeditor/lang/hi.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/hi.js
rename to horde/js/ckeditor/lang/hi.js
diff --git a/horde/services/editor/ckeditor/lang/hr.js b/horde/js/ckeditor/lang/hr.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/hr.js
rename to horde/js/ckeditor/lang/hr.js
diff --git a/horde/services/editor/ckeditor/lang/hu.js b/horde/js/ckeditor/lang/hu.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/hu.js
rename to horde/js/ckeditor/lang/hu.js
diff --git a/horde/services/editor/ckeditor/lang/is.js b/horde/js/ckeditor/lang/is.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/is.js
rename to horde/js/ckeditor/lang/is.js
diff --git a/horde/services/editor/ckeditor/lang/it.js b/horde/js/ckeditor/lang/it.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/it.js
rename to horde/js/ckeditor/lang/it.js
diff --git a/horde/services/editor/ckeditor/lang/ja.js b/horde/js/ckeditor/lang/ja.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/ja.js
rename to horde/js/ckeditor/lang/ja.js
diff --git a/horde/services/editor/ckeditor/lang/km.js b/horde/js/ckeditor/lang/km.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/km.js
rename to horde/js/ckeditor/lang/km.js
diff --git a/horde/services/editor/ckeditor/lang/ko.js b/horde/js/ckeditor/lang/ko.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/ko.js
rename to horde/js/ckeditor/lang/ko.js
diff --git a/horde/services/editor/ckeditor/lang/lt.js b/horde/js/ckeditor/lang/lt.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/lt.js
rename to horde/js/ckeditor/lang/lt.js
diff --git a/horde/services/editor/ckeditor/lang/lv.js b/horde/js/ckeditor/lang/lv.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/lv.js
rename to horde/js/ckeditor/lang/lv.js
diff --git a/horde/services/editor/ckeditor/lang/mn.js b/horde/js/ckeditor/lang/mn.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/mn.js
rename to horde/js/ckeditor/lang/mn.js
diff --git a/horde/services/editor/ckeditor/lang/ms.js b/horde/js/ckeditor/lang/ms.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/ms.js
rename to horde/js/ckeditor/lang/ms.js
diff --git a/horde/services/editor/ckeditor/lang/nb.js b/horde/js/ckeditor/lang/nb.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/nb.js
rename to horde/js/ckeditor/lang/nb.js
diff --git a/horde/services/editor/ckeditor/lang/nl.js b/horde/js/ckeditor/lang/nl.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/nl.js
rename to horde/js/ckeditor/lang/nl.js
diff --git a/horde/services/editor/ckeditor/lang/no.js b/horde/js/ckeditor/lang/no.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/no.js
rename to horde/js/ckeditor/lang/no.js
diff --git a/horde/services/editor/ckeditor/lang/pl.js b/horde/js/ckeditor/lang/pl.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/pl.js
rename to horde/js/ckeditor/lang/pl.js
diff --git a/horde/services/editor/ckeditor/lang/pt-br.js b/horde/js/ckeditor/lang/pt-br.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/pt-br.js
rename to horde/js/ckeditor/lang/pt-br.js
diff --git a/horde/services/editor/ckeditor/lang/pt.js b/horde/js/ckeditor/lang/pt.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/pt.js
rename to horde/js/ckeditor/lang/pt.js
diff --git a/horde/services/editor/ckeditor/lang/ro.js b/horde/js/ckeditor/lang/ro.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/ro.js
rename to horde/js/ckeditor/lang/ro.js
diff --git a/horde/services/editor/ckeditor/lang/ru.js b/horde/js/ckeditor/lang/ru.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/ru.js
rename to horde/js/ckeditor/lang/ru.js
diff --git a/horde/services/editor/ckeditor/lang/sk.js b/horde/js/ckeditor/lang/sk.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/sk.js
rename to horde/js/ckeditor/lang/sk.js
diff --git a/horde/services/editor/ckeditor/lang/sl.js b/horde/js/ckeditor/lang/sl.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/sl.js
rename to horde/js/ckeditor/lang/sl.js
diff --git a/horde/services/editor/ckeditor/lang/sr-latn.js b/horde/js/ckeditor/lang/sr-latn.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/sr-latn.js
rename to horde/js/ckeditor/lang/sr-latn.js
diff --git a/horde/services/editor/ckeditor/lang/sr.js b/horde/js/ckeditor/lang/sr.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/sr.js
rename to horde/js/ckeditor/lang/sr.js
diff --git a/horde/services/editor/ckeditor/lang/sv.js b/horde/js/ckeditor/lang/sv.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/sv.js
rename to horde/js/ckeditor/lang/sv.js
diff --git a/horde/services/editor/ckeditor/lang/th.js b/horde/js/ckeditor/lang/th.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/th.js
rename to horde/js/ckeditor/lang/th.js
diff --git a/horde/services/editor/ckeditor/lang/tr.js b/horde/js/ckeditor/lang/tr.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/tr.js
rename to horde/js/ckeditor/lang/tr.js
diff --git a/horde/services/editor/ckeditor/lang/uk.js b/horde/js/ckeditor/lang/uk.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/uk.js
rename to horde/js/ckeditor/lang/uk.js
diff --git a/horde/services/editor/ckeditor/lang/vi.js b/horde/js/ckeditor/lang/vi.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/vi.js
rename to horde/js/ckeditor/lang/vi.js
diff --git a/horde/services/editor/ckeditor/lang/zh-cn.js b/horde/js/ckeditor/lang/zh-cn.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/zh-cn.js
rename to horde/js/ckeditor/lang/zh-cn.js
diff --git a/horde/services/editor/ckeditor/lang/zh.js b/horde/js/ckeditor/lang/zh.js
similarity index 100%
rename from horde/services/editor/ckeditor/lang/zh.js
rename to horde/js/ckeditor/lang/zh.js
diff --git a/horde/services/editor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/horde/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
rename to horde/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
diff --git a/horde/services/editor/ckeditor/plugins/a11yhelp/lang/en.js b/horde/js/ckeditor/plugins/a11yhelp/lang/en.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/a11yhelp/lang/en.js
rename to horde/js/ckeditor/plugins/a11yhelp/lang/en.js
diff --git a/horde/services/editor/ckeditor/plugins/a11yhelp/lang/he.js b/horde/js/ckeditor/plugins/a11yhelp/lang/he.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/a11yhelp/lang/he.js
rename to horde/js/ckeditor/plugins/a11yhelp/lang/he.js
diff --git a/horde/services/editor/ckeditor/plugins/about/dialogs/about.js b/horde/js/ckeditor/plugins/about/dialogs/about.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/about/dialogs/about.js
rename to horde/js/ckeditor/plugins/about/dialogs/about.js
diff --git a/horde/services/editor/ckeditor/plugins/about/dialogs/logo_ckeditor.png b/horde/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/about/dialogs/logo_ckeditor.png
rename to horde/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png
diff --git a/horde/services/editor/ckeditor/plugins/clipboard/dialogs/paste.js b/horde/js/ckeditor/plugins/clipboard/dialogs/paste.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/clipboard/dialogs/paste.js
rename to horde/js/ckeditor/plugins/clipboard/dialogs/paste.js
diff --git a/horde/services/editor/ckeditor/plugins/colordialog/dialogs/colordialog.js b/horde/js/ckeditor/plugins/colordialog/dialogs/colordialog.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/colordialog/dialogs/colordialog.js
rename to horde/js/ckeditor/plugins/colordialog/dialogs/colordialog.js
diff --git a/horde/services/editor/ckeditor/plugins/dialog/dialogDefinition.js b/horde/js/ckeditor/plugins/dialog/dialogDefinition.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/dialog/dialogDefinition.js
rename to horde/js/ckeditor/plugins/dialog/dialogDefinition.js
diff --git a/horde/services/editor/ckeditor/plugins/div/dialogs/div.js b/horde/js/ckeditor/plugins/div/dialogs/div.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/div/dialogs/div.js
rename to horde/js/ckeditor/plugins/div/dialogs/div.js
diff --git a/horde/services/editor/ckeditor/plugins/find/dialogs/find.js b/horde/js/ckeditor/plugins/find/dialogs/find.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/find/dialogs/find.js
rename to horde/js/ckeditor/plugins/find/dialogs/find.js
diff --git a/horde/services/editor/ckeditor/plugins/flash/dialogs/flash.js b/horde/js/ckeditor/plugins/flash/dialogs/flash.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/flash/dialogs/flash.js
rename to horde/js/ckeditor/plugins/flash/dialogs/flash.js
diff --git a/horde/services/editor/ckeditor/plugins/flash/images/placeholder.png b/horde/js/ckeditor/plugins/flash/images/placeholder.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/flash/images/placeholder.png
rename to horde/js/ckeditor/plugins/flash/images/placeholder.png
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/button.js b/horde/js/ckeditor/plugins/forms/dialogs/button.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/button.js
rename to horde/js/ckeditor/plugins/forms/dialogs/button.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/checkbox.js b/horde/js/ckeditor/plugins/forms/dialogs/checkbox.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/checkbox.js
rename to horde/js/ckeditor/plugins/forms/dialogs/checkbox.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/form.js b/horde/js/ckeditor/plugins/forms/dialogs/form.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/form.js
rename to horde/js/ckeditor/plugins/forms/dialogs/form.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/hiddenfield.js b/horde/js/ckeditor/plugins/forms/dialogs/hiddenfield.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/hiddenfield.js
rename to horde/js/ckeditor/plugins/forms/dialogs/hiddenfield.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/radio.js b/horde/js/ckeditor/plugins/forms/dialogs/radio.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/radio.js
rename to horde/js/ckeditor/plugins/forms/dialogs/radio.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/select.js b/horde/js/ckeditor/plugins/forms/dialogs/select.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/select.js
rename to horde/js/ckeditor/plugins/forms/dialogs/select.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/textarea.js b/horde/js/ckeditor/plugins/forms/dialogs/textarea.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/textarea.js
rename to horde/js/ckeditor/plugins/forms/dialogs/textarea.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/dialogs/textfield.js b/horde/js/ckeditor/plugins/forms/dialogs/textfield.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/dialogs/textfield.js
rename to horde/js/ckeditor/plugins/forms/dialogs/textfield.js
diff --git a/horde/services/editor/ckeditor/plugins/forms/images/hiddenfield.gif b/horde/js/ckeditor/plugins/forms/images/hiddenfield.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/forms/images/hiddenfield.gif
rename to horde/js/ckeditor/plugins/forms/images/hiddenfield.gif
diff --git a/horde/services/editor/ckeditor/plugins/iframedialog/plugin.js b/horde/js/ckeditor/plugins/iframedialog/plugin.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/iframedialog/plugin.js
rename to horde/js/ckeditor/plugins/iframedialog/plugin.js
diff --git a/horde/services/editor/ckeditor/plugins/image/dialogs/image.js b/horde/js/ckeditor/plugins/image/dialogs/image.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/image/dialogs/image.js
rename to horde/js/ckeditor/plugins/image/dialogs/image.js
diff --git a/horde/services/editor/ckeditor/plugins/link/dialogs/anchor.js b/horde/js/ckeditor/plugins/link/dialogs/anchor.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/link/dialogs/anchor.js
rename to horde/js/ckeditor/plugins/link/dialogs/anchor.js
diff --git a/horde/services/editor/ckeditor/plugins/link/dialogs/link.js b/horde/js/ckeditor/plugins/link/dialogs/link.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/link/dialogs/link.js
rename to horde/js/ckeditor/plugins/link/dialogs/link.js
diff --git a/horde/services/editor/ckeditor/plugins/link/images/anchor.gif b/horde/js/ckeditor/plugins/link/images/anchor.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/link/images/anchor.gif
rename to horde/js/ckeditor/plugins/link/images/anchor.gif
diff --git a/horde/services/editor/ckeditor/plugins/liststyle/dialogs/liststyle.js b/horde/js/ckeditor/plugins/liststyle/dialogs/liststyle.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/liststyle/dialogs/liststyle.js
rename to horde/js/ckeditor/plugins/liststyle/dialogs/liststyle.js
diff --git a/horde/services/editor/ckeditor/plugins/liststyle/plugin.js b/horde/js/ckeditor/plugins/liststyle/plugin.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/liststyle/plugin.js
rename to horde/js/ckeditor/plugins/liststyle/plugin.js
diff --git a/horde/services/editor/ckeditor/plugins/pagebreak/images/pagebreak.gif b/horde/js/ckeditor/plugins/pagebreak/images/pagebreak.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/pagebreak/images/pagebreak.gif
rename to horde/js/ckeditor/plugins/pagebreak/images/pagebreak.gif
diff --git a/horde/services/editor/ckeditor/plugins/pastefromword/filter/default.js b/horde/js/ckeditor/plugins/pastefromword/filter/default.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/pastefromword/filter/default.js
rename to horde/js/ckeditor/plugins/pastefromword/filter/default.js
diff --git a/horde/services/editor/ckeditor/plugins/pastetext/dialogs/pastetext.js b/horde/js/ckeditor/plugins/pastetext/dialogs/pastetext.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/pastetext/dialogs/pastetext.js
rename to horde/js/ckeditor/plugins/pastetext/dialogs/pastetext.js
diff --git a/horde/services/editor/ckeditor/plugins/scayt/dialogs/options.js b/horde/js/ckeditor/plugins/scayt/dialogs/options.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/scayt/dialogs/options.js
rename to horde/js/ckeditor/plugins/scayt/dialogs/options.js
diff --git a/horde/services/editor/ckeditor/plugins/scayt/dialogs/toolbar.css b/horde/js/ckeditor/plugins/scayt/dialogs/toolbar.css
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/scayt/dialogs/toolbar.css
rename to horde/js/ckeditor/plugins/scayt/dialogs/toolbar.css
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_address.png b/horde/js/ckeditor/plugins/showblocks/images/block_address.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_address.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_address.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_blockquote.png b/horde/js/ckeditor/plugins/showblocks/images/block_blockquote.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_blockquote.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_blockquote.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_div.png b/horde/js/ckeditor/plugins/showblocks/images/block_div.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_div.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_div.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_h1.png b/horde/js/ckeditor/plugins/showblocks/images/block_h1.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_h1.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_h1.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_h2.png b/horde/js/ckeditor/plugins/showblocks/images/block_h2.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_h2.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_h2.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_h3.png b/horde/js/ckeditor/plugins/showblocks/images/block_h3.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_h3.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_h3.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_h4.png b/horde/js/ckeditor/plugins/showblocks/images/block_h4.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_h4.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_h4.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_h5.png b/horde/js/ckeditor/plugins/showblocks/images/block_h5.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_h5.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_h5.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_h6.png b/horde/js/ckeditor/plugins/showblocks/images/block_h6.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_h6.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_h6.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_p.png b/horde/js/ckeditor/plugins/showblocks/images/block_p.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_p.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_p.png
diff --git a/horde/services/editor/ckeditor/plugins/showblocks/images/block_pre.png b/horde/js/ckeditor/plugins/showblocks/images/block_pre.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/showblocks/images/block_pre.png
rename to horde/js/ckeditor/plugins/showblocks/images/block_pre.png
diff --git a/horde/services/editor/ckeditor/plugins/smiley/dialogs/smiley.js b/horde/js/ckeditor/plugins/smiley/dialogs/smiley.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/dialogs/smiley.js
rename to horde/js/ckeditor/plugins/smiley/dialogs/smiley.js
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/angel_smile.gif b/horde/js/ckeditor/plugins/smiley/images/angel_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/angel_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/angel_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/angry_smile.gif b/horde/js/ckeditor/plugins/smiley/images/angry_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/angry_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/angry_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/broken_heart.gif b/horde/js/ckeditor/plugins/smiley/images/broken_heart.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/broken_heart.gif
rename to horde/js/ckeditor/plugins/smiley/images/broken_heart.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/confused_smile.gif b/horde/js/ckeditor/plugins/smiley/images/confused_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/confused_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/confused_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/cry_smile.gif b/horde/js/ckeditor/plugins/smiley/images/cry_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/cry_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/cry_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/devil_smile.gif b/horde/js/ckeditor/plugins/smiley/images/devil_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/devil_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/devil_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/embaressed_smile.gif b/horde/js/ckeditor/plugins/smiley/images/embaressed_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/embaressed_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/embaressed_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/envelope.gif b/horde/js/ckeditor/plugins/smiley/images/envelope.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/envelope.gif
rename to horde/js/ckeditor/plugins/smiley/images/envelope.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/heart.gif b/horde/js/ckeditor/plugins/smiley/images/heart.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/heart.gif
rename to horde/js/ckeditor/plugins/smiley/images/heart.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/kiss.gif b/horde/js/ckeditor/plugins/smiley/images/kiss.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/kiss.gif
rename to horde/js/ckeditor/plugins/smiley/images/kiss.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/lightbulb.gif b/horde/js/ckeditor/plugins/smiley/images/lightbulb.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/lightbulb.gif
rename to horde/js/ckeditor/plugins/smiley/images/lightbulb.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/omg_smile.gif b/horde/js/ckeditor/plugins/smiley/images/omg_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/omg_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/omg_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/regular_smile.gif b/horde/js/ckeditor/plugins/smiley/images/regular_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/regular_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/regular_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/sad_smile.gif b/horde/js/ckeditor/plugins/smiley/images/sad_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/sad_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/sad_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/shades_smile.gif b/horde/js/ckeditor/plugins/smiley/images/shades_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/shades_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/shades_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/teeth_smile.gif b/horde/js/ckeditor/plugins/smiley/images/teeth_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/teeth_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/teeth_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/thumbs_down.gif b/horde/js/ckeditor/plugins/smiley/images/thumbs_down.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/thumbs_down.gif
rename to horde/js/ckeditor/plugins/smiley/images/thumbs_down.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/thumbs_up.gif b/horde/js/ckeditor/plugins/smiley/images/thumbs_up.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/thumbs_up.gif
rename to horde/js/ckeditor/plugins/smiley/images/thumbs_up.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/tounge_smile.gif b/horde/js/ckeditor/plugins/smiley/images/tounge_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/tounge_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/tounge_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif b/horde/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/smiley/images/wink_smile.gif b/horde/js/ckeditor/plugins/smiley/images/wink_smile.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/smiley/images/wink_smile.gif
rename to horde/js/ckeditor/plugins/smiley/images/wink_smile.gif
diff --git a/horde/services/editor/ckeditor/plugins/specialchar/dialogs/specialchar.js b/horde/js/ckeditor/plugins/specialchar/dialogs/specialchar.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/specialchar/dialogs/specialchar.js
rename to horde/js/ckeditor/plugins/specialchar/dialogs/specialchar.js
diff --git a/horde/services/editor/ckeditor/plugins/styles/styles/default.js b/horde/js/ckeditor/plugins/styles/styles/default.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/styles/styles/default.js
rename to horde/js/ckeditor/plugins/styles/styles/default.js
diff --git a/horde/services/editor/ckeditor/plugins/table/dialogs/table.js b/horde/js/ckeditor/plugins/table/dialogs/table.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/table/dialogs/table.js
rename to horde/js/ckeditor/plugins/table/dialogs/table.js
diff --git a/horde/services/editor/ckeditor/plugins/tabletools/dialogs/tableCell.js b/horde/js/ckeditor/plugins/tabletools/dialogs/tableCell.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/tabletools/dialogs/tableCell.js
rename to horde/js/ckeditor/plugins/tabletools/dialogs/tableCell.js
diff --git a/horde/services/editor/ckeditor/plugins/templates/dialogs/templates.js b/horde/js/ckeditor/plugins/templates/dialogs/templates.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/templates/dialogs/templates.js
rename to horde/js/ckeditor/plugins/templates/dialogs/templates.js
diff --git a/horde/services/editor/ckeditor/plugins/templates/templates/default.js b/horde/js/ckeditor/plugins/templates/templates/default.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/templates/templates/default.js
rename to horde/js/ckeditor/plugins/templates/templates/default.js
diff --git a/horde/services/editor/ckeditor/plugins/templates/templates/images/template1.gif b/horde/js/ckeditor/plugins/templates/templates/images/template1.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/templates/templates/images/template1.gif
rename to horde/js/ckeditor/plugins/templates/templates/images/template1.gif
diff --git a/horde/services/editor/ckeditor/plugins/templates/templates/images/template2.gif b/horde/js/ckeditor/plugins/templates/templates/images/template2.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/templates/templates/images/template2.gif
rename to horde/js/ckeditor/plugins/templates/templates/images/template2.gif
diff --git a/horde/services/editor/ckeditor/plugins/templates/templates/images/template3.gif b/horde/js/ckeditor/plugins/templates/templates/images/template3.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/templates/templates/images/template3.gif
rename to horde/js/ckeditor/plugins/templates/templates/images/template3.gif
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/dialogs/uicolor.js b/horde/js/ckeditor/plugins/uicolor/dialogs/uicolor.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/dialogs/uicolor.js
rename to horde/js/ckeditor/plugins/uicolor/dialogs/uicolor.js
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/lang/en.js b/horde/js/ckeditor/plugins/uicolor/lang/en.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/lang/en.js
rename to horde/js/ckeditor/plugins/uicolor/lang/en.js
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/plugin.js b/horde/js/ckeditor/plugins/uicolor/plugin.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/plugin.js
rename to horde/js/ckeditor/plugins/uicolor/plugin.js
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/uicolor.gif b/horde/js/ckeditor/plugins/uicolor/uicolor.gif
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/uicolor.gif
rename to horde/js/ckeditor/plugins/uicolor/uicolor.gif
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png b/horde/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
rename to horde/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png b/horde/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
rename to horde/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png b/horde/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
rename to horde/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png b/horde/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
rename to horde/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/yui/assets/yui.css b/horde/js/ckeditor/plugins/uicolor/yui/assets/yui.css
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/yui/assets/yui.css
rename to horde/js/ckeditor/plugins/uicolor/yui/assets/yui.css
diff --git a/horde/services/editor/ckeditor/plugins/uicolor/yui/yui.js b/horde/js/ckeditor/plugins/uicolor/yui/yui.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/uicolor/yui/yui.js
rename to horde/js/ckeditor/plugins/uicolor/yui/yui.js
diff --git a/horde/services/editor/ckeditor/plugins/wsc/dialogs/ciframe.html b/horde/js/ckeditor/plugins/wsc/dialogs/ciframe.html
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/wsc/dialogs/ciframe.html
rename to horde/js/ckeditor/plugins/wsc/dialogs/ciframe.html
diff --git a/horde/services/editor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/horde/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
rename to horde/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
diff --git a/horde/services/editor/ckeditor/plugins/wsc/dialogs/wsc.css b/horde/js/ckeditor/plugins/wsc/dialogs/wsc.css
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/wsc/dialogs/wsc.css
rename to horde/js/ckeditor/plugins/wsc/dialogs/wsc.css
diff --git a/horde/services/editor/ckeditor/plugins/wsc/dialogs/wsc.js b/horde/js/ckeditor/plugins/wsc/dialogs/wsc.js
similarity index 100%
rename from horde/services/editor/ckeditor/plugins/wsc/dialogs/wsc.js
rename to horde/js/ckeditor/plugins/wsc/dialogs/wsc.js
diff --git a/horde/services/editor/ckeditor/skins/kama/dialog.css b/horde/js/ckeditor/skins/kama/dialog.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/dialog.css
rename to horde/js/ckeditor/skins/kama/dialog.css
diff --git a/horde/services/editor/ckeditor/skins/kama/editor.css b/horde/js/ckeditor/skins/kama/editor.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/editor.css
rename to horde/js/ckeditor/skins/kama/editor.css
diff --git a/horde/services/editor/ckeditor/skins/kama/icons.png b/horde/js/ckeditor/skins/kama/icons.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/icons.png
rename to horde/js/ckeditor/skins/kama/icons.png
diff --git a/horde/services/editor/ckeditor/skins/kama/images/dialog_sides.gif b/horde/js/ckeditor/skins/kama/images/dialog_sides.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/dialog_sides.gif
rename to horde/js/ckeditor/skins/kama/images/dialog_sides.gif
diff --git a/horde/services/editor/ckeditor/skins/kama/images/dialog_sides.png b/horde/js/ckeditor/skins/kama/images/dialog_sides.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/dialog_sides.png
rename to horde/js/ckeditor/skins/kama/images/dialog_sides.png
diff --git a/horde/services/editor/ckeditor/skins/kama/images/dialog_sides_rtl.png b/horde/js/ckeditor/skins/kama/images/dialog_sides_rtl.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/dialog_sides_rtl.png
rename to horde/js/ckeditor/skins/kama/images/dialog_sides_rtl.png
diff --git a/horde/services/editor/ckeditor/skins/kama/images/mini.gif b/horde/js/ckeditor/skins/kama/images/mini.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/mini.gif
rename to horde/js/ckeditor/skins/kama/images/mini.gif
diff --git a/horde/services/editor/ckeditor/skins/kama/images/noimage.png b/horde/js/ckeditor/skins/kama/images/noimage.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/noimage.png
rename to horde/js/ckeditor/skins/kama/images/noimage.png
diff --git a/horde/services/editor/ckeditor/skins/kama/images/sprites.png b/horde/js/ckeditor/skins/kama/images/sprites.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/sprites.png
rename to horde/js/ckeditor/skins/kama/images/sprites.png
diff --git a/horde/services/editor/ckeditor/skins/kama/images/sprites_ie6.png b/horde/js/ckeditor/skins/kama/images/sprites_ie6.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/sprites_ie6.png
rename to horde/js/ckeditor/skins/kama/images/sprites_ie6.png
diff --git a/horde/services/editor/ckeditor/skins/kama/images/toolbar_start.gif b/horde/js/ckeditor/skins/kama/images/toolbar_start.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/images/toolbar_start.gif
rename to horde/js/ckeditor/skins/kama/images/toolbar_start.gif
diff --git a/horde/services/editor/ckeditor/skins/kama/skin.js b/horde/js/ckeditor/skins/kama/skin.js
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/skin.js
rename to horde/js/ckeditor/skins/kama/skin.js
diff --git a/horde/services/editor/ckeditor/skins/kama/templates.css b/horde/js/ckeditor/skins/kama/templates.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/kama/templates.css
rename to horde/js/ckeditor/skins/kama/templates.css
diff --git a/horde/services/editor/ckeditor/skins/office2003/dialog.css b/horde/js/ckeditor/skins/office2003/dialog.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/dialog.css
rename to horde/js/ckeditor/skins/office2003/dialog.css
diff --git a/horde/services/editor/ckeditor/skins/office2003/editor.css b/horde/js/ckeditor/skins/office2003/editor.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/editor.css
rename to horde/js/ckeditor/skins/office2003/editor.css
diff --git a/horde/services/editor/ckeditor/skins/office2003/icons.png b/horde/js/ckeditor/skins/office2003/icons.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/icons.png
rename to horde/js/ckeditor/skins/office2003/icons.png
diff --git a/horde/services/editor/ckeditor/skins/office2003/images/dialog_sides.gif b/horde/js/ckeditor/skins/office2003/images/dialog_sides.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/images/dialog_sides.gif
rename to horde/js/ckeditor/skins/office2003/images/dialog_sides.gif
diff --git a/horde/services/editor/ckeditor/skins/office2003/images/dialog_sides.png b/horde/js/ckeditor/skins/office2003/images/dialog_sides.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/images/dialog_sides.png
rename to horde/js/ckeditor/skins/office2003/images/dialog_sides.png
diff --git a/horde/services/editor/ckeditor/skins/office2003/images/dialog_sides_rtl.png b/horde/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/images/dialog_sides_rtl.png
rename to horde/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png
diff --git a/horde/services/editor/ckeditor/skins/office2003/images/mini.gif b/horde/js/ckeditor/skins/office2003/images/mini.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/images/mini.gif
rename to horde/js/ckeditor/skins/office2003/images/mini.gif
diff --git a/horde/services/editor/ckeditor/skins/office2003/images/noimage.png b/horde/js/ckeditor/skins/office2003/images/noimage.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/images/noimage.png
rename to horde/js/ckeditor/skins/office2003/images/noimage.png
diff --git a/horde/services/editor/ckeditor/skins/office2003/images/sprites.png b/horde/js/ckeditor/skins/office2003/images/sprites.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/images/sprites.png
rename to horde/js/ckeditor/skins/office2003/images/sprites.png
diff --git a/horde/services/editor/ckeditor/skins/office2003/images/sprites_ie6.png b/horde/js/ckeditor/skins/office2003/images/sprites_ie6.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/images/sprites_ie6.png
rename to horde/js/ckeditor/skins/office2003/images/sprites_ie6.png
diff --git a/horde/services/editor/ckeditor/skins/office2003/skin.js b/horde/js/ckeditor/skins/office2003/skin.js
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/skin.js
rename to horde/js/ckeditor/skins/office2003/skin.js
diff --git a/horde/services/editor/ckeditor/skins/office2003/templates.css b/horde/js/ckeditor/skins/office2003/templates.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/office2003/templates.css
rename to horde/js/ckeditor/skins/office2003/templates.css
diff --git a/horde/services/editor/ckeditor/skins/v2/dialog.css b/horde/js/ckeditor/skins/v2/dialog.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/dialog.css
rename to horde/js/ckeditor/skins/v2/dialog.css
diff --git a/horde/services/editor/ckeditor/skins/v2/editor.css b/horde/js/ckeditor/skins/v2/editor.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/editor.css
rename to horde/js/ckeditor/skins/v2/editor.css
diff --git a/horde/services/editor/ckeditor/skins/v2/icons.png b/horde/js/ckeditor/skins/v2/icons.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/icons.png
rename to horde/js/ckeditor/skins/v2/icons.png
diff --git a/horde/services/editor/ckeditor/skins/v2/images/dialog_sides.gif b/horde/js/ckeditor/skins/v2/images/dialog_sides.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/dialog_sides.gif
rename to horde/js/ckeditor/skins/v2/images/dialog_sides.gif
diff --git a/horde/services/editor/ckeditor/skins/v2/images/dialog_sides.png b/horde/js/ckeditor/skins/v2/images/dialog_sides.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/dialog_sides.png
rename to horde/js/ckeditor/skins/v2/images/dialog_sides.png
diff --git a/horde/services/editor/ckeditor/skins/v2/images/dialog_sides_rtl.png b/horde/js/ckeditor/skins/v2/images/dialog_sides_rtl.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/dialog_sides_rtl.png
rename to horde/js/ckeditor/skins/v2/images/dialog_sides_rtl.png
diff --git a/horde/services/editor/ckeditor/skins/v2/images/mini.gif b/horde/js/ckeditor/skins/v2/images/mini.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/mini.gif
rename to horde/js/ckeditor/skins/v2/images/mini.gif
diff --git a/horde/services/editor/ckeditor/skins/v2/images/noimage.png b/horde/js/ckeditor/skins/v2/images/noimage.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/noimage.png
rename to horde/js/ckeditor/skins/v2/images/noimage.png
diff --git a/horde/services/editor/ckeditor/skins/v2/images/sprites.png b/horde/js/ckeditor/skins/v2/images/sprites.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/sprites.png
rename to horde/js/ckeditor/skins/v2/images/sprites.png
diff --git a/horde/services/editor/ckeditor/skins/v2/images/sprites_ie6.png b/horde/js/ckeditor/skins/v2/images/sprites_ie6.png
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/sprites_ie6.png
rename to horde/js/ckeditor/skins/v2/images/sprites_ie6.png
diff --git a/horde/services/editor/ckeditor/skins/v2/images/toolbar_start.gif b/horde/js/ckeditor/skins/v2/images/toolbar_start.gif
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/images/toolbar_start.gif
rename to horde/js/ckeditor/skins/v2/images/toolbar_start.gif
diff --git a/horde/services/editor/ckeditor/skins/v2/skin.js b/horde/js/ckeditor/skins/v2/skin.js
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/skin.js
rename to horde/js/ckeditor/skins/v2/skin.js
diff --git a/horde/services/editor/ckeditor/skins/v2/templates.css b/horde/js/ckeditor/skins/v2/templates.css
similarity index 100%
rename from horde/services/editor/ckeditor/skins/v2/templates.css
rename to horde/js/ckeditor/skins/v2/templates.css
diff --git a/horde/services/editor/ckeditor/themes/default/theme.js b/horde/js/ckeditor/themes/default/theme.js
similarity index 100%
rename from horde/services/editor/ckeditor/themes/default/theme.js
rename to horde/js/ckeditor/themes/default/theme.js
diff --git a/horde/services/editor/fckeditor/editor/css/behaviors/disablehandles.htc b/horde/services/editor/fckeditor/editor/css/behaviors/disablehandles.htc
deleted file mode 100644
index e12aa5967..000000000
--- a/horde/services/editor/fckeditor/editor/css/behaviors/disablehandles.htc
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
diff --git a/horde/services/editor/fckeditor/editor/css/behaviors/showtableborders.htc b/horde/services/editor/fckeditor/editor/css/behaviors/showtableborders.htc
deleted file mode 100644
index bb814065e..000000000
--- a/horde/services/editor/fckeditor/editor/css/behaviors/showtableborders.htc
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/horde/services/editor/fckeditor/editor/css/fck_editorarea.css b/horde/services/editor/fckeditor/editor/css/fck_editorarea.css
deleted file mode 100644
index bd8ac1edb..000000000
--- a/horde/services/editor/fckeditor/editor/css/fck_editorarea.css
+++ /dev/null
@@ -1,110 +0,0 @@
-/*
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright (C) 2003-2009 Frederico Caldeira Knabben
- *
- * == BEGIN LICENSE ==
- *
- * Licensed under the terms of any of the following licenses at your
- * choice:
- *
- * - GNU General Public License Version 2 or later (the "GPL")
- * http://www.gnu.org/licenses/gpl.html
- *
- * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
- * http://www.gnu.org/licenses/lgpl.html
- *
- * - Mozilla Public License Version 1.1 or later (the "MPL")
- * http://www.mozilla.org/MPL/MPL-1.1.html
- *
- * == END LICENSE ==
- *
- * This is the default CSS file used by the editor area. It defines the
- * initial font of the editor and background color.
- *
- * A user can configure the editor to use another CSS file. Just change
- * the value of the FCKConfig.EditorAreaCSS key in the configuration
- * file.
- */
-
-/**
- * The "body" styles should match your editor web site, mainly regarding
- * background color and font family and size.
- */
-
-body
-{
- background-color: #ffffff;
- padding: 5px 5px 5px 5px;
- margin: 0px;
-}
-
-body, td
-{
- font-family: Arial, Verdana, sans-serif;
- font-size: 12px;
-}
-
-a[href]
-{
- color: -moz-hyperlinktext !important; /* For Firefox... mark as important, otherwise it becomes black */
- text-decoration: -moz-anchor-decoration; /* For Firefox 3, otherwise no underline will be used */
-}
-
-/**
- * Just uncomment the following block if you want to avoid spaces between
- * paragraphs. Remember to apply the same style in your output front end page.
- */
-
-/*
-p, ul, li
-{
- margin-top: 0px;
- margin-bottom: 0px;
-}
-*/
-
-/**
- * Uncomment the following block, or only selected lines if appropriate,
- * if you have some style items that would break the styles combo box.
- * You can also write other CSS overrides inside the style block below
- * as needed and they will be applied to inside the style combo only.
- */
-
-/*
-.SC_Item *, .SC_ItemSelected *
-{
- margin: 0px !important;
- padding: 0px !important;
- text-indent: 0px !important;
- clip: auto !important;
- position: static !important;
-}
-*/
-
-/**
- * The following are some sample styles used in the "Styles" toolbar command.
- * You should instead remove them, and include the styles used by the site
- * you are using the editor in.
- */
-
-.Bold
-{
- font-weight: bold;
-}
-
-.Title
-{
- font-weight: bold;
- font-size: 18px;
- color: #cc3300;
-}
-
-.Code
-{
- border: #8b4513 1px solid;
- padding-right: 5px;
- padding-left: 5px;
- color: #000066;
- font-family: 'Courier New' , Monospace;
- background-color: #ff9933;
-}
diff --git a/horde/services/editor/fckeditor/editor/css/fck_internal.css b/horde/services/editor/fckeditor/editor/css/fck_internal.css
deleted file mode 100644
index f81841e0b..000000000
--- a/horde/services/editor/fckeditor/editor/css/fck_internal.css
+++ /dev/null
@@ -1,199 +0,0 @@
-/*
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright (C) 2003-2009 Frederico Caldeira Knabben
- *
- * == BEGIN LICENSE ==
- *
- * Licensed under the terms of any of the following licenses at your
- * choice:
- *
- * - GNU General Public License Version 2 or later (the "GPL")
- * http://www.gnu.org/licenses/gpl.html
- *
- * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
- * http://www.gnu.org/licenses/lgpl.html
- *
- * - Mozilla Public License Version 1.1 or later (the "MPL")
- * http://www.mozilla.org/MPL/MPL-1.1.html
- *
- * == END LICENSE ==
- *
- * This CSS Style Sheet defines rules used by the editor for its internal use.
- */
-
-/* #########
- * WARNING
- * #########
- * When changing this file, the minified version of it must be updated in the
- * fckeditor.html file (see FCK_InternalCSS).
- */
-
-/* Fix to allow putting the caret at the end of the content in Firefox if
- clicking below the content. */
-html
-{
- min-height: 100%;
-}
-
-table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
-{
- border: #d3d3d3 1px solid;
-}
-
-form
-{
- border: 1px dotted #FF0000;
- padding: 2px;
-}
-
-.FCK__Flash
-{
- border: #a9a9a9 1px solid;
- background-position: center center;
- background-image: url(images/fck_flashlogo.gif);
- background-repeat: no-repeat;
- width: 80px;
- height: 80px;
-}
-
-.FCK__UnknownObject
-{
- border: #a9a9a9 1px solid;
- background-position: center center;
- background-image: url(images/fck_plugin.gif);
- background-repeat: no-repeat;
- width: 80px;
- height: 80px;
-}
-
-/* Empty anchors images */
-.FCK__Anchor
-{
- border: 1px dotted #00F;
- background-position: center center;
- background-image: url(images/fck_anchor.gif);
- background-repeat: no-repeat;
- width: 16px;
- height: 15px;
- vertical-align: middle;
-}
-
-/* Anchors with content */
-.FCK__AnchorC
-{
- border: 1px dotted #00F;
- background-position: 1px center;
- background-image: url(images/fck_anchor.gif);
- background-repeat: no-repeat;
- padding-left: 18px;
-}
-
-/* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */
-a[name]
-{
- border: 1px dotted #00F;
- background-position: 0 center;
- background-image: url(images/fck_anchor.gif);
- background-repeat: no-repeat;
- padding-left: 18px;
-}
-
-.FCK__PageBreak
-{
- background-position: center center;
- background-image: url(images/fck_pagebreak.gif);
- background-repeat: no-repeat;
- clear: both;
- display: block;
- float: none;
- width: 100%;
- border-top: #999999 1px dotted;
- border-bottom: #999999 1px dotted;
- border-right: 0px;
- border-left: 0px;
- height: 5px;
-}
-
-/* Hidden fields */
-.FCK__InputHidden
-{
- width: 19px;
- height: 18px;
- background-image: url(images/fck_hiddenfield.gif);
- background-repeat: no-repeat;
- vertical-align: text-bottom;
- background-position: center center;
-}
-
-.FCK__ShowBlocks p,
-.FCK__ShowBlocks div,
-.FCK__ShowBlocks pre,
-.FCK__ShowBlocks address,
-.FCK__ShowBlocks blockquote,
-.FCK__ShowBlocks h1,
-.FCK__ShowBlocks h2,
-.FCK__ShowBlocks h3,
-.FCK__ShowBlocks h4,
-.FCK__ShowBlocks h5,
-.FCK__ShowBlocks h6
-{
- background-repeat: no-repeat;
- border: 1px dotted gray;
- padding-top: 8px;
- padding-left: 8px;
-}
-
-.FCK__ShowBlocks p
-{
- background-image: url(images/block_p.png);
-}
-
-.FCK__ShowBlocks div
-{
- background-image: url(images/block_div.png);
-}
-
-.FCK__ShowBlocks pre
-{
- background-image: url(images/block_pre.png);
-}
-
-.FCK__ShowBlocks address
-{
- background-image: url(images/block_address.png);
-}
-
-.FCK__ShowBlocks blockquote
-{
- background-image: url(images/block_blockquote.png);
-}
-
-.FCK__ShowBlocks h1
-{
- background-image: url(images/block_h1.png);
-}
-
-.FCK__ShowBlocks h2
-{
- background-image: url(images/block_h2.png);
-}
-
-.FCK__ShowBlocks h3
-{
- background-image: url(images/block_h3.png);
-}
-
-.FCK__ShowBlocks h4
-{
- background-image: url(images/block_h4.png);
-}
-
-.FCK__ShowBlocks h5
-{
- background-image: url(images/block_h5.png);
-}
-
-.FCK__ShowBlocks h6
-{
- background-image: url(images/block_h6.png);
-}
diff --git a/horde/services/editor/fckeditor/editor/css/fck_showtableborders_gecko.css b/horde/services/editor/fckeditor/editor/css/fck_showtableborders_gecko.css
deleted file mode 100644
index e83dc1416..000000000
--- a/horde/services/editor/fckeditor/editor/css/fck_showtableborders_gecko.css
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright (C) 2003-2009 Frederico Caldeira Knabben
- *
- * == BEGIN LICENSE ==
- *
- * Licensed under the terms of any of the following licenses at your
- * choice:
- *
- * - GNU General Public License Version 2 or later (the "GPL")
- * http://www.gnu.org/licenses/gpl.html
- *
- * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
- * http://www.gnu.org/licenses/lgpl.html
- *
- * - Mozilla Public License Version 1.1 or later (the "MPL")
- * http://www.mozilla.org/MPL/MPL-1.1.html
- *
- * == END LICENSE ==
- *
- * This CSS Style Sheet defines the rules to show table borders on Gecko.
- */
-
-/* #########
- * WARNING
- * #########
- * When changing this file, the minified version of it must be updated in the
- * fckeditor.html file (see FCK_ShowTableBordersCSS).
- */
-
-/* For tables with the "border" attribute set to "0" */
-table[border="0"],
-table[border="0"] > tr > td, table[border="0"] > tr > th,
-table[border="0"] > tbody > tr > td, table[border="0"] > tbody > tr > th,
-table[border="0"] > thead > tr > td, table[border="0"] > thead > tr > th,
-table[border="0"] > tfoot > tr > td, table[border="0"] > tfoot > tr > th
-{
- border: #d3d3d3 1px dotted ;
-}
-
-/* For tables with no "border" attribute set */
-table:not([border]),
-table:not([border]) > tr > td, table:not([border]) > tr > th,
-table:not([border]) > tbody > tr > td, table:not([border]) > tbody > tr > th,
-table:not([border]) > thead > tr > td, table:not([border]) > thead > tr > th,
-table:not([border]) > tfoot > tr > td, table:not([border]) > tfoot > tr > th
-{
- border: #d3d3d3 1px dotted ;
-}
diff --git a/horde/services/editor/fckeditor/editor/css/images/block_address.png b/horde/services/editor/fckeditor/editor/css/images/block_address.png
deleted file mode 100644
index 8a9990f11ce7319e30a82217e0bfc64958847567..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 144
zcmeAS@N?(olHy`uVBq!ia0vp^xk;Xc&f5E&plUQfvV}A+A8Wp`l??=1vtLi?Jlg
zFPOpM*^M+H$I8>iF@!@lIpF}~k2%$9{#y4AA9yLWMP)@WqX)YT&5Y>tKMgm|=X|vF^3mOI>I37Nh
zJr@;~%Fb`BQF!5bg@u=)?)RzYqfedd_53cbyBB-so%o|vJ{~uR=kHWQK?X8-y85}S
Ib4q9e0Pzhxzq^7+^G4p>7r_MK?*dCGnyDDENeK`K^WRiV7$7IVA57(!6CoEzI
Pn!@1e>gTe~DWM4fVp1lp
diff --git a/horde/services/editor/fckeditor/editor/css/images/block_h3.png b/horde/services/editor/fckeditor/editor/css/images/block_h3.png
deleted file mode 100644
index 343e47d3facab416bd4c249a172380fe5bc0c0ce..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 113
zcmeAS@N?(olHy`uVBq!ia0vp^azM<_!3HEh@2Z~zq%1sL978H@y`8v`i@|}z>HX!u
zpS#;KI>NX=H42z{d^;k+P-nio-fR)T5mdKI;Vst06^R%qyPW_
diff --git a/horde/services/editor/fckeditor/editor/css/images/block_h4.png b/horde/services/editor/fckeditor/editor/css/images/block_h4.png
deleted file mode 100644
index e57dccefa22ecf9f23c2362cf495dfe8fed281e1..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 115
zcmeAS@N?(olHy`uVBq!ia0vp^azM<_!3HEh@2Z~zq^vw$978H@z3n&TVld!fuC1!e
zD->{iDdm0A(cn=*MiMWBUG-bRMLT}Yf8;Yg(Ei*_XMy|gYc>k#7c*S>=bIGLqj3^w
O3WKMspUXO@geCwf042cy
diff --git a/horde/services/editor/fckeditor/editor/css/images/block_h5.png b/horde/services/editor/fckeditor/editor/css/images/block_h5.png
deleted file mode 100644
index 97a41d22b67dd300eca8dc27cbe38334ceeb37c0..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 114
zcmeAS@N?(olHy`uVBq!ia0vp^azM<_!3HEh@2Z~zq%1vM978H@y`5ml$6&z0^t+_)
zp5Col7TmHsT3)#IrKT|4_HEun
zKNmS0bo8Yf$a6e$3I+_#o__X~Z03ufo?y*DL-0eD$H_YOy41wi)eSkMFs>`42RM
N!PC{xWt~$(69A14D5wAc
diff --git a/horde/services/editor/fckeditor/editor/css/images/block_p.png b/horde/services/editor/fckeditor/editor/css/images/block_p.png
deleted file mode 100644
index 3790511cb8b485873d3f8449ec70ca1c7a686985..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 101
zcmeAS@N?(olHy`uVBq!ia0vp^azM<_!3HEh@2Z~zq;x!8978H@y}huJlYxPQ+0p&{
zvs+!v5(n))62B%Ka0~jjw(WT?_x~!>#0PtrzSpZ3O+MB-0jQ6`)78&qol`;+0Ejyw
Aw*UYD
diff --git a/horde/services/editor/fckeditor/editor/css/images/block_pre.png b/horde/services/editor/fckeditor/editor/css/images/block_pre.png
deleted file mode 100644
index 306269f0faca05231adee98dc8a640d6cc37ebd1..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 118
zcmeAS@N?(olHy`uVBq!ia0vp^azM<_!3HEh@2Z~zq-;H1978H@y`5yp#bCh0^t+_~
zp5H+}*69rkD-=4qB{ntjGVESrylUx>Z%WE-N%vRY7C-&;$?2qD&%@gdTA5c0=3cGR
Re+Dv@!PC{xWt~$(695z)DSZF{
diff --git a/horde/services/editor/fckeditor/editor/css/images/fck_anchor.gif b/horde/services/editor/fckeditor/editor/css/images/fck_anchor.gif
deleted file mode 100644
index 5aa797b2240a432d9f3f1d166ed5542eaf684937..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 184
zcmZ?wbhEHb6kygJ|Uu&?oD;%Ae!z@09(NL_hv#6Slx0y!YR{?r|LJZgAju=f-$sQVWNL{+Tsz18#+~Ke%+zTWns()WcPwy8dQcr!JH#
U&i)o#hQ}|Gy#O|EKr=edPZ~8vO4q_`j_G|MH3d
zH_!iH9Pr;);s3MyKRjgr`6&F~H2-;B+P@j~|2ED08=?O(&g$W$rvFR(|KB|SuRh_y
z{7L`!um2Zm@S;BL-=_J0>*N3R6x?1h|K7ZbUxT&p&ztz9qvT(j!@s3{|Lg_+cISVJ
zv-*=__cg)hKTu^+z;8RgcNrf4dkX%iIs7+f_zwmQxPjtN7DfgJGX@=y5|E!5*#0}r
zF7VKiY8MG;J!WGy|8S>+g9nR{$%<_pnL1eyq7-)D4dPDxuw%{AWrwr3ZFa6WeDYJ$
zibg+iA!FW(N@o+sd>JNwA?X%ZedBy?6Y)OxwoE>zsncAgCT1Fo&2=-8$xK#V;-bNu
zZ|t*iwSZAs`DzosZCTAN^LOuAq8Wdnuup_3Uy||6nTWXp3^O-g*_$KJRGYxSzuJZA
zQYMq~Jty@AiQEQH&1BhcnX)peEfLo8X8B-xX9o}Gu2UHu2TD)$*>K)7*sEF4;9}WY
zz|vC{5x}F<@+L!o;eZ1}uf&_S4H+8`IWL}|5j<_>F$M-+1~;2SB8L>N@hJKh?6Pq<
z^7KrJqTmb(fk%@Xcp2Cdo^AO!sjZPQpnsoEkplyp5!W2P0|6auAxyrkXC$=0s{4ui
z^l~{G9DeMpmdtOm*Yb$EAd6q(L`ee|yPs^ir><{U!f-(AfHuRcDf?R)&Nw)z
b9J+CuD@{Yf=%(AVjaetTW(q2DFjxZs`Jnz5
diff --git a/horde/services/editor/fckeditor/editor/css/images/fck_hiddenfield.gif b/horde/services/editor/fckeditor/editor/css/images/fck_hiddenfield.gif
deleted file mode 100644
index 953f643b60032c36ac92590950577c336f133512..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 105
zcmZ?wbhEHb6lM@&n8?8JABg_{Z)j*>U|`SzVg`^n1Cx_W&+?fM`5zlEy44+e;LbT+
zkH8h7N-kQ@I;_|Q}>&=&Wsxvt_U!{00zr0#2QD@sN
HCI)K&$9F25
diff --git a/horde/services/editor/fckeditor/editor/css/images/fck_pagebreak.gif b/horde/services/editor/fckeditor/editor/css/images/fck_pagebreak.gif
deleted file mode 100644
index 8d1cffd64af72709b1180b3b0a51bbfe30bcb8c6..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 54
zcmZ?wbhEHbR
zh=C=r6qdmXSP83OHN-(Ytbw)g9;}1)kN_JY5t872NQTXj3R@u!(&0nc1{%nKOvnN)
zWJ3<Tuow2hekg_mPy(fJ5Dvj%(1QWWpd2dT2pok^pb|cX
z<8T5_!YTL+s-PN-@Hy1L7jPQBgfnm!zJhab9xlMw@C}%t7V6+4)WaocfJSJ7W@v#{
z_!ho{@8Jh%gUfIQ+Tki(gCF51xDG$VFK`1o;8*w!euqxzf}8LMbi*z96K=yDxC{5-
zFZdho!$0r<9>OE&fydAbPv9v$gXi!9{)Ikx3H>m@!2boee%bV-Rk6vdRw`1~B*!a4
z!)Ha}_CjbTd1dLtD_)0!xSxSR&S6#h+AOjC=$NJ|!^K>w`;5}C>at7u@`-CZnySki
z3(TcDhg5wx0*k@QFukfaQ)DgIRftWZe8^*LrjOHEOfd85t92z|ueNR8)y
zzZhe*VdN@_;}~y|ph<7pW(e6cId6vJ7;E#7qt7fqAh;C1+tbHWieIEkJW=Zq+#w^vl71ZsRdrfq@(<^e1^&`W@hC(N~6h)*;C9q3;E?qn+
zygk~t!N1=>b(b=C$MEs1yYGyz56K@I_>`@IUTy|&2Q_HB8s)?tw*F=zOu-s&YO?;cCksDuw6We99WkRh~a
zTY%-XK0meH>_|hfJpO!au4}gDQnUB*O1nTaae>Kdtc^mJ{ig^etV>B$>)@~Y9QL~EBpu#Lhi
z+i`K)We?|+;xjsBnxUsy6;d=EEo3%JRkSmup*nZ39kAiBebJAVN1jWLR8f
zS58&B^{yuO!b8?3v*EK86quJwN!LF9G=ap|ta~?KK6)V#3WHgT0
zd_6JOQ4!Ip5<2%un>A}Z@=yI@(a&SrS!CH>+XBp7CP=_@709~
MFP~hub&xXkKL?Jd#{d8T
diff --git a/horde/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.css b/horde/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.css
deleted file mode 100644
index ac941a6d2..000000000
--- a/horde/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.css
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright 2003-2008 Frederico Caldeira Knabben
- *
- * == BEGIN LICENSE ==
- *
- * Licensed under the terms of any of the following licenses at your
- * choice:
- *
- * - GNU General Public License Version 2 or later (the "GPL")
- * http://www.gnu.org/licenses/gpl.html
- *
- * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
- * http://www.gnu.org/licenses/lgpl.html
- *
- * - Mozilla Public License Version 1.1 or later (the "MPL")
- * http://www.mozilla.org/MPL/MPL-1.1.html
- *
- * == END LICENSE ==
- *
- * This is the CSS file used for interface details in some dialog
- * windows.
- */
-
-/* #########
- * WARNING
- * #########
- * When changing this file, the minified version of it must be updated in the
- * fck_dialog_common.js file (see GetCommonDialogCss).
- */
-
-.ImagePreviewArea
-{
- border: #000000 1px solid;
- overflow: auto;
- width: 100%;
- height: 170px;
- background-color: #ffffff;
-}
-
-.FlashPreviewArea
-{
- border: #000000 1px solid;
- padding: 5px;
- overflow: auto;
- width: 100%;
- height: 170px;
- background-color: #ffffff;
-}
-
-.BtnReset
-{
- float: left;
- background-position: center center;
- background-image: url(images/reset.gif);
- width: 16px;
- height: 16px;
- background-repeat: no-repeat;
- border: 1px none;
- font-size: 1px ;
-}
-
-.BtnLocked, .BtnUnlocked
-{
- float: left;
- background-position: center center;
- background-image: url(images/locked.gif);
- width: 16px;
- height: 16px;
- background-repeat: no-repeat;
- border: none 1px;
- font-size: 1px ;
-}
-
-.BtnUnlocked
-{
- background-image: url(images/unlocked.gif);
-}
-
-.BtnOver
-{
- border: outset 1px;
- cursor: pointer;
- cursor: hand;
-}
diff --git a/horde/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.js b/horde/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.js
deleted file mode 100644
index a79508b4f..000000000
--- a/horde/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.js
+++ /dev/null
@@ -1 +0,0 @@
-(function(){var b=document.domain;while(true){try{var c=window.parent.document.domain;break}catch(a){}b=b.replace(/.*?(?:\.|$)/,"");if(b.length==0){break}try{document.domain=b}catch(a){break}}})();function GetCommonDialogCss(a){return FCKConfig.BasePath+"dialog/common/|.ImagePreviewArea{border:#000 1px solid;overflow:auto;width:100%;height:170px;background-color:#fff}.FlashPreviewArea{border:#000 1px solid;padding:5px;overflow:auto;width:100%;height:170px;background-color:#fff}.BtnReset{float:left;background-position:center center;background-image:url(images/reset.gif);width:16px;height:16px;background-repeat:no-repeat;border:1px none;font-size:1px}.BtnLocked,.BtnUnlocked{float:left;background-position:center center;background-image:url(images/locked.gif);width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.BtnUnlocked{background-image:url(images/unlocked.gif)}.BtnOver{border:outset 1px;cursor:pointer;cursor:hand}"}function GetE(a){return document.getElementById(a)}function ShowE(b,a){if(typeof(b)=="string"){b=GetE(b)}b.style.display=a?"":"none"}function SetAttribute(b,c,a){if(a==null||a.length==0){b.removeAttribute(c,0)}else{b.setAttribute(c,a,0)}}function GetAttribute(c,e,a){var d=c.attributes[e];if(d==null||!d.specified){return a?a:""}var b=c.getAttribute(e,2);if(b==null){b=d.nodeValue}return(b==null?a:b)}function SelectField(a){var b=GetE(a);b.focus();if(b.select){b.select()}}var IsDigit=(function(){var a={End:35,Home:36,Left:37,Right:39,"U+00007F":46};return function(c){if(!c){c=event}var b=(c.keyCode||c.charCode);if(!b&&c.keyIdentifier&&(c.keyIdentifier in a)){b=a[c.keyIdentifier]}return((b>=48&&b<=57)||(b>=35&&b<=40)||b==8||b==46||b==9)}})();String.prototype.Trim=function(){return this.replace(/(^\s*)|(\s*$)/g,"")};String.prototype.StartsWith=function(a){return(this.substr(0,a.length)==a)};String.prototype.Remove=function(c,b){var a="";if(c>0){a=this.substring(0,c)}if(c+b");if(!l.FCKListsLib.EmptyElements[k.toLowerCase()]){c.push(""+k+">")}j=l.FCK.EditorDocument.createElement(c.join(""));if(f){CopyAttributes(f,j,d);l.FCKDomTools.MoveChildren(f,j);f.parentNode.removeChild(f);f=null;if(l.FCK.Selection.SelectionData){var e=l.FCK.EditorDocument.selection;l.FCK.Selection.SelectionData=e.createRange()}}j=l.FCK.InsertElement(j);if(l.FCK.Selection.SelectionData){var h=l.FCK.EditorDocument.body.createControlRange();h.add(j);l.FCK.Selection.SelectionData=h}}else{j=l.FCK.InsertElement(k)}}for(var i in d){j.setAttribute(i,d[i],0)}return j}function CopyAttributes(b,e,d){var a=b.attributes;for(var h=0;hqhLlW7NWPalw|wDT>Y41KDa5B1(AN8J-K6Jhxuv(;()*EkSH0kHq~$&M_(s4Auan
CRv``m
diff --git a/horde/services/editor/fckeditor/editor/dialog/common/images/unlocked.gif b/horde/services/editor/fckeditor/editor/dialog/common/images/unlocked.gif
deleted file mode 100644
index 801e423c741b39f3d7da2e1bd111e8ed889d5602..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 75
zcmZ?wbhEHbOD&BLeKO=)R0Q995zyJUM
diff --git a/horde/services/editor/fckeditor/editor/dialog/common/src/fck_dialog_common.js b/horde/services/editor/fckeditor/editor/dialog/common/src/fck_dialog_common.js
deleted file mode 100644
index 4aab5b8a2..000000000
--- a/horde/services/editor/fckeditor/editor/dialog/common/src/fck_dialog_common.js
+++ /dev/null
@@ -1,347 +0,0 @@
-/*
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright (C) 2003-2009 Frederico Caldeira Knabben
- *
- * == BEGIN LICENSE ==
- *
- * Licensed under the terms of any of the following licenses at your
- * choice:
- *
- * - GNU General Public License Version 2 or later (the "GPL")
- * http://www.gnu.org/licenses/gpl.html
- *
- * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
- * http://www.gnu.org/licenses/lgpl.html
- *
- * - Mozilla Public License Version 1.1 or later (the "MPL")
- * http://www.mozilla.org/MPL/MPL-1.1.html
- *
- * == END LICENSE ==
- *
- * Useful functions used by almost all dialog window pages.
- * Dialogs should link to this file as the very first script on the page.
- */
-
-// Automatically detect the correct document.domain (#123).
-(function()
-{
- var d = document.domain ;
-
- while ( true )
- {
- // Test if we can access a parent property.
- try
- {
- var test = window.parent.document.domain ;
- break ;
- }
- catch( e ) {}
-
- // Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ...
- d = d.replace( /.*?(?:\.|$)/, '' ) ;
-
- if ( d.length == 0 )
- break ; // It was not able to detect the domain.
-
- try
- {
- document.domain = d ;
- }
- catch (e)
- {
- break ;
- }
- }
-})() ;
-
-// Attention: FCKConfig must be available in the page.
-function GetCommonDialogCss( prefix )
-{
- // CSS minified by http://iceyboard.no-ip.org/projects/css_compressor (see _dev/css_compression.txt).
- return FCKConfig.BasePath + 'dialog/common/' + '|.ImagePreviewArea{border:#000 1px solid;overflow:auto;width:100%;height:170px;background-color:#fff}.FlashPreviewArea{border:#000 1px solid;padding:5px;overflow:auto;width:100%;height:170px;background-color:#fff}.BtnReset{float:left;background-position:center center;background-image:url(images/reset.gif);width:16px;height:16px;background-repeat:no-repeat;border:1px none;font-size:1px}.BtnLocked,.BtnUnlocked{float:left;background-position:center center;background-image:url(images/locked.gif);width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.BtnUnlocked{background-image:url(images/unlocked.gif)}.BtnOver{border:outset 1px;cursor:pointer;cursor:hand}' ;
-}
-
-// Gets a element by its Id. Used for shorter coding.
-function GetE( elementId )
-{
- return document.getElementById( elementId ) ;
-}
-
-function ShowE( element, isVisible )
-{
- if ( typeof( element ) == 'string' )
- element = GetE( element ) ;
- element.style.display = isVisible ? '' : 'none' ;
-}
-
-function SetAttribute( element, attName, attValue )
-{
- if ( attValue == null || attValue.length == 0 )
- element.removeAttribute( attName, 0 ) ; // 0 : Case Insensitive
- else
- element.setAttribute( attName, attValue, 0 ) ; // 0 : Case Insensitive
-}
-
-function GetAttribute( element, attName, valueIfNull )
-{
- var oAtt = element.attributes[attName] ;
-
- if ( oAtt == null || !oAtt.specified )
- return valueIfNull ? valueIfNull : '' ;
-
- var oValue = element.getAttribute( attName, 2 ) ;
-
- if ( oValue == null )
- oValue = oAtt.nodeValue ;
-
- return ( oValue == null ? valueIfNull : oValue ) ;
-}
-
-function SelectField( elementId )
-{
- var element = GetE( elementId ) ;
- element.focus() ;
-
- // element.select may not be available for some fields (like
';};FCKTools.AddEventListenerEx(G,'mouseover',FCKSpecialCombo_OnMouseOver,this);FCKTools.AddEventListenerEx(G,'mouseout',FCKSpecialCombo_OnMouseOut,this);FCKTools.AddEventListenerEx(G,'click',FCKSpecialCombo_OnClick,this);FCKTools.DisableSelection(this._Panel.Document.body);};function FCKSpecialCombo_Cleanup(){this._LabelEl=null;this._OuterTable=null;this._ItemsHolderEl=null;this._PanelBox=null;if (this.Items){for (var A in this.Items) this.Items[A]=null;}};function FCKSpecialCombo_OnMouseOver(A,B){if (B.Enabled){switch (B.Style){case 0:this.className='TB_Button_On_Over';break;case 1:this.className='TB_Button_On_Over';break;case 2:this.className='SC_Field SC_FieldOver';break;}}};function FCKSpecialCombo_OnMouseOut(A,B){switch (B.Style){case 0:this.className='TB_Button_Off';break;case 1:this.className='TB_Button_Off';break;case 2:this.className='SC_Field';break;}};function FCKSpecialCombo_OnClick(e,A){if (A.Enabled){var B=A._Panel;var C=A._PanelBox;var D=A._ItemsHolderEl;var E=A.PanelMaxHeight;if (A.OnBeforeClick) A.OnBeforeClick(A);if (FCKBrowserInfo.IsIE) B.Preload(0,this.offsetHeight,this);if (D.offsetHeight>E) C.style.height=E+'px';else C.style.height='';B.Show(0,this.offsetHeight,this);}};
-var FCKToolbarSpecialCombo=function(){this.SourceView=false;this.ContextSensitive=true;this.FieldWidth=null;this.PanelWidth=null;this.PanelMaxHeight=null;};FCKToolbarSpecialCombo.prototype.DefaultLabel='';function FCKToolbarSpecialCombo_OnSelect(A,B){FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(this.CommandName).Execute(A,B);};FCKToolbarSpecialCombo.prototype.Create=function(A){this._Combo=new FCKSpecialCombo(this.GetLabel(),this.FieldWidth,this.PanelWidth,this.PanelMaxHeight,FCKBrowserInfo.IsIE?window:FCKTools.GetElementWindow(A).parent);this._Combo.Tooltip=this.Tooltip;this._Combo.Style=this.Style;this.CreateItems(this._Combo);this._Combo.Create(A);this._Combo.CommandName=this.CommandName;this._Combo.OnSelect=FCKToolbarSpecialCombo_OnSelect;};function FCKToolbarSpecialCombo_RefreshActiveItems(A,B){A.DeselectAll();A.SelectItem(B);A.SetLabelById(B);};FCKToolbarSpecialCombo.prototype.RefreshState=function(){var A;var B=FCK.ToolbarSet.CurrentInstance.Commands.GetCommand(this.CommandName).GetState();if (B!=-1){A=1;if (this.RefreshActiveItems) this.RefreshActiveItems(this._Combo,B);else{if (this._LastValue!==B){this._LastValue=B;if (!B||B.length==0){this._Combo.DeselectAll();this._Combo.SetLabel(this.DefaultLabel);}else FCKToolbarSpecialCombo_RefreshActiveItems(this._Combo,B);}}}else A=-1;if (A==this.State) return;if (A==-1){this._Combo.DeselectAll();this._Combo.SetLabel('');};this.State=A;this._Combo.SetEnabled(A!=-1);};FCKToolbarSpecialCombo.prototype.Enable=function(){this.RefreshState();};FCKToolbarSpecialCombo.prototype.Disable=function(){this.State=-1;this._Combo.DeselectAll();this._Combo.SetLabel('');this._Combo.SetEnabled(false);};
-var FCKToolbarStyleCombo=function(A,B){if (A===false) return;this.CommandName='Style';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;this.DefaultLabel=FCKConfig.DefaultStyleLabel||'';};FCKToolbarStyleCombo.prototype=new FCKToolbarSpecialCombo;FCKToolbarStyleCombo.prototype.GetLabel=function(){return FCKLang.Style;};FCKToolbarStyleCombo.prototype.GetStyles=function(){var A={};var B=FCK.ToolbarSet.CurrentInstance.Styles.GetStyles();for (var C in B){var D=B[C];if (!D.IsCore) A[C]=D;};return A;};FCKToolbarStyleCombo.prototype.CreateItems=function(A){var B=A._Panel.Document;FCKTools.AppendStyleSheet(B,FCKConfig.ToolbarComboPreviewCSS);FCKTools.AppendStyleString(B,FCKConfig.EditorAreaStyles);B.body.className+=' ForceBaseFont';FCKConfig.ApplyBodyAttributes(B.body);var C=this.GetStyles();for (var D in C){var E=C[D];var F=E.GetType()==2?D:FCKToolbarStyleCombo_BuildPreview(E,E.Label||D);var G=A.AddItem(D,F);G.Style=E;};A.OnBeforeClick=this.StyleCombo_OnBeforeClick;};FCKToolbarStyleCombo.prototype.RefreshActiveItems=function(A){var B=FCK.ToolbarSet.CurrentInstance.Selection.GetBoundaryParentElement(true);if (B){var C=new FCKElementPath(B);var D=C.Elements;for (var e=0;e');var E=A.Element;if (E=='bdo') E='span';D=['<',E];var F=A._StyleDesc.Attributes;if (F){for (var G in F){D.push(' ',G,'="',A.GetFinalAttributeValue(G),'"');}};if (A._GetStyleText().length>0) D.push(' style="',A.GetFinalStyleValue(),'"');D.push('>',B,'',E,'>');if (C==0) D.push('');return D.join('');};
-var FCKToolbarFontFormatCombo=function(A,B){if (A===false) return;this.CommandName='FontFormat';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;this.NormalLabel='Normal';this.PanelWidth=190;this.DefaultLabel=FCKConfig.DefaultFontFormatLabel||'';};FCKToolbarFontFormatCombo.prototype=new FCKToolbarStyleCombo(false);FCKToolbarFontFormatCombo.prototype.GetLabel=function(){return FCKLang.FontFormat;};FCKToolbarFontFormatCombo.prototype.GetStyles=function(){var A={};var B=FCKLang['FontFormats'].split(';');var C={p:B[0],pre:B[1],address:B[2],h1:B[3],h2:B[4],h3:B[5],h4:B[6],h5:B[7],h6:B[8],div:B[9]||(B[0]+' (DIV)')};var D=FCKConfig.FontFormats.split(';');for (var i=0;i';G.open();G.write(''+H+''+document.getElementById('xToolbarSpace').innerHTML+'');G.close();if(FCKBrowserInfo.IsAIR) FCKAdobeAIR.ToolbarSet_InitOutFrame(G);FCKTools.AddEventListener(G,'contextmenu',FCKTools.CancelEvent);FCKTools.AppendStyleSheet(G,FCKConfig.SkinEditorCSS);B=D.__FCKToolbarSet=new FCKToolbarSet(G);B._IFrame=F;if (FCK.IECleanup) FCK.IECleanup.AddItem(D,FCKToolbarSet_Target_Cleanup);};B.CurrentInstance=FCK;if (!B.ToolbarItems) B.ToolbarItems=FCKToolbarItems;FCK.AttachToOnSelectionChange(B.RefreshItemsState);return B;};function FCK_OnBlur(A){var B=A.ToolbarSet;if (B.CurrentInstance==A) B.Disable();};function FCK_OnFocus(A){var B=A.ToolbarSet;var C=A||FCK;B.CurrentInstance.FocusManager.RemoveWindow(B._IFrame.contentWindow);B.CurrentInstance=C;C.FocusManager.AddWindow(B._IFrame.contentWindow,true);B.Enable();};function FCKToolbarSet_Cleanup(){this._TargetElement=null;this._IFrame=null;};function FCKToolbarSet_Target_Cleanup(){this.__FCKToolbarSet=null;};var FCKToolbarSet=function(A){this._Document=A;this._TargetElement=A.getElementById('xToolbar');var B=A.getElementById('xExpandHandle');var C=A.getElementById('xCollapseHandle');B.title=FCKLang.ToolbarExpand;FCKTools.AddEventListener(B,'click',FCKToolbarSet_Expand_OnClick);C.title=FCKLang.ToolbarCollapse;FCKTools.AddEventListener(C,'click',FCKToolbarSet_Collapse_OnClick);if (!FCKConfig.ToolbarCanCollapse||FCKConfig.ToolbarStartExpanded) this.Expand();else this.Collapse();C.style.display=FCKConfig.ToolbarCanCollapse?'':'none';if (FCKConfig.ToolbarCanCollapse) C.style.display='';else A.getElementById('xTBLeftBorder').style.display='';this.Toolbars=[];this.IsLoaded=false;if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKToolbarSet_Cleanup);};function FCKToolbarSet_Expand_OnClick(){FCK.ToolbarSet.Expand();};function FCKToolbarSet_Collapse_OnClick(){FCK.ToolbarSet.Collapse();};FCKToolbarSet.prototype.Expand=function(){this._ChangeVisibility(false);};FCKToolbarSet.prototype.Collapse=function(){this._ChangeVisibility(true);};FCKToolbarSet.prototype._ChangeVisibility=function(A){this._Document.getElementById('xCollapsed').style.display=A?'':'none';this._Document.getElementById('xExpanded').style.display=A?'none':'';if (FCKBrowserInfo.IsGecko){FCKTools.RunFunction(window.onresize);}};FCKToolbarSet.prototype.Load=function(A){this.Name=A;this.Items=[];this.ItemsWysiwygOnly=[];this.ItemsContextSensitive=[];this._TargetElement.innerHTML='';var B=FCKConfig.ToolbarSets[A];if (!B){alert(FCKLang.UnknownToolbarSet.replace(/%1/g,A));return;};this.Toolbars=[];for (var x=0;x0) break;}catch (e){break;};D=D.parent;};var E=D.document;var F=function(){if (!B) B=FCKConfig.FloatingPanelsZIndex+999;return++B;};var G=function(){if (!C) return;var H=FCKTools.IsStrictMode(E)?E.documentElement:E.body;FCKDomTools.SetElementStyles(C,{'width':Math.max(H.scrollWidth,H.clientWidth,E.scrollWidth||0)-1+'px','height':Math.max(H.scrollHeight,H.clientHeight,E.scrollHeight||0)-1+'px'});};return {OpenDialog:function(dialogName,dialogTitle,dialogPage,width,height,customValue,parentWindow,resizable){if (!A) this.DisplayMainCover();var I={Title:dialogTitle,Page:dialogPage,Editor:window,CustomValue:customValue,TopWindow:D};FCK.ToolbarSet.CurrentInstance.Selection.Save(true);var J=FCKTools.GetViewPaneSize(D);var K={ 'X':0,'Y':0 };var L=FCKBrowserInfo.IsIE&&(!FCKBrowserInfo.IsIE7||!FCKTools.IsStrictMode(D.document));if (L) K=FCKTools.GetScrollPosition(D);var M=Math.max(K.Y+(J.Height-height-20)/2,0);var N=Math.max(K.X+(J.Width-width-20)/2,0);var O=E.createElement('iframe');FCKTools.ResetStyles(O);O.src=FCKConfig.BasePath+'fckdialog.html';O.frameBorder=0;O.allowTransparency=true;FCKDomTools.SetElementStyles(O,{'position':(L)?'absolute':'fixed','top':M+'px','left':N+'px','width':width+'px','height':height+'px','zIndex':F()});O._DialogArguments=I;E.body.appendChild(O);O._ParentDialog=A;A=O;},OnDialogClose:function(dialogWindow){var O=dialogWindow.frameElement;FCKDomTools.RemoveNode(O);if (O._ParentDialog){A=O._ParentDialog;O._ParentDialog.contentWindow.SetEnabled(true);}else{if (!FCKBrowserInfo.IsIE) FCK.Focus();this.HideMainCover();setTimeout(function(){ A=null;},0);FCK.ToolbarSet.CurrentInstance.Selection.Release();}},DisplayMainCover:function(){C=E.createElement('div');FCKTools.ResetStyles(C);FCKDomTools.SetElementStyles(C,{'position':'absolute','zIndex':F(),'top':'0px','left':'0px','backgroundColor':FCKConfig.BackgroundBlockerColor});FCKDomTools.SetOpacity(C,FCKConfig.BackgroundBlockerOpacity);if (FCKBrowserInfo.IsIE&&!FCKBrowserInfo.IsIE7){var Q=E.createElement('iframe');FCKTools.ResetStyles(Q);Q.hideFocus=true;Q.frameBorder=0;Q.src=FCKTools.GetVoidUrl();FCKDomTools.SetElementStyles(Q,{'width':'100%','height':'100%','position':'absolute','left':'0px','top':'0px','filter':'progid:DXImageTransform.Microsoft.Alpha(opacity=0)'});C.appendChild(Q);};FCKTools.AddEventListener(D,'resize',G);G();E.body.appendChild(C);FCKFocusManager.Lock();var R=FCK.ToolbarSet.CurrentInstance.GetInstanceObject('frameElement');R._fck_originalTabIndex=R.tabIndex;R.tabIndex=-1;},HideMainCover:function(){FCKDomTools.RemoveNode(C);FCKFocusManager.Unlock();var R=FCK.ToolbarSet.CurrentInstance.GetInstanceObject('frameElement');R.tabIndex=R._fck_originalTabIndex;FCKDomTools.ClearElementJSProperty(R,'_fck_originalTabIndex');},GetCover:function(){return C;}};})();
-var FCKMenuItem=function(A,B,C,D,E,F){this.Name=B;this.Label=C||B;this.IsDisabled=E;this.Icon=new FCKIcon(D);this.SubMenu=new FCKMenuBlockPanel();this.SubMenu.Parent=A;this.SubMenu.OnClick=FCKTools.CreateEventListener(FCKMenuItem_SubMenu_OnClick,this);this.CustomData=F;if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKMenuItem_Cleanup);};FCKMenuItem.prototype.AddItem=function(A,B,C,D,E){this.HasSubMenu=true;return this.SubMenu.AddItem(A,B,C,D,E);};FCKMenuItem.prototype.AddSeparator=function(){this.SubMenu.AddSeparator();};FCKMenuItem.prototype.Create=function(A){var B=this.HasSubMenu;var C=FCKTools.GetElementDocument(A);var r=this.MainElement=A.insertRow(-1);r.className=this.IsDisabled?'MN_Item_Disabled':'MN_Item';if (!this.IsDisabled){FCKTools.AddEventListenerEx(r,'mouseover',FCKMenuItem_OnMouseOver,[this]);FCKTools.AddEventListenerEx(r,'click',FCKMenuItem_OnClick,[this]);if (!B) FCKTools.AddEventListenerEx(r,'mouseout',FCKMenuItem_OnMouseOut,[this]);};var D=r.insertCell(-1);D.className='MN_Icon';D.appendChild(this.Icon.CreateIconElement(C));D=r.insertCell(-1);D.className='MN_Label';D.noWrap=true;D.appendChild(C.createTextNode(this.Label));D=r.insertCell(-1);if (B){D.className='MN_Arrow';var E=D.appendChild(C.createElement('IMG'));E.src=FCK_IMAGES_PATH+'arrow_'+FCKLang.Dir+'.gif';E.width=4;E.height=7;this.SubMenu.Create();this.SubMenu.Panel.OnHide=FCKTools.CreateEventListener(FCKMenuItem_SubMenu_OnHide,this);}};FCKMenuItem.prototype.Activate=function(){this.MainElement.className='MN_Item_Over';if (this.HasSubMenu){this.SubMenu.Show(this.MainElement.offsetWidth+2,-2,this.MainElement);};FCKTools.RunFunction(this.OnActivate,this);};FCKMenuItem.prototype.Deactivate=function(){this.MainElement.className='MN_Item';if (this.HasSubMenu) this.SubMenu.Hide();};function FCKMenuItem_SubMenu_OnClick(A,B){FCKTools.RunFunction(B.OnClick,B,[A]);};function FCKMenuItem_SubMenu_OnHide(A){A.Deactivate();};function FCKMenuItem_OnClick(A,B){if (B.HasSubMenu) B.Activate();else{B.Deactivate();FCKTools.RunFunction(B.OnClick,B,[B]);}};function FCKMenuItem_OnMouseOver(A,B){B.Activate();};function FCKMenuItem_OnMouseOut(A,B){B.Deactivate();};function FCKMenuItem_Cleanup(){this.MainElement=null;};
-var FCKMenuBlock=function(){this._Items=[];};FCKMenuBlock.prototype.Count=function(){return this._Items.length;};FCKMenuBlock.prototype.AddItem=function(A,B,C,D,E){var F=new FCKMenuItem(this,A,B,C,D,E);F.OnClick=FCKTools.CreateEventListener(FCKMenuBlock_Item_OnClick,this);F.OnActivate=FCKTools.CreateEventListener(FCKMenuBlock_Item_OnActivate,this);this._Items.push(F);return F;};FCKMenuBlock.prototype.AddSeparator=function(){this._Items.push(new FCKMenuSeparator());};FCKMenuBlock.prototype.RemoveAllItems=function(){this._Items=[];var A=this._ItemsTable;if (A){while (A.rows.length>0) A.deleteRow(0);}};FCKMenuBlock.prototype.Create=function(A){if (!this._ItemsTable){if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKMenuBlock_Cleanup);this._Window=FCKTools.GetElementWindow(A);var B=FCKTools.GetElementDocument(A);var C=A.appendChild(B.createElement('table'));C.cellPadding=0;C.cellSpacing=0;FCKTools.DisableSelection(C);var D=C.insertRow(-1).insertCell(-1);D.className='MN_Menu';var E=this._ItemsTable=D.appendChild(B.createElement('table'));E.cellPadding=0;E.cellSpacing=0;};for (var i=0;i0&&F.href.length==0);if (G) return;menu.AddSeparator();menu.AddItem('VisitLink',FCKLang.VisitLink);menu.AddSeparator();if (E) menu.AddItem('Link',FCKLang.EditLink,34);menu.AddItem('Unlink',FCKLang.RemoveLink,35);}}};case 'Image':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&!tag.getAttribute('_fckfakelement')){menu.AddSeparator();menu.AddItem('Image',FCKLang.ImageProperties,37);}}};case 'Anchor':return {AddItems:function(menu,tag,tagName){var F=FCKSelection.MoveToAncestorNode('A');var G=(F&&F.name.length>0);if (G||(tagName=='IMG'&&tag.getAttribute('_fckanchor'))){menu.AddSeparator();menu.AddItem('Anchor',FCKLang.AnchorProp,36);menu.AddItem('AnchorDelete',FCKLang.AnchorDelete);}}};case 'Flash':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckflash')){menu.AddSeparator();menu.AddItem('Flash',FCKLang.FlashProperties,38);}}};case 'Form':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('FORM')){menu.AddSeparator();menu.AddItem('Form',FCKLang.FormProp,48);}}};case 'Checkbox':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='checkbox'){menu.AddSeparator();menu.AddItem('Checkbox',FCKLang.CheckboxProp,49);}}};case 'Radio':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='radio'){menu.AddSeparator();menu.AddItem('Radio',FCKLang.RadioButtonProp,50);}}};case 'TextField':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='text'||tag.type=='password')){menu.AddSeparator();menu.AddItem('TextField',FCKLang.TextFieldProp,51);}}};case 'HiddenField':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckinputhidden')){menu.AddSeparator();menu.AddItem('HiddenField',FCKLang.HiddenFieldProp,56);}}};case 'ImageButton':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='image'){menu.AddSeparator();menu.AddItem('ImageButton',FCKLang.ImageButtonProp,55);}}};case 'Button':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='button'||tag.type=='submit'||tag.type=='reset')){menu.AddSeparator();menu.AddItem('Button',FCKLang.ButtonProp,54);}}};case 'Select':return {AddItems:function(menu,tag,tagName){if (tagName=='SELECT'){menu.AddSeparator();menu.AddItem('Select',FCKLang.SelectionFieldProp,53);}}};case 'Textarea':return {AddItems:function(menu,tag,tagName){if (tagName=='TEXTAREA'){menu.AddSeparator();menu.AddItem('Textarea',FCKLang.TextareaProp,52);}}};case 'BulletedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('UL')){menu.AddSeparator();menu.AddItem('BulletedList',FCKLang.BulletedListProp,27);}}};case 'NumberedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('OL')){menu.AddSeparator();menu.AddItem('NumberedList',FCKLang.NumberedListProp,26);}}};case 'DivContainer':return {AddItems:function(menu,tag,tagName){var J=FCKDomTools.GetSelectedDivContainers();if (J.length>0){menu.AddSeparator();menu.AddItem('EditDiv',FCKLang.EditDiv,75);menu.AddItem('DeleteDiv',FCKLang.DeleteDiv,76);}}};};return null;};function FCK_ContextMenu_OnBeforeOpen(){FCK.Events.FireEvent('OnSelectionChange');var A,sTagName;if ((A=FCKSelection.GetSelectedElement())) sTagName=A.tagName;var B=FCK.ContextMenu._InnerContextMenu;B.RemoveAllItems();var C=FCK.ContextMenu.Listeners;for (var i=0;i0){D=A.substr(0,B.index);this._sourceHtml=A.substr(B.index);}else{C=true;D=B[0];this._sourceHtml=A.substr(B[0].length);}}else{D=A;this._sourceHtml=null;};return { 'isTag':C,'value':D };},Each:function(A){var B;while ((B=this.Next())) A(B.isTag,B.value);}};var FCKHtmlIterator=function(A){this._sourceHtml=A;};FCKHtmlIterator.prototype={Next:function(){var A=this._sourceHtml;if (A==null) return null;var B=FCKRegexLib.HtmlTag.exec(A);var C=false;var D="";if (B){if (B.index>0){D=A.substr(0,B.index);this._sourceHtml=A.substr(B.index);}else{C=true;D=B[0];this._sourceHtml=A.substr(B[0].length);}}else{D=A;this._sourceHtml=null;};return { 'isTag':C,'value':D };},Each:function(A){var B;while ((B=this.Next())) A(B.isTag,B.value);}};
-var FCKPlugin=function(A,B,C){this.Name=A;this.BasePath=C?C:FCKConfig.PluginsPath;this.Path=this.BasePath+A+'/';if (!B||B.length==0) this.AvailableLangs=[];else this.AvailableLangs=B.split(',');};FCKPlugin.prototype.Load=function(){if (this.AvailableLangs.length>0){var A;if (this.AvailableLangs.IndexOf(FCKLanguageManager.ActiveLanguage.Code)>=0) A=FCKLanguageManager.ActiveLanguage.Code;else A=this.AvailableLangs[0];LoadScript(this.Path+'lang/'+A+'.js');};LoadScript(this.Path+'fckplugin.js');};
-var FCKPlugins=FCK.Plugins={};FCKPlugins.ItemsCount=0;FCKPlugins.Items={};FCKPlugins.Load=function(){var A=FCKPlugins.Items;for (var i=0;i",DlgInfoTab:"Info",DlgAlertUrl:"Voeg asseblief die URL in",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Taal rigting",DlgGenLangDirLtr:"Links na regs (LTR)",DlgGenLangDirRtl:"Regs na links (RTL)",DlgGenLangCode:"Taal kode",DlgGenAccessKey:"Toegang sleutel",DlgGenName:"Naam",DlgGenTabIndex:"Tab Index",DlgGenLongDescr:"Lang beskreiwing URL",DlgGenClass:"Skakel Tiepe",DlgGenTitle:"Voorbeveelings Titel",DlgGenContType:"Voorbeveelings inhoud soort",DlgGenLinkCharset:"Geskakelde voorbeeld karakterstel",DlgGenStyle:"Styl",DlgImgTitle:"Beeld eienskappe",DlgImgInfoTab:"Beeld informasie",DlgImgBtnUpload:"Stuur dit na die Server",DlgImgURL:"URL",DlgImgUpload:"Uplaai",DlgImgAlt:"Alternatiewe beskrywing",DlgImgWidth:"Weidte",DlgImgHeight:"Hoogde",DlgImgLockRatio:"Behou preporsie",DlgBtnResetSize:"Herstel groote",DlgImgBorder:"Kant",DlgImgHSpace:"HSpasie",DlgImgVSpace:"VSpasie",DlgImgAlign:"Paradeer",DlgImgAlignLeft:"Links",DlgImgAlignAbsBottom:"Abs Onder",DlgImgAlignAbsMiddle:"Abs Middel",DlgImgAlignBaseline:"Baseline",DlgImgAlignBottom:"Onder",DlgImgAlignMiddle:"Middel",DlgImgAlignRight:"Regs",DlgImgAlignTextTop:"Text Bo",DlgImgAlignTop:"Bo",DlgImgPreview:"Voorskou",DlgImgAlertUrl:"Voeg asseblief Beeld URL in.",DlgImgLinkTab:"Skakel",DlgFlashTitle:"Flash eienskappe",DlgFlashChkPlay:"Automaties Speel",DlgFlashChkLoop:"Herhaling",DlgFlashChkMenu:"Laat Flash Menu toe",DlgFlashScale:"Scale",DlgFlashScaleAll:"Wys alles",DlgFlashScaleNoBorder:"Geen kante",DlgFlashScaleFit:"Presiese pas",DlgLnkWindowTitle:"Skakel",DlgLnkInfoTab:"Skakel informasie",DlgLnkTargetTab:"Mikpunt",DlgLnkType:"Skakel soort",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Skakel na plekhouers in text",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protokol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Kies 'n plekhouer",DlgLnkAnchorByName:"Volgens plekhouer naam",DlgLnkAnchorById:"Volgens element Id",DlgLnkNoAnchors:"(Geen plekhouers beskikbaar in dokument}",DlgLnkEMail:"E-Mail Adres",DlgLnkEMailSubject:"Boodskap Opskrif",DlgLnkEMailBody:"Boodskap Inhoud",DlgLnkUpload:"Oplaai",DlgLnkBtnUpload:"Stuur na Server",DlgLnkTarget:"Mikpunt",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nuwe Venster (_blank)",DlgLnkTargetParent:"Vorige Venster (_parent)",DlgLnkTargetSelf:"Selfde Venster (_self)",DlgLnkTargetTop:"Boonste Venster (_top)",DlgLnkTargetFrameName:"Mikpunt Venster Naam",DlgLnkPopWinName:"Popup Venster Naam",DlgLnkPopWinFeat:"Popup Venster Geaartheid",DlgLnkPopResize:"Verstelbare Groote",DlgLnkPopLocation:"Adres Balk",DlgLnkPopMenu:"Menu Balk",DlgLnkPopScroll:"Gleibalkstuk",DlgLnkPopStatus:"Status Balk",DlgLnkPopToolbar:"Gereedskap Balk",DlgLnkPopFullScrn:"Voll Skerm (IE)",DlgLnkPopDependent:"Afhanklik (Netscape)",DlgLnkPopWidth:"Weite",DlgLnkPopHeight:"Hoogde",DlgLnkPopLeft:"Links Posisie",DlgLnkPopTop:"Bo Posisie",DlnLnkMsgNoUrl:"Voeg asseblief die URL in",DlnLnkMsgNoEMail:"Voeg asseblief die e-mail adres in",DlnLnkMsgNoAnchor:"Kies asseblief 'n plekhouer",DlnLnkMsgInvPopName:"Die popup naam moet begin met alphabetiese karakters sonder spasies.",DlgColorTitle:"Kies Kleur",DlgColorBtnClear:"Maak skoon",DlgColorHighlight:"Highlight",DlgColorSelected:"Geselekteer",DlgSmileyTitle:"Voeg Smiley by",DlgSpecialCharTitle:"Kies spesiale karakter",DlgTableTitle:"Tabel eienskappe",DlgTableRows:"Reie",DlgTableColumns:"Kolome",DlgTableBorder:"Kant groote",DlgTableAlign:"Parideering",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Links",DlgTableAlignCenter:"Middel",DlgTableAlignRight:"Regs",DlgTableWidth:"Weite",DlgTableWidthPx:"pixels",DlgTableWidthPc:"percent",DlgTableHeight:"Hoogde",DlgTableCellSpace:"Cell spasieering",DlgTableCellPad:"Cell buffer",DlgTableCaption:"Beskreiwing",DlgTableSummary:"Opsomming",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Cell eienskappe",DlgCellWidth:"Weite",DlgCellWidthPx:"pixels",DlgCellWidthPc:"percent",DlgCellHeight:"Hoogde",DlgCellWordWrap:"Woord Wrap",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Ja",DlgCellWordWrapNo:"Nee",DlgCellHorAlign:"Horisontale rigting",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Links",DlgCellHorAlignCenter:"Middel",DlgCellHorAlignRight:"Regs",DlgCellVerAlign:"Vertikale rigting",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Bo",DlgCellVerAlignMiddle:"Middel",DlgCellVerAlignBottom:"Onder",DlgCellVerAlignBaseline:"Baseline",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Rei strekking",DlgCellCollSpan:"Kolom strekking",DlgCellBackColor:"Agtergrond Kleur",DlgCellBorderColor:"Kant Kleur",DlgCellBtnSelect:"Keuse...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Vind",DlgFindFindBtn:"Vind",DlgFindNotFoundMsg:"Die gespesifiseerde karakters word nie gevind nie.",DlgReplaceTitle:"Vervang",DlgReplaceFindLbl:"Soek wat:",DlgReplaceReplaceLbl:"Vervang met:",DlgReplaceCaseChk:"Vergelyk karakter skryfweise",DlgReplaceReplaceBtn:"Vervang",DlgReplaceReplAllBtn:"Vervang alles",DlgReplaceWordChk:"Vergelyk komplete woord",PasteErrorCut:"U browser se sekuriteit instelling behinder die uitsny aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+X).",PasteErrorCopy:"U browser se sekuriteit instelling behinder die kopieerings aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+C).",PasteAsText:"Voeg slegs karakters by",PasteFromWord:"Byvoeging uit Word",DlgPasteMsg2:"Voeg asseblief die inhoud in die gegewe box by met sleutel kombenasie(Ctrl+V) en druk OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignoreer karakter soort defenisies",DlgPasteRemoveStyles:"Verweider Styl defenisies",ColorAutomatic:"Automaties",ColorMoreColors:"Meer Kleure...",DocProps:"Dokument Eienskappe",DlgAnchorTitle:"Plekhouer Eienskappe",DlgAnchorName:"Plekhouer Naam",DlgAnchorErrorName:"Voltooi die plekhouer naam asseblief",DlgSpellNotInDic:"Nie in woordeboek nie",DlgSpellChangeTo:"Verander na",DlgSpellBtnIgnore:"Ignoreer",DlgSpellBtnIgnoreAll:"Ignoreer na-volgende",DlgSpellBtnReplace:"Vervang",DlgSpellBtnReplaceAll:"vervang na-volgende",DlgSpellBtnUndo:"Ont-skep",DlgSpellNoSuggestions:"- Geen voorstel -",DlgSpellProgress:"Spelling word beproef...",DlgSpellNoMispell:"Spellproef kompleet: Geen foute",DlgSpellNoChanges:"Spellproef kompleet: Geen woord veranderings",DlgSpellOneChange:"Spellproef kompleet: Een woord verander",DlgSpellManyChanges:"Spellproef kompleet: %1 woorde verander",IeSpellDownload:"Geen Spellproefer geinstaleer nie. Wil U dit aflaai?",DlgButtonText:"Karakters (Waarde)",DlgButtonType:"Soort",DlgButtonTypeBtn:"Knop",DlgButtonTypeSbm:"Indien",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Naam",DlgCheckboxValue:"Waarde",DlgCheckboxSelected:"Uitgekies",DlgFormName:"Naam",DlgFormAction:"Aksie",DlgFormMethod:"Metode",DlgSelectName:"Naam",DlgSelectValue:"Waarde",DlgSelectSize:"Grote",DlgSelectLines:"lyne",DlgSelectChkMulti:"Laat meerere keuses toe",DlgSelectOpAvail:"Beskikbare Opsies",DlgSelectOpText:"Karakters",DlgSelectOpValue:"Waarde",DlgSelectBtnAdd:"Byvoeg",DlgSelectBtnModify:"Verander",DlgSelectBtnUp:"Op",DlgSelectBtnDown:"Af",DlgSelectBtnSetValue:"Stel as uitgekiesde waarde",DlgSelectBtnDelete:"Verweider",DlgTextareaName:"Naam",DlgTextareaCols:"Kolom",DlgTextareaRows:"Reie",DlgTextName:"Naam",DlgTextValue:"Waarde",DlgTextCharWidth:"Karakter weite",DlgTextMaxChars:"Maximale karakters",DlgTextType:"Soort",DlgTextTypeText:"Karakters",DlgTextTypePass:"Wagwoord",DlgHiddenName:"Naam",DlgHiddenValue:"Waarde",BulletedListProp:"Gepunkte lys eienskappe",NumberedListProp:"Genommerde lys eienskappe",DlgLstStart:"Begin",DlgLstType:"Soort",DlgLstTypeCircle:"Sirkel",DlgLstTypeDisc:"Skyf",DlgLstTypeSquare:"Vierkant",DlgLstTypeNumbers:"Nommer (1, 2, 3)",DlgLstTypeLCase:"Klein Letters (a, b, c)",DlgLstTypeUCase:"Hoof Letters (A, B, C)",DlgLstTypeSRoman:"Klein Romeinse nommers (i, ii, iii)",DlgLstTypeLRoman:"Groot Romeinse nommers (I, II, III)",DlgDocGeneralTab:"Algemeen",DlgDocBackTab:"Agtergrond",DlgDocColorsTab:"Kleure en Rante",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Bladsy Opskrif",DlgDocLangDir:"Taal rigting",DlgDocLangDirLTR:"Link na Regs (LTR)",DlgDocLangDirRTL:"Regs na Links (RTL)",DlgDocLangCode:"Taal Kode",DlgDocCharSet:"Karakterstel Kodeering",DlgDocCharSetCE:"Sentraal Europa",DlgDocCharSetCT:"Chinees Traditioneel (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Grieks",DlgDocCharSetJP:"Japanees",DlgDocCharSetKR:"Koreans",DlgDocCharSetTR:"Turks",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Ander Karakterstel Kodeering",DlgDocDocType:"Dokument Opskrif Soort",DlgDocDocTypeOther:"Ander Dokument Opskrif Soort",DlgDocIncXHTML:"Voeg XHTML verklaring by",DlgDocBgColor:"Agtergrond kleur",DlgDocBgImage:"Agtergrond Beeld URL",DlgDocBgNoScroll:"Vasgeklemde Agtergrond",DlgDocCText:"Karakters",DlgDocCLink:"Skakel",DlgDocCVisited:"Besoekte Skakel",DlgDocCActive:"Aktiewe Skakel",DlgDocMargins:"Bladsy Rante",DlgDocMaTop:"Bo",DlgDocMaLeft:"Links",DlgDocMaRight:"Regs",DlgDocMaBottom:"Onder",DlgDocMeIndex:"Dokument Index Sleutelwoorde(comma verdeelt)",DlgDocMeDescr:"Dokument Beskrywing",DlgDocMeAuthor:"Skrywer",DlgDocMeCopy:"Kopiereg",DlgDocPreview:"Voorskou",Templates:"Templates",DlgTemplatesTitle:"Inhoud Templates",DlgTemplatesSelMsg:"Kies die template om te gebruik in die editor (Inhoud word vervang!):",DlgTemplatesLoading:"Templates word gelaai. U geduld asseblief...",DlgTemplatesNoTpl:"(Geen templates gedefinieerd)",DlgTemplatesReplace:"Vervang bestaande inhoud",DlgAboutAboutTab:"Meer oor",DlgAboutBrowserInfoTab:"Blaai Informasie deur",DlgAboutLicenseTab:"Lesensie",DlgAboutVersion:"weergawe",DlgAboutInfo:"Vir meer informasie gaan na ",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/ar.js b/horde/services/editor/fckeditor/editor/lang/ar.js
deleted file mode 100644
index 8f3784edb..000000000
--- a/horde/services/editor/fckeditor/editor/lang/ar.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"rtl",ToolbarCollapse:"???? ???????? ??????????????",ToolbarExpand:"???????? ???????? ??????????????",Save:"??????",NewPage:"???????? ??????????",Preview:"???????????? ????????????",Cut:"????",Copy:"??????",Paste:"??????",PasteText:"?????? ?????? ????????",PasteWord:"?????? ???? ????????",Print:"??????????",SelectAll:"?????????? ????????",RemoveFormat:"?????????? ??????????????????",InsertLinkLbl:"????????",InsertLink:"??????????/?????????? ????????",RemoveLink:"?????????? ????????",VisitLink:"???????? ????????????",Anchor:"??????????/?????????? ?????????? ????????????",AnchorDelete:"?????????? ?????????? ????????????",InsertImageLbl:"????????",InsertImage:"??????????/?????????? ????????",InsertFlashLbl:"????????",InsertFlash:"??????????/?????????? ???????? ????????",InsertTableLbl:"????????",InsertTable:"??????????/?????????? ????????",InsertLineLbl:"???? ????????",InsertLine:"?????????? ???? ????????",InsertSpecialCharLbl:"????????",InsertSpecialChar:"?????????? ????????..??",InsertSmileyLbl:"????????????????",InsertSmiley:"?????????? ????????????????",About:"?????? FCKeditor",Bold:"????????",Italic:"????????",Underline:"??????????",StrikeThrough:"???????????? ????",Subscript:"??????????",Superscript:"??????????",LeftJustify:"???????????? ?????? ????????????",CenterJustify:"??????????",RightJustify:"???????????? ?????? ????????????",BlockJustify:"??????",DecreaseIndent:"?????????? ?????????????? ??????????????",IncreaseIndent:"?????????? ?????????????? ??????????????",Blockquote:"????????????",CreateDiv:"?????????? ?????????? Div",EditDiv:"?????????? ?????????? Div",DeleteDiv:"?????????? ?????????? Div",Undo:"??????????",Redo:"??????????",NumberedListLbl:"?????????? ????????",NumberedList:"??????????/?????????? ?????????? ????????",BulletedListLbl:"?????????? ????????",BulletedList:"??????????/?????????? ?????????? ????????",ShowTableBorders:"???????????? ???????? ??????????????",ShowDetails:"???????????? ????????????????",Style:"??????",FontFormat:"??????????",Font:"????",FontSize:"?????? ????????",TextColor:"?????? ????????",BGColor:"?????? ??????????????",Source:"???????? ????????????",Find:"??????",Replace:"??????????????",SpellCheck:"?????????? ????????????",UniversalKeyboard:"???????? ???????????????? ????????????????",PageBreakLbl:"?????? ????????????",PageBreak:"?????????? ???????? ??????????",Form:"??????????",Checkbox:"???????? ????????????",RadioButton:"???? ????????",TextField:"???????? ????",Textarea:"?????????? ????",HiddenField:"?????????? ?????? ??????",Button:"???? ??????",SelectionField:"?????????? ????????????",ImageButton:"???? ????????",FitWindow:"?????????? ?????? ????????????",ShowBlocks:"???????? ????????????",EditLink:"?????????? ????????",CellCM:"????????",RowCM:"????",ColumnCM:"????????",InsertRowAfter:"?????????? ???? ??????",InsertRowBefore:"?????????? ???? ??????",DeleteRows:"?????? ????????",InsertColumnAfter:"?????????? ???????? ??????",InsertColumnBefore:"?????????? ???????? ??????",DeleteColumns:"?????? ??????????",InsertCellAfter:"?????????? ???????? ??????",InsertCellBefore:"?????????? ???????? ??????",DeleteCells:"?????? ??????????",MergeCells:"?????? ??????????",MergeRight:"?????? ????????????",MergeDown:"?????? ????????????",HorizontalSplitCell:"?????????? ???????????? ????????????",VerticalSplitCell:"?????????? ???????????? ??????????????",TableDelete:"?????? ????????????",CellProperties:"?????????? ????????????",TableProperties:"?????????? ????????????",ImageProperties:"?????????? ????????????",FlashProperties:"?????????? ???????? ????????????",AnchorProp:"?????????? ?????????????? ????????????????",ButtonProp:"?????????? ???? ??????????",CheckboxProp:"?????????? ???????? ????????????????",HiddenFieldProp:"?????????? ?????????? ??????????",RadioButtonProp:"?????????? ???? ????????????",ImageButtonProp:"?????????? ???? ????????????",TextFieldProp:"?????????? ???????? ????????",SelectionFieldProp:"?????????? ?????????????? ????????????????",TextareaProp:"?????????? ?????????? ????????",FormProp:"?????????? ??????????????",FontFormats:"????????;??????????;??????;?????????????? 1;?????????????? 2;?????????????? 3;?????????????? 4;?????????????? 5;?????????????? 6",ProcessingXHTML:"?????????? ???????????? ?????????? ?????? ????????????????? XHTML. ???? ???????????? ????????????...",Done:"????",PasteWordConfirm:"???????? ???? ???????? ???????????? ???????? ?????????? ???? ???????????? ????????. ???? ?????? ???????????? ?????? ???????????? ???? ?????????? ????????????",NotCompatiblePaste:"?????? ???????????? ?????????? ???????????? ???? ??????????Internet Explorer ?????????? 5.5 ?????? ??????. ???? ?????? ?????????? ?????? ?????????? ????????????",UnknownToolbarItem:'???????? ???????? ?????????? ?????? ?????????? "%1"',UnknownCommand:'?????? ?????? ?????????? "%1"',NotImplemented:"???? ?????? ?????? ?????? ??????????",UnknownToolbarSet:'???? ?????????? ???? ???????????? ?????? ?????? ?????????????? "%1" ',NoActiveX:'???????????? ???????????? ?????? ???? ???????? ?????? ???????????? ????????????. ?????????? ???????? ?????????? ???????????? "Run ActiveX controls and plug-ins". ???? ?????????? ?????????? ???????????? ???????????? ????????????',BrowseServerBlocked:"???????????? ?????? ???????? ??????????????. ???????? ?????? ???????????? ?????? ???????? ?????????? ?????????????? ???????????????? ??????????",DialogBlocked:"???????????? ?????? ?????????? ???????????? . ???????? ???????? ???? ???? ???????? ?????????????? ?????????????? ???????? .",VisitLinkBlocked:"???? ???????? ?????? ?????????? ??????????. ???????? ???? ?????????? ???? ?????????? ?????? ?????????????? ???? ??????????.",DlgBtnOK:"??????????",DlgBtnCancel:"?????????? ??????????",DlgBtnClose:"??????????",DlgBtnBrowseServer:"???????? ????????????",DlgAdvancedTag:"??????????",DlgOpOther:"???????>",DlgInfoTab:"??????????????",DlgAlertUrl:"???????????? ?????????? ?????????? ????????????????",DlgGenNotSet:"??????? ??????????>",DlgGenId:"??????????",DlgGenLangDir:"?????????? ????????",DlgGenLangDirLtr:"???????????? ???????????? (LTR)",DlgGenLangDirRtl:"???????????? ???????????? (RTL)",DlgGenLangCode:"?????? ??????????",DlgGenAccessKey:"???????????? ????????????????",DlgGenName:"??????????",DlgGenTabIndex:"??????????????",DlgGenLongDescr:"?????????? ?????????? ??????????????",DlgGenClass:"???????? ??????????????",DlgGenTitle:"?????????? ????????????",DlgGenContType:"?????? ??????????????",DlgGenLinkCharset:"?????????? ???????????? ????????????????",DlgGenStyle:"??????",DlgImgTitle:"?????????? ????????????",DlgImgInfoTab:"?????????????? ????????????",DlgImgBtnUpload:"???????????? ????????????",DlgImgURL:"???????? ????????????",DlgImgUpload:"??????",DlgImgAlt:"??????????",DlgImgWidth:"??????????",DlgImgHeight:"????????????????",DlgImgLockRatio:"?????????? ??????????",DlgBtnResetSize:"?????????????? ?????????? ????????????",DlgImgBorder:"?????? ????????????",DlgImgHSpace:"?????????? ????????",DlgImgVSpace:"?????????? ??????????",DlgImgAlign:"????????????",DlgImgAlignLeft:"????????",DlgImgAlignAbsBottom:"???????? ????????",DlgImgAlignAbsMiddle:"?????? ??????????",DlgImgAlignBaseline:"?????? ??????????",DlgImgAlignBottom:"????????",DlgImgAlignMiddle:"??????",DlgImgAlignRight:"????????",DlgImgAlignTextTop:"???????? ????????",DlgImgAlignTop:"????????",DlgImgPreview:"????????????",DlgImgAlertUrl:"?????????? ???????? ???????????? ???????? ???????? ???????? ?????? ????????????.",DlgImgLinkTab:"????????????",DlgFlashTitle:"?????????? ???????? ????????????",DlgFlashChkPlay:"?????????? ????????????",DlgFlashChkLoop:"??????????",DlgFlashChkMenu:"?????????? ?????????? ???????? ????????????",DlgFlashScale:"??????????",DlgFlashScaleAll:"?????????? ????????",DlgFlashScaleNoBorder:"?????? ????????",DlgFlashScaleFit:"?????? ??????",DlgLnkWindowTitle:"???????????? ??????????",DlgLnkInfoTab:"?????????????? ????????????",DlgLnkTargetTab:"??????????",DlgLnkType:"?????? ??????????",DlgLnkTypeURL:"??????????????",DlgLnkTypeAnchor:"???????? ???? ?????? ??????????????",DlgLnkTypeEMail:"???????? ????????????????",DlgLnkProto:"????????????????????",DlgLnkProtoOther:"???????>",DlgLnkURL:"????????????",DlgLnkAnchorSel:"???????? ?????????? ????????????",DlgLnkAnchorByName:"?????? ?????? ??????????????",DlgLnkAnchorById:"?????? ?????????? ????????????",DlgLnkNoAnchors:"(???? ???????? ???????????? ???????????? ???? ?????? ??????????????)",DlgLnkEMail:"?????????? ???????? ????????????????",DlgLnkEMailSubject:"?????????? ??????????????",DlgLnkEMailBody:"?????????? ??????????????",DlgLnkUpload:"??????",DlgLnkBtnUpload:"???????????? ????????????",DlgLnkTarget:"??????????",DlgLnkTargetFrame:"???????>",DlgLnkTargetPopup:"????????? ????????????>",DlgLnkTargetBlank:"???????? ???????? (_blank)",DlgLnkTargetParent:"???????????? ?????????? (_parent)",DlgLnkTargetSelf:"?????? ???????????? (_self)",DlgLnkTargetTop:"???????? ?????????? (_top)",DlgLnkTargetFrameName:"?????? ???????????? ??????????",DlgLnkPopWinName:"?????????? ?????????????? ????????????????",DlgLnkPopWinFeat:"?????????? ?????????????? ????????????????",DlgLnkPopResize:"?????????? ??????????????",DlgLnkPopLocation:"???????? ??????????????",DlgLnkPopMenu:"?????????????? ????????????????",DlgLnkPopScroll:"?????????? ??????????????",DlgLnkPopStatus:"???????? ???????????? ????????????",DlgLnkPopToolbar:"???????? ??????????????",DlgLnkPopFullScrn:"?????? ???????????? (IE)",DlgLnkPopDependent:"???????? (Netscape)",DlgLnkPopWidth:"??????????",DlgLnkPopHeight:"????????????????",DlgLnkPopLeft:"?????????????? ????????????",DlgLnkPopTop:"?????????????? ????????????",DlnLnkMsgNoUrl:"?????????? ???????? ?????????? ???????????? ???????? ???????? ???????? ????????????",DlnLnkMsgNoEMail:"?????????? ???????? ?????????? ???????????? ????????????????????",DlnLnkMsgNoAnchor:"?????????? ?????? ?????????????? ???????????????? ????????????????",DlnLnkMsgInvPopName:"?????? ?????????????? ???????????????? ?????? ???? ???????? ???????? ?????????? ?????? ????????????",DlgColorTitle:"???????? ??????????",DlgColorBtnClear:"??????",DlgColorHighlight:"??????????",DlgColorSelected:"????????????",DlgSmileyTitle:"?????????? ???????????????? ",DlgSpecialCharTitle:"?????????? ??????",DlgTableTitle:"?????????? ????????",DlgTableRows:"????????",DlgTableColumns:"??????????",DlgTableBorder:"?????? ????????????",DlgTableAlign:"????????????????",DlgTableAlignNotSet:"??????? ??????????>",DlgTableAlignLeft:"????????",DlgTableAlignCenter:"??????",DlgTableAlignRight:"????????",DlgTableWidth:"??????????",DlgTableWidthPx:"????????",DlgTableWidthPc:"????????????",DlgTableHeight:"????????????????",DlgTableCellSpace:"?????????? ??????????????",DlgTableCellPad:"?????????????? ??????????????",DlgTableCaption:"??????????",DlgTableSummary:"??????????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"?????????? ????????????",DlgCellWidth:"??????????",DlgCellWidthPx:"????????",DlgCellWidthPc:"????????????",DlgCellHeight:"????????????????",DlgCellWordWrap:"???????????? ????????",DlgCellWordWrapNotSet:"??????? ??????????>",DlgCellWordWrapYes:"??????",DlgCellWordWrapNo:"????",DlgCellHorAlign:"???????????????? ??????????????",DlgCellHorAlignNotSet:"??????? ??????????>",DlgCellHorAlignLeft:"????????",DlgCellHorAlignCenter:"??????",DlgCellHorAlignRight:"????????",DlgCellVerAlign:"???????????????? ????????????????",DlgCellVerAlignNotSet:"??????? ??????????>",DlgCellVerAlignTop:"????????",DlgCellVerAlignMiddle:"??????",DlgCellVerAlignBottom:"????????",DlgCellVerAlignBaseline:"?????? ??????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"???????????? ????????????",DlgCellCollSpan:"???????????? ??????????????",DlgCellBackColor:"?????? ??????????????",DlgCellBorderColor:"?????? ????????????",DlgCellBtnSelect:"????????...",DlgFindAndReplaceTitle:"?????? ????????????????",DlgFindTitle:"??????",DlgFindFindBtn:"????????",DlgFindNotFoundMsg:"???? ?????? ???????????? ?????? ???????? ????????????.",DlgReplaceTitle:"??????????????",DlgReplaceFindLbl:"?????????? ????:",DlgReplaceReplaceLbl:"?????????????? ????:",DlgReplaceCaseChk:"???????????? ???????? ????????????",DlgReplaceReplaceBtn:"??????????????",DlgReplaceReplAllBtn:"?????????????? ????????",DlgReplaceWordChk:"???????????? ?????????????? ??????",PasteErrorCut:"?????????????????? ?????????????? ?????????????? ???????? ?????????????? ???????? ???????? ????????????????. ?????????? ???????????? ???????? ???????????????? ???????? ?????? (Ctrl+X).",PasteErrorCopy:"?????????????????? ?????????????? ?????????????? ???????? ?????????????? ???????? ?????????? ????????????????. ?????????? ???????????? ???????? ???????????????? ???????? ?????? (Ctrl+C).",PasteAsText:"?????? ?????? ????????",PasteFromWord:"?????? ???? ????????",DlgPasteMsg2:"???????? ???????? ?????????????? ???????????????? ???????? (Ctrl+V) ???? ???????? ?????????????????? ???? ???????? ???? ??????????.",DlgPasteSec:"?????????? ???????????????? ???????????? ???????????? ???????????????? ???? ?????????? ?????? ???????????? ???? ???????????? ???????????? ?????????????? ?????? ?????? ???????? ?????? ?????????????? ?????? ???????? ???? ?????? ??????????????.",DlgPasteIgnoreFont:"?????????? ?????????????? ?????????? ????????????",DlgPasteRemoveStyles:"?????????? ?????????????? ??????????????",ColorAutomatic:"????????????",ColorMoreColors:"?????????? ????????????...",DocProps:"?????????? ????????????",DlgAnchorTitle:"?????????? ?????????? ????????????",DlgAnchorName:"?????? ?????????????? ????????????????",DlgAnchorErrorName:"???????????? ?????????? ?????? ?????????????? ????????????????",DlgSpellNotInDic:"???????? ???? ??????????????",DlgSpellChangeTo:"?????????????? ??????",DlgSpellBtnIgnore:"??????????",DlgSpellBtnIgnoreAll:"?????????? ????????",DlgSpellBtnReplace:"??????????",DlgSpellBtnReplaceAll:"?????????? ????????",DlgSpellBtnUndo:"??????????",DlgSpellNoSuggestions:"- ???? ???????? ???????????????? -",DlgSpellProgress:"???????? ?????????????? ????????????????",DlgSpellNoMispell:"???? ?????????? ?????????????? ????????????????: ???? ?????? ???????????? ?????? ???? ?????????? ??????????????",DlgSpellNoChanges:"???? ?????????? ?????????????? ????????????????: ???? ?????? ?????????? ???? ????????",DlgSpellOneChange:"???? ?????????? ?????????????? ????????????????: ???? ?????????? ???????? ?????????? ??????",DlgSpellManyChanges:"???? ?????????? ?????????????? ????????????????: ???? ?????????? %1 ??????????????????",IeSpellDownload:"???????????? ???????????????? (??????????????????) ?????? ??????????. ???? ?????? ???????????? ??????????",DlgButtonText:"????????????/??????????????",DlgButtonType:"?????? ????????",DlgButtonTypeBtn:"????",DlgButtonTypeSbm:"??????????",DlgButtonTypeRst:"?????????? ??????????",DlgCheckboxName:"??????????",DlgCheckboxValue:"????????????",DlgCheckboxSelected:"????????",DlgFormName:"??????????",DlgFormAction:"?????? ??????????",DlgFormMethod:"??????????????",DlgSelectName:"??????????",DlgSelectValue:"????????????",DlgSelectSize:"??????????",DlgSelectLines:"????????????",DlgSelectChkMulti:"???????????? ???????????????? ????????????",DlgSelectOpAvail:"???????????????? ??????????????",DlgSelectOpText:"????????",DlgSelectOpValue:"????????????",DlgSelectBtnAdd:"??????????",DlgSelectBtnModify:"??????????",DlgSelectBtnUp:"?????????? ??????????",DlgSelectBtnDown:"?????????? ??????????",DlgSelectBtnSetValue:"???????????? ??????????",DlgSelectBtnDelete:"??????????",DlgTextareaName:"??????????",DlgTextareaCols:"??????????????",DlgTextareaRows:"????????????",DlgTextName:"??????????",DlgTextValue:"????????????",DlgTextCharWidth:"?????????? ??????????????",DlgTextMaxChars:"?????? ???????????? ????????????",DlgTextType:"?????? ??????????????",DlgTextTypeText:"????",DlgTextTypePass:"???????? ????????",DlgHiddenName:"??????????",DlgHiddenValue:"????????????",BulletedListProp:"?????????? ?????????????? ????????????",NumberedListProp:"?????????? ?????????????? ????????????",DlgLstStart:"?????????? ??????",DlgLstType:"??????????",DlgLstTypeCircle:"??????????",DlgLstTypeDisc:"??????",DlgLstTypeSquare:"????????",DlgLstTypeNumbers:"?????????? (1?? 2?? 3)??",DlgLstTypeLCase:"???????? ?????????? (a, b, c)??",DlgLstTypeUCase:"???????? ?????????? (A, B, C)??",DlgLstTypeSRoman:"?????????? ???????????? ???????? (i, ii, iii)??",DlgLstTypeLRoman:"?????????? ???????????? ???????? (I, II, III)??",DlgDocGeneralTab:"??????",DlgDocBackTab:"??????????????",DlgDocColorsTab:"?????????????? ????????????????",DlgDocMetaTab:"?????????????????? ??????????????",DlgDocPageTitle:"?????????? ????????????",DlgDocLangDir:"?????????? ??????????",DlgDocLangDirLTR:"???????????? ???????????? (LTR)",DlgDocLangDirRTL:"???????????? ???????????? (RTL)",DlgDocLangCode:"?????? ??????????",DlgDocCharSet:"?????????? ????????????",DlgDocCharSetCE:"???????????? ????????????",DlgDocCharSetCT:"?????????????? ?????????????????? (Big5)",DlgDocCharSetCR:"??????????????????",DlgDocCharSetGR:"??????????????????",DlgDocCharSetJP:"??????????????????",DlgDocCharSetKR:"??????????????",DlgDocCharSetTR:"??????????????",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"???????????? ??????????????",DlgDocCharSetOther:"?????????? ??????",DlgDocDocType:"???????????? ?????? ????????????",DlgDocDocTypeOther:"???????????? ?????? ???????? ????????",DlgDocIncXHTML:"?????????? ????????????????? ?????? XHTML??",DlgDocBgColor:"?????? ??????????????",DlgDocBgImage:"???????? ???????????? ??????????????",DlgDocBgNoScroll:"?????????? ?????????? ??????????",DlgDocCText:"????????",DlgDocCLink:"??????????????",DlgDocCVisited:"??????????????",DlgDocCActive:"????????????",DlgDocMargins:"?????????? ????????????",DlgDocMaTop:"????????",DlgDocMaLeft:"????????",DlgDocMaRight:"????????",DlgDocMaBottom:"????????",DlgDocMeIndex:"?????????????? ???????????????? (???????????? ????????????)??",DlgDocMeDescr:"?????? ????????????",DlgDocMeAuthor:"????????????",DlgDocMeCopy:"????????????",DlgDocPreview:"????????????",Templates:"??????????????",DlgTemplatesTitle:"?????????? ??????????????",DlgTemplatesSelMsg:"???????? ???????????? ???????? ?????? ???????? ???? ???????????? (???????? ?????????? ?????????????? ????????????):",DlgTemplatesLoading:"???????? ?????????? ?????????? ???????????????? ???????????? ????????????????...",DlgTemplatesNoTpl:"(???? ?????? ?????????? ???? ????????)",DlgTemplatesReplace:"?????????????? ??????????????",DlgAboutAboutTab:"????????",DlgAboutBrowserInfoTab:"?????????????? ????????????",DlgAboutLicenseTab:"??????????????",DlgAboutVersion:"??????????????",DlgAboutInfo:"?????????? ???? ?????????????????? ???????? ????????????",DlgDivGeneralTab:"??????",DlgDivAdvancedTab:"??????????",DlgDivStyle:"????????????",DlgDivInlineStyle:"???????????? ????????????"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/bg.js b/horde/services/editor/fckeditor/editor/lang/bg.js
deleted file mode 100644
index 97f822bd7..000000000
--- a/horde/services/editor/fckeditor/editor/lang/bg.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"?????????? ???????????? ?? ??????????????????????????",ToolbarExpand:"???????????? ???????????? ?? ??????????????????????????",Save:"????????????",NewPage:"???????? ????????????????",Preview:"?????????????????????????? ????????????",Cut:"????????????",Copy:"????????????????",Paste:"????????????",PasteText:"???????????? ???????? ??????????",PasteWord:"???????????? ???? MS Word",Print:"??????????",SelectAll:"???????????????????? ????????????",RemoveFormat:"???????????? ??????????????????????????",InsertLinkLbl:"????????????",InsertLink:"????????????/???????????????????? ????????????",RemoveLink:"???????????? ????????????",VisitLink:"Open Link",Anchor:"????????????/???????????????????? ??????????",AnchorDelete:"Remove Anchor",InsertImageLbl:"??????????????????????",InsertImage:"????????????/???????????????????? ??????????????????????",InsertFlashLbl:"Flash",InsertFlash:"????????????/?????????????????? Flash ??????????",InsertTableLbl:"??????????????",InsertTable:"????????????/???????????????????? ??????????????",InsertLineLbl:"??????????",InsertLine:"???????????? ???????????????????????? ??????????",InsertSpecialCharLbl:"?????????????????? ????????????",InsertSpecialChar:"???????????? ?????????????????? ????????????",InsertSmileyLbl:"??????????????",InsertSmiley:"???????????? ??????????????",About:"???? FCKeditor",Bold:"????????????????",Italic:"????????????",Underline:"??????????????????",StrikeThrough:"????????????????",Subscript:"???????????? ???? ????????",Superscript:"???????????? ???? ????????????",LeftJustify:"???????????????????????? ?? ????????",CenterJustify:"?????????????????????? ?? ??????????????",RightJustify:"???????????????????????? ?? ??????????",BlockJustify:"???????????????????? ????????????????????????",DecreaseIndent:"???????????? ??????????????",IncreaseIndent:"?????????????? ??????????????",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"????????????",Redo:"??????????????",NumberedListLbl:"?????????????????? ????????????",NumberedList:"????????????/???????????? ?????????????????? ????????????",BulletedListLbl:"?????????????????????? ????????????",BulletedList:"????????????/???????????? ?????????????????????? ????????????",ShowTableBorders:"???????????? ?????????????? ???? ??????????????????",ShowDetails:"???????????? ??????????????????????",Style:"????????",FontFormat:"????????????",Font:"??????????",FontSize:"????????????",TextColor:"???????? ???? ????????????",BGColor:"???????? ???? ????????",Source:"??????",Find:"??????????",Replace:"??????????????",SpellCheck:"?????????????? ??????????????????",UniversalKeyboard:"?????????????????????? ????????????????????",PageBreakLbl:"?????? ??????",PageBreak:"???????????? ?????? ??????",Form:"????????????????",Checkbox:"???????? ???? ??????????????",RadioButton:"???????? ???? ??????????",TextField:"???????????????? ????????",Textarea:"???????????????? ????????????",HiddenField:"???????????? ????????",Button:"??????????",SelectionField:"???????????? ???????? ?? ??????????",ImageButton:"??????????-??????????????????????",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"???????????????????? ????????????",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"???????????? ????????????????",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"???????????? ????????????????",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"???????????? ????????????????",MergeCells:"?????????????? ????????????????",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"???????????? ??????????????????",CellProperties:"?????????????????? ???? ????????????????",TableProperties:"?????????????????? ???? ??????????????????",ImageProperties:"?????????????????? ???? ??????????????????????????",FlashProperties:"?????????????????? ???? Flash ????????????",AnchorProp:"?????????????????? ???? ??????????????",ButtonProp:"?????????????????? ???? ????????????",CheckboxProp:"?????????????????? ???? ???????????? ???? ??????????????",HiddenFieldProp:"?????????????????? ???? ???????????????? ????????",RadioButtonProp:"?????????????????? ???? ???????????? ???? ??????????",ImageButtonProp:"?????????????????? ???? ????????????-??????????????????????",TextFieldProp:"?????????????????? ???? ????????????????????-????????",SelectionFieldProp:"?????????????????? ???? ???????????????? ???????? ?? ??????????",TextareaProp:"?????????????????? ???? ???????????????????? ????????????",FormProp:"?????????????????? ???? ??????????????????",FontFormats:"????????????????;????????????????????;??????????;???????????????? 1;???????????????? 2;???????????????? 3;???????????????? 4;???????????????? 5;???????????????? 6;???????????????? (DIV)",ProcessingXHTML:"?????????????????? ???? XHTML. ???????? ??????????????????...",Done:"????????????",PasteWordConfirm:"??????????????, ?????????? ???????????? ???? ???????????????? ?? ?????????????? ???? MS Word. ?????????????? ???? ???? ???????? ???????????????? ?????????? ?????????????????????",NotCompatiblePaste:"???????? ???????????????? ?????????????? MS Internet Explorer ???????????? 5.5 ?????? ????-????????????. ?????????????? ???? ???? ???????????????? ???????????????????????? ?????? ?????????????????????",UnknownToolbarItem:'???????????????? ???????????????????? "%1"',UnknownCommand:'?????????????????? ?????????????? "%1"',NotImplemented:"?????????????????? ???? ?? ????????????????????????????",UnknownToolbarSet:'?????????????? "%1" ???? ????????????????????',NoActiveX:'Your browser\'s security settings could limit some features of the editor. You must enable the option "Run ActiveX controls and plug-ins". You may experience errors and notice missing features.',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"It was not possible to open the dialog window. Make sure all popup blockers are disabled.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"????",DlgBtnCancel:"??????????",DlgBtnClose:"??????????????",DlgBtnBrowseServer:"?????????????????? ??????????????",DlgAdvancedTag:"??????????????????????...",DlgOpOther:"?????????>",DlgInfoTab:"????????????????????",DlgAlertUrl:"????????, ???????????????? ???????????? ?????? (URL)",DlgGenNotSet:"??? ?? ????????????????>",DlgGenId:"??????????????????????????",DlgGenLangDir:"???????????? ???? ??????????",DlgGenLangDirLtr:"???? ???????? ???? ??????????",DlgGenLangDirRtl:"???? ?????????? ???? ????????",DlgGenLangCode:"?????? ???? ??????????",DlgGenAccessKey:"???????? ????????????",DlgGenName:"??????",DlgGenTabIndex:"?????? ???? ????????????",DlgGenLongDescr:"???????????????? ???? ????????????????",DlgGenClass:"???????? ???? ?????????????????? ??????????????",DlgGenTitle:"???????????????????????????? ????????????????",DlgGenContType:"???????????????????????????? ?????? ???? ????????????????????????",DlgGenLinkCharset:"?????? ???? ?????????????????? ????????????",DlgGenStyle:"????????",DlgImgTitle:"?????????????????? ???? ??????????????????????????",DlgImgInfoTab:"???????????????????? ???? ??????????????????????????",DlgImgBtnUpload:"?????????? ?????? ??????????????",DlgImgURL:"?????????? ?????? (URL)",DlgImgUpload:"????????",DlgImgAlt:"???????????????????????? ??????????",DlgImgWidth:"????????????",DlgImgHeight:"????????????????",DlgImgLockRatio:"???????????? ??????????????????????",DlgBtnResetSize:"???????????????????? ??????????????",DlgImgBorder:"??????????",DlgImgHSpace:"???????????????????????? ????????????",DlgImgVSpace:"???????????????????? ????????????",DlgImgAlign:"????????????????????????",DlgImgAlignLeft:"????????",DlgImgAlignAbsBottom:"??????-????????",DlgImgAlignAbsMiddle:"?????????? ???? ??????????????",DlgImgAlignBaseline:"???? ???????????????? ??????????",DlgImgAlignBottom:"????????",DlgImgAlignMiddle:"???? ??????????????",DlgImgAlignRight:"??????????",DlgImgAlignTextTop:"?????????? ????????????",DlgImgAlignTop:"????????????",DlgImgPreview:"????????????",DlgImgAlertUrl:"????????, ???????????????? ???????????? ?????? ???? ??????????????????????????",DlgImgLinkTab:"????????????",DlgFlashTitle:"?????????????????? ???? Flash ????????????",DlgFlashChkPlay:"?????????????????????? ????????????????????",DlgFlashChkLoop:"???????? ???????????????????? ???????? ????????????????????????",DlgFlashChkMenu:"?????????????????? Flash ????????",DlgFlashScale:"????????????????????????",DlgFlashScaleAll:"???????????? ?????????? ??????????",DlgFlashScaleNoBorder:"?????? ??????????",DlgFlashScaleFit:"???????????? ??????????????",DlgLnkWindowTitle:"????????????",DlgLnkInfoTab:"???????????????????? ???? ????????????????",DlgLnkTargetTab:"??????",DlgLnkType:"?????? ???? ????????????????",DlgLnkTypeURL:"?????????? ?????? (URL)",DlgLnkTypeAnchor:"?????????? ?? ???????????????? ????????????????",DlgLnkTypeEMail:"??-????????",DlgLnkProto:"????????????????",DlgLnkProtoOther:"?????????>",DlgLnkURL:"?????????? ?????? (URL)",DlgLnkAnchorSel:"???????????????? ??????????",DlgLnkAnchorByName:"???? ?????? ???? ??????????????",DlgLnkAnchorById:"???? ?????????????????????????? ???? ??????????????",DlgLnkNoAnchors:"(???????? ?????????? ?? ?????????????? ????????????????)",DlgLnkEMail:"?????????? ???? ??-????????",DlgLnkEMailSubject:"???????? ???? ??????????????",DlgLnkEMailBody:"?????????? ???? ??????????????",DlgLnkUpload:"????????",DlgLnkBtnUpload:"?????????? ???? ??????????????",DlgLnkTarget:"??????",DlgLnkTargetFrame:"?????????>",DlgLnkTargetPopup:"????????????? ????????????????>",DlgLnkTargetBlank:"?????? ???????????????? (_blank)",DlgLnkTargetParent:"???????????????????? ???????????????? (_parent)",DlgLnkTargetSelf:"???????????????? ???????????????? (_self)",DlgLnkTargetTop:"?????????? ???????????????? (_top)",DlgLnkTargetFrameName:"?????? ???? ?????????????? ????????????????",DlgLnkPopWinName:"?????? ???? ???????????????? ????????????????",DlgLnkPopWinFeat:"?????????????????? ???? ???????????????? ????????????????",DlgLnkPopResize:"?? ???????????????????? ??????????????",DlgLnkPopLocation:"???????? ???? ??????????",DlgLnkPopMenu:"????????",DlgLnkPopScroll:"??????????????",DlgLnkPopStatus:"???????? ???? ????????????",DlgLnkPopToolbar:"?????????? ?? ????????????",DlgLnkPopFullScrn:"?????????? ?????????? (MS IE)",DlgLnkPopDependent:"?????????????? (Netscape)",DlgLnkPopWidth:"????????????",DlgLnkPopHeight:"????????????????",DlgLnkPopLeft:"???????????????????? - X",DlgLnkPopTop:"???????????????????? - Y",DlnLnkMsgNoUrl:"????????, ???????????????? ???????????? ?????? (URL)",DlnLnkMsgNoEMail:"????????, ???????????????? ???????????? ???? ??-????????",DlnLnkMsgNoAnchor:"????????, ???????????????? ??????????",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"???????????????? ????????",DlgColorBtnClear:"??????????????",DlgColorHighlight:"??????????",DlgColorSelected:"????????????",DlgSmileyTitle:"???????????? ??????????????",DlgSpecialCharTitle:"???????????????? ?????????????????? ????????????",DlgTableTitle:"?????????????????? ???? ??????????????????",DlgTableRows:"????????????",DlgTableColumns:"????????????",DlgTableBorder:"???????????? ???? ??????????????",DlgTableAlign:"????????????????????????",DlgTableAlignNotSet:"??? ?? ??????????????>",DlgTableAlignLeft:"????????",DlgTableAlignCenter:"????????????",DlgTableAlignRight:"??????????",DlgTableWidth:"????????????",DlgTableWidthPx:"??????????????",DlgTableWidthPc:"????????????????",DlgTableHeight:"????????????????",DlgTableCellSpace:"???????????????????? ?????????? ????????????????",DlgTableCellPad:"???????????? ???? ???????????????????????? ?? ????????????????",DlgTableCaption:"????????????????",DlgTableSummary:"????????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"?????????????????? ???? ????????????????",DlgCellWidth:"????????????",DlgCellWidthPx:"??????????????",DlgCellWidthPc:"????????????????",DlgCellHeight:"????????????????",DlgCellWordWrap:"?????????????????? ???? ?????? ??????",DlgCellWordWrapNotSet:"??? ?? ??????????????????>",DlgCellWordWrapYes:"????",DlgCellWordWrapNo:"????",DlgCellHorAlign:"???????????????????????? ????????????????????????",DlgCellHorAlignNotSet:"??? ?? ??????????????????>",DlgCellHorAlignLeft:"????????",DlgCellHorAlignCenter:"????????????",DlgCellHorAlignRight:"??????????",DlgCellVerAlign:"???????????????????? ????????????????????????",DlgCellVerAlignNotSet:"??? ?? ??????????????????>",DlgCellVerAlignTop:"????????",DlgCellVerAlignMiddle:"???? ??????????????",DlgCellVerAlignBottom:"????????",DlgCellVerAlignBaseline:"???? ???????????????? ??????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"???????????? ???? ???????? ??????",DlgCellCollSpan:"???????????? ???? ???????? ????????????",DlgCellBackColor:"?????????? ????????",DlgCellBorderColor:"???????? ???? ??????????????",DlgCellBtnSelect:"????????????????...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"??????????",DlgFindFindBtn:"??????????",DlgFindNotFoundMsg:"???????????????? ?????????? ???? ???????? ??????????????.",DlgReplaceTitle:"??????????????",DlgReplaceFindLbl:"??????????:",DlgReplaceReplaceLbl:"?????????????? ??:",DlgReplaceCaseChk:"?????? ?????????? ????????????????",DlgReplaceReplaceBtn:"??????????????",DlgReplaceReplAllBtn:"?????????????? ????????????",DlgReplaceWordChk:"?????????? ???????????? ????????",PasteErrorCut:"?????????????????????? ???? ?????????????????? ???? ?????????? ?????????????? ???? ???????????????????? ???? ?????????????????? ???? ?????????????? ??????????????????????. ???? ?????????? ?????????????????????? ???????????????????????? (Ctrl+X).",PasteErrorCopy:"?????????????????????? ???? ?????????????????? ???? ?????????? ?????????????? ???? ???????????????????? ???? ?????????????????? ???? ?????????????? ????????????????????????????. ???? ?????????? ?????????????????????? ???????????????????????? (Ctrl+C).",PasteAsText:"???????????? ???????? ???????? ??????????",PasteFromWord:"???????????? ???? MS Word",DlgPasteMsg2:"???????????????? ?????? ?????????????????????? ?? ?????????????????????????? (Ctrl+V) ?? ?????????????????? OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"?????????????????? ???????????????????? ??????????????????",DlgPasteRemoveStyles:"???????????? ?????????????????? ??????????????????",ColorAutomatic:"???? ????????????????????????",ColorMoreColors:"?????????? ??????????????...",DocProps:"?????????????????? ???? ??????????????????",DlgAnchorTitle:"?????????????????? ???? ??????????????",DlgAnchorName:"?????? ???? ??????????????",DlgAnchorErrorName:"????????, ???????????????? ?????? ???? ??????????????",DlgSpellNotInDic:"???????????? ?? ??????????????",DlgSpellChangeTo:"?????????????? ????",DlgSpellBtnIgnore:"??????????????????",DlgSpellBtnIgnoreAll:"?????????????????? ????????????",DlgSpellBtnReplace:"??????????????",DlgSpellBtnReplaceAll:"?????????????? ????????????",DlgSpellBtnUndo:"????????????",DlgSpellNoSuggestions:"- ???????? ?????????????????????? -",DlgSpellProgress:"???????????????????? ???? ???????????????????? ???? ????????????????...",DlgSpellNoMispell:"???????????????????? ???? ???????????????? ??????????????????: ???? ???? ?????????????? ???????????????????? ????????????",DlgSpellNoChanges:"???????????????????? ???? ???????????????? ??????????????????: ???????? ?????????????????? ????????",DlgSpellOneChange:"???????????????????? ???? ???????????????? ??????????????????: ???????? ???????? ?? ??????????????????",DlgSpellManyChanges:"???????????????????? ???? ???????????????? ??????????????????: %1 ???????? ???? ??????????????????",IeSpellDownload:"???????????????????????? ???? ???????????????? ???? ???????????????? ???? ?? ????????????????????. ?????????????? ???? ???? ???? ?????????????????????? ?",DlgButtonText:"?????????? (????????????????)",DlgButtonType:"??????",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"??????",DlgCheckboxValue:"????????????????",DlgCheckboxSelected:"??????????????????",DlgFormName:"??????",DlgFormAction:"????????????????",DlgFormMethod:"??????????",DlgSelectName:"??????",DlgSelectValue:"????????????????",DlgSelectSize:"????????????",DlgSelectLines:"??????????",DlgSelectChkMulti:"?????????????????? ?????????????????????? ??????????????????????",DlgSelectOpAvail:"???????????????? ??????????",DlgSelectOpText:"??????????",DlgSelectOpValue:"????????????????",DlgSelectBtnAdd:"????????????",DlgSelectBtnModify:"??????????????",DlgSelectBtnUp:"????????????",DlgSelectBtnDown:"????????????",DlgSelectBtnSetValue:"?????????????? ???????? ?????????????? ????????????????",DlgSelectBtnDelete:"????????????",DlgTextareaName:"??????",DlgTextareaCols:"????????????",DlgTextareaRows:"????????????",DlgTextName:"??????",DlgTextValue:"????????????????",DlgTextCharWidth:"???????????? ???? ??????????????????",DlgTextMaxChars:"???????????????? ??????????????",DlgTextType:"??????",DlgTextTypeText:"??????????",DlgTextTypePass:"????????????",DlgHiddenName:"??????",DlgHiddenValue:"????????????????",BulletedListProp:"?????????????????? ???? ?????????????????????????? ????????????",NumberedListProp:"?????????????????? ???? ?????????????????????? ????????????",DlgLstStart:"Start",DlgLstType:"??????",DlgLstTypeCircle:"??????????????????",DlgLstTypeDisc:"????????",DlgLstTypeSquare:"??????????????",DlgLstTypeNumbers:"?????????? (1, 2, 3)",DlgLstTypeLCase:"?????????? ?????????? (a, b, c)",DlgLstTypeUCase:"???????????? ?????????? (A, B, C)",DlgLstTypeSRoman:"?????????? ???????????? ?????????? (i, ii, iii)",DlgLstTypeLRoman:"???????????? ???????????? ?????????? (I, II, III)",DlgDocGeneralTab:"????????",DlgDocBackTab:"??????",DlgDocColorsTab:"?????????????? ?? ??????????????",DlgDocMetaTab:"???????? ??????????",DlgDocPageTitle:"???????????????? ???? ????????????????????",DlgDocLangDir:"???????????? ???? ??????????",DlgDocLangDirLTR:"???? ???????? ???? ??????????",DlgDocLangDirRTL:"???? ?????????? ???? ????????",DlgDocLangCode:"?????? ???? ??????????",DlgDocCharSet:"???????????????? ???? ??????????????????",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"?????????? ???????????????? ???? ??????????????????",DlgDocDocType:"?????? ???? ??????????????????",DlgDocDocTypeOther:"???????? ?????? ???? ??????????????????",DlgDocIncXHTML:"???????????? XHTML ????????????????????",DlgDocBgColor:"???????? ???? ????????",DlgDocBgImage:"?????????? ?????? ???? ???????????????? ??????????????????????",DlgDocBgNoScroll:"????-?????????????????? ???? ???????????? ??????????????????????",DlgDocCText:"??????????",DlgDocCLink:"????????????",DlgDocCVisited:"???????????????? ????????????",DlgDocCActive:"?????????????? ????????????",DlgDocMargins:"?????????????? ???? ????????????????????",DlgDocMaTop:"????????",DlgDocMaLeft:"????????",DlgDocMaRight:"??????????",DlgDocMaBottom:"????????",DlgDocMeIndex:"?????????????? ???????? ???? ?????????????????? (?????????????????? ?????? ??????????????)",DlgDocMeDescr:"???????????????? ???? ??????????????????",DlgDocMeAuthor:"??????????",DlgDocMeCopy:"???????????????? ??????????",DlgDocPreview:"????????????",Templates:"??????????????",DlgTemplatesTitle:"??????????????",DlgTemplatesSelMsg:"???????????????? ???????????? (???????????????? ???????????????????? ???? ?????????????????? ???? ???????? ????????????????):",DlgTemplatesLoading:"?????????????????? ???? ?????????????? ?? ??????????????????. ???????? ??????????????????...",DlgTemplatesNoTpl:"(???????? ???????????????????? ??????????????)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"????",DlgAboutBrowserInfoTab:"???????????????????? ???? ????????????????",DlgAboutLicenseTab:"License",DlgAboutVersion:"????????????",DlgAboutInfo:"???? ???????????? ???????????????????? ????????????????",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/bn.js b/horde/services/editor/fckeditor/editor/lang/bn.js
deleted file mode 100644
index 8cab5aa66..000000000
--- a/horde/services/editor/fckeditor/editor/lang/bn.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"?????????????????? ?????????????????? ?????????",ToolbarExpand:"?????????????????? ??????????????? ?????????",Save:"????????????????????? ??????",NewPage:"???????????? ?????????",Preview:"?????????????????????",Cut:"?????????",Copy:"?????????",Paste:"???????????????",PasteText:"??????????????? (???????????? ??????????????????)",PasteWord:"??????????????? (????????????)",Print:"?????????????????????",SelectAll:"?????? ????????????????????? ??????",RemoveFormat:"??????????????? ????????????",InsertLinkLbl:"?????????????????? ??????????????? ???????????? ???????????????",InsertLink:"???????????? ??????????????? ??????",RemoveLink:"???????????? ????????????",VisitLink:"Open Link",Anchor:"??????????????????",AnchorDelete:"Remove Anchor",InsertImageLbl:"???????????? ??????????????? ??????????????? ??????",InsertImage:"????????? ??????????????? ??????",InsertFlashLbl:"??????????????? ??????????????? ??????????????? ??????",InsertFlash:"??????????????? ??????????????? ??????",InsertTableLbl:"????????????????????? ??????????????? ??????????????? ??????",InsertTable:"??????????????? ??????????????? ??????",InsertLineLbl:"???????????? ??????????????? ??????",InsertLine:"???????????? ??????????????? ??????",InsertSpecialCharLbl:"??????????????? ????????????????????? ??????????????? ??????????????? ??????",InsertSpecialChar:"??????????????? ??????????????? ??????????????? ??????",InsertSmileyLbl:"?????????????????????",InsertSmiley:"????????????????????? ??????????????? ??????",About:"FCKeditor ?????? ????????????????????????",Bold:"???????????????",Italic:"??????????????????",Underline:"??????????????????????????????",StrikeThrough:"???????????????????????? ????????????",Subscript:"??????????????????",Superscript:"??????????????????",LeftJustify:"?????? ???????????? ???????????????",CenterJustify:"????????? ??????????????? ????????????",RightJustify:"????????? ???????????? ???????????????",BlockJustify:"???????????? ???????????????????????????",DecreaseIndent:"????????????????????? ????????????",IncreaseIndent:"????????????????????? ???????????????",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"????????????",Redo:"??????-??????",NumberedListLbl:"???????????????????????? ????????????????????? ???????????????",NumberedList:"???????????????????????? ???????????????",BulletedListLbl:"??????????????? ??????????????? ???????????????",BulletedList:"????????????????????? ???????????????",ShowTableBorders:"??????????????? ??????????????????",ShowDetails:"?????????????????? ???????????????",Style:"??????????????????",FontFormat:"???????????? ???????????????",Font:"????????????",FontSize:"????????????",TextColor:"????????????????????? ??????",BGColor:"????????????????????????????????? ??????",Source:"???????????????",Find:"????????????",Replace:"?????????????????????",SpellCheck:"??????????????? ?????????",UniversalKeyboard:"??????????????????????????? ?????????????????????",PageBreakLbl:"????????? ??????????????? ???????????????",PageBreak:"????????? ???????????????",Form:"????????????",Checkbox:"????????? ???????????????",RadioButton:"??????????????? ????????????",TextField:"?????????????????? ???????????????",Textarea:"?????????????????? ???????????????",HiddenField:"??????????????? ???????????????",Button:"????????????",SelectionField:"??????????????? ???????????????",ImageButton:"???????????? ????????????",FitWindow:"?????????????????? ????????? ??????",ShowBlocks:"Show Blocks",EditLink:"???????????? ?????????????????????",CellCM:"?????????",RowCM:"??????",ColumnCM:"????????????",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"?????? ???????????? ?????????",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"???????????? ???????????? ?????????",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"????????? ???????????? ?????????",MergeCells:"????????? ???????????? ?????????",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"??????????????? ??????????????? ??????",CellProperties:"??????????????? ?????????????????????????????????",TableProperties:"??????????????? ??????????????????????????????",ImageProperties:"????????? ??????????????????????????????",FlashProperties:"??????????????? ??????????????????????????????",AnchorProp:"???????????? ??????????????????????????????",ButtonProp:"???????????? ??????????????????????????????",CheckboxProp:"????????? ???????????? ??????????????????????????????",HiddenFieldProp:"??????????????? ??????????????? ??????????????????????????????",RadioButtonProp:"??????????????? ???????????? ??????????????????????????????",ImageButtonProp:"????????? ???????????? ??????????????????????????????",TextFieldProp:"?????????????????? ??????????????? ??????????????????????????????",SelectionFieldProp:"??????????????? ??????????????? ??????????????????????????????",TextareaProp:"?????????????????? ??????????????? ??????????????????????????????",FormProp:"???????????? ??????????????????????????????",FontFormats:"??????????????????;????????????????????????;??????????????????;?????????????????? ???;?????????????????? ???;?????????????????? ???;?????????????????? ???;?????????????????? ???;?????????????????? ???;?????????????????? (DIV)",ProcessingXHTML:"XHTML ?????????????????? ????????? ???????????????",Done:"????????? ???????????????",PasteWordConfirm:"?????? ???????????????????????? ???????????? ??????????????? ???????????? ????????????????????? ????????? ??????????????? ???????????? ?????????????????? ???????????? ????????? ???????????? ???????????? ?????? ??????????????? ???????????? ????????? ????????? ???????????????????????? ???????????? ??????????",NotCompatiblePaste:"?????? ???????????????????????? ??????????????????????????? ??????????????????????????? ????????????????????????????????? ???.??? ?????? ????????? ???????????? ????????????????????? ??????????????? ?????????????????? ???????????? ?????? ???????????????????????? ?????? ???????????? ??????????????? ???????????? ??????????",UnknownToolbarItem:'??????????????? ?????????????????? ??????????????? "%1"',UnknownCommand:'??????????????? ?????????????????? "%1"',NotImplemented:"?????????????????? ????????????????????????????????? ????????? ????????????",UnknownToolbarSet:'?????????????????? ????????? "%1" ?????? ???????????????????????? ?????????',NoActiveX:'??????????????? ?????????????????????????????? ????????????????????? ?????????????????? ??????????????? ????????????????????? ???????????? ??????????????? ??????????????? ????????? ???????????? ??????????????? ?????????????????? ?????????????????? "Run ActiveX controls and plug-ins" ?????????????????? ????????? ???????????? ???????????? ???????????? ????????????????????????????????? ???????????? ???????????? ????????????????????? ?????????????????????????????? ????????????????????? ???????????? ??????????????????',BrowseServerBlocked:"????????????????????? ???????????????????????? ???????????? ????????? ????????? ????????????????????? ???????????? ?????? ?????? ???????????? ?????????????????? ???????????? ????????? ????????????",DialogBlocked:"?????????????????? ?????????????????? ???????????? ????????? ????????? ????????????????????? ???????????? ?????? ?????? ???????????? ?????????????????? ???????????? ????????? ????????????",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"?????????",DlgBtnCancel:"???????????????",DlgBtnClose:"???????????? ??????",DlgBtnBrowseServer:"?????????????????? ?????????????????????",DlgAdvancedTag:"????????????????????????",DlgOpOther:"???????????>",DlgInfoTab:"????????????",DlgAlertUrl:"????????? ????????? URL ??????????????? ????????????",DlgGenNotSet:"???????? ?????????>",DlgGenId:"????????????",DlgGenLangDir:"???????????? ??????????????? ?????????",DlgGenLangDirLtr:"????????? ???????????? ????????? (LTR)",DlgGenLangDirRtl:"????????? ???????????? ????????? (RTL)",DlgGenLangCode:"???????????? ?????????",DlgGenAccessKey:"?????????????????? ??????",DlgGenName:"?????????",DlgGenTabIndex:"??????????????? ????????????????????????",DlgGenLongDescr:"URL ?????? ??????????????? ??????????????????",DlgGenClass:"??????????????????-????????? ???????????????",DlgGenTitle:"????????????????????? ??????????????????",DlgGenContType:"????????????????????? ?????????????????????????????? ??????????????????",DlgGenLinkCharset:"???????????? ????????????????????? ?????????????????????????????? ?????????",DlgGenStyle:"??????????????????",DlgImgTitle:"???????????? ??????????????????????????????",DlgImgInfoTab:"???????????? ????????????",DlgImgBtnUpload:"??????????????? ???????????????????????? ?????????????????? ??????",DlgImgURL:"URL",DlgImgUpload:"???????????????",DlgImgAlt:"?????????????????? ??????????????????",DlgImgWidth:"??????????????????",DlgImgHeight:"?????????????????????",DlgImgLockRatio:"?????????????????? ?????? ??????",DlgBtnResetSize:"???????????? ???????????????????????????????????? ?????????????????? ?????????",DlgImgBorder:"??????????????????",DlgImgHSpace:"?????????????????????????????? ???????????????",DlgImgVSpace:"??????????????????????????? ???????????????",DlgImgAlign:"???????????????",DlgImgAlignLeft:"????????????",DlgImgAlignAbsBottom:"Abs ????????????",DlgImgAlignAbsMiddle:"Abs ?????????",DlgImgAlignBaseline:"????????? ????????????",DlgImgAlignBottom:"????????????",DlgImgAlignMiddle:"????????????",DlgImgAlignRight:"????????????",DlgImgAlignTextTop:"?????????????????? ?????????",DlgImgAlignTop:"?????????",DlgImgPreview:"?????????????????????",DlgImgAlertUrl:"???????????????????????? ????????? ???????????? URL ???????????? ????????????",DlgImgLinkTab:"????????????",DlgFlashTitle:"????????????????????? ??????????????????????????????",DlgFlashChkPlay:"????????? ????????????",DlgFlashChkLoop:"?????????",DlgFlashChkMenu:"????????????????????? ???????????? ??????????????? ??????",DlgFlashScale:"???????????????",DlgFlashScaleAll:"?????? ???????????????",DlgFlashScaleNoBorder:"???????????? ?????????????????? ?????????",DlgFlashScaleFit:"?????????????????? ?????????",DlgLnkWindowTitle:"????????????",DlgLnkInfoTab:"???????????? ????????????",DlgLnkTargetTab:"?????????????????????",DlgLnkType:"???????????? ??????????????????",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"?????? ???????????? ???????????? ??????",DlgLnkTypeEMail:"???????????????",DlgLnkProto:"????????????????????????",DlgLnkProtoOther:"???????????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"???????????? ???????????????",DlgLnkAnchorByName:"?????????????????? ????????? ????????????",DlgLnkAnchorById:"?????????????????? ???????????? ????????????",DlgLnkNoAnchors:"(No anchors available in the document)",DlgLnkEMail:"??????????????? ??????????????????",DlgLnkEMailSubject:"????????????????????? ????????????",DlgLnkEMailBody:"????????????????????? ?????????",DlgLnkUpload:"???????????????",DlgLnkBtnUpload:"????????? ???????????????????????? ???????????????",DlgLnkTarget:"?????????????????????",DlgLnkTargetFrame:"??????????????>",DlgLnkTargetPopup:"??????????? ??????????????????>",DlgLnkTargetBlank:"???????????? ?????????????????? (_blank)",DlgLnkTargetParent:"????????? ?????????????????? (_parent)",DlgLnkTargetSelf:"?????? ?????????????????? (_self)",DlgLnkTargetTop:"??????????????? ?????????????????? (_top)",DlgLnkTargetFrameName:"????????????????????? ????????????????????? ?????????",DlgLnkPopWinName:"???????????? ????????????????????? ?????????",DlgLnkPopWinFeat:"???????????? ?????????????????? ??????????????? ????????????",DlgLnkPopResize:"?????????????????? ????????? ???????????????",DlgLnkPopLocation:"?????????????????? ?????????",DlgLnkPopMenu:"?????????????????? ?????????",DlgLnkPopScroll:"?????????????????? ?????????",DlgLnkPopStatus:"??????????????????????????? ?????????",DlgLnkPopToolbar:"????????? ?????????",DlgLnkPopFullScrn:"??????????????? ??????????????? ???????????? (IE)",DlgLnkPopDependent:"????????????????????????????????? (Netscape)",DlgLnkPopWidth:"??????????????????",DlgLnkPopHeight:"?????????????????????",DlgLnkPopLeft:"??????????????? ???????????????",DlgLnkPopTop:"??????????????? ???????????????",DlnLnkMsgNoUrl:"????????????????????? ????????? URL ???????????? ???????????? ????????????",DlnLnkMsgNoEMail:"????????????????????? ????????? ??????????????? ?????????????????? ???????????? ????????????",DlnLnkMsgNoAnchor:"????????????????????? ????????? ???????????? ??????????????? ????????????",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"?????? ??????????????? ??????",DlgColorBtnClear:"???????????????????????? ??????",DlgColorHighlight:"?????????????????????",DlgColorSelected:"???????????????????????????",DlgSmileyTitle:"????????????????????? ??????????????? ??????",DlgSpecialCharTitle:"??????????????? ????????????????????????????????? ??????????????? ??????",DlgTableTitle:"??????????????? ??????????????????????????????",DlgTableRows:"??????",DlgTableColumns:"????????????",DlgTableBorder:"?????????????????? ????????????",DlgTableAlign:"??????????????????????????????",DlgTableAlignNotSet:"???????? ?????????>",DlgTableAlignLeft:"????????????",DlgTableAlignCenter:"?????????????????????",DlgTableAlignRight:"????????????",DlgTableWidth:"??????????????????",DlgTableWidthPx:"?????????????????????",DlgTableWidthPc:"???????????????",DlgTableHeight:"?????????????????????",DlgTableCellSpace:"????????? ???????????????",DlgTableCellPad:"????????? ?????????????????????",DlgTableCaption:"??????????????????",DlgTableSummary:"??????????????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"????????? ??????????????????????????????",DlgCellWidth:"??????????????????",DlgCellWidthPx:"?????????????????????",DlgCellWidthPc:"???????????????",DlgCellHeight:"?????????????????????",DlgCellWordWrap:"?????????????????? ?????????",DlgCellWordWrapNotSet:"???????? ?????????>",DlgCellWordWrapYes:"?????????",DlgCellWordWrapNo:"??????",DlgCellHorAlign:"?????????????????????????????? ??????????????????????????????",DlgCellHorAlignNotSet:"???????? ?????????>",DlgCellHorAlignLeft:"????????????",DlgCellHorAlignCenter:"?????????????????????",DlgCellHorAlignRight:"????????????",DlgCellVerAlign:"????????????????????????????????? ??????????????????????????????",DlgCellVerAlignNotSet:"???????? ?????????>",DlgCellVerAlignTop:"?????????",DlgCellVerAlignMiddle:"????????????",DlgCellVerAlignBottom:"????????????",DlgCellVerAlignBaseline:"?????????????????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"?????? ?????????????????????",DlgCellCollSpan:"???????????? ?????????????????????",DlgCellBackColor:"??????????????????????????????????????? ??????",DlgCellBorderColor:"???????????????????????? ??????",DlgCellBtnSelect:"??????????????? ??????",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"???????????????",DlgFindFindBtn:"???????????????",DlgFindNotFoundMsg:"??????????????? ???????????????????????? ?????????????????? ??????????????? ???????????????",DlgReplaceTitle:"???????????? ?????????",DlgReplaceFindLbl:"?????? ?????????????????? ?????????:",DlgReplaceReplaceLbl:"????????? ???????????? ?????????????????? ?????????:",DlgReplaceCaseChk:"????????? ???????????????",DlgReplaceReplaceBtn:"???????????? ?????????",DlgReplaceReplAllBtn:"?????? ???????????? ?????????",DlgReplaceWordChk:"???????????? ???????????? ???????????????",PasteErrorCut:"??????????????? ?????????????????????????????? ????????????????????? ?????????????????? ????????????????????? ???????????????????????? ????????? ???????????? ?????????????????? ?????????????????? ????????? ????????? ?????? ??????????????? ???????????? ????????????????????? ????????????????????? ???????????? (Ctrl+X)???",PasteErrorCopy:"??????????????? ?????????????????????????????? ????????????????????? ?????????????????? ????????????????????? ???????????????????????? ????????? ???????????? ?????????????????? ?????????????????? ????????? ????????? ?????? ??????????????? ???????????? ????????????????????? ????????????????????? ???????????? (Ctrl+C)???",PasteAsText:"???????????? ?????????????????? ?????????????????? ??????????????? ??????",PasteFromWord:"?????????????????? ???????????? ??????????????? ??????",DlgPasteMsg2:"????????????????????? ????????? ??????????????? ?????????????????? ????????????????????? ????????????????????? ????????? (Ctrl+V) ??????????????? ???????????? ????????? OK ????????? ?????????",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"???????????? ????????? ???????????????????????? ??????????????? ????????????",DlgPasteRemoveStyles:"?????????????????? ???????????????????????? ??????????????? ?????????",ColorAutomatic:"????????????????????????",ColorMoreColors:"????????? ??????...",DocProps:"?????????????????????????????? ??????????????????????????????",DlgAnchorTitle:"?????????????????? ??????????????????????????????",DlgAnchorName:"?????????????????? ?????????",DlgAnchorErrorName:"?????????????????? ????????? ???????????? ????????????",DlgSpellNotInDic:"???????????????????????? ?????????",DlgSpellChangeTo:"????????? ???????????????",DlgSpellBtnIgnore:"??????????????? ??????",DlgSpellBtnIgnoreAll:"?????? ??????????????? ??????",DlgSpellBtnReplace:"???????????? ?????????",DlgSpellBtnReplaceAll:"?????? ???????????? ?????????",DlgSpellBtnUndo:"???????????????",DlgSpellNoSuggestions:"- ????????? ?????????????????? ????????? -",DlgSpellProgress:"??????????????? ????????????????????? ????????????...",DlgSpellNoMispell:"??????????????? ????????????????????? ?????????: ????????? ????????? ??????????????? ??????????????? ???????????????",DlgSpellNoChanges:"??????????????? ????????????????????? ?????????: ????????? ???????????? ???????????????????????? ????????? ????????????",DlgSpellOneChange:"??????????????? ????????????????????? ?????????: ???????????? ??????????????? ???????????? ???????????????????????? ????????? ???????????????",DlgSpellManyChanges:"??????????????? ????????????????????? ?????????: %1 ???????????? ???????????? ???????????? ??????????????????",IeSpellDownload:"??????????????? ????????????????????? ?????????????????? ????????? ???????????? ???????????? ?????? ???????????? ????????? ????????????????????? ???????????? ??????????",DlgButtonText:"?????????????????? (??????????????????)",DlgButtonType:"??????????????????",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"?????????",DlgCheckboxValue:"??????????????????",DlgCheckboxSelected:"???????????????????????????",DlgFormName:"?????????",DlgFormAction:"??????????????????",DlgFormMethod:"??????????????????",DlgSelectName:"?????????",DlgSelectValue:"??????????????????",DlgSelectSize:"????????????",DlgSelectLines:"???????????? ????????????",DlgSelectChkMulti:"?????????????????? ????????????????????? ???????????? ??????",DlgSelectOpAvail:"???????????????????????? ??????????????????",DlgSelectOpText:"??????????????????",DlgSelectOpValue:"??????????????????",DlgSelectBtnAdd:"???????????????",DlgSelectBtnModify:"???????????? ?????????",DlgSelectBtnUp:"?????????",DlgSelectBtnDown:"????????????",DlgSelectBtnSetValue:"??????????????? ????????? ?????????????????? ?????????????????? ????????? ??????",DlgSelectBtnDelete:"???????????????",DlgTextareaName:"?????????",DlgTextareaCols:"????????????",DlgTextareaRows:"??????",DlgTextName:"?????????",DlgTextValue:"??????????????????",DlgTextCharWidth:"????????????????????????????????? ???????????????????????????",DlgTextMaxChars:"???????????????????????? ?????????????????????????????????",DlgTextType:"????????????",DlgTextTypeText:"??????????????????",DlgTextTypePass:"???????????????????????????",DlgHiddenName:"?????????",DlgHiddenValue:"??????????????????",BulletedListProp:"????????????????????? ???????????? ??????????????????????????????",NumberedListProp:"???????????????????????? ???????????? ??????????????????????????????",DlgLstStart:"Start",DlgLstType:"??????????????????",DlgLstTypeCircle:"?????????",DlgLstTypeDisc:"???????????????",DlgLstTypeSquare:"??????????????????",DlgLstTypeNumbers:"?????????????????? (1, 2, 3)",DlgLstTypeLCase:"????????? ??????????????? (a, b, c)",DlgLstTypeUCase:"?????? ??????????????? (A, B, C)",DlgLstTypeSRoman:"????????? ??????????????? ?????????????????? (i, ii, iii)",DlgLstTypeLRoman:"?????? ??????????????? ?????????????????? (I, II, III)",DlgDocGeneralTab:"??????????????????",DlgDocBackTab:"???????????????????????????????????????",DlgDocColorsTab:"?????? ????????? ?????????????????????",DlgDocMetaTab:"????????????????????????",DlgDocPageTitle:"????????? ??????????????????",DlgDocLangDir:"???????????? ??????????????? ?????????",DlgDocLangDirLTR:"????????? ???????????? ???????????? (LTR)",DlgDocLangDirRTL:"????????? ???????????? ???????????? (RTL)",DlgDocLangCode:"???????????? ?????????",DlgDocCharSet:"????????????????????????????????? ????????? ?????????????????????",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"???????????? ????????????????????????????????? ????????? ?????????????????????",DlgDocDocType:"?????????????????????????????? ???????????? ???????????????",DlgDocDocTypeOther:"???????????? ?????????????????????????????? ???????????? ???????????????",DlgDocIncXHTML:"XHTML ?????????????????????????????? ??????????????? ??????",DlgDocBgColor:"??????????????????????????????????????? ??????",DlgDocBgImage:"??????????????????????????????????????? ???????????? URL",DlgDocBgNoScroll:"??????????????????????????? ???????????????????????????????????????",DlgDocCText:"??????????????????",DlgDocCLink:"????????????",DlgDocCVisited:"??????????????? ????????? ????????????",DlgDocCActive:"?????????????????? ????????????",DlgDocMargins:"????????? ?????????????????????",DlgDocMaTop:"?????????",DlgDocMaLeft:"????????????",DlgDocMaRight:"????????????",DlgDocMaBottom:"????????????",DlgDocMeIndex:"?????????????????????????????? ???????????????????????? ???????????????????????? (????????? ?????????????????? ???????????????????????????)",DlgDocMeDescr:"?????????????????????????????? ??????????????????",DlgDocMeAuthor:"????????????",DlgDocMeCopy:"?????????????????????",DlgDocPreview:"?????????????????????",Templates:"????????????????????????",DlgTemplatesTitle:"????????????????????? ????????????????????????",DlgTemplatesSelMsg:"????????????????????? ????????? ?????????????????? ???????????? ???????????? ???????????? ???????????????????????? ??????????????? ???????????? (????????? ????????????????????? ?????????????????? ????????????):",DlgTemplatesLoading:"???????????????????????? ??????????????? ?????????????????? ??????????????? ????????????????????? ????????? ????????????????????? ????????????...",DlgTemplatesNoTpl:"(????????? ???????????????????????? ?????????????????? ????????? ?????????)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"?????? ????????????????????????",DlgAboutBrowserInfoTab:"?????????????????????????????? ???????????????????????? ????????????",DlgAboutLicenseTab:"????????????????????????",DlgAboutVersion:"??????????????????",DlgAboutInfo:"????????? ?????????????????? ???????????? ?????????",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/bs.js b/horde/services/editor/fckeditor/editor/lang/bs.js
deleted file mode 100644
index 8f81ffaff..000000000
--- a/horde/services/editor/fckeditor/editor/lang/bs.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Skupi trake sa alatima",ToolbarExpand:"Otvori trake sa alatima",Save:"Snimi",NewPage:"Novi dokument",Preview:"Prika??i",Cut:"Izre??i",Copy:"Kopiraj",Paste:"Zalijepi",PasteText:"Zalijepi kao obi??an tekst",PasteWord:"Zalijepi iz Word-a",Print:"??tampaj",SelectAll:"Selektuj sve",RemoveFormat:"Poni??ti format",InsertLinkLbl:"Link",InsertLink:"Ubaci/Izmjeni link",RemoveLink:"Izbri??i link",VisitLink:"Open Link",Anchor:"Insert/Edit Anchor",AnchorDelete:"Remove Anchor",InsertImageLbl:"Slika",InsertImage:"Ubaci/Izmjeni sliku",InsertFlashLbl:"Flash",InsertFlash:"Insert/Edit Flash",InsertTableLbl:"Tabela",InsertTable:"Ubaci/Izmjeni tabelu",InsertLineLbl:"Linija",InsertLine:"Ubaci horizontalnu liniju",InsertSpecialCharLbl:"Specijalni karakter",InsertSpecialChar:"Ubaci specijalni karater",InsertSmileyLbl:"Smje??ko",InsertSmiley:"Ubaci smje??ka",About:"O FCKeditor-u",Bold:"Boldiraj",Italic:"Ukosi",Underline:"Podvuci",StrikeThrough:"Precrtaj",Subscript:"Subscript",Superscript:"Superscript",LeftJustify:"Lijevo poravnanje",CenterJustify:"Centralno poravnanje",RightJustify:"Desno poravnanje",BlockJustify:"Puno poravnanje",DecreaseIndent:"Smanji uvod",IncreaseIndent:"Pove??aj uvod",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Vrati",Redo:"Ponovi",NumberedListLbl:"Numerisana lista",NumberedList:"Ubaci/Izmjeni numerisanu listu",BulletedListLbl:"Lista",BulletedList:"Ubaci/Izmjeni listu",ShowTableBorders:"Poka??i okvire tabela",ShowDetails:"Poka??i detalje",Style:"Stil",FontFormat:"Format",Font:"Font",FontSize:"Veli??ina",TextColor:"Boja teksta",BGColor:"Boja pozadine",Source:"HTML k??d",Find:"Na??i",Replace:"Zamjeni",SpellCheck:"Check Spelling",UniversalKeyboard:"Universal Keyboard",PageBreakLbl:"Page Break",PageBreak:"Insert Page Break",Form:"Form",Checkbox:"Checkbox",RadioButton:"Radio Button",TextField:"Text Field",Textarea:"Textarea",HiddenField:"Hidden Field",Button:"Button",SelectionField:"Selection Field",ImageButton:"Image Button",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"Izmjeni link",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Bri??i redove",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Bri??i kolone",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Bri??i ??elije",MergeCells:"Spoji ??elije",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Delete Table",CellProperties:"Svojstva ??elije",TableProperties:"Svojstva tabele",ImageProperties:"Svojstva slike",FlashProperties:"Flash Properties",AnchorProp:"Anchor Properties",ButtonProp:"Button Properties",CheckboxProp:"Checkbox Properties",HiddenFieldProp:"Hidden Field Properties",RadioButtonProp:"Radio Button Properties",ImageButtonProp:"Image Button Properties",TextFieldProp:"Text Field Properties",SelectionFieldProp:"Selection Field Properties",TextareaProp:"Textarea Properties",FormProp:"Form Properties",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6",ProcessingXHTML:"Procesiram XHTML. Molim sa??ekajte...",Done:"Gotovo",PasteWordConfirm:"Tekst koji ??elite zalijepiti ??ini se da je kopiran iz Worda. Da li ??elite da se prvo o??isti?",NotCompatiblePaste:"Ova komanda je podr??ana u Internet Explorer-u verzijama 5.5 ili novijim. Da li ??elite da izvr??ite lijepljenje teksta bez ??i????enja?",UnknownToolbarItem:'Nepoznata stavka sa trake sa alatima "%1"',UnknownCommand:'Nepoznata komanda "%1"',NotImplemented:"Komanda nije implementirana",UnknownToolbarSet:'Traka sa alatima "%1" ne postoji',NoActiveX:'Your browser\'s security settings could limit some features of the editor. You must enable the option "Run ActiveX controls and plug-ins". You may experience errors and notice missing features.',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"It was not possible to open the dialog window. Make sure all popup blockers are disabled.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Odustani",DlgBtnClose:"Zatvori",DlgBtnBrowseServer:"Browse Server",DlgAdvancedTag:"Naprednije",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Please insert the URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Smjer pisanja",DlgGenLangDirLtr:"S lijeva na desno (LTR)",DlgGenLangDirRtl:"S desna na lijevo (RTL)",DlgGenLangCode:"Jezi??ni k??d",DlgGenAccessKey:"Pristupna tipka",DlgGenName:"Naziv",DlgGenTabIndex:"Tab indeks",DlgGenLongDescr:"Duga??ki opis URL-a",DlgGenClass:"Klase CSS stilova",DlgGenTitle:"Advisory title",DlgGenContType:"Advisory vrsta sadr??aja",DlgGenLinkCharset:"Linked Resource Charset",DlgGenStyle:"Stil",DlgImgTitle:"Svojstva slike",DlgImgInfoTab:"Info slike",DlgImgBtnUpload:"??alji na server",DlgImgURL:"URL",DlgImgUpload:"??alji",DlgImgAlt:"Tekst na slici",DlgImgWidth:"??irina",DlgImgHeight:"Visina",DlgImgLockRatio:"Zaklju??aj odnos",DlgBtnResetSize:"Resetuj dimenzije",DlgImgBorder:"Okvir",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Poravnanje",DlgImgAlignLeft:"Lijevo",DlgImgAlignAbsBottom:"Abs dole",DlgImgAlignAbsMiddle:"Abs sredina",DlgImgAlignBaseline:"Bazno",DlgImgAlignBottom:"Dno",DlgImgAlignMiddle:"Sredina",DlgImgAlignRight:"Desno",DlgImgAlignTextTop:"Vrh teksta",DlgImgAlignTop:"Vrh",DlgImgPreview:"Prikaz",DlgImgAlertUrl:"Molimo ukucajte URL od slike.",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash Properties",DlgFlashChkPlay:"Auto Play",DlgFlashChkLoop:"Loop",DlgFlashChkMenu:"Enable Flash Menu",DlgFlashScale:"Scale",DlgFlashScaleAll:"Show all",DlgFlashScaleNoBorder:"No Border",DlgFlashScaleFit:"Exact Fit",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Link info",DlgLnkTargetTab:"Prozor",DlgLnkType:"Tip linka",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Sidro na ovoj stranici",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protokol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Izaberi sidro",DlgLnkAnchorByName:"Po nazivu sidra",DlgLnkAnchorById:"Po Id-u elementa",DlgLnkNoAnchors:"(Nema dostupnih sidra na stranici)",DlgLnkEMail:"E-Mail Adresa",DlgLnkEMailSubject:"Subjekt poruke",DlgLnkEMailBody:"Poruka",DlgLnkUpload:"??alji",DlgLnkBtnUpload:"??alji na server",DlgLnkTarget:"Prozor",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Novi prozor (_blank)",DlgLnkTargetParent:"Glavni prozor (_parent)",DlgLnkTargetSelf:"Isti prozor (_self)",DlgLnkTargetTop:"Najgornji prozor (_top)",DlgLnkTargetFrameName:"Target Frame Name",DlgLnkPopWinName:"Naziv popup prozora",DlgLnkPopWinFeat:"Mogu??nosti popup prozora",DlgLnkPopResize:"Promjenljive veli??ine",DlgLnkPopLocation:"Traka za lokaciju",DlgLnkPopMenu:"Izborna traka",DlgLnkPopScroll:"Scroll traka",DlgLnkPopStatus:"Statusna traka",DlgLnkPopToolbar:"Traka sa alatima",DlgLnkPopFullScrn:"Cijeli ekran (IE)",DlgLnkPopDependent:"Ovisno (Netscape)",DlgLnkPopWidth:"??irina",DlgLnkPopHeight:"Visina",DlgLnkPopLeft:"Lijeva pozicija",DlgLnkPopTop:"Gornja pozicija",DlnLnkMsgNoUrl:"Molimo ukucajte URL link",DlnLnkMsgNoEMail:"Molimo ukucajte e-mail adresu",DlnLnkMsgNoAnchor:"Molimo izaberite sidro",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Izaberi boju",DlgColorBtnClear:"O??isti",DlgColorHighlight:"Igled",DlgColorSelected:"Selektovana",DlgSmileyTitle:"Ubaci smje??ka",DlgSpecialCharTitle:"Izaberi specijalni karakter",DlgTableTitle:"Svojstva tabele",DlgTableRows:"Redova",DlgTableColumns:"Kolona",DlgTableBorder:"Okvir",DlgTableAlign:"Poravnanje",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Lijevo",DlgTableAlignCenter:"Centar",DlgTableAlignRight:"Desno",DlgTableWidth:"??irina",DlgTableWidthPx:"piksela",DlgTableWidthPc:"posto",DlgTableHeight:"Visina",DlgTableCellSpace:"Razmak ??elija",DlgTableCellPad:"Uvod ??elija",DlgTableCaption:"Naslov",DlgTableSummary:"Summary",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Svojstva ??elije",DlgCellWidth:"??irina",DlgCellWidthPx:"piksela",DlgCellWidthPc:"posto",DlgCellHeight:"Visina",DlgCellWordWrap:"Vrapuj tekst",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Da",DlgCellWordWrapNo:"Ne",DlgCellHorAlign:"Horizontalno poravnanje",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Lijevo",DlgCellHorAlignCenter:"Centar",DlgCellHorAlignRight:"Desno",DlgCellVerAlign:"Vertikalno poravnanje",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Gore",DlgCellVerAlignMiddle:"Sredina",DlgCellVerAlignBottom:"Dno",DlgCellVerAlignBaseline:"Bazno",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Spajanje ??elija",DlgCellCollSpan:"Spajanje kolona",DlgCellBackColor:"Boja pozadine",DlgCellBorderColor:"Boja okvira",DlgCellBtnSelect:"Selektuj...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Na??i",DlgFindFindBtn:"Na??i",DlgFindNotFoundMsg:"Tra??eni tekst nije prona??en.",DlgReplaceTitle:"Zamjeni",DlgReplaceFindLbl:"Na??i ??ta:",DlgReplaceReplaceLbl:"Zamjeni sa:",DlgReplaceCaseChk:"Upore??uj velika/mala slova",DlgReplaceReplaceBtn:"Zamjeni",DlgReplaceReplAllBtn:"Zamjeni sve",DlgReplaceWordChk:"Upore??uj samo cijelu rije??",PasteErrorCut:"Sigurnosne postavke va??eg pretra??iva??a ne dozvoljavaju operacije automatskog rezanja. Molimo koristite kraticu na tastaturi (Ctrl+X).",PasteErrorCopy:"Sigurnosne postavke Va??eg pretra??iva??a ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tastaturi (Ctrl+C).",PasteAsText:"Zalijepi kao obi??an tekst",PasteFromWord:"Zalijepi iz Word-a",DlgPasteMsg2:"Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignore Font Face definitions",DlgPasteRemoveStyles:"Remove Styles definitions",ColorAutomatic:"Automatska",ColorMoreColors:"Vi??e boja...",DocProps:"Document Properties",DlgAnchorTitle:"Anchor Properties",DlgAnchorName:"Anchor Name",DlgAnchorErrorName:"Please type the anchor name",DlgSpellNotInDic:"Not in dictionary",DlgSpellChangeTo:"Change to",DlgSpellBtnIgnore:"Ignore",DlgSpellBtnIgnoreAll:"Ignore All",DlgSpellBtnReplace:"Replace",DlgSpellBtnReplaceAll:"Replace All",DlgSpellBtnUndo:"Undo",DlgSpellNoSuggestions:"- No suggestions -",DlgSpellProgress:"Spell check in progress...",DlgSpellNoMispell:"Spell check complete: No misspellings found",DlgSpellNoChanges:"Spell check complete: No words changed",DlgSpellOneChange:"Spell check complete: One word changed",DlgSpellManyChanges:"Spell check complete: %1 words changed",IeSpellDownload:"Spell checker not installed. Do you want to download it now?",DlgButtonText:"Text (Value)",DlgButtonType:"Type",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Name",DlgCheckboxValue:"Value",DlgCheckboxSelected:"Selected",DlgFormName:"Name",DlgFormAction:"Action",DlgFormMethod:"Method",DlgSelectName:"Name",DlgSelectValue:"Value",DlgSelectSize:"Size",DlgSelectLines:"lines",DlgSelectChkMulti:"Allow multiple selections",DlgSelectOpAvail:"Available Options",DlgSelectOpText:"Text",DlgSelectOpValue:"Value",DlgSelectBtnAdd:"Add",DlgSelectBtnModify:"Modify",DlgSelectBtnUp:"Up",DlgSelectBtnDown:"Down",DlgSelectBtnSetValue:"Set as selected value",DlgSelectBtnDelete:"Delete",DlgTextareaName:"Name",DlgTextareaCols:"Columns",DlgTextareaRows:"Rows",DlgTextName:"Name",DlgTextValue:"Value",DlgTextCharWidth:"Character Width",DlgTextMaxChars:"Maximum Characters",DlgTextType:"Type",DlgTextTypeText:"Text",DlgTextTypePass:"Password",DlgHiddenName:"Name",DlgHiddenValue:"Value",BulletedListProp:"Bulleted List Properties",NumberedListProp:"Numbered List Properties",DlgLstStart:"Start",DlgLstType:"Type",DlgLstTypeCircle:"Circle",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"Square",DlgLstTypeNumbers:"Numbers (1, 2, 3)",DlgLstTypeLCase:"Lowercase Letters (a, b, c)",DlgLstTypeUCase:"Uppercase Letters (A, B, C)",DlgLstTypeSRoman:"Small Roman Numerals (i, ii, iii)",DlgLstTypeLRoman:"Large Roman Numerals (I, II, III)",DlgDocGeneralTab:"General",DlgDocBackTab:"Background",DlgDocColorsTab:"Colors and Margins",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Page Title",DlgDocLangDir:"Language Direction",DlgDocLangDirLTR:"Left to Right (LTR)",DlgDocLangDirRTL:"Right to Left (RTL)",DlgDocLangCode:"Language Code",DlgDocCharSet:"Character Set Encoding",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Other Character Set Encoding",DlgDocDocType:"Document Type Heading",DlgDocDocTypeOther:"Other Document Type Heading",DlgDocIncXHTML:"Include XHTML Declarations",DlgDocBgColor:"Background Color",DlgDocBgImage:"Background Image URL",DlgDocBgNoScroll:"Nonscrolling Background",DlgDocCText:"Text",DlgDocCLink:"Link",DlgDocCVisited:"Visited Link",DlgDocCActive:"Active Link",DlgDocMargins:"Page Margins",DlgDocMaTop:"Top",DlgDocMaLeft:"Left",DlgDocMaRight:"Right",DlgDocMaBottom:"Bottom",DlgDocMeIndex:"Document Indexing Keywords (comma separated)",DlgDocMeDescr:"Document Description",DlgDocMeAuthor:"Author",DlgDocMeCopy:"Copyright",DlgDocPreview:"Preview",Templates:"Templates",DlgTemplatesTitle:"Content Templates",DlgTemplatesSelMsg:"Please select the template to open in the editor (the actual contents will be lost):",DlgTemplatesLoading:"Loading templates list. Please wait...",DlgTemplatesNoTpl:"(No templates defined)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"About",DlgAboutBrowserInfoTab:"Browser Info",DlgAboutLicenseTab:"License",DlgAboutVersion:"verzija",DlgAboutInfo:"Za vi??e informacija posjetite",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/ca.js b/horde/services/editor/fckeditor/editor/lang/ca.js
deleted file mode 100644
index ae623460e..000000000
--- a/horde/services/editor/fckeditor/editor/lang/ca.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Redueix la barra d'eines",ToolbarExpand:"Amplia la barra d'eines",Save:"Desa",NewPage:"Nova P??gina",Preview:"Visualitzaci?? pr??via",Cut:"Retalla",Copy:"Copia",Paste:"Enganxa",PasteText:"Enganxa com a text no formatat",PasteWord:"Enganxa des del Word",Print:"Imprimeix",SelectAll:"Selecciona-ho tot",RemoveFormat:"Elimina Format",InsertLinkLbl:"Enlla??",InsertLink:"Insereix/Edita enlla??",RemoveLink:"Elimina l'enlla??",VisitLink:"Obre l'enlla??",Anchor:"Insereix/Edita ??ncora",AnchorDelete:"Elimina ??ncora",InsertImageLbl:"Imatge",InsertImage:"Insereix/Edita imatge",InsertFlashLbl:"Flash",InsertFlash:"Insereix/Edita Flash",InsertTableLbl:"Taula",InsertTable:"Insereix/Edita taula",InsertLineLbl:"L??nia",InsertLine:"Insereix l??nia horitzontal",InsertSpecialCharLbl:"Car??cter Especial",InsertSpecialChar:"Insereix car??cter especial",InsertSmileyLbl:"Icona",InsertSmiley:"Insereix icona",About:"Quant a l'FCKeditor",Bold:"Negreta",Italic:"Cursiva",Underline:"Subratllat",StrikeThrough:"Barrat",Subscript:"Sub??ndex",Superscript:"Super??ndex",LeftJustify:"Alinia a l'esquerra",CenterJustify:"Centrat",RightJustify:"Alinia a la dreta",BlockJustify:"Justificat",DecreaseIndent:"Redueix el sagnat",IncreaseIndent:"Augmenta el sagnat",Blockquote:"Bloc de cita",CreateDiv:"Crea un contenidor Div",EditDiv:"Edita el contenidor Div",DeleteDiv:"Elimina el contenidor Div",Undo:"Desf??s",Redo:"Ref??s",NumberedListLbl:"Llista numerada",NumberedList:"Numeraci?? activada/desactivada",BulletedListLbl:"Llista de pics",BulletedList:"Pics activats/descativats",ShowTableBorders:"Mostra les vores de les taules",ShowDetails:"Mostra detalls",Style:"Estil",FontFormat:"Format",Font:"Tipus de lletra",FontSize:"Mida",TextColor:"Color de Text",BGColor:"Color de Fons",Source:"Codi font",Find:"Cerca",Replace:"Reempla??a",SpellCheck:"Revisa l'ortografia",UniversalKeyboard:"Teclat universal",PageBreakLbl:"Salt de p??gina",PageBreak:"Insereix salt de p??gina",Form:"Formulari",Checkbox:"Casella de verificaci??",RadioButton:"Bot?? d'opci??",TextField:"Camp de text",Textarea:"??rea de text",HiddenField:"Camp ocult",Button:"Bot??",SelectionField:"Camp de selecci??",ImageButton:"Bot?? d'imatge",FitWindow:"Maximiza la mida de l'editor",ShowBlocks:"Mostra els blocs",EditLink:"Edita l'enlla??",CellCM:"Cel??la",RowCM:"Fila",ColumnCM:"Columna",InsertRowAfter:"Insereix fila darrera",InsertRowBefore:"Insereix fila abans de",DeleteRows:"Suprimeix una fila",InsertColumnAfter:"Insereix columna darrera",InsertColumnBefore:"Insereix columna abans de",DeleteColumns:"Suprimeix una columna",InsertCellAfter:"Insereix cel??la darrera",InsertCellBefore:"Insereix cel??la abans de",DeleteCells:"Suprimeix les cel??les",MergeCells:"Fusiona les cel??les",MergeRight:"Fusiona cap a la dreta",MergeDown:"Fusiona cap avall",HorizontalSplitCell:"Divideix la cel??la horitzontalment",VerticalSplitCell:"Divideix la cel??la verticalment",TableDelete:"Suprimeix la taula",CellProperties:"Propietats de la cel??la",TableProperties:"Propietats de la taula",ImageProperties:"Propietats de la imatge",FlashProperties:"Propietats del Flash",AnchorProp:"Propietats de l'??ncora",ButtonProp:"Propietats del bot??",CheckboxProp:"Propietats de la casella de verificaci??",HiddenFieldProp:"Propietats del camp ocult",RadioButtonProp:"Propietats del bot?? d'opci??",ImageButtonProp:"Propietats del bot?? d'imatge",TextFieldProp:"Propietats del camp de text",SelectionFieldProp:"Propietats del camp de selecci??",TextareaProp:"Propietats de l'??rea de text",FormProp:"Propietats del formulari",FontFormats:"Normal;Formatejat;Adre??a;Encap??alament 1;Encap??alament 2;Encap??alament 3;Encap??alament 4;Encap??alament 5;Encap??alament 6;Normal (DIV)",ProcessingXHTML:"Processant XHTML. Si us plau esperi...",Done:"Fet",PasteWordConfirm:"El text que voleu enganxar sembla provenir de Word. Voleu netejar aquest text abans que sigui enganxat?",NotCompatiblePaste:"Aquesta funci?? ??s disponible per a Internet Explorer versi?? 5.5 o superior. Voleu enganxar sense netejar?",UnknownToolbarItem:'Element de la barra d\'eines desconegut "%1"',UnknownCommand:'Nom de comanda desconegut "%1"',NotImplemented:"M??tode no implementat",UnknownToolbarSet:'Conjunt de barra d\'eines "%1" inexistent',NoActiveX:"Les prefer??ncies del navegador poden limitar algunes funcions d'aquest editor. Cal habilitar l'opci?? \"Executa controls ActiveX i plug-ins\". Poden sorgir errors i poden faltar algunes funcions.",BrowseServerBlocked:"El visualitzador de recursos no s'ha pogut obrir. Assegura't de que els bloquejos de finestres emergents estan desactivats.",DialogBlocked:"No ha estat possible obrir una finestra de di??leg. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.",VisitLinkBlocked:"No ha estat possible obrir una nova finestra. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.",DlgBtnOK:"D'acord",DlgBtnCancel:"Cancel??la",DlgBtnClose:"Tanca",DlgBtnBrowseServer:"Veure servidor",DlgAdvancedTag:"Avan??at",DlgOpOther:"Altres",DlgInfoTab:"Info",DlgAlertUrl:"Si us plau, afegiu la URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Direcci?? de l'idioma",DlgGenLangDirLtr:"D'esquerra a dreta (LTR)",DlgGenLangDirRtl:"De dreta a esquerra (RTL)",DlgGenLangCode:"Codi d'idioma",DlgGenAccessKey:"Clau d'acc??s",DlgGenName:"Nom",DlgGenTabIndex:"Index de Tab",DlgGenLongDescr:"Descripci?? llarga de la URL",DlgGenClass:"Classes del full d'estil",DlgGenTitle:"T??tol consultiu",DlgGenContType:"Tipus de contingut consultiu",DlgGenLinkCharset:"Conjunt de car??cters font enlla??at",DlgGenStyle:"Estil",DlgImgTitle:"Propietats de la imatge",DlgImgInfoTab:"Informaci?? de la imatge",DlgImgBtnUpload:"Envia-la al servidor",DlgImgURL:"URL",DlgImgUpload:"Puja",DlgImgAlt:"Text alternatiu",DlgImgWidth:"Amplada",DlgImgHeight:"Al??ada",DlgImgLockRatio:"Bloqueja les proporcions",DlgBtnResetSize:"Restaura la mida",DlgImgBorder:"Vora",DlgImgHSpace:"Espaiat horit.",DlgImgVSpace:"Espaiat vert.",DlgImgAlign:"Alineaci??",DlgImgAlignLeft:"Ajusta a l'esquerra",DlgImgAlignAbsBottom:"Abs Bottom",DlgImgAlignAbsMiddle:"Abs Middle",DlgImgAlignBaseline:"Baseline",DlgImgAlignBottom:"Bottom",DlgImgAlignMiddle:"Middle",DlgImgAlignRight:"Ajusta a la dreta",DlgImgAlignTextTop:"Text Top",DlgImgAlignTop:"Top",DlgImgPreview:"Vista pr??via",DlgImgAlertUrl:"Si us plau, escriviu la URL de la imatge",DlgImgLinkTab:"Enlla??",DlgFlashTitle:"Propietats del Flash",DlgFlashChkPlay:"Reproduci?? autom??tica",DlgFlashChkLoop:"Bucle",DlgFlashChkMenu:"Habilita men?? Flash",DlgFlashScale:"Escala",DlgFlashScaleAll:"Mostra-ho tot",DlgFlashScaleNoBorder:"Sense vores",DlgFlashScaleFit:"Mida exacta",DlgLnkWindowTitle:"Enlla??",DlgLnkInfoTab:"Informaci?? de l'enlla??",DlgLnkTargetTab:"Dest??",DlgLnkType:"Tipus d'enlla??",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"??ncora en aquesta p??gina",DlgLnkTypeEMail:"Correu electr??nic",DlgLnkProto:"Protocol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Selecciona una ??ncora",DlgLnkAnchorByName:"Per nom d'??ncora",DlgLnkAnchorById:"Per Id d'element",DlgLnkNoAnchors:"(No hi ha ??ncores disponibles en aquest document)",DlgLnkEMail:"Adre??a de correu electr??nic",DlgLnkEMailSubject:"Assumpte del missatge",DlgLnkEMailBody:"Cos del missatge",DlgLnkUpload:"Puja",DlgLnkBtnUpload:"Envia al servidor",DlgLnkTarget:"Dest??",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nova finestra (_blank)",DlgLnkTargetParent:"Finestra pare (_parent)",DlgLnkTargetSelf:"Mateixa finestra (_self)",DlgLnkTargetTop:"Finestra Major (_top)",DlgLnkTargetFrameName:"Nom del marc de dest??",DlgLnkPopWinName:"Nom finestra popup",DlgLnkPopWinFeat:"Caracter??stiques finestra popup",DlgLnkPopResize:"Redimensionable",DlgLnkPopLocation:"Barra d'adre??a",DlgLnkPopMenu:"Barra de men??",DlgLnkPopScroll:"Barres d'scroll",DlgLnkPopStatus:"Barra d'estat",DlgLnkPopToolbar:"Barra d'eines",DlgLnkPopFullScrn:"Pantalla completa (IE)",DlgLnkPopDependent:"Depenent (Netscape)",DlgLnkPopWidth:"Amplada",DlgLnkPopHeight:"Al??ada",DlgLnkPopLeft:"Posici?? esquerra",DlgLnkPopTop:"Posici?? dalt",DlnLnkMsgNoUrl:"Si us plau, escrigui l'enlla?? URL",DlnLnkMsgNoEMail:"Si us plau, escrigui l'adre??a correu electr??nic",DlnLnkMsgNoAnchor:"Si us plau, escrigui l'??ncora",DlnLnkMsgInvPopName:"El nom de la finestra emergent ha de comen??ar amb una lletra i no pot tenir espais",DlgColorTitle:"Selecciona el color",DlgColorBtnClear:"Neteja",DlgColorHighlight:"Real??a",DlgColorSelected:"Selecciona",DlgSmileyTitle:"Insereix una icona",DlgSpecialCharTitle:"Selecciona el car??cter especial",DlgTableTitle:"Propietats de la taula",DlgTableRows:"Files",DlgTableColumns:"Columnes",DlgTableBorder:"Mida vora",DlgTableAlign:"Alineaci??",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Esquerra",DlgTableAlignCenter:"Centre",DlgTableAlignRight:"Dreta",DlgTableWidth:"Amplada",DlgTableWidthPx:"p??xels",DlgTableWidthPc:"percentatge",DlgTableHeight:"Al??ada",DlgTableCellSpace:"Espaiat de cel??les",DlgTableCellPad:"Encoixinament de cel??les",DlgTableCaption:"T??tol",DlgTableSummary:"Resum",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Propietats de la cel??la",DlgCellWidth:"Amplada",DlgCellWidthPx:"p??xels",DlgCellWidthPc:"percentatge",DlgCellHeight:"Al??ada",DlgCellWordWrap:"Ajust de paraula",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Si",DlgCellWordWrapNo:"No",DlgCellHorAlign:"Alineaci?? horitzontal",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Esquerra",DlgCellHorAlignCenter:"Centre",DlgCellHorAlignRight:"Dreta",DlgCellVerAlign:"Alineaci?? vertical",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Top",DlgCellVerAlignMiddle:"Middle",DlgCellVerAlignBottom:"Bottom",DlgCellVerAlignBaseline:"Baseline",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Rows Span",DlgCellCollSpan:"Columns Span",DlgCellBackColor:"Color de fons",DlgCellBorderColor:"Color de la vora",DlgCellBtnSelect:"Seleccioneu...",DlgFindAndReplaceTitle:"Cerca i reempla??a",DlgFindTitle:"Cerca",DlgFindFindBtn:"Cerca",DlgFindNotFoundMsg:"El text especificat no s'ha trobat.",DlgReplaceTitle:"Reempla??a",DlgReplaceFindLbl:"Cerca:",DlgReplaceReplaceLbl:"Rempla??a amb:",DlgReplaceCaseChk:"Distingeix maj??scules/min??scules",DlgReplaceReplaceBtn:"Reempla??a",DlgReplaceReplAllBtn:"Reempla??a-ho tot",DlgReplaceWordChk:"Nom??s paraules completes",PasteErrorCut:"La seguretat del vostre navegador no permet executar autom??ticament les operacions de retallar. Si us plau, utilitzeu el teclat (Ctrl+X).",PasteErrorCopy:"La seguretat del vostre navegador no permet executar autom??ticament les operacions de copiar. Si us plau, utilitzeu el teclat (Ctrl+C).",PasteAsText:"Enganxa com a text no formatat",PasteFromWord:"Enganxa com a Word",DlgPasteMsg2:"Si us plau, enganxeu dins del seg??ent camp utilitzant el teclat (Ctrl+V) i premeu OK.",DlgPasteSec:"A causa de la configuraci?? de seguretat del vostre navegador, l'editor no pot accedir al porta-retalls directament. Enganxeu-ho un altre cop en aquesta finestra.",DlgPasteIgnoreFont:"Ignora definicions de font",DlgPasteRemoveStyles:"Elimina definicions d'estil",ColorAutomatic:"Autom??tic",ColorMoreColors:"M??s colors...",DocProps:"Propietats del document",DlgAnchorTitle:"Propietats de l'??ncora",DlgAnchorName:"Nom de l'??ncora",DlgAnchorErrorName:"Si us plau, escriviu el nom de l'ancora",DlgSpellNotInDic:"No ??s al diccionari",DlgSpellChangeTo:"Reempla??a amb",DlgSpellBtnIgnore:"Ignora",DlgSpellBtnIgnoreAll:"Ignora-les totes",DlgSpellBtnReplace:"Canvia",DlgSpellBtnReplaceAll:"Canvia-les totes",DlgSpellBtnUndo:"Desf??s",DlgSpellNoSuggestions:"Cap suggeriment",DlgSpellProgress:"Verificaci?? ortogr??fica en curs...",DlgSpellNoMispell:"Verificaci?? ortogr??fica acabada: no hi ha cap paraula mal escrita",DlgSpellNoChanges:"Verificaci?? ortogr??fica: no s'ha canviat cap paraula",DlgSpellOneChange:"Verificaci?? ortogr??fica: s'ha canviat una paraula",DlgSpellManyChanges:"Verificaci?? ortogr??fica: s'han canviat %1 paraules",IeSpellDownload:"Verificaci?? ortogr??fica no instal??lada. Voleu descarregar-ho ara?",DlgButtonText:"Text (Valor)",DlgButtonType:"Tipus",DlgButtonTypeBtn:"Bot??",DlgButtonTypeSbm:"Transmet formulari",DlgButtonTypeRst:"Reinicia formulari",DlgCheckboxName:"Nom",DlgCheckboxValue:"Valor",DlgCheckboxSelected:"Seleccionat",DlgFormName:"Nom",DlgFormAction:"Acci??",DlgFormMethod:"M??tode",DlgSelectName:"Nom",DlgSelectValue:"Valor",DlgSelectSize:"Mida",DlgSelectLines:"L??nies",DlgSelectChkMulti:"Permet m??ltiples seleccions",DlgSelectOpAvail:"Opcions disponibles",DlgSelectOpText:"Text",DlgSelectOpValue:"Valor",DlgSelectBtnAdd:"Afegeix",DlgSelectBtnModify:"Modifica",DlgSelectBtnUp:"Amunt",DlgSelectBtnDown:"Avall",DlgSelectBtnSetValue:"Selecciona per defecte",DlgSelectBtnDelete:"Elimina",DlgTextareaName:"Nom",DlgTextareaCols:"Columnes",DlgTextareaRows:"Files",DlgTextName:"Nom",DlgTextValue:"Valor",DlgTextCharWidth:"Amplada",DlgTextMaxChars:"Nombre m??xim de car??cters",DlgTextType:"Tipus",DlgTextTypeText:"Text",DlgTextTypePass:"Contrasenya",DlgHiddenName:"Nom",DlgHiddenValue:"Valor",BulletedListProp:"Propietats de la llista de pics",NumberedListProp:"Propietats de llista numerada",DlgLstStart:"Inici",DlgLstType:"Tipus",DlgLstTypeCircle:"Cercle",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"Quadrat",DlgLstTypeNumbers:"N??meros (1, 2, 3)",DlgLstTypeLCase:"Lletres min??scules (a, b, c)",DlgLstTypeUCase:"Lletres maj??scules (A, B, C)",DlgLstTypeSRoman:"N??meros romans en min??scules (i, ii, iii)",DlgLstTypeLRoman:"N??meros romans en maj??scules (I, II, III)",DlgDocGeneralTab:"General",DlgDocBackTab:"Fons",DlgDocColorsTab:"Colors i marges",DlgDocMetaTab:"Metadades",DlgDocPageTitle:"T??tol de la p??gina",DlgDocLangDir:"Direcci?? idioma",DlgDocLangDirLTR:"Esquerra a dreta (LTR)",DlgDocLangDirRTL:"Dreta a esquerra (RTL)",DlgDocLangCode:"Codi d'idioma",DlgDocCharSet:"Codificaci?? de conjunt de car??cters",DlgDocCharSetCE:"Centreeuropeu",DlgDocCharSetCT:"Xin??s tradicional (Big5)",DlgDocCharSetCR:"Cir??l??lic",DlgDocCharSetGR:"Grec",DlgDocCharSetJP:"Japon??s",DlgDocCharSetKR:"Core??",DlgDocCharSetTR:"Turc",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Europeu occidental",DlgDocCharSetOther:"Una altra codificaci?? de car??cters",DlgDocDocType:"Cap??alera de tipus de document",DlgDocDocTypeOther:"Un altra cap??alera de tipus de document",DlgDocIncXHTML:"Incloure declaracions XHTML",DlgDocBgColor:"Color de fons",DlgDocBgImage:"URL de la imatge de fons",DlgDocBgNoScroll:"Fons fixe",DlgDocCText:"Text",DlgDocCLink:"Enlla??",DlgDocCVisited:"Enlla?? visitat",DlgDocCActive:"Enlla?? actiu",DlgDocMargins:"Marges de p??gina",DlgDocMaTop:"Cap",DlgDocMaLeft:"Esquerra",DlgDocMaRight:"Dreta",DlgDocMaBottom:"Peu",DlgDocMeIndex:"Mots clau per a indexaci?? (separats per coma)",DlgDocMeDescr:"Descripci?? del document",DlgDocMeAuthor:"Autor",DlgDocMeCopy:"Copyright",DlgDocPreview:"Vista pr??via",Templates:"Plantilles",DlgTemplatesTitle:"Contingut plantilles",DlgTemplatesSelMsg:"Si us plau, seleccioneu la plantilla per obrir a l'editor (el contingut actual no ser?? enregistrat):",DlgTemplatesLoading:"Carregant la llista de plantilles. Si us plau, espereu...",DlgTemplatesNoTpl:"(No hi ha plantilles definides)",DlgTemplatesReplace:"Reempla??a el contingut actual",DlgAboutAboutTab:"Quant a",DlgAboutBrowserInfoTab:"Informaci?? del navegador",DlgAboutLicenseTab:"Llic??ncia",DlgAboutVersion:"versi??",DlgAboutInfo:"Per a m??s informaci?? aneu a",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Avan??at",DlgDivStyle:"Estil",DlgDivInlineStyle:"Estil en l??nia"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/cs.js b/horde/services/editor/fckeditor/editor/lang/cs.js
deleted file mode 100644
index a62882885..000000000
--- a/horde/services/editor/fckeditor/editor/lang/cs.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Skr??t panel n??stroj??",ToolbarExpand:"Zobrazit panel n??stroj??",Save:"Ulo??it",NewPage:"Nov?? str??nka",Preview:"N??hled",Cut:"Vyjmout",Copy:"Kop??rovat",Paste:"Vlo??it",PasteText:"Vlo??it jako ??ist?? text",PasteWord:"Vlo??it z Wordu",Print:"Tisk",SelectAll:"Vybrat v??e",RemoveFormat:"Odstranit form??tov??n??",InsertLinkLbl:"Odkaz",InsertLink:"Vlo??it/zm??nit odkaz",RemoveLink:"Odstranit odkaz",VisitLink:"Otev????t odkaz",Anchor:"Vlo????t/zm??nit z??lo??ku",AnchorDelete:"Odstranit kotvu",InsertImageLbl:"Obr??zek",InsertImage:"Vlo??it/zm??nit obr??zek",InsertFlashLbl:"Flash",InsertFlash:"Vlo??it/Upravit Flash",InsertTableLbl:"Tabulka",InsertTable:"Vlo??it/zm??nit tabulku",InsertLineLbl:"Linka",InsertLine:"Vlo??it vodorovnou linku",InsertSpecialCharLbl:"Speci??ln?? znaky",InsertSpecialChar:"Vlo??it speci??ln?? znaky",InsertSmileyLbl:"Smajl??ky",InsertSmiley:"Vlo??it smajl??k",About:"O aplikaci FCKeditor",Bold:"Tu??n??",Italic:"Kurz??va",Underline:"Podtr??en??",StrikeThrough:"P??e??krtnut??",Subscript:"Doln?? index",Superscript:"Horn?? index",LeftJustify:"Zarovnat vlevo",CenterJustify:"Zarovnat na st??ed",RightJustify:"Zarovnat vpravo",BlockJustify:"Zarovnat do bloku",DecreaseIndent:"Zmen??it odsazen??",IncreaseIndent:"Zv??t??it odsazen??",Blockquote:"Citace",CreateDiv:"Vytvo??it Div kontejner",EditDiv:"Upravit Div kontejner",DeleteDiv:"Odstranit Div kontejner",Undo:"Zp??t",Redo:"Znovu",NumberedListLbl:"????slov??n??",NumberedList:"Vlo??it/odstranit ????slovan?? seznam",BulletedListLbl:"Odr????ky",BulletedList:"Vlo??it/odstranit odr????ky",ShowTableBorders:"Zobrazit okraje tabulek",ShowDetails:"Zobrazit podrobnosti",Style:"Styl",FontFormat:"Form??t",Font:"P??smo",FontSize:"Velikost",TextColor:"Barva textu",BGColor:"Barva pozad??",Source:"Zdroj",Find:"Hledat",Replace:"Nahradit",SpellCheck:"Zkontrolovat pravopis",UniversalKeyboard:"Univerz??ln?? kl??vesnice",PageBreakLbl:"Konec str??nky",PageBreak:"Vlo??it konec str??nky",Form:"Formul????",Checkbox:"Za??krt??vac?? pol????ko",RadioButton:"P??ep??na??",TextField:"Textov?? pole",Textarea:"Textov?? oblast",HiddenField:"Skryt?? pole",Button:"Tla????tko",SelectionField:"Seznam",ImageButton:"Obr??zkov?? tla????tko",FitWindow:"Maximalizovat velikost editoru",ShowBlocks:"Uk??zat bloky",EditLink:"Zm??nit odkaz",CellCM:"Bu??ka",RowCM:"????dek",ColumnCM:"Sloupec",InsertRowAfter:"Vlo??it ????dek za",InsertRowBefore:"Vlo??it ????dek p??ed",DeleteRows:"Smazat ????dky",InsertColumnAfter:"Vlo??it sloupec za",InsertColumnBefore:"Vlo??it sloupec p??ed",DeleteColumns:"Smazat sloupec",InsertCellAfter:"Vlo??it bu??ku za",InsertCellBefore:"Vlo??it bu??ku p??ed",DeleteCells:"Smazat bu??ky",MergeCells:"Slou??it bu??ky",MergeRight:"Slou??it doprava",MergeDown:"Slou??it dol??",HorizontalSplitCell:"Rozd??lit bu??ky vodorovn??",VerticalSplitCell:"Rozd??lit bu??ky svisle",TableDelete:"Smazat tabulku",CellProperties:"Vlastnosti bu??ky",TableProperties:"Vlastnosti tabulky",ImageProperties:"Vlastnosti obr??zku",FlashProperties:"Vlastnosti Flashe",AnchorProp:"Vlastnosti z??lo??ky",ButtonProp:"Vlastnosti tla????tka",CheckboxProp:"Vlastnosti za??krt??vac??ho pol????ka",HiddenFieldProp:"Vlastnosti skryt??ho pole",RadioButtonProp:"Vlastnosti p??ep??na??e",ImageButtonProp:"Vlastnost?? obr??zkov??ho tla????tka",TextFieldProp:"Vlastnosti textov??ho pole",SelectionFieldProp:"Vlastnosti seznamu",TextareaProp:"Vlastnosti textov?? oblasti",FormProp:"Vlastnosti formul????e",FontFormats:"Norm??ln??;Naform??tov??no;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6;Norm??ln?? (DIV)",ProcessingXHTML:"Prob??h?? zpracov??n?? XHTML. Pros??m ??ekejte...",Done:"Hotovo",PasteWordConfirm:"Jak je vid??t, vkl??dan?? text je kop??rov??n z Wordu. Chcete jej p??ed vlo??en??m vy??istit?",NotCompatiblePaste:"Tento p????kaz je dostupn?? pouze v Internet Exploreru verze 5.5 nebo vy??????. Chcete vlo??it text bez vy??i??t??n???",UnknownToolbarItem:'Nezn??m?? polo??ka panelu n??stroj?? "%1"',UnknownCommand:'Nezn??m?? p????kaz "%1"',NotImplemented:"P????kaz nen?? implementov??n",UnknownToolbarSet:'Panel n??stroj?? "%1" neexistuje',NoActiveX:'Nastaven?? bezpe??nosti Va??eho prohl????e??e omezuje funk??nost n??kter??ch jeho mo??nost??. Je t??eba zapnout volbu "Spou??t??t ovl??d??ac?? prvky ActiveX a moduly plug-in", jinak nebude mo??n?? vyu????vat v??echny dosputn?? schopnosti editoru.',BrowseServerBlocked:"Pr??zkumn??k zdroj?? nelze otev????t. Prov????te, zda nem??te aktivov??no blokov??n?? popup oken.",DialogBlocked:"Nelze otev????t dialogov?? okno. Prov????te, zda nem??te aktivov??no blokov??n?? popup oken.",VisitLinkBlocked:"Nen?? mo??n?? otev????t nov?? okno. Prov????te, zda v??echny n??stroje pro blokov??n?? vyskakovac??ch oken jsou vypnuty.",DlgBtnOK:"OK",DlgBtnCancel:"Storno",DlgBtnClose:"Zav????t",DlgBtnBrowseServer:"Vybrat na serveru",DlgAdvancedTag:"Roz??????en??",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Pros??m vlo??te URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Orientace jazyka",DlgGenLangDirLtr:"Zleva do prava (LTR)",DlgGenLangDirRtl:"Zprava do leva (RTL)",DlgGenLangCode:"K??d jazyka",DlgGenAccessKey:"P????stupov?? kl????",DlgGenName:"Jm??no",DlgGenTabIndex:"Po??ad?? prvku",DlgGenLongDescr:"Dlouh?? popis URL",DlgGenClass:"T????da stylu",DlgGenTitle:"Pomocn?? titulek",DlgGenContType:"Pomocn?? typ obsahu",DlgGenLinkCharset:"P??i??azen?? znakov?? sada",DlgGenStyle:"Styl",DlgImgTitle:"Vlastnosti obr??zku",DlgImgInfoTab:"Informace o obr??zku",DlgImgBtnUpload:"Odeslat na server",DlgImgURL:"URL",DlgImgUpload:"Odeslat",DlgImgAlt:"Alternativn?? text",DlgImgWidth:"??????ka",DlgImgHeight:"V????ka",DlgImgLockRatio:"Z??mek",DlgBtnResetSize:"P??vodn?? velikost",DlgImgBorder:"Okraje",DlgImgHSpace:"H-mezera",DlgImgVSpace:"V-mezera",DlgImgAlign:"Zarovn??n??",DlgImgAlignLeft:"Vlevo",DlgImgAlignAbsBottom:"Zcela dol??",DlgImgAlignAbsMiddle:"Doprost??ed",DlgImgAlignBaseline:"Na ????a????",DlgImgAlignBottom:"Dol??",DlgImgAlignMiddle:"Na st??ed",DlgImgAlignRight:"Vpravo",DlgImgAlignTextTop:"Na horn?? okraj textu",DlgImgAlignTop:"Nahoru",DlgImgPreview:"N??hled",DlgImgAlertUrl:"Zadejte pros??m URL obr??zku",DlgImgLinkTab:"Odkaz",DlgFlashTitle:"Vlastnosti Flashe",DlgFlashChkPlay:"Automatick?? spu??t??n??",DlgFlashChkLoop:"Opakov??n??",DlgFlashChkMenu:"Nab??dka Flash",DlgFlashScale:"Zobrazit",DlgFlashScaleAll:"Zobrazit v??e",DlgFlashScaleNoBorder:"Bez okraje",DlgFlashScaleFit:"P??izp??sobit",DlgLnkWindowTitle:"Odkaz",DlgLnkInfoTab:"Informace o odkazu",DlgLnkTargetTab:"C??l",DlgLnkType:"Typ odkazu",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Kotva v t??to str??nce",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protokol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Vybrat kotvu",DlgLnkAnchorByName:"Podle jm??na kotvy",DlgLnkAnchorById:"Podle Id objektu",DlgLnkNoAnchors:"(Ve str??nce nen?? definov??na ????dn?? kotva!)",DlgLnkEMail:"E-Mailov?? adresa",DlgLnkEMailSubject:"P??edm??t zpr??vy",DlgLnkEMailBody:"T??lo zpr??vy",DlgLnkUpload:"Odeslat",DlgLnkBtnUpload:"Odeslat na Server",DlgLnkTarget:"C??l",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nov?? okno (_blank)",DlgLnkTargetParent:"Rodi??ovsk?? okno (_parent)",DlgLnkTargetSelf:"Stejn?? okno (_self)",DlgLnkTargetTop:"Hlavn?? okno (_top)",DlgLnkTargetFrameName:"N??zev c??lov??ho r??mu",DlgLnkPopWinName:"N??zev vyskakovac??ho okna",DlgLnkPopWinFeat:"Vlastnosti vyskakovac??ho okna",DlgLnkPopResize:"M??niteln?? velikost",DlgLnkPopLocation:"Panel um??st??n??",DlgLnkPopMenu:"Panel nab??dky",DlgLnkPopScroll:"Posuvn??ky",DlgLnkPopStatus:"Stavov?? ????dek",DlgLnkPopToolbar:"Panel n??stroj??",DlgLnkPopFullScrn:"Cel?? obrazovka (IE)",DlgLnkPopDependent:"Z??vislost (Netscape)",DlgLnkPopWidth:"??????ka",DlgLnkPopHeight:"V????ka",DlgLnkPopLeft:"Lev?? okraj",DlgLnkPopTop:"Horn?? okraj",DlnLnkMsgNoUrl:"Zadejte pros??m URL odkazu",DlnLnkMsgNoEMail:"Zadejte pros??m e-mailovou adresu",DlnLnkMsgNoAnchor:"Vyberte pros??m kotvu",DlnLnkMsgInvPopName:"N??zev vyskakovac??ho okna mus?? za????nat p??smenem a nesm?? obsahovat mezery",DlgColorTitle:"V??b??r barvy",DlgColorBtnClear:"Vymazat",DlgColorHighlight:"Zv??razn??n??",DlgColorSelected:"Vybran??",DlgSmileyTitle:"Vkl??d??n?? smajl??k??",DlgSpecialCharTitle:"V??b??r speci??ln??ho znaku",DlgTableTitle:"Vlastnosti tabulky",DlgTableRows:"????dky",DlgTableColumns:"Sloupce",DlgTableBorder:"Ohrani??en??",DlgTableAlign:"Zarovn??n??",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Vlevo",DlgTableAlignCenter:"Na st??ed",DlgTableAlignRight:"Vpravo",DlgTableWidth:"??????ka",DlgTableWidthPx:"bod??",DlgTableWidthPc:"procent",DlgTableHeight:"V????ka",DlgTableCellSpace:"Vzd??lenost bun??k",DlgTableCellPad:"Odsazen?? obsahu",DlgTableCaption:"Popis",DlgTableSummary:"Souhrn",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Vlastnosti bu??ky",DlgCellWidth:"??????ka",DlgCellWidthPx:"bod??",DlgCellWidthPc:"procent",DlgCellHeight:"V????ka",DlgCellWordWrap:"Zalamov??n??",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Ano",DlgCellWordWrapNo:"Ne",DlgCellHorAlign:"Vodorovn?? zarovn??n??",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Vlevo",DlgCellHorAlignCenter:"Na st??ed",DlgCellHorAlignRight:"Vpravo",DlgCellVerAlign:"Svisl?? zarovn??n??",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Nahoru",DlgCellVerAlignMiddle:"Doprost??ed",DlgCellVerAlignBottom:"Dol??",DlgCellVerAlignBaseline:"Na ????a????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Slou??en?? ????dky",DlgCellCollSpan:"Slou??en?? sloupce",DlgCellBackColor:"Barva pozad??",DlgCellBorderColor:"Barva ohrani??en??",DlgCellBtnSelect:"V??b??r...",DlgFindAndReplaceTitle:"Naj??t a nahradit",DlgFindTitle:"Hledat",DlgFindFindBtn:"Hledat",DlgFindNotFoundMsg:"Hledan?? text nebyl nalezen.",DlgReplaceTitle:"Nahradit",DlgReplaceFindLbl:"Co hledat:",DlgReplaceReplaceLbl:"????m nahradit:",DlgReplaceCaseChk:"Rozli??ovat velikost p??sma",DlgReplaceReplaceBtn:"Nahradit",DlgReplaceReplAllBtn:"Nahradit v??e",DlgReplaceWordChk:"Pouze cel?? slova",PasteErrorCut:"Bezpe??nostn?? nastaven?? Va??eho prohl????e??e nedovoluj?? editoru spustit funkci pro vyjmut?? zvolen??ho textu do schr??nky. Pros??m vyjm??te zvolen?? text do schr??nky pomoc?? kl??vesnice (Ctrl+X).",PasteErrorCopy:"Bezpe??nostn?? nastaven?? Va??eho prohl????e??e nedovoluj?? editoru spustit funkci pro kop??rov??n?? zvolen??ho textu do schr??nky. Pros??m zkop??rujte zvolen?? text do schr??nky pomoc?? kl??vesnice (Ctrl+C).",PasteAsText:"Vlo??it jako ??ist?? text",PasteFromWord:"Vlo??it text z Wordu",DlgPasteMsg2:"Do n??sleduj??c??ho pole vlo??te po??adovan?? obsah pomoc?? kl??vesnice (Ctrl+V) a stiskn??te OK.",DlgPasteSec:"Z d??vod?? nastaven?? bezpe??nosti Va??eho prohl????e??e nem????e editor p??istupovat p????mo do schr??nky. Obsah schr??nky pros??m vlo??te znovu do tohoto okna.",DlgPasteIgnoreFont:"Ignorovat p??smo",DlgPasteRemoveStyles:"Odstranit styly",ColorAutomatic:"Automaticky",ColorMoreColors:"V??ce barev...",DocProps:"Vlastnosti dokumentu",DlgAnchorTitle:"Vlastnosti z??lo??ky",DlgAnchorName:"N??zev z??lo??ky",DlgAnchorErrorName:"Zadejte pros??m n??zev z??lo??ky",DlgSpellNotInDic:"Nen?? ve slovn??ku",DlgSpellChangeTo:"Zm??nit na",DlgSpellBtnIgnore:"P??esko??it",DlgSpellBtnIgnoreAll:"P??eskakovat v??e",DlgSpellBtnReplace:"Zam??nit",DlgSpellBtnReplaceAll:"Zam????ovat v??e",DlgSpellBtnUndo:"Zp??t",DlgSpellNoSuggestions:"- ????dn?? n??vrhy -",DlgSpellProgress:"Prob??h?? kontrola pravopisu...",DlgSpellNoMispell:"Kontrola pravopisu dokon??ena: ????dn?? pravopisn?? chyby nenalezeny",DlgSpellNoChanges:"Kontrola pravopisu dokon??ena: Beze zm??n",DlgSpellOneChange:"Kontrola pravopisu dokon??ena: Jedno slovo zm??n??no",DlgSpellManyChanges:"Kontrola pravopisu dokon??ena: %1 slov zm??n??no",IeSpellDownload:"Kontrola pravopisu nen?? nainstalov??na. Chcete ji nyn?? st??hnout?",DlgButtonText:"Popisek",DlgButtonType:"Typ",DlgButtonTypeBtn:"Tla????tko",DlgButtonTypeSbm:"Odeslat",DlgButtonTypeRst:"Obnovit",DlgCheckboxName:"N??zev",DlgCheckboxValue:"Hodnota",DlgCheckboxSelected:"Za??krtnuto",DlgFormName:"N??zev",DlgFormAction:"Akce",DlgFormMethod:"Metoda",DlgSelectName:"N??zev",DlgSelectValue:"Hodnota",DlgSelectSize:"Velikost",DlgSelectLines:"????dk??",DlgSelectChkMulti:"Povolit mnohon??sobn?? v??b??ry",DlgSelectOpAvail:"Dostupn?? nastaven??",DlgSelectOpText:"Text",DlgSelectOpValue:"Hodnota",DlgSelectBtnAdd:"P??idat",DlgSelectBtnModify:"Zm??nit",DlgSelectBtnUp:"Nahoru",DlgSelectBtnDown:"Dol??",DlgSelectBtnSetValue:"Nastavit jako vybranou hodnotu",DlgSelectBtnDelete:"Smazat",DlgTextareaName:"N??zev",DlgTextareaCols:"Sloupc??",DlgTextareaRows:"????dk??",DlgTextName:"N??zev",DlgTextValue:"Hodnota",DlgTextCharWidth:"??????ka ve znac??ch",DlgTextMaxChars:"Maxim??ln?? po??et znak??",DlgTextType:"Typ",DlgTextTypeText:"Text",DlgTextTypePass:"Heslo",DlgHiddenName:"N??zev",DlgHiddenValue:"Hodnota",BulletedListProp:"Vlastnosti odr????ek",NumberedListProp:"Vlastnosti ????slovan??ho seznamu",DlgLstStart:"Za????tek",DlgLstType:"Typ",DlgLstTypeCircle:"Kru??nice",DlgLstTypeDisc:"Kruh",DlgLstTypeSquare:"??tverec",DlgLstTypeNumbers:"????sla (1, 2, 3)",DlgLstTypeLCase:"Mal?? p??smena (a, b, c)",DlgLstTypeUCase:"Velk?? p??smena (A, B, C)",DlgLstTypeSRoman:"Mal?? ????msk?? ????slice (i, ii, iii)",DlgLstTypeLRoman:"Velk?? ????msk?? ????slice (I, II, III)",DlgDocGeneralTab:"Obecn??",DlgDocBackTab:"Pozad??",DlgDocColorsTab:"Barvy a okraje",DlgDocMetaTab:"Metadata",DlgDocPageTitle:"Titulek str??nky",DlgDocLangDir:"Sm??r jazyku",DlgDocLangDirLTR:"Zleva do prava ",DlgDocLangDirRTL:"Zprava doleva",DlgDocLangCode:"K??d jazyku",DlgDocCharSet:"Znakov?? sada",DlgDocCharSetCE:"St??edoevropsk?? jazyky",DlgDocCharSetCT:"Tradi??n?? ????n??tina (Big5)",DlgDocCharSetCR:"Cyrilice",DlgDocCharSetGR:"??e??tina",DlgDocCharSetJP:"Japon??tina",DlgDocCharSetKR:"Korej??tina",DlgDocCharSetTR:"Ture??tina",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Z??padoevropsk?? jazyky",DlgDocCharSetOther:"Dal???? znakov?? sada",DlgDocDocType:"Typ dokumentu",DlgDocDocTypeOther:"Jin?? typ dokumetu",DlgDocIncXHTML:"Zahrnou deklarace XHTML",DlgDocBgColor:"Barva pozad??",DlgDocBgImage:"URL obr??zku na pozad??",DlgDocBgNoScroll:"Nerolovateln?? pozad??",DlgDocCText:"Text",DlgDocCLink:"Odkaz",DlgDocCVisited:"Nav??t??ven?? odkaz",DlgDocCActive:"Vybran?? odkaz",DlgDocMargins:"Okraje str??nky",DlgDocMaTop:"Horn??",DlgDocMaLeft:"Lev??",DlgDocMaRight:"Prav??",DlgDocMaBottom:"Doln??",DlgDocMeIndex:"Kl????ov?? slova (odd??len?? ????rkou)",DlgDocMeDescr:"Popis dokumentu",DlgDocMeAuthor:"Autor",DlgDocMeCopy:"Autorsk?? pr??va",DlgDocPreview:"N??hled",Templates:"??ablony",DlgTemplatesTitle:"??ablony obsahu",DlgTemplatesSelMsg:"Pros??m zvolte ??ablonu pro otev??en?? v editoru (aktu??ln?? obsah editoru bude ztracen):",DlgTemplatesLoading:"Nahr??v??m p??eheld ??ablon. Pros??m ??ekejte...",DlgTemplatesNoTpl:"(Nen?? definov??na ????dn?? ??ablona)",DlgTemplatesReplace:"Nahradit aktu??ln?? obsah",DlgAboutAboutTab:"O aplikaci",DlgAboutBrowserInfoTab:"Informace o prohl????e??i",DlgAboutLicenseTab:"Licence",DlgAboutVersion:"verze",DlgAboutInfo:"V??ce informac?? z??sk??te na",DlgDivGeneralTab:"Obecn??",DlgDivAdvancedTab:"Roz??????en??",DlgDivStyle:"Styl",DlgDivInlineStyle:"Vlo??en?? styl"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/da.js b/horde/services/editor/fckeditor/editor/lang/da.js
deleted file mode 100644
index 3b9712417..000000000
--- a/horde/services/editor/fckeditor/editor/lang/da.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Skjul v??rkt??jslinier",ToolbarExpand:"Vis v??rkt??jslinier",Save:"Gem",NewPage:"Ny side",Preview:"Vis eksempel",Cut:"Klip",Copy:"Kopier",Paste:"Inds??t",PasteText:"Inds??t som ikke-formateret tekst",PasteWord:"Inds??t fra Word",Print:"Udskriv",SelectAll:"V??lg alt",RemoveFormat:"Fjern formatering",InsertLinkLbl:"Hyperlink",InsertLink:"Inds??t/rediger hyperlink",RemoveLink:"Fjern hyperlink",VisitLink:"??bn hyperlink",Anchor:"Inds??t/rediger bogm??rke",AnchorDelete:"Fjern bogm??rke",InsertImageLbl:"Inds??t billede",InsertImage:"Inds??t/rediger billede",InsertFlashLbl:"Flash",InsertFlash:"Inds??t/rediger Flash",InsertTableLbl:"Table",InsertTable:"Inds??t/rediger tabel",InsertLineLbl:"Linie",InsertLine:"Inds??t vandret linie",InsertSpecialCharLbl:"Symbol",InsertSpecialChar:"Inds??t symbol",InsertSmileyLbl:"Smiley",InsertSmiley:"Inds??t smiley",About:"Om FCKeditor",Bold:"Fed",Italic:"Kursiv",Underline:"Understreget",StrikeThrough:"Overstreget",Subscript:"S??nket skrift",Superscript:"H??vet skrift",LeftJustify:"Venstrestillet",CenterJustify:"Centreret",RightJustify:"H??jrestillet",BlockJustify:"Lige margener",DecreaseIndent:"Formindsk indrykning",IncreaseIndent:"For??g indrykning",Blockquote:"Blokcitat",CreateDiv:"Opret div container",EditDiv:"Rediger div container",DeleteDiv:"Fjern div container",Undo:"Fortryd",Redo:"Annuller fortryd",NumberedListLbl:"Talopstilling",NumberedList:"Inds??t/fjern talopstilling",BulletedListLbl:"Punktopstilling",BulletedList:"Inds??t/fjern punktopstilling",ShowTableBorders:"Vis tabelkanter",ShowDetails:"Vis detaljer",Style:"Typografi",FontFormat:"Formatering",Font:"Skrifttype",FontSize:"Skriftst??rrelse",TextColor:"Tekstfarve",BGColor:"Baggrundsfarve",Source:"Kilde",Find:"S??g",Replace:"Erstat",SpellCheck:"Stavekontrol",UniversalKeyboard:"Universaltastatur",PageBreakLbl:"Sidskift",PageBreak:"Inds??t sideskift",Form:"Inds??t formular",Checkbox:"Inds??t afkrydsningsfelt",RadioButton:"Inds??t alternativknap",TextField:"Inds??t tekstfelt",Textarea:"Inds??t tekstboks",HiddenField:"Inds??t skjult felt",Button:"Inds??t knap",SelectionField:"Inds??t liste",ImageButton:"Inds??t billedknap",FitWindow:"Maksimer editor vinduet",ShowBlocks:"Show Blocks",EditLink:"Rediger hyperlink",CellCM:"Celle",RowCM:"R??kke",ColumnCM:"Kolonne",InsertRowAfter:"Inds??t r??kke efter",InsertRowBefore:"Inds??t r??kke f??r",DeleteRows:"Slet r??kke",InsertColumnAfter:"Inds??t kolonne efter",InsertColumnBefore:"Inds??t kolonne f??r",DeleteColumns:"Slet kolonne",InsertCellAfter:"Inds??t celle efter",InsertCellBefore:"Inds??t celle f??r",DeleteCells:"Slet celle",MergeCells:"Flet celler",MergeRight:"Flet til h??jre",MergeDown:"Flet nedad",HorizontalSplitCell:"Del celle vandret",VerticalSplitCell:"Del celle lodret",TableDelete:"Slet tabel",CellProperties:"Egenskaber for celle",TableProperties:"Egenskaber for tabel",ImageProperties:"Egenskaber for billede",FlashProperties:"Egenskaber for Flash",AnchorProp:"Egenskaber for bogm??rke",ButtonProp:"Egenskaber for knap",CheckboxProp:"Egenskaber for afkrydsningsfelt",HiddenFieldProp:"Egenskaber for skjult felt",RadioButtonProp:"Egenskaber for alternativknap",ImageButtonProp:"Egenskaber for billedknap",TextFieldProp:"Egenskaber for tekstfelt",SelectionFieldProp:"Egenskaber for liste",TextareaProp:"Egenskaber for tekstboks",FormProp:"Egenskaber for formular",FontFormats:"Normal;Formateret;Adresse;Overskrift 1;Overskrift 2;Overskrift 3;Overskrift 4;Overskrift 5;Overskrift 6;Normal (DIV)",ProcessingXHTML:"Behandler XHTML...",Done:"F??rdig",PasteWordConfirm:"Den tekst du fors??ger at inds??tte ser ud til at komme fra Word. Vil du rense teksten f??r den inds??ttes?",NotCompatiblePaste:"Denne kommando er tilg??ndelig i Internet Explorer 5.5 eller senere. Vil du inds??tte teksten uden at rense den ?",UnknownToolbarItem:'Ukendt v??rkt??jslinjeobjekt "%1"!',UnknownCommand:'Ukendt kommandonavn "%1"!',NotImplemented:"Kommandoen er ikke implementeret!",UnknownToolbarSet:'V??rkt??jslinjen "%1" eksisterer ikke!',NoActiveX:'Din browsers sikkerhedsindstillinger begr??nser nogle af editorens muligheder. Sl?? "K??r ActiveX-objekter og plug-ins" til, ellers vil du opleve fejl og manglende muligheder.',BrowseServerBlocked:"Browseren kunne ikke ??bne de n??dvendige ressourcer! Sl?? pop-up blokering fra.",DialogBlocked:"Dialogvinduet kunne ikke ??bnes! Sl?? pop-up blokering fra.",VisitLinkBlocked:"Det var ikke muligt at ??bne et nyt vindue. Tjek, at ingen popup-blokkere er aktive.",DlgBtnOK:"OK",DlgBtnCancel:"Annuller",DlgBtnClose:"Luk",DlgBtnBrowseServer:"Gennemse...",DlgAdvancedTag:"Avanceret",DlgOpOther:"",DlgInfoTab:"Generelt",DlgAlertUrl:"Indtast URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Tekstretning",DlgGenLangDirLtr:"Fra venstre mod h??jre (LTR)",DlgGenLangDirRtl:"Fra h??jre mod venstre (RTL)",DlgGenLangCode:"Sprogkode",DlgGenAccessKey:"Genvejstast",DlgGenName:"Navn",DlgGenTabIndex:"Tabulator indeks",DlgGenLongDescr:"Udvidet beskrivelse",DlgGenClass:"Typografiark",DlgGenTitle:"Titel",DlgGenContType:"Indholdstype",DlgGenLinkCharset:"Tegns??t",DlgGenStyle:"Typografi",DlgImgTitle:"Egenskaber for billede",DlgImgInfoTab:"Generelt",DlgImgBtnUpload:"Upload",DlgImgURL:"URL",DlgImgUpload:"Upload",DlgImgAlt:"Alternativ tekst",DlgImgWidth:"Bredde",DlgImgHeight:"H??jde",DlgImgLockRatio:"L??s st??rrelsesforhold",DlgBtnResetSize:"Nulstil st??rrelse",DlgImgBorder:"Ramme",DlgImgHSpace:"HMargen",DlgImgVSpace:"VMargen",DlgImgAlign:"Justering",DlgImgAlignLeft:"Venstre",DlgImgAlignAbsBottom:"Absolut nederst",DlgImgAlignAbsMiddle:"Absolut centreret",DlgImgAlignBaseline:"Grundlinje",DlgImgAlignBottom:"Nederst",DlgImgAlignMiddle:"Centreret",DlgImgAlignRight:"H??jre",DlgImgAlignTextTop:"Toppen af teksten",DlgImgAlignTop:"??verst",DlgImgPreview:"Vis eksempel",DlgImgAlertUrl:"Indtast stien til billedet",DlgImgLinkTab:"Hyperlink",DlgFlashTitle:"Egenskaber for Flash",DlgFlashChkPlay:"Automatisk afspilning",DlgFlashChkLoop:"Gentagelse",DlgFlashChkMenu:"Vis Flash menu",DlgFlashScale:"Skal??r",DlgFlashScaleAll:"Vis alt",DlgFlashScaleNoBorder:"Ingen ramme",DlgFlashScaleFit:"Tilpas st??rrelse",DlgLnkWindowTitle:"Egenskaber for hyperlink",DlgLnkInfoTab:"Generelt",DlgLnkTargetTab:"M??l",DlgLnkType:"Hyperlink type",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Bogm??rke p?? denne side",DlgLnkTypeEMail:"E-mail",DlgLnkProto:"Protokol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"V??lg et anker",DlgLnkAnchorByName:"Efter anker navn",DlgLnkAnchorById:"Efter element Id",DlgLnkNoAnchors:"(Ingen bogm??rker dokumentet)",DlgLnkEMail:"E-mailadresse",DlgLnkEMailSubject:"Emne",DlgLnkEMailBody:"Br??dtekst",DlgLnkUpload:"Upload",DlgLnkBtnUpload:"Upload",DlgLnkTarget:"M??l",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nyt vindue (_blank)",DlgLnkTargetParent:"Overordnet ramme (_parent)",DlgLnkTargetSelf:"Samme vindue (_self)",DlgLnkTargetTop:"Hele vinduet (_top)",DlgLnkTargetFrameName:"Destinationsvinduets navn",DlgLnkPopWinName:"Pop-up vinduets navn",DlgLnkPopWinFeat:"Egenskaber for pop-up",DlgLnkPopResize:"Skalering",DlgLnkPopLocation:"Adresselinje",DlgLnkPopMenu:"Menulinje",DlgLnkPopScroll:"Scrollbars",DlgLnkPopStatus:"Statuslinje",DlgLnkPopToolbar:"V??rkt??jslinje",DlgLnkPopFullScrn:"Fuld sk??rm (IE)",DlgLnkPopDependent:"Koblet/dependent (Netscape)",DlgLnkPopWidth:"Bredde",DlgLnkPopHeight:"H??jde",DlgLnkPopLeft:"Position fra venstre",DlgLnkPopTop:"Position fra toppen",DlnLnkMsgNoUrl:"Indtast hyperlink URL!",DlnLnkMsgNoEMail:"Indtast e-mailaddresse!",DlnLnkMsgNoAnchor:"V??lg bogm??rke!",DlnLnkMsgInvPopName:"Navnet p?? popup'en skal starte med et bogstav og m?? ikke indeholde mellemrum",DlgColorTitle:"V??lg farve",DlgColorBtnClear:"Nulstil",DlgColorHighlight:"Markeret",DlgColorSelected:"Valgt",DlgSmileyTitle:"V??lg smiley",DlgSpecialCharTitle:"V??lg symbol",DlgTableTitle:"Egenskaber for tabel",DlgTableRows:"R??kker",DlgTableColumns:"Kolonner",DlgTableBorder:"Rammebredde",DlgTableAlign:"Justering",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Venstrestillet",DlgTableAlignCenter:"Centreret",DlgTableAlignRight:"H??jrestillet",DlgTableWidth:"Bredde",DlgTableWidthPx:"pixels",DlgTableWidthPc:"procent",DlgTableHeight:"H??jde",DlgTableCellSpace:"Celleafstand",DlgTableCellPad:"Cellemargen",DlgTableCaption:"Titel",DlgTableSummary:"Resume",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Egenskaber for celle",DlgCellWidth:"Bredde",DlgCellWidthPx:"pixels",DlgCellWidthPc:"procent",DlgCellHeight:"H??jde",DlgCellWordWrap:"Orddeling",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Ja",DlgCellWordWrapNo:"Nej",DlgCellHorAlign:"Vandret justering",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Venstrestillet",DlgCellHorAlignCenter:"Centreret",DlgCellHorAlignRight:"H??jrestillet",DlgCellVerAlign:"Lodret justering",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"??verst",DlgCellVerAlignMiddle:"Centreret",DlgCellVerAlignBottom:"Nederst",DlgCellVerAlignBaseline:"Grundlinje",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"H??jde i antal r??kker",DlgCellCollSpan:"Bredde i antal kolonner",DlgCellBackColor:"Baggrundsfarve",DlgCellBorderColor:"Rammefarve",DlgCellBtnSelect:"V??lg...",DlgFindAndReplaceTitle:"S??g og erstat",DlgFindTitle:"Find",DlgFindFindBtn:"Find",DlgFindNotFoundMsg:"S??geteksten blev ikke fundet!",DlgReplaceTitle:"Erstat",DlgReplaceFindLbl:"S??g efter:",DlgReplaceReplaceLbl:"Erstat med:",DlgReplaceCaseChk:"Forskel p?? store og sm?? bogstaver",DlgReplaceReplaceBtn:"Erstat",DlgReplaceReplAllBtn:"Erstat alle",DlgReplaceWordChk:"Kun hele ord",PasteErrorCut:"Din browsers sikkerhedsindstillinger tillader ikke editoren at klippe tekst automatisk! Brug i stedet tastaturet til at klippe teksten (Ctrl+X).",PasteErrorCopy:"Din browsers sikkerhedsindstillinger tillader ikke editoren at kopiere tekst automatisk! Brug i stedet tastaturet til at kopiere teksten (Ctrl+C).",PasteAsText:"Inds??t som ikke-formateret tekst",PasteFromWord:"Inds??t fra Word",DlgPasteMsg2:"Inds??t i feltet herunder (Ctrl+V) og klik OK.",DlgPasteSec:"P?? grund af browserens sikkerhedsindstillinger kan editoren ikke tilg?? udklipsholderen direkte. Du skal inds??tte udklipsholderens indhold i dette vindue igen.",DlgPasteIgnoreFont:"Ignorer font definitioner",DlgPasteRemoveStyles:"Ignorer typografi",ColorAutomatic:"Automatisk",ColorMoreColors:"Flere farver...",DocProps:"Egenskaber for dokument",DlgAnchorTitle:"Egenskaber for bogm??rke",DlgAnchorName:"Bogm??rke navn",DlgAnchorErrorName:"Indtast bogm??rke navn!",DlgSpellNotInDic:"Ikke i ordbogen",DlgSpellChangeTo:"Forslag",DlgSpellBtnIgnore:"Ignorer",DlgSpellBtnIgnoreAll:"Ignorer alle",DlgSpellBtnReplace:"Erstat",DlgSpellBtnReplaceAll:"Erstat alle",DlgSpellBtnUndo:"Tilbage",DlgSpellNoSuggestions:"- ingen forslag -",DlgSpellProgress:"Stavekontrolen arbejder...",DlgSpellNoMispell:"Stavekontrol f??rdig: Ingen fejl fundet",DlgSpellNoChanges:"Stavekontrol f??rdig: Ingen ord ??ndret",DlgSpellOneChange:"Stavekontrol f??rdig: Et ord ??ndret",DlgSpellManyChanges:"Stavekontrol f??rdig: %1 ord ??ndret",IeSpellDownload:"Stavekontrol ikke installeret. Vil du hente den nu?",DlgButtonText:"Tekst",DlgButtonType:"Type",DlgButtonTypeBtn:"Knap",DlgButtonTypeSbm:"Send",DlgButtonTypeRst:"Nulstil",DlgCheckboxName:"Navn",DlgCheckboxValue:"V??rdi",DlgCheckboxSelected:"Valgt",DlgFormName:"Navn",DlgFormAction:"Handling",DlgFormMethod:"Metod",DlgSelectName:"Navn",DlgSelectValue:"V??rdi",DlgSelectSize:"St??rrelse",DlgSelectLines:"linier",DlgSelectChkMulti:"Tillad flere valg",DlgSelectOpAvail:"Valgmuligheder",DlgSelectOpText:"Tekst",DlgSelectOpValue:"V??rdi",DlgSelectBtnAdd:"Tilf??j",DlgSelectBtnModify:"Rediger",DlgSelectBtnUp:"Op",DlgSelectBtnDown:"Ned",DlgSelectBtnSetValue:"S??t som valgt",DlgSelectBtnDelete:"Slet",DlgTextareaName:"Navn",DlgTextareaCols:"Kolonner",DlgTextareaRows:"R??kker",DlgTextName:"Navn",DlgTextValue:"V??rdi",DlgTextCharWidth:"Bredde (tegn)",DlgTextMaxChars:"Max antal tegn",DlgTextType:"Type",DlgTextTypeText:"Tekst",DlgTextTypePass:"Adgangskode",DlgHiddenName:"Navn",DlgHiddenValue:"V??rdi",BulletedListProp:"Egenskaber for punktopstilling",NumberedListProp:"Egenskaber for talopstilling",DlgLstStart:"Start",DlgLstType:"Type",DlgLstTypeCircle:"Cirkel",DlgLstTypeDisc:"Udfyldt cirkel",DlgLstTypeSquare:"Firkant",DlgLstTypeNumbers:"Nummereret (1, 2, 3)",DlgLstTypeLCase:"Sm?? bogstaver (a, b, c)",DlgLstTypeUCase:"Store bogstaver (A, B, C)",DlgLstTypeSRoman:"Sm?? romertal (i, ii, iii)",DlgLstTypeLRoman:"Store romertal (I, II, III)",DlgDocGeneralTab:"Generelt",DlgDocBackTab:"Baggrund",DlgDocColorsTab:"Farver og margen",DlgDocMetaTab:"Metadata",DlgDocPageTitle:"Sidetitel",DlgDocLangDir:"Sprog",DlgDocLangDirLTR:"Fra venstre mod h??jre (LTR)",DlgDocLangDirRTL:"Fra h??jre mod venstre (RTL)",DlgDocLangCode:"Landekode",DlgDocCharSet:"Tegns??t kode",DlgDocCharSetCE:"Centraleurop??isk",DlgDocCharSetCT:"Traditionel kinesisk (Big5)",DlgDocCharSetCR:"Kyrillisk",DlgDocCharSetGR:"Gr??sk",DlgDocCharSetJP:"Japansk",DlgDocCharSetKR:"Koreansk",DlgDocCharSetTR:"Tyrkisk",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Vesteurop??isk",DlgDocCharSetOther:"Anden tegns??t kode",DlgDocDocType:"Dokumenttype kategori",DlgDocDocTypeOther:"Anden dokumenttype kategori",DlgDocIncXHTML:"Inkludere XHTML deklartion",DlgDocBgColor:"Baggrundsfarve",DlgDocBgImage:"Baggrundsbillede URL",DlgDocBgNoScroll:"Fastl??st baggrund",DlgDocCText:"Tekst",DlgDocCLink:"Hyperlink",DlgDocCVisited:"Bes??gt hyperlink",DlgDocCActive:"Aktivt hyperlink",DlgDocMargins:"Sidemargen",DlgDocMaTop:"??verst",DlgDocMaLeft:"Venstre",DlgDocMaRight:"H??jre",DlgDocMaBottom:"Nederst",DlgDocMeIndex:"Dokument index n??gleord (kommasepareret)",DlgDocMeDescr:"Dokument beskrivelse",DlgDocMeAuthor:"Forfatter",DlgDocMeCopy:"Copyright",DlgDocPreview:"Vis",Templates:"Skabeloner",DlgTemplatesTitle:"Indholdsskabeloner",DlgTemplatesSelMsg:"V??lg den skabelon, som skal ??bnes i editoren. (Nuv??rende indhold vil blive overskrevet!):",DlgTemplatesLoading:"Henter liste over skabeloner...",DlgTemplatesNoTpl:"(Der er ikke defineret nogen skabelon!)",DlgTemplatesReplace:"Erstat det faktiske indhold",DlgAboutAboutTab:"Om",DlgAboutBrowserInfoTab:"Generelt",DlgAboutLicenseTab:"Licens",DlgAboutVersion:"version",DlgAboutInfo:"For yderlig information g?? til",DlgDivGeneralTab:"Generelt",DlgDivAdvancedTab:"Avanceret",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/de.js b/horde/services/editor/fckeditor/editor/lang/de.js
deleted file mode 100644
index 804deebbc..000000000
--- a/horde/services/editor/fckeditor/editor/lang/de.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Symbolleiste einklappen",ToolbarExpand:"Symbolleiste ausklappen",Save:"Speichern",NewPage:"Neue Seite",Preview:"Vorschau",Cut:"Ausschneiden",Copy:"Kopieren",Paste:"Einf??gen",PasteText:"aus Textdatei einf??gen",PasteWord:"aus MS-Word einf??gen",Print:"Drucken",SelectAll:"Alles ausw??hlen",RemoveFormat:"Formatierungen entfernen",InsertLinkLbl:"Link",InsertLink:"Link einf??gen/editieren",RemoveLink:"Link entfernen",VisitLink:"Link aufrufen",Anchor:"Anker einf??gen/editieren",AnchorDelete:"Anker entfernen",InsertImageLbl:"Bild",InsertImage:"Bild einf??gen/editieren",InsertFlashLbl:"Flash",InsertFlash:"Flash einf??gen/editieren",InsertTableLbl:"Tabelle",InsertTable:"Tabelle einf??gen/editieren",InsertLineLbl:"Linie",InsertLine:"Horizontale Linie einf??gen",InsertSpecialCharLbl:"Sonderzeichen",InsertSpecialChar:"Sonderzeichen einf??gen/editieren",InsertSmileyLbl:"Smiley",InsertSmiley:"Smiley einf??gen",About:"??ber FCKeditor",Bold:"Fett",Italic:"Kursiv",Underline:"Unterstrichen",StrikeThrough:"Durchgestrichen",Subscript:"Tiefgestellt",Superscript:"Hochgestellt",LeftJustify:"Linksb??ndig",CenterJustify:"Zentriert",RightJustify:"Rechtsb??ndig",BlockJustify:"Blocksatz",DecreaseIndent:"Einzug verringern",IncreaseIndent:"Einzug erh??hen",Blockquote:"Zitatblock",CreateDiv:"Erzeuge Div Block",EditDiv:"Bearbeite Div Block",DeleteDiv:"Entferne Div Block",Undo:"R??ckg??ngig",Redo:"Wiederherstellen",NumberedListLbl:"Nummerierte Liste",NumberedList:"Nummerierte Liste einf??gen/entfernen",BulletedListLbl:"Liste",BulletedList:"Liste einf??gen/entfernen",ShowTableBorders:"Zeige Tabellenrahmen",ShowDetails:"Zeige Details",Style:"Stil",FontFormat:"Format",Font:"Schriftart",FontSize:"Gr????e",TextColor:"Textfarbe",BGColor:"Hintergrundfarbe",Source:"Quellcode",Find:"Suchen",Replace:"Ersetzen",SpellCheck:"Rechtschreibpr??fung",UniversalKeyboard:"Universal-Tastatur",PageBreakLbl:"Seitenumbruch",PageBreak:"Seitenumbruch einf??gen",Form:"Formular",Checkbox:"Checkbox",RadioButton:"Radiobutton",TextField:"Textfeld einzeilig",Textarea:"Textfeld mehrzeilig",HiddenField:"verstecktes Feld",Button:"Klickbutton",SelectionField:"Auswahlfeld",ImageButton:"Bildbutton",FitWindow:"Editor maximieren",ShowBlocks:"Bl??cke anzeigen",EditLink:"Link editieren",CellCM:"Zelle",RowCM:"Zeile",ColumnCM:"Spalte",InsertRowAfter:"Zeile unterhalb einf??gen",InsertRowBefore:"Zeile oberhalb einf??gen",DeleteRows:"Zeile entfernen",InsertColumnAfter:"Spalte rechts danach einf??gen",InsertColumnBefore:"Spalte links davor einf??gen",DeleteColumns:"Spalte l??schen",InsertCellAfter:"Zelle danach einf??gen",InsertCellBefore:"Zelle davor einf??gen",DeleteCells:"Zelle l??schen",MergeCells:"Zellen verbinden",MergeRight:"nach rechts verbinden",MergeDown:"nach unten verbinden",HorizontalSplitCell:"Zelle horizontal teilen",VerticalSplitCell:"Zelle vertikal teilen",TableDelete:"Tabelle l??schen",CellProperties:"Zellen-Eigenschaften",TableProperties:"Tabellen-Eigenschaften",ImageProperties:"Bild-Eigenschaften",FlashProperties:"Flash-Eigenschaften",AnchorProp:"Anker-Eigenschaften",ButtonProp:"Button-Eigenschaften",CheckboxProp:"Checkbox-Eigenschaften",HiddenFieldProp:"Verstecktes Feld-Eigenschaften",RadioButtonProp:"Optionsfeld-Eigenschaften",ImageButtonProp:"Bildbutton-Eigenschaften",TextFieldProp:"Textfeld (einzeilig) Eigenschaften",SelectionFieldProp:"Auswahlfeld-Eigenschaften",TextareaProp:"Textfeld (mehrzeilig) Eigenschaften",FormProp:"Formular-Eigenschaften",FontFormats:"Normal;Formatiert;Addresse;??berschrift 1;??berschrift 2;??berschrift 3;??berschrift 4;??berschrift 5;??berschrift 6;Normal (DIV)",ProcessingXHTML:"Bearbeite XHTML. Bitte warten...",Done:"Fertig",PasteWordConfirm:"Der Text, den Sie einf??gen m??chten, scheint aus MS-Word kopiert zu sein. M??chten Sie ihn zuvor bereinigen lassen?",NotCompatiblePaste:"Diese Funktion steht nur im Internet Explorer ab Version 5.5 zur Verf??gung. M??chten Sie den Text unbereinigt einf??gen?",UnknownToolbarItem:'Unbekanntes Men??leisten-Objekt "%1"',UnknownCommand:'Unbekannter Befehl "%1"',NotImplemented:"Befehl nicht implementiert",UnknownToolbarSet:'Men??leiste "%1" existiert nicht',NoActiveX:'Die Sicherheitseinstellungen Ihres Browsers beschr??nken evtl. einige Funktionen des Editors. Aktivieren Sie die Option "ActiveX-Steuerelemente und Plugins ausf??hren" in den Sicherheitseinstellungen, um diese Funktionen nutzen zu k??nnen',BrowseServerBlocked:"Ein Auswahlfenster konnte nicht ge??ffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.",DialogBlocked:"Das Dialog-Fenster konnte nicht ge??ffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.",VisitLinkBlocked:"Es war leider nicht m??glich ein neues Fenster zu ??ffnen. Bitte versichern Sie sich das der Popup-Blocker ausgeschaltet ist.",DlgBtnOK:"OK",DlgBtnCancel:"Abbrechen",DlgBtnClose:"Schlie??en",DlgBtnBrowseServer:"Server durchsuchen",DlgAdvancedTag:"Erweitert",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Bitte tragen Sie die URL ein",DlgGenNotSet:"",DlgGenId:"ID",DlgGenLangDir:"Schreibrichtung",DlgGenLangDirLtr:"Links nach Rechts (LTR)",DlgGenLangDirRtl:"Rechts nach Links (RTL)",DlgGenLangCode:"Sprachenk??rzel",DlgGenAccessKey:"Zugriffstaste",DlgGenName:"Name",DlgGenTabIndex:"Tab-Index",DlgGenLongDescr:"Langform URL",DlgGenClass:"Stylesheet Klasse",DlgGenTitle:"Titel Beschreibung",DlgGenContType:"Inhaltstyp",DlgGenLinkCharset:"Ziel-Zeichensatz",DlgGenStyle:"Style",DlgImgTitle:"Bild-Eigenschaften",DlgImgInfoTab:"Bild-Info",DlgImgBtnUpload:"Zum Server senden",DlgImgURL:"Bildauswahl",DlgImgUpload:"Upload",DlgImgAlt:"Alternativer Text",DlgImgWidth:"Breite",DlgImgHeight:"H??he",DlgImgLockRatio:"Gr????enverh??ltniss beibehalten",DlgBtnResetSize:"Gr????e zur??cksetzen",DlgImgBorder:"Rahmen",DlgImgHSpace:"Horizontal-Abstand",DlgImgVSpace:"Vertikal-Abstand",DlgImgAlign:"Ausrichtung",DlgImgAlignLeft:"Links",DlgImgAlignAbsBottom:"Abs Unten",DlgImgAlignAbsMiddle:"Abs Mitte",DlgImgAlignBaseline:"Baseline",DlgImgAlignBottom:"Unten",DlgImgAlignMiddle:"Mitte",DlgImgAlignRight:"Rechts",DlgImgAlignTextTop:"Text Oben",DlgImgAlignTop:"Oben",DlgImgPreview:"Vorschau",DlgImgAlertUrl:"Bitte geben Sie die Bild-URL an",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash-Eigenschaften",DlgFlashChkPlay:"autom. Abspielen",DlgFlashChkLoop:"Endlosschleife",DlgFlashChkMenu:"Flash-Men?? aktivieren",DlgFlashScale:"Skalierung",DlgFlashScaleAll:"Alles anzeigen",DlgFlashScaleNoBorder:"ohne Rand",DlgFlashScaleFit:"Passgenau",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Link-Info",DlgLnkTargetTab:"Zielseite",DlgLnkType:"Link-Typ",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Anker in dieser Seite",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protokoll",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Anker ausw??hlen",DlgLnkAnchorByName:"nach Anker Name",DlgLnkAnchorById:"nach Element Id",DlgLnkNoAnchors:"(keine Anker im Dokument vorhanden)",DlgLnkEMail:"E-Mail Addresse",DlgLnkEMailSubject:"Betreffzeile",DlgLnkEMailBody:"Nachrichtentext",DlgLnkUpload:"Upload",DlgLnkBtnUpload:"Zum Server senden",DlgLnkTarget:"Zielseite",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Neues Fenster (_blank)",DlgLnkTargetParent:"Oberes Fenster (_parent)",DlgLnkTargetSelf:"Gleiches Fenster (_self)",DlgLnkTargetTop:"Oberstes Fenster (_top)",DlgLnkTargetFrameName:"Ziel-Fenster-Name",DlgLnkPopWinName:"Pop-up Fenster-Name",DlgLnkPopWinFeat:"Pop-up Fenster-Eigenschaften",DlgLnkPopResize:"Vergr????erbar",DlgLnkPopLocation:"Adress-Leiste",DlgLnkPopMenu:"Men??-Leiste",DlgLnkPopScroll:"Rollbalken",DlgLnkPopStatus:"Statusleiste",DlgLnkPopToolbar:"Werkzeugleiste",DlgLnkPopFullScrn:"Vollbild (IE)",DlgLnkPopDependent:"Abh??ngig (Netscape)",DlgLnkPopWidth:"Breite",DlgLnkPopHeight:"H??he",DlgLnkPopLeft:"Linke Position",DlgLnkPopTop:"Obere Position",DlnLnkMsgNoUrl:"Bitte geben Sie die Link-URL an",DlnLnkMsgNoEMail:"Bitte geben Sie e-Mail Adresse an",DlnLnkMsgNoAnchor:"Bitte w??hlen Sie einen Anker aus",DlnLnkMsgInvPopName:"Der Name des Popups muss mit einem Buchstaben beginnen und darf keine Leerzeichen enthalten",DlgColorTitle:"Farbauswahl",DlgColorBtnClear:"Keine Farbe",DlgColorHighlight:"Vorschau",DlgColorSelected:"Ausgew??hlt",DlgSmileyTitle:"Smiley ausw??hlen",DlgSpecialCharTitle:"Sonderzeichen ausw??hlen",DlgTableTitle:"Tabellen-Eigenschaften",DlgTableRows:"Zeile",DlgTableColumns:"Spalte",DlgTableBorder:"Rahmen",DlgTableAlign:"Ausrichtung",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Links",DlgTableAlignCenter:"Zentriert",DlgTableAlignRight:"Rechts",DlgTableWidth:"Breite",DlgTableWidthPx:"Pixel",DlgTableWidthPc:"%",DlgTableHeight:"H??he",DlgTableCellSpace:"Zellenabstand au??en",DlgTableCellPad:"Zellenabstand innen",DlgTableCaption:"??berschrift",DlgTableSummary:"Inhalts??bersicht",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Zellen-Eigenschaften",DlgCellWidth:"Breite",DlgCellWidthPx:"Pixel",DlgCellWidthPc:"%",DlgCellHeight:"H??he",DlgCellWordWrap:"Umbruch",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Ja",DlgCellWordWrapNo:"Nein",DlgCellHorAlign:"Horizontale Ausrichtung",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Links",DlgCellHorAlignCenter:"Zentriert",DlgCellHorAlignRight:"Rechts",DlgCellVerAlign:"Vertikale Ausrichtung",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Oben",DlgCellVerAlignMiddle:"Mitte",DlgCellVerAlignBottom:"Unten",DlgCellVerAlignBaseline:"Grundlinie",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Zeilen zusammenfassen",DlgCellCollSpan:"Spalten zusammenfassen",DlgCellBackColor:"Hintergrundfarbe",DlgCellBorderColor:"Rahmenfarbe",DlgCellBtnSelect:"Auswahl...",DlgFindAndReplaceTitle:"Suchen und Ersetzen",DlgFindTitle:"Finden",DlgFindFindBtn:"Finden",DlgFindNotFoundMsg:"Der gesuchte Text wurde nicht gefunden.",DlgReplaceTitle:"Ersetzen",DlgReplaceFindLbl:"Suche nach:",DlgReplaceReplaceLbl:"Ersetze mit:",DlgReplaceCaseChk:"Gro??-Kleinschreibung beachten",DlgReplaceReplaceBtn:"Ersetzen",DlgReplaceReplAllBtn:"Alle Ersetzen",DlgReplaceWordChk:"Nur ganze Worte suchen",PasteErrorCut:"Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage ??ber STRG-X (ausschneiden) und STRG-V (einf??gen).",PasteErrorCopy:"Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch kopieren. Bitte benutzen Sie die System-Zwischenablage ??ber STRG-C (kopieren).",PasteAsText:"Als Text einf??gen",PasteFromWord:"Aus Word einf??gen",DlgPasteMsg2:"Bitte f??gen Sie den Text in der folgenden Box ??ber die Tastatur (mit Strg+V) ein und best??tigen Sie mit OK.",DlgPasteSec:"Aufgrund von Sicherheitsbeschr??nkungen Ihres Browsers kann der Editor nicht direkt auf die Zwischenablage zugreifen. Bitte f??gen Sie den Inhalt erneut in diesem Fenster ein.",DlgPasteIgnoreFont:"Ignoriere Schriftart-Definitionen",DlgPasteRemoveStyles:"Entferne Style-Definitionen",ColorAutomatic:"Automatisch",ColorMoreColors:"Weitere Farben...",DocProps:"Dokument-Eigenschaften",DlgAnchorTitle:"Anker-Eigenschaften",DlgAnchorName:"Anker Name",DlgAnchorErrorName:"Bitte geben Sie den Namen des Ankers ein",DlgSpellNotInDic:"Nicht im W??rterbuch",DlgSpellChangeTo:"??ndern in",DlgSpellBtnIgnore:"Ignorieren",DlgSpellBtnIgnoreAll:"Alle Ignorieren",DlgSpellBtnReplace:"Ersetzen",DlgSpellBtnReplaceAll:"Alle Ersetzen",DlgSpellBtnUndo:"R??ckg??ngig",DlgSpellNoSuggestions:" - keine Vorschl??ge - ",DlgSpellProgress:"Rechtschreibpr??fung l??uft...",DlgSpellNoMispell:"Rechtschreibpr??fung abgeschlossen - keine Fehler gefunden",DlgSpellNoChanges:"Rechtschreibpr??fung abgeschlossen - keine Worte ge??ndert",DlgSpellOneChange:"Rechtschreibpr??fung abgeschlossen - ein Wort ge??ndert",DlgSpellManyChanges:"Rechtschreibpr??fung abgeschlossen - %1 W??rter ge??ndert",IeSpellDownload:"Rechtschreibpr??fung nicht installiert. M??chten Sie sie jetzt herunterladen?",DlgButtonText:"Text (Wert)",DlgButtonType:"Typ",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Absenden",DlgButtonTypeRst:"Zur??cksetzen",DlgCheckboxName:"Name",DlgCheckboxValue:"Wert",DlgCheckboxSelected:"ausgew??hlt",DlgFormName:"Name",DlgFormAction:"Action",DlgFormMethod:"Method",DlgSelectName:"Name",DlgSelectValue:"Wert",DlgSelectSize:"Gr????e",DlgSelectLines:"Linien",DlgSelectChkMulti:"Erlaube Mehrfachauswahl",DlgSelectOpAvail:"M??gliche Optionen",DlgSelectOpText:"Text",DlgSelectOpValue:"Wert",DlgSelectBtnAdd:"Hinzuf??gen",DlgSelectBtnModify:"??ndern",DlgSelectBtnUp:"Hoch",DlgSelectBtnDown:"Runter",DlgSelectBtnSetValue:"Setze als Standardwert",DlgSelectBtnDelete:"Entfernen",DlgTextareaName:"Name",DlgTextareaCols:"Spalten",DlgTextareaRows:"Reihen",DlgTextName:"Name",DlgTextValue:"Wert",DlgTextCharWidth:"Zeichenbreite",DlgTextMaxChars:"Max. Zeichen",DlgTextType:"Typ",DlgTextTypeText:"Text",DlgTextTypePass:"Passwort",DlgHiddenName:"Name",DlgHiddenValue:"Wert",BulletedListProp:"Listen-Eigenschaften",NumberedListProp:"Nummerierte Listen-Eigenschaften",DlgLstStart:"Start",DlgLstType:"Typ",DlgLstTypeCircle:"Ring",DlgLstTypeDisc:"Kreis",DlgLstTypeSquare:"Quadrat",DlgLstTypeNumbers:"Nummern (1, 2, 3)",DlgLstTypeLCase:"Kleinbuchstaben (a, b, c)",DlgLstTypeUCase:"Gro??buchstaben (A, B, C)",DlgLstTypeSRoman:"Kleine r??mische Zahlen (i, ii, iii)",DlgLstTypeLRoman:"Gro??e r??mische Zahlen (I, II, III)",DlgDocGeneralTab:"Allgemein",DlgDocBackTab:"Hintergrund",DlgDocColorsTab:"Farben und Abst??nde",DlgDocMetaTab:"Metadaten",DlgDocPageTitle:"Seitentitel",DlgDocLangDir:"Schriftrichtung",DlgDocLangDirLTR:"Links nach Rechts",DlgDocLangDirRTL:"Rechts nach Links",DlgDocLangCode:"Sprachk??rzel",DlgDocCharSet:"Zeichenkodierung",DlgDocCharSetCE:"Zentraleurop??isch",DlgDocCharSetCT:"traditionell Chinesisch (Big5)",DlgDocCharSetCR:"Kyrillisch",DlgDocCharSetGR:"Griechisch",DlgDocCharSetJP:"Japanisch",DlgDocCharSetKR:"Koreanisch",DlgDocCharSetTR:"T??rkisch",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Westeurop??isch",DlgDocCharSetOther:"Andere Zeichenkodierung",DlgDocDocType:"Dokumententyp",DlgDocDocTypeOther:"Anderer Dokumententyp",DlgDocIncXHTML:"Beziehe XHTML Deklarationen ein",DlgDocBgColor:"Hintergrundfarbe",DlgDocBgImage:"Hintergrundbild URL",DlgDocBgNoScroll:"feststehender Hintergrund",DlgDocCText:"Text",DlgDocCLink:"Link",DlgDocCVisited:"Besuchter Link",DlgDocCActive:"Aktiver Link",DlgDocMargins:"Seitenr??nder",DlgDocMaTop:"Oben",DlgDocMaLeft:"Links",DlgDocMaRight:"Rechts",DlgDocMaBottom:"Unten",DlgDocMeIndex:"Schl??sselw??rter (durch Komma getrennt)",DlgDocMeDescr:"Dokument-Beschreibung",DlgDocMeAuthor:"Autor",DlgDocMeCopy:"Copyright",DlgDocPreview:"Vorschau",Templates:"Vorlagen",DlgTemplatesTitle:"Vorlagen",DlgTemplatesSelMsg:"Klicken Sie auf eine Vorlage, um sie im Editor zu ??ffnen (der aktuelle Inhalt wird dabei gel??scht!):",DlgTemplatesLoading:"Liste der Vorlagen wird geladen. Bitte warten...",DlgTemplatesNoTpl:"(keine Vorlagen definiert)",DlgTemplatesReplace:"Aktuellen Inhalt ersetzen",DlgAboutAboutTab:"??ber",DlgAboutBrowserInfoTab:"Browser-Info",DlgAboutLicenseTab:"Lizenz",DlgAboutVersion:"Version",DlgAboutInfo:"F??r weitere Informationen siehe",DlgDivGeneralTab:"Allgemein",DlgDivAdvancedTab:"Erweitert",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/el.js b/horde/services/editor/fckeditor/editor/lang/el.js
deleted file mode 100644
index beca35018..000000000
--- a/horde/services/editor/fckeditor/editor/lang/el.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"???????????????? ???????????? ??????????????????",ToolbarExpand:"???????????????? ???????????? ??????????????????",Save:"????????????????????",NewPage:"?????? ????????????",Preview:"??????????????????????????",Cut:"??????????????",Copy:"??????????????????",Paste:"????????????????????",PasteText:"???????????????????? (???????? ??????????????)",PasteWord:"???????????????????? ?????? ???? Word",Print:"????????????????",SelectAll:"?????????????? ????????",RemoveFormat:"???????????????? ????????????????????????",InsertLinkLbl:"?????????????????? (Link)",InsertLink:"????????????????/???????????????? ?????????????????? (Link)",RemoveLink:"???????????????? ?????????????????? (Link)",VisitLink:"Open Link",Anchor:"????????????????/?????????????????????? Anchor",AnchorDelete:"Remove Anchor",InsertImageLbl:"????????????",InsertImage:"????????????????/???????????????? ??????????????",InsertFlashLbl:"???????????????? Flash",InsertFlash:"????????????????/?????????????????????? Flash",InsertTableLbl:"??????????????",InsertTable:"????????????????/???????????????? ????????????",InsertLineLbl:"????????????",InsertLine:"???????????????? ???????????????????? ??????????????",InsertSpecialCharLbl:"???????????? ??????????????",InsertSpecialChar:"???????????????? ?????????????? ????????????????",InsertSmileyLbl:"Smiley",InsertSmiley:"???????????????? Smiley",About:"???????? ?????? FCKeditor",Bold:"????????????",Italic:"????????????",Underline:"??????????????????????",StrikeThrough:"??????????????????????",Subscript:"??????????????",Superscript:"??????????????",LeftJustify:"???????????????? ????????????????",CenterJustify:"???????????????? ?????? ????????????",RightJustify:"???????????????? ??????????",BlockJustify:"???????????? ???????????????? (Block)",DecreaseIndent:"???????????? ????????????",IncreaseIndent:"???????????? ????????????",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"????????????????",Redo:"??????????????????",NumberedListLbl:"?????????? ???? ????????????????",NumberedList:"????????????????/???????????????? ???????????? ???? ????????????????",BulletedListLbl:"?????????? ???? Bullets",BulletedList:"????????????????/???????????????? ???????????? ???? Bullets",ShowTableBorders:"?????????????? ?????????? ????????????",ShowDetails:"?????????????? ????????????????????????",Style:"????????",FontFormat:"?????????? ????????????????????????????",Font:"??????????????????????????",FontSize:"??????????????",TextColor:"?????????? ??????????????????",BGColor:"?????????? ??????????????????",Source:"HTML ??????????????",Find:"??????????????????",Replace:"??????????????????????????",SpellCheck:"???????????????????????? ??????????????",UniversalKeyboard:"?????????????? ????????????????????????",PageBreakLbl:"?????????? ??????????????",PageBreak:"???????????????? ???????????? ??????????????",Form:"??????????",Checkbox:"?????????? ????????????????",RadioButton:"???????????? Radio",TextField:"?????????? ????????????????",Textarea:"?????????????? ????????????????",HiddenField:"?????????? ??????????",Button:"????????????",SelectionField:"?????????? ????????????????",ImageButton:"???????????? ??????????????",FitWindow:"?????????????????????????? ????????????????????????",ShowBlocks:"Show Blocks",EditLink:"???????????????? ?????????????????? (Link)",CellCM:"????????",RowCM:"??????????",ColumnCM:"??????????",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"???????????????? ??????????????",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"???????????????? ??????????????",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"???????????????? ????????????",MergeCells:"?????????????????? ????????????",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"???????????????? ????????????",CellProperties:"?????????????????? ????????????",TableProperties:"?????????????????? ????????????",ImageProperties:"?????????????????? ??????????????",FlashProperties:"?????????????????? Flash",AnchorProp:"?????????????????? ??????????????",ButtonProp:"?????????????????? ????????????????",CheckboxProp:"?????????????????? ???????????????? ????????????????",HiddenFieldProp:"?????????????????? ???????????? ????????????",RadioButtonProp:"?????????????????? ???????????????? radio",ImageButtonProp:"?????????????????? ???????????????? ??????????????",TextFieldProp:"?????????????????? ???????????? ????????????????",SelectionFieldProp:"?????????????????? ???????????? ????????????????",TextareaProp:"?????????????????? ???????????????? ????????????????",FormProp:"?????????????????? ????????????",FontFormats:"????????????????;??????????????????????????;??????????????????;?????????????????????? 1;?????????????????????? 2;?????????????????????? 3;?????????????????????? 4;?????????????????????? 5;?????????????????????? 6",ProcessingXHTML:"?????????????????????? XHTML. ???????????????? ????????????????????...",Done:"????????????",PasteWordConfirm:"???? ?????????????? ?????? ???????????? ???? ??????????????????????, ???????????????? ?????? ???????????????????? ?????? ???? Word. ???????????? ???? ???????????????????? ???????? ????????????????????;",NotCompatiblePaste:"???????? ?? ?????????????? ?????????? ?????????????????? ???????? Internet Explorer ???????????? 5.5+. ???????????? ???? ?????????? ?? ???????????????????? ?????????? ??????????????????;",UnknownToolbarItem:'?????????????? ?????????????????????? ?????? ???????????? ?????????????????? "%1"',UnknownCommand:'?????????????? ???????????? "%1"',NotImplemented:"?? ???????????? ?????? ???????? ??????????????????????????",UnknownToolbarSet:'?? ?????????? ?????????????????? "%1" ?????? ??????????????',NoActiveX:'???? ?????????????????? ?????????????????? ?????? browser ?????? ???????????? ???? ?????????????????????? ?????????????? ?????????????????? ?????? ????????????????????????. ???????????????????? ???? ???????????????????????????? ?????? ?????????????? "Run ActiveX controls and plug-ins". ???????? ?????????????????????????? ???????? ?????? ???????????????????????? ???????????????? ??????????????????????.',BrowseServerBlocked:"???? ?????????? ?????? browser ?????? ?????? ?????????? ??????????????????????????. ?????????????????????????? ?????? ?????? ???????????????? ?????????????? popup blockers.",DialogBlocked:"?????? ???????? ???????????? ???? ?????????????? ???? ???????????????? ????????????????. ?????????????????????????? ?????? ?????? ???????????????? ?????????????? popup blockers.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"??????????????",DlgBtnClose:"????????????????",DlgBtnBrowseServer:"???????????????????? ????????????????????",DlgAdvancedTag:"?????? ??????????????????????????",DlgOpOther:"???????>",DlgInfoTab:"??????????????????????",DlgAlertUrl:"???????????????? ???????????????? URL",DlgGenNotSet:"?????????>",DlgGenId:"Id",DlgGenLangDir:"???????????????????? ????????????????",DlgGenLangDirLtr:"???????????????? ???????? ?????????? (LTR)",DlgGenLangDirRtl:"?????????? ???????? ???????????????? (RTL)",DlgGenLangCode:"?????????????? ??????????????",DlgGenAccessKey:"???????????????????? (Access Key)",DlgGenName:"??????????",DlgGenTabIndex:"Tab Index",DlgGenLongDescr:"?????????????????? ?????????????????? URL",DlgGenClass:"Stylesheet Classes",DlgGenTitle:"???????????????????????????? ????????????",DlgGenContType:"???????????????????????????? ???????????? ????????????????????????",DlgGenLinkCharset:"Linked Resource Charset",DlgGenStyle:"????????",DlgImgTitle:"?????????????????? ??????????????",DlgImgInfoTab:"?????????????????????? ??????????????",DlgImgBtnUpload:"???????????????? ???????? ????????????????????",DlgImgURL:"URL",DlgImgUpload:"????????????????",DlgImgAlt:"?????????????????????? ?????????????? (ALT)",DlgImgWidth:"????????????",DlgImgHeight:"????????",DlgImgLockRatio:"???????????????? ??????????????????",DlgBtnResetSize:"?????????????????? ?????????????? ????????????????",DlgImgBorder:"??????????????????",DlgImgHSpace:"???????????????????? ?????????? (HSpace)",DlgImgVSpace:"?????????????? ?????????? (VSpace)",DlgImgAlign:"???????????????????????? (Align)",DlgImgAlignLeft:"????????????????",DlgImgAlignAbsBottom:"?????????????? ???????? (Abs Bottom)",DlgImgAlignAbsMiddle:"?????????????? ?????? ???????? (Abs Middle)",DlgImgAlignBaseline:"???????????? ?????????? (Baseline)",DlgImgAlignBottom:"???????? (Bottom)",DlgImgAlignMiddle:"???????? (Middle)",DlgImgAlignRight:"?????????? (Right)",DlgImgAlignTextTop:"???????????? ???????????????? (Text Top)",DlgImgAlignTop:"???????? (Top)",DlgImgPreview:"??????????????????????????",DlgImgAlertUrl:"???????????????? ?????? ?????????????????? (URL) ?????? ??????????????",DlgImgLinkTab:"??????????????????",DlgFlashTitle:"?????????????????? flash",DlgFlashChkPlay:"???????????????? ????????????",DlgFlashChkLoop:"??????????????????",DlgFlashChkMenu:"???????????????????????? Flash Menu",DlgFlashScale:"??????????????",DlgFlashScaleAll:"???????????????? ????????",DlgFlashScaleNoBorder:"?????????? ????????",DlgFlashScaleFit:"?????????????? ????????????????",DlgLnkWindowTitle:"?????????????????? (Link)",DlgLnkInfoTab:"Link",DlgLnkTargetTab:"???????????????? ???????????? (Target)",DlgLnkType:"?????????? ?????????????????? (Link)",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"???????????? ???? ???????? ???? ????????????",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"??????????????????",DlgLnkProtoOther:"???????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"???????????????? ?????? ????????????",DlgLnkAnchorByName:"?????????? ?????? ???????????????? (Name) ?????? ??????????????",DlgLnkAnchorById:"?????????? ?????? Element Id",DlgLnkNoAnchors:"(?????? ???????????????? ?????????????? ?????? ??????????????)",DlgLnkEMail:"?????????????????? ???????????????????????? ????????????????????????",DlgLnkEMailSubject:"???????? ??????????????????",DlgLnkEMailBody:"?????????????? ??????????????????",DlgLnkUpload:"????????????????",DlgLnkBtnUpload:"???????????????? ???????? ????????????????????",DlgLnkTarget:"???????????????? ???????????? (Target)",DlgLnkTargetFrame:"?????????????>",DlgLnkTargetPopup:"??????????????? popup>",DlgLnkTargetBlank:"?????? ???????????????? (_blank)",DlgLnkTargetParent:"???????????? ???????????????? (_parent)",DlgLnkTargetSelf:"???????? ???????????????? (_self)",DlgLnkTargetTop:"?????????????? ???????????????? (_top)",DlgLnkTargetFrameName:"?????????? ???????????????? ????????????",DlgLnkPopWinName:"?????????? Popup Window",DlgLnkPopWinFeat:"???????????????? Popup Window",DlgLnkPopResize:"???? ???????????? ????????????????",DlgLnkPopLocation:"?????????? ????????????????????",DlgLnkPopMenu:"?????????? Menu",DlgLnkPopScroll:"???????????? ??????????????",DlgLnkPopStatus:"?????????? Status",DlgLnkPopToolbar:"?????????? ??????????????????",DlgLnkPopFullScrn:"???????????????? ?? ?????????? (IE)",DlgLnkPopDependent:"Dependent (Netscape)",DlgLnkPopWidth:"????????????",DlgLnkPopHeight:"????????",DlgLnkPopLeft:"?????????????????? ?????????????????? ??????????",DlgLnkPopTop:"?????????????????? ???????? ??????????",DlnLnkMsgNoUrl:"???????????????? ?????? ?????????????????? (URL) ?????? ?????????????????????????? (Link)",DlnLnkMsgNoEMail:"???????????????? ?????? ?????????????????? ???????????????????????? ????????????????????????",DlnLnkMsgNoAnchor:"???????????????? ?????? Anchor",DlnLnkMsgInvPopName:"???? ?????????? ?????? popup ???????????? ???? ?????????????? ???? ?????????????????? ?????? ?????????????????? ?????? ???? ?????? ???????????????? ????????",DlgColorTitle:"?????????????? ????????????????",DlgColorBtnClear:"????????????????????",DlgColorHighlight:"??????????????????????????",DlgColorSelected:"????????????????????",DlgSmileyTitle:"???????????????? ?????? Smiley",DlgSpecialCharTitle:"???????????????? ?????? ???????????? ??????????????",DlgTableTitle:"?????????????????? ????????????",DlgTableRows:"??????????????",DlgTableColumns:"??????????????",DlgTableBorder:"?????????????? ????????????????????",DlgTableAlign:"????????????????",DlgTableAlignNotSet:"?????????>",DlgTableAlignLeft:"????????????????",DlgTableAlignCenter:"????????????",DlgTableAlignRight:"??????????",DlgTableWidth:"????????????",DlgTableWidthPx:"pixels",DlgTableWidthPc:"%",DlgTableHeight:"????????",DlgTableCellSpace:"???????????????? ????????????",DlgTableCellPad:"?????????????? ????????????",DlgTableCaption:"????????????????????",DlgTableSummary:"????????????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"?????????????????? ????????????",DlgCellWidth:"????????????",DlgCellWidthPx:"pixels",DlgCellWidthPc:"%",DlgCellHeight:"????????",DlgCellWordWrap:"???? ???????????? ??????????????",DlgCellWordWrapNotSet:"?????????>",DlgCellWordWrapYes:"??????",DlgCellWordWrapNo:"??????",DlgCellHorAlign:"?????????????????? ????????????????",DlgCellHorAlignNotSet:"?????????>",DlgCellHorAlignLeft:"????????????????",DlgCellHorAlignCenter:"????????????",DlgCellHorAlignRight:"??????????",DlgCellVerAlign:"???????????? ????????????????",DlgCellVerAlignNotSet:"?????????>",DlgCellVerAlignTop:"???????? (Top)",DlgCellVerAlignMiddle:"???????? (Middle)",DlgCellVerAlignBottom:"???????? (Bottom)",DlgCellVerAlignBaseline:"???????????? ?????????? (Baseline)",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"?????????????? ?????????????? (Rows Span)",DlgCellCollSpan:"?????????????? ?????????????? (Columns Span)",DlgCellBackColor:"?????????? ??????????????????",DlgCellBorderColor:"?????????? ????????????????????",DlgCellBtnSelect:"??????????????...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"??????????????????",DlgFindFindBtn:"??????????????????",DlgFindNotFoundMsg:"???? ?????????????? ?????? ??????????????.",DlgReplaceTitle:"??????????????????????????",DlgReplaceFindLbl:"??????????????????:",DlgReplaceReplaceLbl:"?????????????????????????? ????:",DlgReplaceCaseChk:"?????????????? ??????????/??????????????????",DlgReplaceReplaceBtn:"??????????????????????????",DlgReplaceReplAllBtn:"?????????????????????????? ????????",DlgReplaceWordChk:"???????????? ?????????????? ??????????",PasteErrorCut:"???? ?????????????????? ?????????????????? ?????? ???????????????????????? ?????? ?????? ???????????????????? ?????? ???????????????????? ?????????????? ????????????????. ?????????????????????????????? ???? ???????????????????????? (Ctrl+X).",PasteErrorCopy:"???? ?????????????????? ?????????????????? ?????? ???????????????????????? ?????? ?????? ???????????????????? ?????? ???????????????????? ?????????????? ????????????????????. ?????????????????????????????? ???? ???????????????????????? (Ctrl+C).",PasteAsText:"???????????????????? ???? ???????? ??????????????",PasteFromWord:"???????????????????? ?????? ???? Word",DlgPasteMsg2:"???????????????? ???????????????????? ?????? ???????????????? ?????????? ?????????????????????????????? ???? ???????????????????????? (Ctrl+V) ?????? ?????????????? OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"?????????????? ???????????????????????? ????????????????????????????",DlgPasteRemoveStyles:"???????????????? ???????????????????????? ????????",ColorAutomatic:"????????????????",ColorMoreColors:"?????????????????????? ??????????????...",DocProps:"?????????????????? ????????????????",DlgAnchorTitle:"?????????????????? ??????????????",DlgAnchorName:"?????????? ??????????????",DlgAnchorErrorName:"?????????????????????? ???????????????? ?????????? ??????????????",DlgSpellNotInDic:"?????? ?????????????? ?????? ????????????",DlgSpellChangeTo:"???????????? ????",DlgSpellBtnIgnore:"??????????????",DlgSpellBtnIgnoreAll:"?????????????? ????????",DlgSpellBtnReplace:"??????????????????????????",DlgSpellBtnReplaceAll:"?????????????????????????? ????????",DlgSpellBtnUndo:"????????????????",DlgSpellNoSuggestions:"- ?????? ???????????????? ?????????????????? -",DlgSpellProgress:"???????????????????????? ?????????????? ???? ??????????????...",DlgSpellNoMispell:"?? ???????????????????????? ?????????????? ????????????????????????: ?????? ???????????????? ????????",DlgSpellNoChanges:"?? ???????????????????????? ?????????????? ????????????????????????: ?????? ?????????????? ????????????",DlgSpellOneChange:"?? ???????????????????????? ?????????????? ????????????????????????: ?????? ???????? ????????????",DlgSpellManyChanges:"?? ???????????????????????? ?????????????? ????????????????????????: %1 ???????????? ??????????????",IeSpellDownload:"?????? ?????????????? ???????????????????????????? ????????????????????. ???????????? ???? ?????? ???????????????????? ????????;",DlgButtonText:"?????????????? (????????)",DlgButtonType:"??????????",DlgButtonTypeBtn:"????????????",DlgButtonTypeSbm:"????????????????????",DlgButtonTypeRst:"??????????????????",DlgCheckboxName:"??????????",DlgCheckboxValue:"????????",DlgCheckboxSelected:"????????????????????",DlgFormName:"??????????",DlgFormAction:"??????????",DlgFormMethod:"??????????????",DlgSelectName:"??????????",DlgSelectValue:"????????",DlgSelectSize:"??????????????",DlgSelectLines:"??????????????",DlgSelectChkMulti:"?????????????????? ????????????????",DlgSelectOpAvail:"???????????????????? ????????????????",DlgSelectOpText:"??????????????",DlgSelectOpValue:"????????",DlgSelectBtnAdd:"????????????????",DlgSelectBtnModify:"????????????",DlgSelectBtnUp:"????????",DlgSelectBtnDown:"????????",DlgSelectBtnSetValue:"?????????????????????????? ??????????????",DlgSelectBtnDelete:"????????????????",DlgTextareaName:"??????????",DlgTextareaCols:"????????????",DlgTextareaRows:"????????????",DlgTextName:"??????????",DlgTextValue:"????????",DlgTextCharWidth:"?????????? ????????????????????",DlgTextMaxChars:"???????????????? ????????????????????",DlgTextType:"??????????",DlgTextTypeText:"??????????????",DlgTextTypePass:"??????????????",DlgHiddenName:"??????????",DlgHiddenValue:"????????",BulletedListProp:"?????????????????? ???????????? Bulleted",NumberedListProp:"?????????????????? ?????????????????????? ???????????? ",DlgLstStart:"????????",DlgLstType:"??????????",DlgLstTypeCircle:"????????????",DlgLstTypeDisc:"????????????",DlgLstTypeSquare:"??????????????????",DlgLstTypeNumbers:"?????????????? (1, 2, 3)",DlgLstTypeLCase:"???????? ???????????????? (a, b, c)",DlgLstTypeUCase:"???????????????? ???????????????? (A, B, C)",DlgLstTypeSRoman:"?????????? ???????????????? ???????????????????? (i, ii, iii)",DlgLstTypeLRoman:"???????????? ???????????????? ???????????????????? (I, II, III)",DlgDocGeneralTab:"????????????",DlgDocBackTab:"??????????",DlgDocColorsTab:"?????????????? ?????? ??????????????????",DlgDocMetaTab:"???????????????? Meta",DlgDocPageTitle:"???????????? ??????????????",DlgDocLangDir:"???????????????????? ????????????",DlgDocLangDirLTR:"???????????????? ???????? ?????????? (LTR)",DlgDocLangDirRTL:"?????????? ???????? ???????????????? (RTL)",DlgDocLangCode:"?????????????? ??????????????",DlgDocCharSet:"???????????????????????? ????????????????????",DlgDocCharSetCE:"?????????????????? ??????????????",DlgDocCharSetCT:"?????????????????????? ???????????????? (Big5)",DlgDocCharSetCR:"??????????????????",DlgDocCharSetGR:"????????????????",DlgDocCharSetJP:"????????????????",DlgDocCharSetKR:"??????????????????",DlgDocCharSetTR:"????????????????",DlgDocCharSetUN:"?????????????? (UTF-8)",DlgDocCharSetWE:"?????????????? ??????????????",DlgDocCharSetOther:"???????? ???????????????????????? ????????????????????",DlgDocDocType:"?????????????????????? ?????????? ????????????????",DlgDocDocTypeOther:"???????? ?????????????????????? ?????????? ????????????????",DlgDocIncXHTML:"???? ???????????????????????????? ???? ???????????????? XHTML",DlgDocBgColor:"?????????? ????????????",DlgDocBgImage:"?????????????????? ?????????????? ????????????",DlgDocBgNoScroll:"?????????? ?????????? ????????????",DlgDocCText:"??????????????",DlgDocCLink:"??????????????????",DlgDocCVisited:"?????????????????? ?????? ???????? ????????????????????",DlgDocCActive:"?????????????? ??????????????????",DlgDocMargins:"?????????????????? ??????????????",DlgDocMaTop:"????????????",DlgDocMaLeft:"????????????????",DlgDocMaRight:"??????????",DlgDocMaBottom:"????????",DlgDocMeIndex:"???????????? ?????????????? ?????????????? ???????????????? (?????????????????????? ???? ??????????)",DlgDocMeDescr:"?????????????????? ????????????????",DlgDocMeAuthor:"????????????????????",DlgDocMeCopy:"???????????????????? ????????????????????",DlgDocPreview:"??????????????????????????",Templates:"??????????????",DlgTemplatesTitle:"?????????????? ????????????????????????",DlgTemplatesSelMsg:"???????????????? ???????????????? ?????????????? ?????? ???????????????? ?????? ?????????????????? (???? ?????????????????? ?????????????????????? ???? ????????????):",DlgTemplatesLoading:"?????????????? ?????????????????? ????????????????. ???????????????? ????????????????????...",DlgTemplatesNoTpl:"(?????? ?????????? ???????????????????? ??????????????)",DlgTemplatesReplace:"?????????????????????????? ???????????????????? ????????????????????????",DlgAboutAboutTab:"??????????????",DlgAboutBrowserInfoTab:"?????????????????????? Browser",DlgAboutLicenseTab:"??????????",DlgAboutVersion:"????????????",DlgAboutInfo:"?????? ???????????????????????? ??????????????????????",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/en-au.js b/horde/services/editor/fckeditor/editor/lang/en-au.js
deleted file mode 100644
index 5b91ac61e..000000000
--- a/horde/services/editor/fckeditor/editor/lang/en-au.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Collapse Toolbar",ToolbarExpand:"Expand Toolbar",Save:"Save",NewPage:"New Page",Preview:"Preview",Cut:"Cut",Copy:"Copy",Paste:"Paste",PasteText:"Paste as plain text",PasteWord:"Paste from Word",Print:"Print",SelectAll:"Select All",RemoveFormat:"Remove Format",InsertLinkLbl:"Link",InsertLink:"Insert/Edit Link",RemoveLink:"Remove Link",VisitLink:"Open Link",Anchor:"Insert/Edit Anchor",AnchorDelete:"Remove Anchor",InsertImageLbl:"Image",InsertImage:"Insert/Edit Image",InsertFlashLbl:"Flash",InsertFlash:"Insert/Edit Flash",InsertTableLbl:"Table",InsertTable:"Insert/Edit Table",InsertLineLbl:"Line",InsertLine:"Insert Horizontal Line",InsertSpecialCharLbl:"Special Character",InsertSpecialChar:"Insert Special Character",InsertSmileyLbl:"Smiley",InsertSmiley:"Insert Smiley",About:"About FCKeditor",Bold:"Bold",Italic:"Italic",Underline:"Underline",StrikeThrough:"Strike Through",Subscript:"Subscript",Superscript:"Superscript",LeftJustify:"Left Justify",CenterJustify:"Centre Justify",RightJustify:"Right Justify",BlockJustify:"Block Justify",DecreaseIndent:"Decrease Indent",IncreaseIndent:"Increase Indent",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Undo",Redo:"Redo",NumberedListLbl:"Numbered List",NumberedList:"Insert/Remove Numbered List",BulletedListLbl:"Bulleted List",BulletedList:"Insert/Remove Bulleted List",ShowTableBorders:"Show Table Borders",ShowDetails:"Show Details",Style:"Style",FontFormat:"Format",Font:"Font",FontSize:"Size",TextColor:"Text Colour",BGColor:"Background Colour",Source:"Source",Find:"Find",Replace:"Replace",SpellCheck:"Check Spelling",UniversalKeyboard:"Universal Keyboard",PageBreakLbl:"Page Break",PageBreak:"Insert Page Break",Form:"Form",Checkbox:"Checkbox",RadioButton:"Radio Button",TextField:"Text Field",Textarea:"Textarea",HiddenField:"Hidden Field",Button:"Button",SelectionField:"Selection Field",ImageButton:"Image Button",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"Edit Link",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Delete Rows",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Delete Columns",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Delete Cells",MergeCells:"Merge Cells",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Delete Table",CellProperties:"Cell Properties",TableProperties:"Table Properties",ImageProperties:"Image Properties",FlashProperties:"Flash Properties",AnchorProp:"Anchor Properties",ButtonProp:"Button Properties",CheckboxProp:"Checkbox Properties",HiddenFieldProp:"Hidden Field Properties",RadioButtonProp:"Radio Button Properties",ImageButtonProp:"Image Button Properties",TextFieldProp:"Text Field Properties",SelectionFieldProp:"Selection Field Properties",TextareaProp:"Textarea Properties",FormProp:"Form Properties",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",ProcessingXHTML:"Processing XHTML. Please wait...",Done:"Done",PasteWordConfirm:"The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",NotCompatiblePaste:"This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?",UnknownToolbarItem:'Unknown toolbar item "%1"',UnknownCommand:'Unknown command name "%1"',NotImplemented:"Command not implemented",UnknownToolbarSet:'Toolbar set "%1" doesn\'t exist',NoActiveX:'Your browser\'s security settings could limit some features of the editor. You must enable the option "Run ActiveX controls and plug-ins". You may experience errors and notice missing features.',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"It was not possible to open the dialog window. Make sure all popup blockers are disabled.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Cancel",DlgBtnClose:"Close",DlgBtnBrowseServer:"Browse Server",DlgAdvancedTag:"Advanced",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Please insert the URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Language Direction",DlgGenLangDirLtr:"Left to Right (LTR)",DlgGenLangDirRtl:"Right to Left (RTL)",DlgGenLangCode:"Language Code",DlgGenAccessKey:"Access Key",DlgGenName:"Name",DlgGenTabIndex:"Tab Index",DlgGenLongDescr:"Long Description URL",DlgGenClass:"Stylesheet Classes",DlgGenTitle:"Advisory Title",DlgGenContType:"Advisory Content Type",DlgGenLinkCharset:"Linked Resource Charset",DlgGenStyle:"Style",DlgImgTitle:"Image Properties",DlgImgInfoTab:"Image Info",DlgImgBtnUpload:"Send it to the Server",DlgImgURL:"URL",DlgImgUpload:"Upload",DlgImgAlt:"Alternative Text",DlgImgWidth:"Width",DlgImgHeight:"Height",DlgImgLockRatio:"Lock Ratio",DlgBtnResetSize:"Reset Size",DlgImgBorder:"Border",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Align",DlgImgAlignLeft:"Left",DlgImgAlignAbsBottom:"Abs Bottom",DlgImgAlignAbsMiddle:"Abs Middle",DlgImgAlignBaseline:"Baseline",DlgImgAlignBottom:"Bottom",DlgImgAlignMiddle:"Middle",DlgImgAlignRight:"Right",DlgImgAlignTextTop:"Text Top",DlgImgAlignTop:"Top",DlgImgPreview:"Preview",DlgImgAlertUrl:"Please type the image URL",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash Properties",DlgFlashChkPlay:"Auto Play",DlgFlashChkLoop:"Loop",DlgFlashChkMenu:"Enable Flash Menu",DlgFlashScale:"Scale",DlgFlashScaleAll:"Show all",DlgFlashScaleNoBorder:"No Border",DlgFlashScaleFit:"Exact Fit",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Link Info",DlgLnkTargetTab:"Target",DlgLnkType:"Link Type",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Link to anchor in the text",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Select an Anchor",DlgLnkAnchorByName:"By Anchor Name",DlgLnkAnchorById:"By Element Id",DlgLnkNoAnchors:"(No anchors available in the document)",DlgLnkEMail:"E-Mail Address",DlgLnkEMailSubject:"Message Subject",DlgLnkEMailBody:"Message Body",DlgLnkUpload:"Upload",DlgLnkBtnUpload:"Send it to the Server",DlgLnkTarget:"Target",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"New Window (_blank)",DlgLnkTargetParent:"Parent Window (_parent)",DlgLnkTargetSelf:"Same Window (_self)",DlgLnkTargetTop:"Topmost Window (_top)",DlgLnkTargetFrameName:"Target Frame Name",DlgLnkPopWinName:"Popup Window Name",DlgLnkPopWinFeat:"Popup Window Features",DlgLnkPopResize:"Resizable",DlgLnkPopLocation:"Location Bar",DlgLnkPopMenu:"Menu Bar",DlgLnkPopScroll:"Scroll Bars",DlgLnkPopStatus:"Status Bar",DlgLnkPopToolbar:"Toolbar",DlgLnkPopFullScrn:"Full Screen (IE)",DlgLnkPopDependent:"Dependent (Netscape)",DlgLnkPopWidth:"Width",DlgLnkPopHeight:"Height",DlgLnkPopLeft:"Left Position",DlgLnkPopTop:"Top Position",DlnLnkMsgNoUrl:"Please type the link URL",DlnLnkMsgNoEMail:"Please type the e-mail address",DlnLnkMsgNoAnchor:"Please select an anchor",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Select Colour",DlgColorBtnClear:"Clear",DlgColorHighlight:"Highlight",DlgColorSelected:"Selected",DlgSmileyTitle:"Insert a Smiley",DlgSpecialCharTitle:"Select Special Character",DlgTableTitle:"Table Properties",DlgTableRows:"Rows",DlgTableColumns:"Columns",DlgTableBorder:"Border size",DlgTableAlign:"Alignment",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Left",DlgTableAlignCenter:"Centre",DlgTableAlignRight:"Right",DlgTableWidth:"Width",DlgTableWidthPx:"pixels",DlgTableWidthPc:"percent",DlgTableHeight:"Height",DlgTableCellSpace:"Cell spacing",DlgTableCellPad:"Cell padding",DlgTableCaption:"Caption",DlgTableSummary:"Summary",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Cell Properties",DlgCellWidth:"Width",DlgCellWidthPx:"pixels",DlgCellWidthPc:"percent",DlgCellHeight:"Height",DlgCellWordWrap:"Word Wrap",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Yes",DlgCellWordWrapNo:"No",DlgCellHorAlign:"Horizontal Alignment",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Left",DlgCellHorAlignCenter:"Centre",DlgCellHorAlignRight:"Right",DlgCellVerAlign:"Vertical Alignment",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Top",DlgCellVerAlignMiddle:"Middle",DlgCellVerAlignBottom:"Bottom",DlgCellVerAlignBaseline:"Baseline",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Rows Span",DlgCellCollSpan:"Columns Span",DlgCellBackColor:"Background Colour",DlgCellBorderColor:"Border Colour",DlgCellBtnSelect:"Select...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Find",DlgFindFindBtn:"Find",DlgFindNotFoundMsg:"The specified text was not found.",DlgReplaceTitle:"Replace",DlgReplaceFindLbl:"Find what:",DlgReplaceReplaceLbl:"Replace with:",DlgReplaceCaseChk:"Match case",DlgReplaceReplaceBtn:"Replace",DlgReplaceReplAllBtn:"Replace All",DlgReplaceWordChk:"Match whole word",PasteErrorCut:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).",PasteErrorCopy:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).",PasteAsText:"Paste as Plain Text",PasteFromWord:"Paste from Word",DlgPasteMsg2:"Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignore Font Face definitions",DlgPasteRemoveStyles:"Remove Styles definitions",ColorAutomatic:"Automatic",ColorMoreColors:"More Colours...",DocProps:"Document Properties",DlgAnchorTitle:"Anchor Properties",DlgAnchorName:"Anchor Name",DlgAnchorErrorName:"Please type the anchor name",DlgSpellNotInDic:"Not in dictionary",DlgSpellChangeTo:"Change to",DlgSpellBtnIgnore:"Ignore",DlgSpellBtnIgnoreAll:"Ignore All",DlgSpellBtnReplace:"Replace",DlgSpellBtnReplaceAll:"Replace All",DlgSpellBtnUndo:"Undo",DlgSpellNoSuggestions:"- No suggestions -",DlgSpellProgress:"Spell check in progress...",DlgSpellNoMispell:"Spell check complete: No misspellings found",DlgSpellNoChanges:"Spell check complete: No words changed",DlgSpellOneChange:"Spell check complete: One word changed",DlgSpellManyChanges:"Spell check complete: %1 words changed",IeSpellDownload:"Spell checker not installed. Do you want to download it now?",DlgButtonText:"Text (Value)",DlgButtonType:"Type",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Name",DlgCheckboxValue:"Value",DlgCheckboxSelected:"Selected",DlgFormName:"Name",DlgFormAction:"Action",DlgFormMethod:"Method",DlgSelectName:"Name",DlgSelectValue:"Value",DlgSelectSize:"Size",DlgSelectLines:"lines",DlgSelectChkMulti:"Allow multiple selections",DlgSelectOpAvail:"Available Options",DlgSelectOpText:"Text",DlgSelectOpValue:"Value",DlgSelectBtnAdd:"Add",DlgSelectBtnModify:"Modify",DlgSelectBtnUp:"Up",DlgSelectBtnDown:"Down",DlgSelectBtnSetValue:"Set as selected value",DlgSelectBtnDelete:"Delete",DlgTextareaName:"Name",DlgTextareaCols:"Columns",DlgTextareaRows:"Rows",DlgTextName:"Name",DlgTextValue:"Value",DlgTextCharWidth:"Character Width",DlgTextMaxChars:"Maximum Characters",DlgTextType:"Type",DlgTextTypeText:"Text",DlgTextTypePass:"Password",DlgHiddenName:"Name",DlgHiddenValue:"Value",BulletedListProp:"Bulleted List Properties",NumberedListProp:"Numbered List Properties",DlgLstStart:"Start",DlgLstType:"Type",DlgLstTypeCircle:"Circle",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"Square",DlgLstTypeNumbers:"Numbers (1, 2, 3)",DlgLstTypeLCase:"Lowercase Letters (a, b, c)",DlgLstTypeUCase:"Uppercase Letters (A, B, C)",DlgLstTypeSRoman:"Small Roman Numerals (i, ii, iii)",DlgLstTypeLRoman:"Large Roman Numerals (I, II, III)",DlgDocGeneralTab:"General",DlgDocBackTab:"Background",DlgDocColorsTab:"Colours and Margins",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Page Title",DlgDocLangDir:"Language Direction",DlgDocLangDirLTR:"Left to Right (LTR)",DlgDocLangDirRTL:"Right to Left (RTL)",DlgDocLangCode:"Language Code",DlgDocCharSet:"Character Set Encoding",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Other Character Set Encoding",DlgDocDocType:"Document Type Heading",DlgDocDocTypeOther:"Other Document Type Heading",DlgDocIncXHTML:"Include XHTML Declarations",DlgDocBgColor:"Background Colour",DlgDocBgImage:"Background Image URL",DlgDocBgNoScroll:"Nonscrolling Background",DlgDocCText:"Text",DlgDocCLink:"Link",DlgDocCVisited:"Visited Link",DlgDocCActive:"Active Link",DlgDocMargins:"Page Margins",DlgDocMaTop:"Top",DlgDocMaLeft:"Left",DlgDocMaRight:"Right",DlgDocMaBottom:"Bottom",DlgDocMeIndex:"Document Indexing Keywords (comma separated)",DlgDocMeDescr:"Document Description",DlgDocMeAuthor:"Author",DlgDocMeCopy:"Copyright",DlgDocPreview:"Preview",Templates:"Templates",DlgTemplatesTitle:"Content Templates",DlgTemplatesSelMsg:"Please select the template to open in the editor (the actual contents will be lost):",DlgTemplatesLoading:"Loading templates list. Please wait...",DlgTemplatesNoTpl:"(No templates defined)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"About",DlgAboutBrowserInfoTab:"Browser Info",DlgAboutLicenseTab:"License",DlgAboutVersion:"version",DlgAboutInfo:"For further information go to",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/en-ca.js b/horde/services/editor/fckeditor/editor/lang/en-ca.js
deleted file mode 100644
index 5b91ac61e..000000000
--- a/horde/services/editor/fckeditor/editor/lang/en-ca.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Collapse Toolbar",ToolbarExpand:"Expand Toolbar",Save:"Save",NewPage:"New Page",Preview:"Preview",Cut:"Cut",Copy:"Copy",Paste:"Paste",PasteText:"Paste as plain text",PasteWord:"Paste from Word",Print:"Print",SelectAll:"Select All",RemoveFormat:"Remove Format",InsertLinkLbl:"Link",InsertLink:"Insert/Edit Link",RemoveLink:"Remove Link",VisitLink:"Open Link",Anchor:"Insert/Edit Anchor",AnchorDelete:"Remove Anchor",InsertImageLbl:"Image",InsertImage:"Insert/Edit Image",InsertFlashLbl:"Flash",InsertFlash:"Insert/Edit Flash",InsertTableLbl:"Table",InsertTable:"Insert/Edit Table",InsertLineLbl:"Line",InsertLine:"Insert Horizontal Line",InsertSpecialCharLbl:"Special Character",InsertSpecialChar:"Insert Special Character",InsertSmileyLbl:"Smiley",InsertSmiley:"Insert Smiley",About:"About FCKeditor",Bold:"Bold",Italic:"Italic",Underline:"Underline",StrikeThrough:"Strike Through",Subscript:"Subscript",Superscript:"Superscript",LeftJustify:"Left Justify",CenterJustify:"Centre Justify",RightJustify:"Right Justify",BlockJustify:"Block Justify",DecreaseIndent:"Decrease Indent",IncreaseIndent:"Increase Indent",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Undo",Redo:"Redo",NumberedListLbl:"Numbered List",NumberedList:"Insert/Remove Numbered List",BulletedListLbl:"Bulleted List",BulletedList:"Insert/Remove Bulleted List",ShowTableBorders:"Show Table Borders",ShowDetails:"Show Details",Style:"Style",FontFormat:"Format",Font:"Font",FontSize:"Size",TextColor:"Text Colour",BGColor:"Background Colour",Source:"Source",Find:"Find",Replace:"Replace",SpellCheck:"Check Spelling",UniversalKeyboard:"Universal Keyboard",PageBreakLbl:"Page Break",PageBreak:"Insert Page Break",Form:"Form",Checkbox:"Checkbox",RadioButton:"Radio Button",TextField:"Text Field",Textarea:"Textarea",HiddenField:"Hidden Field",Button:"Button",SelectionField:"Selection Field",ImageButton:"Image Button",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"Edit Link",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Delete Rows",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Delete Columns",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Delete Cells",MergeCells:"Merge Cells",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Delete Table",CellProperties:"Cell Properties",TableProperties:"Table Properties",ImageProperties:"Image Properties",FlashProperties:"Flash Properties",AnchorProp:"Anchor Properties",ButtonProp:"Button Properties",CheckboxProp:"Checkbox Properties",HiddenFieldProp:"Hidden Field Properties",RadioButtonProp:"Radio Button Properties",ImageButtonProp:"Image Button Properties",TextFieldProp:"Text Field Properties",SelectionFieldProp:"Selection Field Properties",TextareaProp:"Textarea Properties",FormProp:"Form Properties",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",ProcessingXHTML:"Processing XHTML. Please wait...",Done:"Done",PasteWordConfirm:"The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",NotCompatiblePaste:"This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?",UnknownToolbarItem:'Unknown toolbar item "%1"',UnknownCommand:'Unknown command name "%1"',NotImplemented:"Command not implemented",UnknownToolbarSet:'Toolbar set "%1" doesn\'t exist',NoActiveX:'Your browser\'s security settings could limit some features of the editor. You must enable the option "Run ActiveX controls and plug-ins". You may experience errors and notice missing features.',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"It was not possible to open the dialog window. Make sure all popup blockers are disabled.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Cancel",DlgBtnClose:"Close",DlgBtnBrowseServer:"Browse Server",DlgAdvancedTag:"Advanced",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Please insert the URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Language Direction",DlgGenLangDirLtr:"Left to Right (LTR)",DlgGenLangDirRtl:"Right to Left (RTL)",DlgGenLangCode:"Language Code",DlgGenAccessKey:"Access Key",DlgGenName:"Name",DlgGenTabIndex:"Tab Index",DlgGenLongDescr:"Long Description URL",DlgGenClass:"Stylesheet Classes",DlgGenTitle:"Advisory Title",DlgGenContType:"Advisory Content Type",DlgGenLinkCharset:"Linked Resource Charset",DlgGenStyle:"Style",DlgImgTitle:"Image Properties",DlgImgInfoTab:"Image Info",DlgImgBtnUpload:"Send it to the Server",DlgImgURL:"URL",DlgImgUpload:"Upload",DlgImgAlt:"Alternative Text",DlgImgWidth:"Width",DlgImgHeight:"Height",DlgImgLockRatio:"Lock Ratio",DlgBtnResetSize:"Reset Size",DlgImgBorder:"Border",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Align",DlgImgAlignLeft:"Left",DlgImgAlignAbsBottom:"Abs Bottom",DlgImgAlignAbsMiddle:"Abs Middle",DlgImgAlignBaseline:"Baseline",DlgImgAlignBottom:"Bottom",DlgImgAlignMiddle:"Middle",DlgImgAlignRight:"Right",DlgImgAlignTextTop:"Text Top",DlgImgAlignTop:"Top",DlgImgPreview:"Preview",DlgImgAlertUrl:"Please type the image URL",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash Properties",DlgFlashChkPlay:"Auto Play",DlgFlashChkLoop:"Loop",DlgFlashChkMenu:"Enable Flash Menu",DlgFlashScale:"Scale",DlgFlashScaleAll:"Show all",DlgFlashScaleNoBorder:"No Border",DlgFlashScaleFit:"Exact Fit",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Link Info",DlgLnkTargetTab:"Target",DlgLnkType:"Link Type",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Link to anchor in the text",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Select an Anchor",DlgLnkAnchorByName:"By Anchor Name",DlgLnkAnchorById:"By Element Id",DlgLnkNoAnchors:"(No anchors available in the document)",DlgLnkEMail:"E-Mail Address",DlgLnkEMailSubject:"Message Subject",DlgLnkEMailBody:"Message Body",DlgLnkUpload:"Upload",DlgLnkBtnUpload:"Send it to the Server",DlgLnkTarget:"Target",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"New Window (_blank)",DlgLnkTargetParent:"Parent Window (_parent)",DlgLnkTargetSelf:"Same Window (_self)",DlgLnkTargetTop:"Topmost Window (_top)",DlgLnkTargetFrameName:"Target Frame Name",DlgLnkPopWinName:"Popup Window Name",DlgLnkPopWinFeat:"Popup Window Features",DlgLnkPopResize:"Resizable",DlgLnkPopLocation:"Location Bar",DlgLnkPopMenu:"Menu Bar",DlgLnkPopScroll:"Scroll Bars",DlgLnkPopStatus:"Status Bar",DlgLnkPopToolbar:"Toolbar",DlgLnkPopFullScrn:"Full Screen (IE)",DlgLnkPopDependent:"Dependent (Netscape)",DlgLnkPopWidth:"Width",DlgLnkPopHeight:"Height",DlgLnkPopLeft:"Left Position",DlgLnkPopTop:"Top Position",DlnLnkMsgNoUrl:"Please type the link URL",DlnLnkMsgNoEMail:"Please type the e-mail address",DlnLnkMsgNoAnchor:"Please select an anchor",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Select Colour",DlgColorBtnClear:"Clear",DlgColorHighlight:"Highlight",DlgColorSelected:"Selected",DlgSmileyTitle:"Insert a Smiley",DlgSpecialCharTitle:"Select Special Character",DlgTableTitle:"Table Properties",DlgTableRows:"Rows",DlgTableColumns:"Columns",DlgTableBorder:"Border size",DlgTableAlign:"Alignment",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Left",DlgTableAlignCenter:"Centre",DlgTableAlignRight:"Right",DlgTableWidth:"Width",DlgTableWidthPx:"pixels",DlgTableWidthPc:"percent",DlgTableHeight:"Height",DlgTableCellSpace:"Cell spacing",DlgTableCellPad:"Cell padding",DlgTableCaption:"Caption",DlgTableSummary:"Summary",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Cell Properties",DlgCellWidth:"Width",DlgCellWidthPx:"pixels",DlgCellWidthPc:"percent",DlgCellHeight:"Height",DlgCellWordWrap:"Word Wrap",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Yes",DlgCellWordWrapNo:"No",DlgCellHorAlign:"Horizontal Alignment",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Left",DlgCellHorAlignCenter:"Centre",DlgCellHorAlignRight:"Right",DlgCellVerAlign:"Vertical Alignment",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Top",DlgCellVerAlignMiddle:"Middle",DlgCellVerAlignBottom:"Bottom",DlgCellVerAlignBaseline:"Baseline",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Rows Span",DlgCellCollSpan:"Columns Span",DlgCellBackColor:"Background Colour",DlgCellBorderColor:"Border Colour",DlgCellBtnSelect:"Select...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Find",DlgFindFindBtn:"Find",DlgFindNotFoundMsg:"The specified text was not found.",DlgReplaceTitle:"Replace",DlgReplaceFindLbl:"Find what:",DlgReplaceReplaceLbl:"Replace with:",DlgReplaceCaseChk:"Match case",DlgReplaceReplaceBtn:"Replace",DlgReplaceReplAllBtn:"Replace All",DlgReplaceWordChk:"Match whole word",PasteErrorCut:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).",PasteErrorCopy:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).",PasteAsText:"Paste as Plain Text",PasteFromWord:"Paste from Word",DlgPasteMsg2:"Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignore Font Face definitions",DlgPasteRemoveStyles:"Remove Styles definitions",ColorAutomatic:"Automatic",ColorMoreColors:"More Colours...",DocProps:"Document Properties",DlgAnchorTitle:"Anchor Properties",DlgAnchorName:"Anchor Name",DlgAnchorErrorName:"Please type the anchor name",DlgSpellNotInDic:"Not in dictionary",DlgSpellChangeTo:"Change to",DlgSpellBtnIgnore:"Ignore",DlgSpellBtnIgnoreAll:"Ignore All",DlgSpellBtnReplace:"Replace",DlgSpellBtnReplaceAll:"Replace All",DlgSpellBtnUndo:"Undo",DlgSpellNoSuggestions:"- No suggestions -",DlgSpellProgress:"Spell check in progress...",DlgSpellNoMispell:"Spell check complete: No misspellings found",DlgSpellNoChanges:"Spell check complete: No words changed",DlgSpellOneChange:"Spell check complete: One word changed",DlgSpellManyChanges:"Spell check complete: %1 words changed",IeSpellDownload:"Spell checker not installed. Do you want to download it now?",DlgButtonText:"Text (Value)",DlgButtonType:"Type",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Name",DlgCheckboxValue:"Value",DlgCheckboxSelected:"Selected",DlgFormName:"Name",DlgFormAction:"Action",DlgFormMethod:"Method",DlgSelectName:"Name",DlgSelectValue:"Value",DlgSelectSize:"Size",DlgSelectLines:"lines",DlgSelectChkMulti:"Allow multiple selections",DlgSelectOpAvail:"Available Options",DlgSelectOpText:"Text",DlgSelectOpValue:"Value",DlgSelectBtnAdd:"Add",DlgSelectBtnModify:"Modify",DlgSelectBtnUp:"Up",DlgSelectBtnDown:"Down",DlgSelectBtnSetValue:"Set as selected value",DlgSelectBtnDelete:"Delete",DlgTextareaName:"Name",DlgTextareaCols:"Columns",DlgTextareaRows:"Rows",DlgTextName:"Name",DlgTextValue:"Value",DlgTextCharWidth:"Character Width",DlgTextMaxChars:"Maximum Characters",DlgTextType:"Type",DlgTextTypeText:"Text",DlgTextTypePass:"Password",DlgHiddenName:"Name",DlgHiddenValue:"Value",BulletedListProp:"Bulleted List Properties",NumberedListProp:"Numbered List Properties",DlgLstStart:"Start",DlgLstType:"Type",DlgLstTypeCircle:"Circle",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"Square",DlgLstTypeNumbers:"Numbers (1, 2, 3)",DlgLstTypeLCase:"Lowercase Letters (a, b, c)",DlgLstTypeUCase:"Uppercase Letters (A, B, C)",DlgLstTypeSRoman:"Small Roman Numerals (i, ii, iii)",DlgLstTypeLRoman:"Large Roman Numerals (I, II, III)",DlgDocGeneralTab:"General",DlgDocBackTab:"Background",DlgDocColorsTab:"Colours and Margins",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Page Title",DlgDocLangDir:"Language Direction",DlgDocLangDirLTR:"Left to Right (LTR)",DlgDocLangDirRTL:"Right to Left (RTL)",DlgDocLangCode:"Language Code",DlgDocCharSet:"Character Set Encoding",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Other Character Set Encoding",DlgDocDocType:"Document Type Heading",DlgDocDocTypeOther:"Other Document Type Heading",DlgDocIncXHTML:"Include XHTML Declarations",DlgDocBgColor:"Background Colour",DlgDocBgImage:"Background Image URL",DlgDocBgNoScroll:"Nonscrolling Background",DlgDocCText:"Text",DlgDocCLink:"Link",DlgDocCVisited:"Visited Link",DlgDocCActive:"Active Link",DlgDocMargins:"Page Margins",DlgDocMaTop:"Top",DlgDocMaLeft:"Left",DlgDocMaRight:"Right",DlgDocMaBottom:"Bottom",DlgDocMeIndex:"Document Indexing Keywords (comma separated)",DlgDocMeDescr:"Document Description",DlgDocMeAuthor:"Author",DlgDocMeCopy:"Copyright",DlgDocPreview:"Preview",Templates:"Templates",DlgTemplatesTitle:"Content Templates",DlgTemplatesSelMsg:"Please select the template to open in the editor (the actual contents will be lost):",DlgTemplatesLoading:"Loading templates list. Please wait...",DlgTemplatesNoTpl:"(No templates defined)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"About",DlgAboutBrowserInfoTab:"Browser Info",DlgAboutLicenseTab:"License",DlgAboutVersion:"version",DlgAboutInfo:"For further information go to",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/en-uk.js b/horde/services/editor/fckeditor/editor/lang/en-uk.js
deleted file mode 100644
index 5b91ac61e..000000000
--- a/horde/services/editor/fckeditor/editor/lang/en-uk.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Collapse Toolbar",ToolbarExpand:"Expand Toolbar",Save:"Save",NewPage:"New Page",Preview:"Preview",Cut:"Cut",Copy:"Copy",Paste:"Paste",PasteText:"Paste as plain text",PasteWord:"Paste from Word",Print:"Print",SelectAll:"Select All",RemoveFormat:"Remove Format",InsertLinkLbl:"Link",InsertLink:"Insert/Edit Link",RemoveLink:"Remove Link",VisitLink:"Open Link",Anchor:"Insert/Edit Anchor",AnchorDelete:"Remove Anchor",InsertImageLbl:"Image",InsertImage:"Insert/Edit Image",InsertFlashLbl:"Flash",InsertFlash:"Insert/Edit Flash",InsertTableLbl:"Table",InsertTable:"Insert/Edit Table",InsertLineLbl:"Line",InsertLine:"Insert Horizontal Line",InsertSpecialCharLbl:"Special Character",InsertSpecialChar:"Insert Special Character",InsertSmileyLbl:"Smiley",InsertSmiley:"Insert Smiley",About:"About FCKeditor",Bold:"Bold",Italic:"Italic",Underline:"Underline",StrikeThrough:"Strike Through",Subscript:"Subscript",Superscript:"Superscript",LeftJustify:"Left Justify",CenterJustify:"Centre Justify",RightJustify:"Right Justify",BlockJustify:"Block Justify",DecreaseIndent:"Decrease Indent",IncreaseIndent:"Increase Indent",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Undo",Redo:"Redo",NumberedListLbl:"Numbered List",NumberedList:"Insert/Remove Numbered List",BulletedListLbl:"Bulleted List",BulletedList:"Insert/Remove Bulleted List",ShowTableBorders:"Show Table Borders",ShowDetails:"Show Details",Style:"Style",FontFormat:"Format",Font:"Font",FontSize:"Size",TextColor:"Text Colour",BGColor:"Background Colour",Source:"Source",Find:"Find",Replace:"Replace",SpellCheck:"Check Spelling",UniversalKeyboard:"Universal Keyboard",PageBreakLbl:"Page Break",PageBreak:"Insert Page Break",Form:"Form",Checkbox:"Checkbox",RadioButton:"Radio Button",TextField:"Text Field",Textarea:"Textarea",HiddenField:"Hidden Field",Button:"Button",SelectionField:"Selection Field",ImageButton:"Image Button",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"Edit Link",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Delete Rows",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Delete Columns",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Delete Cells",MergeCells:"Merge Cells",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Delete Table",CellProperties:"Cell Properties",TableProperties:"Table Properties",ImageProperties:"Image Properties",FlashProperties:"Flash Properties",AnchorProp:"Anchor Properties",ButtonProp:"Button Properties",CheckboxProp:"Checkbox Properties",HiddenFieldProp:"Hidden Field Properties",RadioButtonProp:"Radio Button Properties",ImageButtonProp:"Image Button Properties",TextFieldProp:"Text Field Properties",SelectionFieldProp:"Selection Field Properties",TextareaProp:"Textarea Properties",FormProp:"Form Properties",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",ProcessingXHTML:"Processing XHTML. Please wait...",Done:"Done",PasteWordConfirm:"The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",NotCompatiblePaste:"This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?",UnknownToolbarItem:'Unknown toolbar item "%1"',UnknownCommand:'Unknown command name "%1"',NotImplemented:"Command not implemented",UnknownToolbarSet:'Toolbar set "%1" doesn\'t exist',NoActiveX:'Your browser\'s security settings could limit some features of the editor. You must enable the option "Run ActiveX controls and plug-ins". You may experience errors and notice missing features.',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"It was not possible to open the dialog window. Make sure all popup blockers are disabled.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Cancel",DlgBtnClose:"Close",DlgBtnBrowseServer:"Browse Server",DlgAdvancedTag:"Advanced",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Please insert the URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Language Direction",DlgGenLangDirLtr:"Left to Right (LTR)",DlgGenLangDirRtl:"Right to Left (RTL)",DlgGenLangCode:"Language Code",DlgGenAccessKey:"Access Key",DlgGenName:"Name",DlgGenTabIndex:"Tab Index",DlgGenLongDescr:"Long Description URL",DlgGenClass:"Stylesheet Classes",DlgGenTitle:"Advisory Title",DlgGenContType:"Advisory Content Type",DlgGenLinkCharset:"Linked Resource Charset",DlgGenStyle:"Style",DlgImgTitle:"Image Properties",DlgImgInfoTab:"Image Info",DlgImgBtnUpload:"Send it to the Server",DlgImgURL:"URL",DlgImgUpload:"Upload",DlgImgAlt:"Alternative Text",DlgImgWidth:"Width",DlgImgHeight:"Height",DlgImgLockRatio:"Lock Ratio",DlgBtnResetSize:"Reset Size",DlgImgBorder:"Border",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Align",DlgImgAlignLeft:"Left",DlgImgAlignAbsBottom:"Abs Bottom",DlgImgAlignAbsMiddle:"Abs Middle",DlgImgAlignBaseline:"Baseline",DlgImgAlignBottom:"Bottom",DlgImgAlignMiddle:"Middle",DlgImgAlignRight:"Right",DlgImgAlignTextTop:"Text Top",DlgImgAlignTop:"Top",DlgImgPreview:"Preview",DlgImgAlertUrl:"Please type the image URL",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash Properties",DlgFlashChkPlay:"Auto Play",DlgFlashChkLoop:"Loop",DlgFlashChkMenu:"Enable Flash Menu",DlgFlashScale:"Scale",DlgFlashScaleAll:"Show all",DlgFlashScaleNoBorder:"No Border",DlgFlashScaleFit:"Exact Fit",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Link Info",DlgLnkTargetTab:"Target",DlgLnkType:"Link Type",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Link to anchor in the text",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Select an Anchor",DlgLnkAnchorByName:"By Anchor Name",DlgLnkAnchorById:"By Element Id",DlgLnkNoAnchors:"(No anchors available in the document)",DlgLnkEMail:"E-Mail Address",DlgLnkEMailSubject:"Message Subject",DlgLnkEMailBody:"Message Body",DlgLnkUpload:"Upload",DlgLnkBtnUpload:"Send it to the Server",DlgLnkTarget:"Target",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"New Window (_blank)",DlgLnkTargetParent:"Parent Window (_parent)",DlgLnkTargetSelf:"Same Window (_self)",DlgLnkTargetTop:"Topmost Window (_top)",DlgLnkTargetFrameName:"Target Frame Name",DlgLnkPopWinName:"Popup Window Name",DlgLnkPopWinFeat:"Popup Window Features",DlgLnkPopResize:"Resizable",DlgLnkPopLocation:"Location Bar",DlgLnkPopMenu:"Menu Bar",DlgLnkPopScroll:"Scroll Bars",DlgLnkPopStatus:"Status Bar",DlgLnkPopToolbar:"Toolbar",DlgLnkPopFullScrn:"Full Screen (IE)",DlgLnkPopDependent:"Dependent (Netscape)",DlgLnkPopWidth:"Width",DlgLnkPopHeight:"Height",DlgLnkPopLeft:"Left Position",DlgLnkPopTop:"Top Position",DlnLnkMsgNoUrl:"Please type the link URL",DlnLnkMsgNoEMail:"Please type the e-mail address",DlnLnkMsgNoAnchor:"Please select an anchor",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Select Colour",DlgColorBtnClear:"Clear",DlgColorHighlight:"Highlight",DlgColorSelected:"Selected",DlgSmileyTitle:"Insert a Smiley",DlgSpecialCharTitle:"Select Special Character",DlgTableTitle:"Table Properties",DlgTableRows:"Rows",DlgTableColumns:"Columns",DlgTableBorder:"Border size",DlgTableAlign:"Alignment",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Left",DlgTableAlignCenter:"Centre",DlgTableAlignRight:"Right",DlgTableWidth:"Width",DlgTableWidthPx:"pixels",DlgTableWidthPc:"percent",DlgTableHeight:"Height",DlgTableCellSpace:"Cell spacing",DlgTableCellPad:"Cell padding",DlgTableCaption:"Caption",DlgTableSummary:"Summary",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Cell Properties",DlgCellWidth:"Width",DlgCellWidthPx:"pixels",DlgCellWidthPc:"percent",DlgCellHeight:"Height",DlgCellWordWrap:"Word Wrap",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Yes",DlgCellWordWrapNo:"No",DlgCellHorAlign:"Horizontal Alignment",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Left",DlgCellHorAlignCenter:"Centre",DlgCellHorAlignRight:"Right",DlgCellVerAlign:"Vertical Alignment",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Top",DlgCellVerAlignMiddle:"Middle",DlgCellVerAlignBottom:"Bottom",DlgCellVerAlignBaseline:"Baseline",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Rows Span",DlgCellCollSpan:"Columns Span",DlgCellBackColor:"Background Colour",DlgCellBorderColor:"Border Colour",DlgCellBtnSelect:"Select...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Find",DlgFindFindBtn:"Find",DlgFindNotFoundMsg:"The specified text was not found.",DlgReplaceTitle:"Replace",DlgReplaceFindLbl:"Find what:",DlgReplaceReplaceLbl:"Replace with:",DlgReplaceCaseChk:"Match case",DlgReplaceReplaceBtn:"Replace",DlgReplaceReplAllBtn:"Replace All",DlgReplaceWordChk:"Match whole word",PasteErrorCut:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).",PasteErrorCopy:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).",PasteAsText:"Paste as Plain Text",PasteFromWord:"Paste from Word",DlgPasteMsg2:"Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignore Font Face definitions",DlgPasteRemoveStyles:"Remove Styles definitions",ColorAutomatic:"Automatic",ColorMoreColors:"More Colours...",DocProps:"Document Properties",DlgAnchorTitle:"Anchor Properties",DlgAnchorName:"Anchor Name",DlgAnchorErrorName:"Please type the anchor name",DlgSpellNotInDic:"Not in dictionary",DlgSpellChangeTo:"Change to",DlgSpellBtnIgnore:"Ignore",DlgSpellBtnIgnoreAll:"Ignore All",DlgSpellBtnReplace:"Replace",DlgSpellBtnReplaceAll:"Replace All",DlgSpellBtnUndo:"Undo",DlgSpellNoSuggestions:"- No suggestions -",DlgSpellProgress:"Spell check in progress...",DlgSpellNoMispell:"Spell check complete: No misspellings found",DlgSpellNoChanges:"Spell check complete: No words changed",DlgSpellOneChange:"Spell check complete: One word changed",DlgSpellManyChanges:"Spell check complete: %1 words changed",IeSpellDownload:"Spell checker not installed. Do you want to download it now?",DlgButtonText:"Text (Value)",DlgButtonType:"Type",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Name",DlgCheckboxValue:"Value",DlgCheckboxSelected:"Selected",DlgFormName:"Name",DlgFormAction:"Action",DlgFormMethod:"Method",DlgSelectName:"Name",DlgSelectValue:"Value",DlgSelectSize:"Size",DlgSelectLines:"lines",DlgSelectChkMulti:"Allow multiple selections",DlgSelectOpAvail:"Available Options",DlgSelectOpText:"Text",DlgSelectOpValue:"Value",DlgSelectBtnAdd:"Add",DlgSelectBtnModify:"Modify",DlgSelectBtnUp:"Up",DlgSelectBtnDown:"Down",DlgSelectBtnSetValue:"Set as selected value",DlgSelectBtnDelete:"Delete",DlgTextareaName:"Name",DlgTextareaCols:"Columns",DlgTextareaRows:"Rows",DlgTextName:"Name",DlgTextValue:"Value",DlgTextCharWidth:"Character Width",DlgTextMaxChars:"Maximum Characters",DlgTextType:"Type",DlgTextTypeText:"Text",DlgTextTypePass:"Password",DlgHiddenName:"Name",DlgHiddenValue:"Value",BulletedListProp:"Bulleted List Properties",NumberedListProp:"Numbered List Properties",DlgLstStart:"Start",DlgLstType:"Type",DlgLstTypeCircle:"Circle",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"Square",DlgLstTypeNumbers:"Numbers (1, 2, 3)",DlgLstTypeLCase:"Lowercase Letters (a, b, c)",DlgLstTypeUCase:"Uppercase Letters (A, B, C)",DlgLstTypeSRoman:"Small Roman Numerals (i, ii, iii)",DlgLstTypeLRoman:"Large Roman Numerals (I, II, III)",DlgDocGeneralTab:"General",DlgDocBackTab:"Background",DlgDocColorsTab:"Colours and Margins",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Page Title",DlgDocLangDir:"Language Direction",DlgDocLangDirLTR:"Left to Right (LTR)",DlgDocLangDirRTL:"Right to Left (RTL)",DlgDocLangCode:"Language Code",DlgDocCharSet:"Character Set Encoding",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Other Character Set Encoding",DlgDocDocType:"Document Type Heading",DlgDocDocTypeOther:"Other Document Type Heading",DlgDocIncXHTML:"Include XHTML Declarations",DlgDocBgColor:"Background Colour",DlgDocBgImage:"Background Image URL",DlgDocBgNoScroll:"Nonscrolling Background",DlgDocCText:"Text",DlgDocCLink:"Link",DlgDocCVisited:"Visited Link",DlgDocCActive:"Active Link",DlgDocMargins:"Page Margins",DlgDocMaTop:"Top",DlgDocMaLeft:"Left",DlgDocMaRight:"Right",DlgDocMaBottom:"Bottom",DlgDocMeIndex:"Document Indexing Keywords (comma separated)",DlgDocMeDescr:"Document Description",DlgDocMeAuthor:"Author",DlgDocMeCopy:"Copyright",DlgDocPreview:"Preview",Templates:"Templates",DlgTemplatesTitle:"Content Templates",DlgTemplatesSelMsg:"Please select the template to open in the editor (the actual contents will be lost):",DlgTemplatesLoading:"Loading templates list. Please wait...",DlgTemplatesNoTpl:"(No templates defined)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"About",DlgAboutBrowserInfoTab:"Browser Info",DlgAboutLicenseTab:"License",DlgAboutVersion:"version",DlgAboutInfo:"For further information go to",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/en.js b/horde/services/editor/fckeditor/editor/lang/en.js
deleted file mode 100644
index 975e986a7..000000000
--- a/horde/services/editor/fckeditor/editor/lang/en.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Collapse Toolbar",ToolbarExpand:"Expand Toolbar",Save:"Save",NewPage:"New Page",Preview:"Preview",Cut:"Cut",Copy:"Copy",Paste:"Paste",PasteText:"Paste as plain text",PasteWord:"Paste from Word",Print:"Print",SelectAll:"Select All",RemoveFormat:"Remove Format",InsertLinkLbl:"Link",InsertLink:"Insert/Edit Link",RemoveLink:"Remove Link",VisitLink:"Open Link",Anchor:"Insert/Edit Anchor",AnchorDelete:"Remove Anchor",InsertImageLbl:"Image",InsertImage:"Insert/Edit Image",InsertFlashLbl:"Flash",InsertFlash:"Insert/Edit Flash",InsertTableLbl:"Table",InsertTable:"Insert/Edit Table",InsertLineLbl:"Line",InsertLine:"Insert Horizontal Line",InsertSpecialCharLbl:"Special Character",InsertSpecialChar:"Insert Special Character",InsertSmileyLbl:"Smiley",InsertSmiley:"Insert Smiley",About:"About FCKeditor",Bold:"Bold",Italic:"Italic",Underline:"Underline",StrikeThrough:"Strike Through",Subscript:"Subscript",Superscript:"Superscript",LeftJustify:"Left Justify",CenterJustify:"Center Justify",RightJustify:"Right Justify",BlockJustify:"Block Justify",DecreaseIndent:"Decrease Indent",IncreaseIndent:"Increase Indent",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Undo",Redo:"Redo",NumberedListLbl:"Numbered List",NumberedList:"Insert/Remove Numbered List",BulletedListLbl:"Bulleted List",BulletedList:"Insert/Remove Bulleted List",ShowTableBorders:"Show Table Borders",ShowDetails:"Show Details",Style:"Style",FontFormat:"Format",Font:"Font",FontSize:"Size",TextColor:"Text Color",BGColor:"Background Color",Source:"Source",Find:"Find",Replace:"Replace",SpellCheck:"Check Spelling",UniversalKeyboard:"Universal Keyboard",PageBreakLbl:"Page Break",PageBreak:"Insert Page Break",Form:"Form",Checkbox:"Checkbox",RadioButton:"Radio Button",TextField:"Text Field",Textarea:"Textarea",HiddenField:"Hidden Field",Button:"Button",SelectionField:"Selection Field",ImageButton:"Image Button",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"Edit Link",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Delete Rows",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Delete Columns",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Delete Cells",MergeCells:"Merge Cells",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Delete Table",CellProperties:"Cell Properties",TableProperties:"Table Properties",ImageProperties:"Image Properties",FlashProperties:"Flash Properties",AnchorProp:"Anchor Properties",ButtonProp:"Button Properties",CheckboxProp:"Checkbox Properties",HiddenFieldProp:"Hidden Field Properties",RadioButtonProp:"Radio Button Properties",ImageButtonProp:"Image Button Properties",TextFieldProp:"Text Field Properties",SelectionFieldProp:"Selection Field Properties",TextareaProp:"Textarea Properties",FormProp:"Form Properties",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",ProcessingXHTML:"Processing XHTML. Please wait...",Done:"Done",PasteWordConfirm:"The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",NotCompatiblePaste:"This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?",UnknownToolbarItem:'Unknown toolbar item "%1"',UnknownCommand:'Unknown command name "%1"',NotImplemented:"Command not implemented",UnknownToolbarSet:'Toolbar set "%1" doesn\'t exist',NoActiveX:'Your browser\'s security settings could limit some features of the editor. You must enable the option "Run ActiveX controls and plug-ins". You may experience errors and notice missing features.',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"It was not possible to open the dialog window. Make sure all popup blockers are disabled.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Cancel",DlgBtnClose:"Close",DlgBtnBrowseServer:"Browse Server",DlgAdvancedTag:"Advanced",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Please insert the URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Language Direction",DlgGenLangDirLtr:"Left to Right (LTR)",DlgGenLangDirRtl:"Right to Left (RTL)",DlgGenLangCode:"Language Code",DlgGenAccessKey:"Access Key",DlgGenName:"Name",DlgGenTabIndex:"Tab Index",DlgGenLongDescr:"Long Description URL",DlgGenClass:"Stylesheet Classes",DlgGenTitle:"Advisory Title",DlgGenContType:"Advisory Content Type",DlgGenLinkCharset:"Linked Resource Charset",DlgGenStyle:"Style",DlgImgTitle:"Image Properties",DlgImgInfoTab:"Image Info",DlgImgBtnUpload:"Send it to the Server",DlgImgURL:"URL",DlgImgUpload:"Upload",DlgImgAlt:"Alternative Text",DlgImgWidth:"Width",DlgImgHeight:"Height",DlgImgLockRatio:"Lock Ratio",DlgBtnResetSize:"Reset Size",DlgImgBorder:"Border",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Align",DlgImgAlignLeft:"Left",DlgImgAlignAbsBottom:"Abs Bottom",DlgImgAlignAbsMiddle:"Abs Middle",DlgImgAlignBaseline:"Baseline",DlgImgAlignBottom:"Bottom",DlgImgAlignMiddle:"Middle",DlgImgAlignRight:"Right",DlgImgAlignTextTop:"Text Top",DlgImgAlignTop:"Top",DlgImgPreview:"Preview",DlgImgAlertUrl:"Please type the image URL",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash Properties",DlgFlashChkPlay:"Auto Play",DlgFlashChkLoop:"Loop",DlgFlashChkMenu:"Enable Flash Menu",DlgFlashScale:"Scale",DlgFlashScaleAll:"Show all",DlgFlashScaleNoBorder:"No Border",DlgFlashScaleFit:"Exact Fit",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Link Info",DlgLnkTargetTab:"Target",DlgLnkType:"Link Type",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Link to anchor in the text",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Select an Anchor",DlgLnkAnchorByName:"By Anchor Name",DlgLnkAnchorById:"By Element Id",DlgLnkNoAnchors:"(No anchors available in the document)",DlgLnkEMail:"E-Mail Address",DlgLnkEMailSubject:"Message Subject",DlgLnkEMailBody:"Message Body",DlgLnkUpload:"Upload",DlgLnkBtnUpload:"Send it to the Server",DlgLnkTarget:"Target",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"New Window (_blank)",DlgLnkTargetParent:"Parent Window (_parent)",DlgLnkTargetSelf:"Same Window (_self)",DlgLnkTargetTop:"Topmost Window (_top)",DlgLnkTargetFrameName:"Target Frame Name",DlgLnkPopWinName:"Popup Window Name",DlgLnkPopWinFeat:"Popup Window Features",DlgLnkPopResize:"Resizable",DlgLnkPopLocation:"Location Bar",DlgLnkPopMenu:"Menu Bar",DlgLnkPopScroll:"Scroll Bars",DlgLnkPopStatus:"Status Bar",DlgLnkPopToolbar:"Toolbar",DlgLnkPopFullScrn:"Full Screen (IE)",DlgLnkPopDependent:"Dependent (Netscape)",DlgLnkPopWidth:"Width",DlgLnkPopHeight:"Height",DlgLnkPopLeft:"Left Position",DlgLnkPopTop:"Top Position",DlnLnkMsgNoUrl:"Please type the link URL",DlnLnkMsgNoEMail:"Please type the e-mail address",DlnLnkMsgNoAnchor:"Please select an anchor",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Select Color",DlgColorBtnClear:"Clear",DlgColorHighlight:"Highlight",DlgColorSelected:"Selected",DlgSmileyTitle:"Insert a Smiley",DlgSpecialCharTitle:"Select Special Character",DlgTableTitle:"Table Properties",DlgTableRows:"Rows",DlgTableColumns:"Columns",DlgTableBorder:"Border size",DlgTableAlign:"Alignment",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Left",DlgTableAlignCenter:"Center",DlgTableAlignRight:"Right",DlgTableWidth:"Width",DlgTableWidthPx:"pixels",DlgTableWidthPc:"percent",DlgTableHeight:"Height",DlgTableCellSpace:"Cell spacing",DlgTableCellPad:"Cell padding",DlgTableCaption:"Caption",DlgTableSummary:"Summary",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Cell Properties",DlgCellWidth:"Width",DlgCellWidthPx:"pixels",DlgCellWidthPc:"percent",DlgCellHeight:"Height",DlgCellWordWrap:"Word Wrap",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Yes",DlgCellWordWrapNo:"No",DlgCellHorAlign:"Horizontal Alignment",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Left",DlgCellHorAlignCenter:"Center",DlgCellHorAlignRight:"Right",DlgCellVerAlign:"Vertical Alignment",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Top",DlgCellVerAlignMiddle:"Middle",DlgCellVerAlignBottom:"Bottom",DlgCellVerAlignBaseline:"Baseline",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Rows Span",DlgCellCollSpan:"Columns Span",DlgCellBackColor:"Background Color",DlgCellBorderColor:"Border Color",DlgCellBtnSelect:"Select...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Find",DlgFindFindBtn:"Find",DlgFindNotFoundMsg:"The specified text was not found.",DlgReplaceTitle:"Replace",DlgReplaceFindLbl:"Find what:",DlgReplaceReplaceLbl:"Replace with:",DlgReplaceCaseChk:"Match case",DlgReplaceReplaceBtn:"Replace",DlgReplaceReplAllBtn:"Replace All",DlgReplaceWordChk:"Match whole word",PasteErrorCut:"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).",PasteErrorCopy:"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).",PasteAsText:"Paste as Plain Text",PasteFromWord:"Paste from Word",DlgPasteMsg2:"Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignore Font Face definitions",DlgPasteRemoveStyles:"Remove Styles definitions",ColorAutomatic:"Automatic",ColorMoreColors:"More Colors...",DocProps:"Document Properties",DlgAnchorTitle:"Anchor Properties",DlgAnchorName:"Anchor Name",DlgAnchorErrorName:"Please type the anchor name",DlgSpellNotInDic:"Not in dictionary",DlgSpellChangeTo:"Change to",DlgSpellBtnIgnore:"Ignore",DlgSpellBtnIgnoreAll:"Ignore All",DlgSpellBtnReplace:"Replace",DlgSpellBtnReplaceAll:"Replace All",DlgSpellBtnUndo:"Undo",DlgSpellNoSuggestions:"- No suggestions -",DlgSpellProgress:"Spell check in progress...",DlgSpellNoMispell:"Spell check complete: No misspellings found",DlgSpellNoChanges:"Spell check complete: No words changed",DlgSpellOneChange:"Spell check complete: One word changed",DlgSpellManyChanges:"Spell check complete: %1 words changed",IeSpellDownload:"Spell checker not installed. Do you want to download it now?",DlgButtonText:"Text (Value)",DlgButtonType:"Type",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Name",DlgCheckboxValue:"Value",DlgCheckboxSelected:"Selected",DlgFormName:"Name",DlgFormAction:"Action",DlgFormMethod:"Method",DlgSelectName:"Name",DlgSelectValue:"Value",DlgSelectSize:"Size",DlgSelectLines:"lines",DlgSelectChkMulti:"Allow multiple selections",DlgSelectOpAvail:"Available Options",DlgSelectOpText:"Text",DlgSelectOpValue:"Value",DlgSelectBtnAdd:"Add",DlgSelectBtnModify:"Modify",DlgSelectBtnUp:"Up",DlgSelectBtnDown:"Down",DlgSelectBtnSetValue:"Set as selected value",DlgSelectBtnDelete:"Delete",DlgTextareaName:"Name",DlgTextareaCols:"Columns",DlgTextareaRows:"Rows",DlgTextName:"Name",DlgTextValue:"Value",DlgTextCharWidth:"Character Width",DlgTextMaxChars:"Maximum Characters",DlgTextType:"Type",DlgTextTypeText:"Text",DlgTextTypePass:"Password",DlgHiddenName:"Name",DlgHiddenValue:"Value",BulletedListProp:"Bulleted List Properties",NumberedListProp:"Numbered List Properties",DlgLstStart:"Start",DlgLstType:"Type",DlgLstTypeCircle:"Circle",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"Square",DlgLstTypeNumbers:"Numbers (1, 2, 3)",DlgLstTypeLCase:"Lowercase Letters (a, b, c)",DlgLstTypeUCase:"Uppercase Letters (A, B, C)",DlgLstTypeSRoman:"Small Roman Numerals (i, ii, iii)",DlgLstTypeLRoman:"Large Roman Numerals (I, II, III)",DlgDocGeneralTab:"General",DlgDocBackTab:"Background",DlgDocColorsTab:"Colors and Margins",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Page Title",DlgDocLangDir:"Language Direction",DlgDocLangDirLTR:"Left to Right (LTR)",DlgDocLangDirRTL:"Right to Left (RTL)",DlgDocLangCode:"Language Code",DlgDocCharSet:"Character Set Encoding",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Other Character Set Encoding",DlgDocDocType:"Document Type Heading",DlgDocDocTypeOther:"Other Document Type Heading",DlgDocIncXHTML:"Include XHTML Declarations",DlgDocBgColor:"Background Color",DlgDocBgImage:"Background Image URL",DlgDocBgNoScroll:"Nonscrolling Background",DlgDocCText:"Text",DlgDocCLink:"Link",DlgDocCVisited:"Visited Link",DlgDocCActive:"Active Link",DlgDocMargins:"Page Margins",DlgDocMaTop:"Top",DlgDocMaLeft:"Left",DlgDocMaRight:"Right",DlgDocMaBottom:"Bottom",DlgDocMeIndex:"Document Indexing Keywords (comma separated)",DlgDocMeDescr:"Document Description",DlgDocMeAuthor:"Author",DlgDocMeCopy:"Copyright",DlgDocPreview:"Preview",Templates:"Templates",DlgTemplatesTitle:"Content Templates",DlgTemplatesSelMsg:"Please select the template to open in the editor (the actual contents will be lost):",DlgTemplatesLoading:"Loading templates list. Please wait...",DlgTemplatesNoTpl:"(No templates defined)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"About",DlgAboutBrowserInfoTab:"Browser Info",DlgAboutLicenseTab:"License",DlgAboutVersion:"version",DlgAboutInfo:"For further information go to",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/eo.js b/horde/services/editor/fckeditor/editor/lang/eo.js
deleted file mode 100644
index 967d7dac3..000000000
--- a/horde/services/editor/fckeditor/editor/lang/eo.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Ka??i Ilobreton",ToolbarExpand:"Vidigi Ilojn",Save:"Sekurigi",NewPage:"Nova Pa??o",Preview:"Vidigi Aspekton",Cut:"Eltondi",Copy:"Kopii",Paste:"Interglui",PasteText:"Interglui kiel Tekston",PasteWord:"Interglui el Word",Print:"Presi",SelectAll:"Elekti ??ion",RemoveFormat:"Forigi Formaton",InsertLinkLbl:"Ligilo",InsertLink:"Enmeti/??an??i Ligilon",RemoveLink:"Forigi Ligilon",VisitLink:"Open Link",Anchor:"Enmeti/??an??i Ankron",AnchorDelete:"Remove Anchor",InsertImageLbl:"Bildo",InsertImage:"Enmeti/??an??i Bildon",InsertFlashLbl:"Flash",InsertFlash:"Insert/Edit Flash",InsertTableLbl:"Tabelo",InsertTable:"Enmeti/??an??i Tabelon",InsertLineLbl:"Horizonta Linio",InsertLine:"Enmeti Horizonta Linio",InsertSpecialCharLbl:"Speciala Signo",InsertSpecialChar:"Enmeti Specialan Signon",InsertSmileyLbl:"Mienvinjeto",InsertSmiley:"Enmeti Mienvinjeton",About:"Pri FCKeditor",Bold:"Grasa",Italic:"Kursiva",Underline:"Substreko",StrikeThrough:"Trastreko",Subscript:"Subskribo",Superscript:"Superskribo",LeftJustify:"Maldekstrigi",CenterJustify:"Centrigi",RightJustify:"Dekstrigi",BlockJustify:"??israndigi Amba??flanke",DecreaseIndent:"Malpligrandigi Krommar??enon",IncreaseIndent:"Pligrandigi Krommar??enon",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Malfari",Redo:"Refari",NumberedListLbl:"Numera Listo",NumberedList:"Enmeti/Forigi Numeran Liston",BulletedListLbl:"Bula Listo",BulletedList:"Enmeti/Forigi Bulan Liston",ShowTableBorders:"Vidigi Borderojn de Tabelo",ShowDetails:"Vidigi Detalojn",Style:"Stilo",FontFormat:"Formato",Font:"Tiparo",FontSize:"Grando",TextColor:"Teksta Koloro",BGColor:"Fona Koloro",Source:"Fonto",Find:"Ser??i",Replace:"Anstata??igi",SpellCheck:"Literumada Kontrolilo",UniversalKeyboard:"Universala Klavaro",PageBreakLbl:"Page Break",PageBreak:"Insert Page Break",Form:"Formularo",Checkbox:"Markobutono",RadioButton:"Radiobutono",TextField:"Teksta kampo",Textarea:"Teksta Areo",HiddenField:"Ka??ita Kampo",Button:"Butono",SelectionField:"Elekta Kampo",ImageButton:"Bildbutono",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"Modifier Ligilon",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Forigi Liniojn",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Forigi Kolumnojn",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Forigi ??elojn",MergeCells:"Kunfandi ??elojn",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Delete Table",CellProperties:"Atributoj de ??elo",TableProperties:"Atributoj de Tabelo",ImageProperties:"Atributoj de Bildo",FlashProperties:"Flash Properties",AnchorProp:"Ankraj Atributoj",ButtonProp:"Butonaj Atributoj",CheckboxProp:"Markobutonaj Atributoj",HiddenFieldProp:"Atributoj de Ka??ita Kampo",RadioButtonProp:"Radiobutonaj Atributoj",ImageButtonProp:"Bildbutonaj Atributoj",TextFieldProp:"Atributoj de Teksta Kampo",SelectionFieldProp:"Atributoj de Elekta Kampo",TextareaProp:"Atributoj de Teksta Areo",FormProp:"Formularaj Atributoj",FontFormats:"Normala;Formatita;Adreso;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)",ProcessingXHTML:"Traktado de XHTML. Bonvolu pacienci...",Done:"Finita",PasteWordConfirm:"La algluota teksto ??ajnas esti Word-devena. ??u vi volas purigi ??in anta?? ol interglui?",NotCompatiblePaste:"Tiu ??i komando bezonas almena?? Internet Explorer 5.5. ??u vi volas da??rigi sen purigado?",UnknownToolbarItem:'Ilobretero nekonata "%1"',UnknownCommand:'Komandonomo nekonata "%1"',NotImplemented:"Komando ne ankora?? realigita",UnknownToolbarSet:'La ilobreto "%1" ne ekzistas',NoActiveX:'Your browser\'s security settings could limit some features of the editor. You must enable the option "Run ActiveX controls and plug-ins". You may experience errors and notice missing features.',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"It was not possible to open the dialog window. Make sure all popup blockers are disabled.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"Akcepti",DlgBtnCancel:"Rezigni",DlgBtnClose:"Fermi",DlgBtnBrowseServer:"Foliumi en la Servilo",DlgAdvancedTag:"Speciala",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Please insert the URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Skribdirekto",DlgGenLangDirLtr:"De maldekstro dekstren (LTR)",DlgGenLangDirRtl:"De dekstro maldekstren (RTL)",DlgGenLangCode:"Lingva Kodo",DlgGenAccessKey:"Fulmoklavo",DlgGenName:"Nomo",DlgGenTabIndex:"Taba Ordo",DlgGenLongDescr:"URL de Longa Priskribo",DlgGenClass:"Klasoj de Stilfolioj",DlgGenTitle:"Indika Titolo",DlgGenContType:"Indika Enhavotipo",DlgGenLinkCharset:"Signaro de la Ligita Rimedo",DlgGenStyle:"Stilo",DlgImgTitle:"Atributoj de Bildo",DlgImgInfoTab:"Informoj pri Bildo",DlgImgBtnUpload:"Sendu al Servilo",DlgImgURL:"URL",DlgImgUpload:"Al??uti",DlgImgAlt:"Anstata??iga Teksto",DlgImgWidth:"Lar??o",DlgImgHeight:"Alto",DlgImgLockRatio:"Konservi Proporcion",DlgBtnResetSize:"Origina Grando",DlgImgBorder:"Bordero",DlgImgHSpace:"HSpaco",DlgImgVSpace:"VSpaco",DlgImgAlign:"??israndigo",DlgImgAlignLeft:"Maldekstre",DlgImgAlignAbsBottom:"Abs Malsupre",DlgImgAlignAbsMiddle:"Abs Centre",DlgImgAlignBaseline:"Je Malsupro de Teksto",DlgImgAlignBottom:"Malsupre",DlgImgAlignMiddle:"Centre",DlgImgAlignRight:"Dekstre",DlgImgAlignTextTop:"Je Supro de Teksto",DlgImgAlignTop:"Supre",DlgImgPreview:"Vidigi Aspekton",DlgImgAlertUrl:"Bonvolu tajpi la URL de la bildo",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash Properties",DlgFlashChkPlay:"Auto Play",DlgFlashChkLoop:"Loop",DlgFlashChkMenu:"Enable Flash Menu",DlgFlashScale:"Scale",DlgFlashScaleAll:"Show all",DlgFlashScaleNoBorder:"No Border",DlgFlashScaleFit:"Exact Fit",DlgLnkWindowTitle:"Ligilo",DlgLnkInfoTab:"Informoj pri la Ligilo",DlgLnkTargetTab:"Celo",DlgLnkType:"Tipo de Ligilo",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Ankri en tiu ??i pa??o",DlgLnkTypeEMail:"Retpo??to",DlgLnkProto:"Protokolo",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Elekti Ankron",DlgLnkAnchorByName:"Per Ankronomo",DlgLnkAnchorById:"Per Elementidentigilo",DlgLnkNoAnchors:"",DlgLnkEMail:"Retadreso",DlgLnkEMailSubject:"Temlinio",DlgLnkEMailBody:"Mesa??a korpo",DlgLnkUpload:"Al??uti",DlgLnkBtnUpload:"Sendi al Servilo",DlgLnkTarget:"Celo",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"?prucfenestro>",DlgLnkTargetBlank:"Nova Fenestro (_blank)",DlgLnkTargetParent:"Gepatra Fenestro (_parent)",DlgLnkTargetSelf:"Sama Fenestro (_self)",DlgLnkTargetTop:"Plej Supra Fenestro (_top)",DlgLnkTargetFrameName:"Nomo de Kadro",DlgLnkPopWinName:"Nomo de ??prucfenestro",DlgLnkPopWinFeat:"Atributoj de la ??prucfenestro",DlgLnkPopResize:"Grando ??an??ebla",DlgLnkPopLocation:"Adresobreto",DlgLnkPopMenu:"Menubreto",DlgLnkPopScroll:"Rulumlisteloj",DlgLnkPopStatus:"Statobreto",DlgLnkPopToolbar:"Ilobreto",DlgLnkPopFullScrn:"Tutekrane (IE)",DlgLnkPopDependent:"Dependa (Netscape)",DlgLnkPopWidth:"Lar??o",DlgLnkPopHeight:"Alto",DlgLnkPopLeft:"Pozicio de Maldekstro",DlgLnkPopTop:"Pozicio de Supro",DlnLnkMsgNoUrl:"Bonvolu entajpi la URL-on",DlnLnkMsgNoEMail:"Bonvolu entajpi la retadreson",DlnLnkMsgNoAnchor:"Bonvolu elekti ankron",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Elekti",DlgColorBtnClear:"Forigi",DlgColorHighlight:"Emfazi",DlgColorSelected:"Elektita",DlgSmileyTitle:"Enmeti Mienvinjeton",DlgSpecialCharTitle:"Enmeti Specialan Signon",DlgTableTitle:"Atributoj de Tabelo",DlgTableRows:"Linioj",DlgTableColumns:"Kolumnoj",DlgTableBorder:"Bordero",DlgTableAlign:"??israndigo",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Maldekstre",DlgTableAlignCenter:"Centre",DlgTableAlignRight:"Dekstre",DlgTableWidth:"Lar??o",DlgTableWidthPx:"Bitbilderoj",DlgTableWidthPc:"elcentoj",DlgTableHeight:"Alto",DlgTableCellSpace:"Interspacigo de ??eloj",DlgTableCellPad:"??irka??enhava Plenigado",DlgTableCaption:"Titolo",DlgTableSummary:"Summary",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Atributoj de Celo",DlgCellWidth:"Lar??o",DlgCellWidthPx:"bitbilderoj",DlgCellWidthPc:"elcentoj",DlgCellHeight:"Alto",DlgCellWordWrap:"Linifaldo",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Jes",DlgCellWordWrapNo:"Ne",DlgCellHorAlign:"Horizonta ??israndigo",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Maldekstre",DlgCellHorAlignCenter:"Centre",DlgCellHorAlignRight:"Dekstre",DlgCellVerAlign:"Vertikala ??israndigo",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Supre",DlgCellVerAlignMiddle:"Centre",DlgCellVerAlignBottom:"Malsupre",DlgCellVerAlignBaseline:"Je Malsupro de Teksto",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Linioj Kunfanditaj",DlgCellCollSpan:"Kolumnoj Kunfanditaj",DlgCellBackColor:"Fono",DlgCellBorderColor:"Bordero",DlgCellBtnSelect:"Elekti...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Ser??i",DlgFindFindBtn:"Ser??i",DlgFindNotFoundMsg:"La celteksto ne estas trovita.",DlgReplaceTitle:"Anstata??igi",DlgReplaceFindLbl:"Ser??i:",DlgReplaceReplaceLbl:"Anstata??igi per:",DlgReplaceCaseChk:"Kongruigi Usklecon",DlgReplaceReplaceBtn:"Anstata??igi",DlgReplaceReplAllBtn:"Anstata??igi ??iun",DlgReplaceWordChk:"Tuta Vorto",PasteErrorCut:"La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras eltondajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-X).",PasteErrorCopy:"La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras kopiajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-C).",PasteAsText:"Interglui kiel Tekston",PasteFromWord:"Interglui el Word",DlgPasteMsg2:"Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignore Font Face definitions",DlgPasteRemoveStyles:"Remove Styles definitions",ColorAutomatic:"A??tomata",ColorMoreColors:"Pli da Koloroj...",DocProps:"Dokumentaj Atributoj",DlgAnchorTitle:"Ankraj Atributoj",DlgAnchorName:"Ankra Nomo",DlgAnchorErrorName:"Bv tajpi la ankran nomon",DlgSpellNotInDic:"Ne trovita en la vortaro",DlgSpellChangeTo:"??an??i al",DlgSpellBtnIgnore:"Malatenti",DlgSpellBtnIgnoreAll:"Malatenti ??iun",DlgSpellBtnReplace:"Anstata??igi",DlgSpellBtnReplaceAll:"Anstata??igi ??iun",DlgSpellBtnUndo:"Malfari",DlgSpellNoSuggestions:"- Neniu propono -",DlgSpellProgress:"Literumkontrolado da??ras...",DlgSpellNoMispell:"Literumkontrolado finita: neniu fu??o trovita",DlgSpellNoChanges:"Literumkontrolado finita: neniu vorto ??an??ita",DlgSpellOneChange:"Literumkontrolado finita: unu vorto ??an??ita",DlgSpellManyChanges:"Literumkontrolado finita: %1 vortoj ??an??itaj",IeSpellDownload:"Literumada Kontrolilo ne instalita. ??u vi volas el??uti ??in nun?",DlgButtonText:"Teksto (Valoro)",DlgButtonType:"Tipo",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Nomo",DlgCheckboxValue:"Valoro",DlgCheckboxSelected:"Elektita",DlgFormName:"Nomo",DlgFormAction:"Ago",DlgFormMethod:"Metodo",DlgSelectName:"Nomo",DlgSelectValue:"Valoro",DlgSelectSize:"Grando",DlgSelectLines:"Linioj",DlgSelectChkMulti:"Permesi Plurajn Elektojn",DlgSelectOpAvail:"Elektoj Disponeblaj",DlgSelectOpText:"Teksto",DlgSelectOpValue:"Valoro",DlgSelectBtnAdd:"Aldoni",DlgSelectBtnModify:"Modifi",DlgSelectBtnUp:"Supren",DlgSelectBtnDown:"Malsupren",DlgSelectBtnSetValue:"Agordi kiel Elektitan Valoron",DlgSelectBtnDelete:"Forigi",DlgTextareaName:"Nomo",DlgTextareaCols:"Kolumnoj",DlgTextareaRows:"Vicoj",DlgTextName:"Nomo",DlgTextValue:"Valoro",DlgTextCharWidth:"Signolar??o",DlgTextMaxChars:"Maksimuma Nombro da Signoj",DlgTextType:"Tipo",DlgTextTypeText:"Teksto",DlgTextTypePass:"Pasvorto",DlgHiddenName:"Nomo",DlgHiddenValue:"Valoro",BulletedListProp:"Atributoj de Bula Listo",NumberedListProp:"Atributoj de Numera Listo",DlgLstStart:"Start",DlgLstType:"Tipo",DlgLstTypeCircle:"Cirklo",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"Kvadrato",DlgLstTypeNumbers:"Ciferoj (1, 2, 3)",DlgLstTypeLCase:"Minusklaj Literoj (a, b, c)",DlgLstTypeUCase:"Majusklaj Literoj (A, B, C)",DlgLstTypeSRoman:"Malgrandaj Romanaj Ciferoj (i, ii, iii)",DlgLstTypeLRoman:"Grandaj Romanaj Ciferoj (I, II, III)",DlgDocGeneralTab:"??enerala??oj",DlgDocBackTab:"Fono",DlgDocColorsTab:"Koloroj kaj Mar??enoj",DlgDocMetaTab:"Metadatumoj",DlgDocPageTitle:"Pa??otitolo",DlgDocLangDir:"Skribdirekto de la Lingvo",DlgDocLangDirLTR:"De maldekstro dekstren (LTR)",DlgDocLangDirRTL:"De dekstro maldekstren (LTR)",DlgDocLangCode:"Lingvokodo",DlgDocCharSet:"Signara Kodo",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Alia Signara Kodo",DlgDocDocType:"Dokumenta Tipo",DlgDocDocTypeOther:"Alia Dokumenta Tipo",DlgDocIncXHTML:"Inkluzivi XHTML Deklaroj",DlgDocBgColor:"Fona Koloro",DlgDocBgImage:"URL de Fona Bildo",DlgDocBgNoScroll:"Neruluma Fono",DlgDocCText:"Teksto",DlgDocCLink:"Ligilo",DlgDocCVisited:"Vizitita Ligilo",DlgDocCActive:"Aktiva Ligilo",DlgDocMargins:"Pa??aj Mar??enoj",DlgDocMaTop:"Supra",DlgDocMaLeft:"Maldekstra",DlgDocMaRight:"Dekstra",DlgDocMaBottom:"Malsupra",DlgDocMeIndex:"??losilvortoj de la Dokumento (apartigita de komoj)",DlgDocMeDescr:"Dokumenta Priskribo",DlgDocMeAuthor:"Verkinto",DlgDocMeCopy:"Kopirajto",DlgDocPreview:"Aspekto",Templates:"Templates",DlgTemplatesTitle:"Content Templates",DlgTemplatesSelMsg:"Please select the template to open in the editor (the actual contents will be lost):",DlgTemplatesLoading:"Loading templates list. Please wait...",DlgTemplatesNoTpl:"(No templates defined)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"Pri",DlgAboutBrowserInfoTab:"Informoj pri TTT-legilo",DlgAboutLicenseTab:"License",DlgAboutVersion:"versio",DlgAboutInfo:"Por pli da informoj, vizitu",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/es.js b/horde/services/editor/fckeditor/editor/lang/es.js
deleted file mode 100644
index fded12e77..000000000
--- a/horde/services/editor/fckeditor/editor/lang/es.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Contraer Barra",ToolbarExpand:"Expandir Barra",Save:"Guardar",NewPage:"Nueva P??gina",Preview:"Vista Previa",Cut:"Cortar",Copy:"Copiar",Paste:"Pegar",PasteText:"Pegar como texto plano",PasteWord:"Pegar desde Word",Print:"Imprimir",SelectAll:"Seleccionar Todo",RemoveFormat:"Eliminar Formato",InsertLinkLbl:"V??nculo",InsertLink:"Insertar/Editar V??nculo",RemoveLink:"Eliminar V??nculo",VisitLink:"Abrir enlace",Anchor:"Referencia",AnchorDelete:"Eliminar Referencia",InsertImageLbl:"Imagen",InsertImage:"Insertar/Editar Imagen",InsertFlashLbl:"Flash",InsertFlash:"Insertar/Editar Flash",InsertTableLbl:"Tabla",InsertTable:"Insertar/Editar Tabla",InsertLineLbl:"L??nea",InsertLine:"Insertar L??nea Horizontal",InsertSpecialCharLbl:"Caracter Especial",InsertSpecialChar:"Insertar Caracter Especial",InsertSmileyLbl:"Emoticons",InsertSmiley:"Insertar Emoticons",About:"Acerca de FCKeditor",Bold:"Negrita",Italic:"Cursiva",Underline:"Subrayado",StrikeThrough:"Tachado",Subscript:"Sub??ndice",Superscript:"Super??ndice",LeftJustify:"Alinear a Izquierda",CenterJustify:"Centrar",RightJustify:"Alinear a Derecha",BlockJustify:"Justificado",DecreaseIndent:"Disminuir Sangr??a",IncreaseIndent:"Aumentar Sangr??a",Blockquote:"Cita",CreateDiv:"Crear contenedor (div)",EditDiv:"Editar contenedor (div)",DeleteDiv:"Eliminar contenedor (div)",Undo:"Deshacer",Redo:"Rehacer",NumberedListLbl:"Numeraci??n",NumberedList:"Insertar/Eliminar Numeraci??n",BulletedListLbl:"Vi??etas",BulletedList:"Insertar/Eliminar Vi??etas",ShowTableBorders:"Mostrar Bordes de Tablas",ShowDetails:"Mostrar saltos de P??rrafo",Style:"Estilo",FontFormat:"Formato",Font:"Fuente",FontSize:"Tama??o",TextColor:"Color de Texto",BGColor:"Color de Fondo",Source:"Fuente HTML",Find:"Buscar",Replace:"Reemplazar",SpellCheck:"Ortograf??a",UniversalKeyboard:"Teclado Universal",PageBreakLbl:"Salto de P??gina",PageBreak:"Insertar Salto de P??gina",Form:"Formulario",Checkbox:"Casilla de Verificaci??n",RadioButton:"Botones de Radio",TextField:"Campo de Texto",Textarea:"Area de Texto",HiddenField:"Campo Oculto",Button:"Bot??n",SelectionField:"Campo de Selecci??n",ImageButton:"Bot??n Imagen",FitWindow:"Maximizar el tama??o del editor",ShowBlocks:"Mostrar bloques",EditLink:"Editar V??nculo",CellCM:"Celda",RowCM:"Fila",ColumnCM:"Columna",InsertRowAfter:"Insertar fila en la parte inferior",InsertRowBefore:"Insertar fila en la parte superior",DeleteRows:"Eliminar Filas",InsertColumnAfter:"Insertar columna a la derecha",InsertColumnBefore:"Insertar columna a la izquierda",DeleteColumns:"Eliminar Columnas",InsertCellAfter:"Insertar celda a la derecha",InsertCellBefore:"Insertar celda a la izquierda",DeleteCells:"Eliminar Celdas",MergeCells:"Combinar Celdas",MergeRight:"Combinar a la derecha",MergeDown:"Combinar hacia abajo",HorizontalSplitCell:"Dividir la celda horizontalmente",VerticalSplitCell:"Dividir la celda verticalmente",TableDelete:"Eliminar Tabla",CellProperties:"Propiedades de Celda",TableProperties:"Propiedades de Tabla",ImageProperties:"Propiedades de Imagen",FlashProperties:"Propiedades de Flash",AnchorProp:"Propiedades de Referencia",ButtonProp:"Propiedades de Bot??n",CheckboxProp:"Propiedades de Casilla",HiddenFieldProp:"Propiedades de Campo Oculto",RadioButtonProp:"Propiedades de Bot??n de Radio",ImageButtonProp:"Propiedades de Bot??n de Imagen",TextFieldProp:"Propiedades de Campo de Texto",SelectionFieldProp:"Propiedades de Campo de Selecci??n",TextareaProp:"Propiedades de Area de Texto",FormProp:"Propiedades de Formulario",FontFormats:"Normal;Con formato;Direcci??n;Encabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Normal (DIV)",ProcessingXHTML:"Procesando XHTML. Por favor, espere...",Done:"Hecho",PasteWordConfirm:"El texto que desea parece provenir de Word. Desea depurarlo antes de pegarlo?",NotCompatiblePaste:"Este comando est?? disponible s??lo para Internet Explorer version 5.5 or superior. Desea pegar sin depurar?",UnknownToolbarItem:'Item de barra desconocido "%1"',UnknownCommand:'Nombre de comando desconocido "%1"',NotImplemented:"Comando no implementado",UnknownToolbarSet:'Nombre de barra "%1" no definido',NoActiveX:'La configuraci??n de las opciones de seguridad de su navegador puede estar limitando algunas caracter??sticas del editor. Por favor active la opci??n "Ejecutar controles y complementos de ActiveX ", de lo contrario puede experimentar errores o ausencia de funcionalidades.',BrowseServerBlocked:"La ventana de visualizaci??n del servidor no pudo ser abierta. Verifique que su navegador no est?? bloqueando las ventanas emergentes (pop up).",DialogBlocked:"No se ha podido abrir la ventana de di??logo. Verifique que su navegador no est?? bloqueando las ventanas emergentes (pop up).",VisitLinkBlocked:"Nose ha podido abrir la ventana. Asegurese de que todos los bloqueadores de popups est??n deshabilitados.",DlgBtnOK:"OK",DlgBtnCancel:"Cancelar",DlgBtnClose:"Cerrar",DlgBtnBrowseServer:"Ver Servidor",DlgAdvancedTag:"Avanzado",DlgOpOther:"",DlgInfoTab:"Informaci??n",DlgAlertUrl:"Inserte el URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Orientaci??n",DlgGenLangDirLtr:"Izquierda a Derecha (LTR)",DlgGenLangDirRtl:"Derecha a Izquierda (RTL)",DlgGenLangCode:"C??d. de idioma",DlgGenAccessKey:"Clave de Acceso",DlgGenName:"Nombre",DlgGenTabIndex:"Indice de tabulaci??n",DlgGenLongDescr:"Descripci??n larga URL",DlgGenClass:"Clases de hojas de estilo",DlgGenTitle:"T??tulo",DlgGenContType:"Tipo de Contenido",DlgGenLinkCharset:"Fuente de caracteres vinculado",DlgGenStyle:"Estilo",DlgImgTitle:"Propiedades de Imagen",DlgImgInfoTab:"Informaci??n de Imagen",DlgImgBtnUpload:"Enviar al Servidor",DlgImgURL:"URL",DlgImgUpload:"Cargar",DlgImgAlt:"Texto Alternativo",DlgImgWidth:"Anchura",DlgImgHeight:"Altura",DlgImgLockRatio:"Proporcional",DlgBtnResetSize:"Tama??o Original",DlgImgBorder:"Borde",DlgImgHSpace:"Esp.Horiz",DlgImgVSpace:"Esp.Vert",DlgImgAlign:"Alineaci??n",DlgImgAlignLeft:"Izquierda",DlgImgAlignAbsBottom:"Abs inferior",DlgImgAlignAbsMiddle:"Abs centro",DlgImgAlignBaseline:"L??nea de base",DlgImgAlignBottom:"Pie",DlgImgAlignMiddle:"Centro",DlgImgAlignRight:"Derecha",DlgImgAlignTextTop:"Tope del texto",DlgImgAlignTop:"Tope",DlgImgPreview:"Vista Previa",DlgImgAlertUrl:"Por favor escriba la URL de la imagen",DlgImgLinkTab:"V??nculo",DlgFlashTitle:"Propiedades de Flash",DlgFlashChkPlay:"Autoejecuci??n",DlgFlashChkLoop:"Repetir",DlgFlashChkMenu:"Activar Men?? Flash",DlgFlashScale:"Escala",DlgFlashScaleAll:"Mostrar todo",DlgFlashScaleNoBorder:"Sin Borde",DlgFlashScaleFit:"Ajustado",DlgLnkWindowTitle:"V??nculo",DlgLnkInfoTab:"Informaci??n de V??nculo",DlgLnkTargetTab:"Destino",DlgLnkType:"Tipo de v??nculo",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Referencia en esta p??gina",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocolo",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Seleccionar una referencia",DlgLnkAnchorByName:"Por Nombre de Referencia",DlgLnkAnchorById:"Por ID de elemento",DlgLnkNoAnchors:"(No hay referencias disponibles en el documento)",DlgLnkEMail:"Direcci??n de E-Mail",DlgLnkEMailSubject:"T??tulo del Mensaje",DlgLnkEMailBody:"Cuerpo del Mensaje",DlgLnkUpload:"Cargar",DlgLnkBtnUpload:"Enviar al Servidor",DlgLnkTarget:"Destino",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nueva Ventana(_blank)",DlgLnkTargetParent:"Ventana Padre (_parent)",DlgLnkTargetSelf:"Misma Ventana (_self)",DlgLnkTargetTop:"Ventana primaria (_top)",DlgLnkTargetFrameName:"Nombre del Marco Destino",DlgLnkPopWinName:"Nombre de Ventana Emergente",DlgLnkPopWinFeat:"Caracter??sticas de Ventana Emergente",DlgLnkPopResize:"Ajustable",DlgLnkPopLocation:"Barra de ubicaci??n",DlgLnkPopMenu:"Barra de Men??",DlgLnkPopScroll:"Barras de desplazamiento",DlgLnkPopStatus:"Barra de Estado",DlgLnkPopToolbar:"Barra de Herramientas",DlgLnkPopFullScrn:"Pantalla Completa (IE)",DlgLnkPopDependent:"Dependiente (Netscape)",DlgLnkPopWidth:"Anchura",DlgLnkPopHeight:"Altura",DlgLnkPopLeft:"Posici??n Izquierda",DlgLnkPopTop:"Posici??n Derecha",DlnLnkMsgNoUrl:"Por favor tipee el v??nculo URL",DlnLnkMsgNoEMail:"Por favor tipee la direcci??n de e-mail",DlnLnkMsgNoAnchor:"Por favor seleccione una referencia",DlnLnkMsgInvPopName:"El nombre debe empezar con un caracter alfanum??rico y no debe contener espacios",DlgColorTitle:"Seleccionar Color",DlgColorBtnClear:"Ninguno",DlgColorHighlight:"Resaltado",DlgColorSelected:"Seleccionado",DlgSmileyTitle:"Insertar un Emoticon",DlgSpecialCharTitle:"Seleccione un caracter especial",DlgTableTitle:"Propiedades de Tabla",DlgTableRows:"Filas",DlgTableColumns:"Columnas",DlgTableBorder:"Tama??o de Borde",DlgTableAlign:"Alineaci??n",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Izquierda",DlgTableAlignCenter:"Centrado",DlgTableAlignRight:"Derecha",DlgTableWidth:"Anchura",DlgTableWidthPx:"pixeles",DlgTableWidthPc:"porcentaje",DlgTableHeight:"Altura",DlgTableCellSpace:"Esp. e/celdas",DlgTableCellPad:"Esp. interior",DlgTableCaption:"T??tulo",DlgTableSummary:"S??ntesis",DlgTableHeaders:"Encabezados",DlgTableHeadersNone:"Ninguno",DlgTableHeadersColumn:"Primera columna",DlgTableHeadersRow:"Primera fila",DlgTableHeadersBoth:"Ambas",DlgCellTitle:"Propiedades de Celda",DlgCellWidth:"Anchura",DlgCellWidthPx:"pixeles",DlgCellWidthPc:"porcentaje",DlgCellHeight:"Altura",DlgCellWordWrap:"Cortar L??nea",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Si",DlgCellWordWrapNo:"No",DlgCellHorAlign:"Alineaci??n Horizontal",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Izquierda",DlgCellHorAlignCenter:"Centrado",DlgCellHorAlignRight:"Derecha",DlgCellVerAlign:"Alineaci??n Vertical",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Tope",DlgCellVerAlignMiddle:"Medio",DlgCellVerAlignBottom:"ie",DlgCellVerAlignBaseline:"L??nea de Base",DlgCellType:"Tipo de celda",DlgCellTypeData:"Datos",DlgCellTypeHeader:"Encabezado",DlgCellRowSpan:"Abarcar Filas",DlgCellCollSpan:"Abarcar Columnas",DlgCellBackColor:"Color de Fondo",DlgCellBorderColor:"Color de Borde",DlgCellBtnSelect:"Seleccione...",DlgFindAndReplaceTitle:"Buscar y Reemplazar",DlgFindTitle:"Buscar",DlgFindFindBtn:"Buscar",DlgFindNotFoundMsg:"El texto especificado no ha sido encontrado.",DlgReplaceTitle:"Reemplazar",DlgReplaceFindLbl:"Texto a buscar:",DlgReplaceReplaceLbl:"Reemplazar con:",DlgReplaceCaseChk:"Coincidir may/min",DlgReplaceReplaceBtn:"Reemplazar",DlgReplaceReplAllBtn:"Reemplazar Todo",DlgReplaceWordChk:"Coincidir toda la palabra",PasteErrorCut:"La configuraci??n de seguridad de este navegador no permite la ejecuci??n autom??tica de operaciones de cortado. Por favor use el teclado (Ctrl+X).",PasteErrorCopy:"La configuraci??n de seguridad de este navegador no permite la ejecuci??n autom??tica de operaciones de copiado. Por favor use el teclado (Ctrl+C).",PasteAsText:"Pegar como Texto Plano",PasteFromWord:"Pegar desde Word",DlgPasteMsg2:"Por favor pegue dentro del cuadro utilizando el teclado (Ctrl+V); luego presione OK.",DlgPasteSec:"Debido a la configuraci??n de seguridad de su navegador, el editor no tiene acceso al portapapeles. Es necesario que lo pegue de nuevo en esta ventana.",DlgPasteIgnoreFont:"Ignorar definiciones de fuentes",DlgPasteRemoveStyles:"Remover definiciones de estilo",ColorAutomatic:"Autom??tico",ColorMoreColors:"M??s Colores...",DocProps:"Propiedades del Documento",DlgAnchorTitle:"Propiedades de la Referencia",DlgAnchorName:"Nombre de la Referencia",DlgAnchorErrorName:"Por favor, complete el nombre de la Referencia",DlgSpellNotInDic:"No se encuentra en el Diccionario",DlgSpellChangeTo:"Cambiar a",DlgSpellBtnIgnore:"Ignorar",DlgSpellBtnIgnoreAll:"Ignorar Todo",DlgSpellBtnReplace:"Reemplazar",DlgSpellBtnReplaceAll:"Reemplazar Todo",DlgSpellBtnUndo:"Deshacer",DlgSpellNoSuggestions:"- No hay sugerencias -",DlgSpellProgress:"Control de Ortograf??a en progreso...",DlgSpellNoMispell:"Control finalizado: no se encontraron errores",DlgSpellNoChanges:"Control finalizado: no se ha cambiado ninguna palabra",DlgSpellOneChange:"Control finalizado: se ha cambiado una palabra",DlgSpellManyChanges:"Control finalizado: se ha cambiado %1 palabras",IeSpellDownload:"M??dulo de Control de Ortograf??a no instalado. ??Desea descargarlo ahora?",DlgButtonText:"Texto (Valor)",DlgButtonType:"Tipo",DlgButtonTypeBtn:"Boton",DlgButtonTypeSbm:"Enviar",DlgButtonTypeRst:"Reestablecer",DlgCheckboxName:"Nombre",DlgCheckboxValue:"Valor",DlgCheckboxSelected:"Seleccionado",DlgFormName:"Nombre",DlgFormAction:"Acci??n",DlgFormMethod:"M??todo",DlgSelectName:"Nombre",DlgSelectValue:"Valor",DlgSelectSize:"Tama??o",DlgSelectLines:"Lineas",DlgSelectChkMulti:"Permitir m??ltiple selecci??n",DlgSelectOpAvail:"Opciones disponibles",DlgSelectOpText:"Texto",DlgSelectOpValue:"Valor",DlgSelectBtnAdd:"Agregar",DlgSelectBtnModify:"Modificar",DlgSelectBtnUp:"Subir",DlgSelectBtnDown:"Bajar",DlgSelectBtnSetValue:"Establecer como predeterminado",DlgSelectBtnDelete:"Eliminar",DlgTextareaName:"Nombre",DlgTextareaCols:"Columnas",DlgTextareaRows:"Filas",DlgTextName:"Nombre",DlgTextValue:"Valor",DlgTextCharWidth:"Caracteres de ancho",DlgTextMaxChars:"M??ximo caracteres",DlgTextType:"Tipo",DlgTextTypeText:"Texto",DlgTextTypePass:"Contrase??a",DlgHiddenName:"Nombre",DlgHiddenValue:"Valor",BulletedListProp:"Propiedades de Vi??etas",NumberedListProp:"Propiedades de Numeraciones",DlgLstStart:"Inicio",DlgLstType:"Tipo",DlgLstTypeCircle:"C??rculo",DlgLstTypeDisc:"Disco",DlgLstTypeSquare:"Cuadrado",DlgLstTypeNumbers:"N??meros (1, 2, 3)",DlgLstTypeLCase:"letras en min??sculas (a, b, c)",DlgLstTypeUCase:"letras en may??sculas (A, B, C)",DlgLstTypeSRoman:"N??meros Romanos (i, ii, iii)",DlgLstTypeLRoman:"N??meros Romanos (I, II, III)",DlgDocGeneralTab:"General",DlgDocBackTab:"Fondo",DlgDocColorsTab:"Colores y M??rgenes",DlgDocMetaTab:"Meta Informaci??n",DlgDocPageTitle:"T??tulo de P??gina",DlgDocLangDir:"Orientaci??n de idioma",DlgDocLangDirLTR:"Izq. a Derecha (LTR)",DlgDocLangDirRTL:"Der. a Izquierda (RTL)",DlgDocLangCode:"C??digo de Idioma",DlgDocCharSet:"Codif. de Conjunto de Caracteres",DlgDocCharSetCE:"Centro Europeo",DlgDocCharSetCT:"Chino Tradicional (Big5)",DlgDocCharSetCR:"Cir??lico",DlgDocCharSetGR:"Griego",DlgDocCharSetJP:"Japon??s",DlgDocCharSetKR:"Coreano",DlgDocCharSetTR:"Turco",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Europeo occidental",DlgDocCharSetOther:"Otra Codificaci??n",DlgDocDocType:"Encabezado de Tipo de Documento",DlgDocDocTypeOther:"Otro Encabezado",DlgDocIncXHTML:"Incluir Declaraciones XHTML",DlgDocBgColor:"Color de Fondo",DlgDocBgImage:"URL de Imagen de Fondo",DlgDocBgNoScroll:"Fondo sin rolido",DlgDocCText:"Texto",DlgDocCLink:"V??nculo",DlgDocCVisited:"V??nculo Visitado",DlgDocCActive:"V??nculo Activo",DlgDocMargins:"M??rgenes de P??gina",DlgDocMaTop:"Tope",DlgDocMaLeft:"Izquierda",DlgDocMaRight:"Derecha",DlgDocMaBottom:"Pie",DlgDocMeIndex:"Claves de indexaci??n del Documento (separados por comas)",DlgDocMeDescr:"Descripci??n del Documento",DlgDocMeAuthor:"Autor",DlgDocMeCopy:"Copyright",DlgDocPreview:"Vista Previa",Templates:"Plantillas",DlgTemplatesTitle:"Contenido de Plantillas",DlgTemplatesSelMsg:"Por favor selecciona la plantilla a abrir en el editor (el contenido actual se perder??):",DlgTemplatesLoading:"Cargando lista de Plantillas. Por favor, aguarde...",DlgTemplatesNoTpl:"(No hay plantillas definidas)",DlgTemplatesReplace:"Reemplazar el contenido actual",DlgAboutAboutTab:"Acerca de",DlgAboutBrowserInfoTab:"Informaci??n de Navegador",DlgAboutLicenseTab:"Licencia",DlgAboutVersion:"versi??n",DlgAboutInfo:"Para mayor informaci??n por favor dirigirse a",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Avanzado",DlgDivStyle:"Estilo",DlgDivInlineStyle:"Estilos CSS"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/et.js b/horde/services/editor/fckeditor/editor/lang/et.js
deleted file mode 100644
index 0436f107b..000000000
--- a/horde/services/editor/fckeditor/editor/lang/et.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Voldi t????riistariba",ToolbarExpand:"Laienda t????riistariba",Save:"Salvesta",NewPage:"Uus leht",Preview:"Eelvaade",Cut:"L??ika",Copy:"Kopeeri",Paste:"Kleebi",PasteText:"Kleebi tavalise tekstina",PasteWord:"Kleebi Wordist",Print:"Prindi",SelectAll:"Vali k??ik",RemoveFormat:"Eemalda vorming",InsertLinkLbl:"Link",InsertLink:"Sisesta link / Muuda linki",RemoveLink:"Eemalda link",VisitLink:"Open Link",Anchor:"Sisesta ankur / Muuda ankrut",AnchorDelete:"Eemalda ankur",InsertImageLbl:"Pilt",InsertImage:"Sisesta pilt / Muuda pilti",InsertFlashLbl:"Flash",InsertFlash:"Sisesta flash / Muuda flashi",InsertTableLbl:"Tabel",InsertTable:"Sisesta tabel / Muuda tabelit",InsertLineLbl:"Joon",InsertLine:"Sisesta horisontaaljoon",InsertSpecialCharLbl:"Erim??rgid",InsertSpecialChar:"Sisesta erim??rk",InsertSmileyLbl:"Emotikon",InsertSmiley:"Sisesta emotikon",About:"FCKeditor teave",Bold:"Paks",Italic:"Kursiiv",Underline:"Allajoonitud",StrikeThrough:"L??bijoonitud",Subscript:"Allindeks",Superscript:"??laindeks",LeftJustify:"Vasakjoondus",CenterJustify:"Keskjoondus",RightJustify:"Paremjoondus",BlockJustify:"R????pjoondus",DecreaseIndent:"V??henda taanet",IncreaseIndent:"Suurenda taanet",Blockquote:"Blokktsitaat",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"V??ta tagasi",Redo:"Korda toimingut",NumberedListLbl:"Nummerdatud loetelu",NumberedList:"Sisesta/Eemalda nummerdatud loetelu",BulletedListLbl:"Punktiseeritud loetelu",BulletedList:"Sisesta/Eemalda punktiseeritud loetelu",ShowTableBorders:"N??ita tabeli jooni",ShowDetails:"N??ita ??ksikasju",Style:"Laad",FontFormat:"Vorming",Font:"Kiri",FontSize:"Suurus",TextColor:"Teksti v??rv",BGColor:"Tausta v??rv",Source:"L??htekood",Find:"Otsi",Replace:"Asenda",SpellCheck:"Kontrolli ??igekirja",UniversalKeyboard:"Universaalne klaviatuur",PageBreakLbl:"Lehepiir",PageBreak:"Sisesta lehevahetuskoht",Form:"Vorm",Checkbox:"M??rkeruut",RadioButton:"Raadionupp",TextField:"Tekstilahter",Textarea:"Tekstiala",HiddenField:"Varjatud lahter",Button:"Nupp",SelectionField:"Valiklahter",ImageButton:"Piltnupp",FitWindow:"Maksimeeri redaktori m????tmed",ShowBlocks:"N??ita blokke",EditLink:"Muuda linki",CellCM:"Lahter",RowCM:"Rida",ColumnCM:"Veerg",InsertRowAfter:"Sisesta rida peale",InsertRowBefore:"Sisesta rida enne",DeleteRows:"Eemalda read",InsertColumnAfter:"Sisesta veerg peale",InsertColumnBefore:"Sisesta veerg enne",DeleteColumns:"Eemalda veerud",InsertCellAfter:"Sisesta lahter peale",InsertCellBefore:"Sisesta lahter enne",DeleteCells:"Eemalda lahtrid",MergeCells:"??henda lahtrid",MergeRight:"??henda paremale",MergeDown:"??henda alla",HorizontalSplitCell:"Poolita lahter horisontaalselt",VerticalSplitCell:"Poolita lahter vertikaalselt",TableDelete:"Kustuta tabel",CellProperties:"Lahtri atribuudid",TableProperties:"Tabeli atribuudid",ImageProperties:"Pildi atribuudid",FlashProperties:"Flash omadused",AnchorProp:"Ankru omadused",ButtonProp:"Nupu omadused",CheckboxProp:"M??rkeruudu omadused",HiddenFieldProp:"Varjatud lahtri omadused",RadioButtonProp:"Raadionupu omadused",ImageButtonProp:"Piltnupu omadused",TextFieldProp:"Tekstilahtri omadused",SelectionFieldProp:"Valiklahtri omadused",TextareaProp:"Tekstiala omadused",FormProp:"Vormi omadused",FontFormats:"Tavaline;Vormindatud;Aadress;Pealkiri 1;Pealkiri 2;Pealkiri 3;Pealkiri 4;Pealkiri 5;Pealkiri 6;Tavaline (DIV)",ProcessingXHTML:"T????tlen XHTML'i. Palun oota...",Done:"Tehtud",PasteWordConfirm:"Tekst, mida soovid lisada paistab p??rinevat Word'ist. Kas soovid seda enne kleepimist puhastada?",NotCompatiblePaste:"See k??sk on saadaval ainult Internet Explorer versioon 5.5 v??i uuema puhul. Kas soovid kleepida ilma puhastamata?",UnknownToolbarItem:'Tundmatu t????riistarea ??ksus "%1"',UnknownCommand:'Tundmatu k??sunimi "%1"',NotImplemented:"K??sku ei t??idetud",UnknownToolbarSet:'T????riistariba "%1" ei eksisteeri',NoActiveX:'Sinu veebisirvija turvalisuse seaded v??ivad limiteerida m??ningaid tekstirdaktori kasutusv??imalusi. Sa peaksid v??imaldama valiku "Run ActiveX controls and plug-ins" oma veebisirvija seadetes. Muidu v??id sa t??heldada vigu tekstiredaktori t????s ja m??rgata puuduvaid funktsioone.',BrowseServerBlocked:"Ressursside sirvija avamine eba??nnestus. V??imalda pop-up akende avanemine.",DialogBlocked:"Ei olenud v??imalik avada dialoogi akent. V??imalda pop-up akende avanemine.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Loobu",DlgBtnClose:"Sulge",DlgBtnBrowseServer:"Sirvi serverit",DlgAdvancedTag:"T??psemalt",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Palun sisesta URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Keele suund",DlgGenLangDirLtr:"Vasakult paremale (LTR)",DlgGenLangDirRtl:"Paremalt vasakule (RTL)",DlgGenLangCode:"Keele kood",DlgGenAccessKey:"Juurdep????su v??ti",DlgGenName:"Nimi",DlgGenTabIndex:"Tab indeks",DlgGenLongDescr:"Pikk kirjeldus URL",DlgGenClass:"Stiilistiku klassid",DlgGenTitle:"Juhendav tiitel",DlgGenContType:"Juhendava sisu t????p",DlgGenLinkCharset:"Lingitud ressurssi m??rgistik",DlgGenStyle:"Laad",DlgImgTitle:"Pildi atribuudid",DlgImgInfoTab:"Pildi info",DlgImgBtnUpload:"Saada serverissee",DlgImgURL:"URL",DlgImgUpload:"Lae ??les",DlgImgAlt:"Alternatiivne tekst",DlgImgWidth:"Laius",DlgImgHeight:"K??rgus",DlgImgLockRatio:"Lukusta kuvasuhe",DlgBtnResetSize:"L??htesta suurus",DlgImgBorder:"Joon",DlgImgHSpace:"H. vaheruum",DlgImgVSpace:"V. vaheruum",DlgImgAlign:"Joondus",DlgImgAlignLeft:"Vasak",DlgImgAlignAbsBottom:"Abs alla",DlgImgAlignAbsMiddle:"Abs keskele",DlgImgAlignBaseline:"Baasjoonele",DlgImgAlignBottom:"Alla",DlgImgAlignMiddle:"Keskele",DlgImgAlignRight:"Paremale",DlgImgAlignTextTop:"Tekstit ??les",DlgImgAlignTop:"??les",DlgImgPreview:"Eelvaade",DlgImgAlertUrl:"Palun kirjuta pildi URL",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash omadused",DlgFlashChkPlay:"Automaatne start ",DlgFlashChkLoop:"Korduv",DlgFlashChkMenu:"V??imalda flash men????",DlgFlashScale:"Mastaap",DlgFlashScaleAll:"N??ita k??ike",DlgFlashScaleNoBorder:"????rist ei ole",DlgFlashScaleFit:"T??pne sobivus",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Lingi info",DlgLnkTargetTab:"Sihtkoht",DlgLnkType:"Lingi t????p",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Ankur sellel lehel",DlgLnkTypeEMail:"E-post",DlgLnkProto:"Protokoll",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Vali ankur",DlgLnkAnchorByName:"Ankru nime j??rgi",DlgLnkAnchorById:"Elemendi id j??rgi",DlgLnkNoAnchors:"(Selles dokumendis ei ole ankruid)",DlgLnkEMail:"E-posti aadress",DlgLnkEMailSubject:"S??numi teema",DlgLnkEMailBody:"S??numi tekst",DlgLnkUpload:"Lae ??les",DlgLnkBtnUpload:"Saada serverisse",DlgLnkTarget:"Sihtkoht",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Uus aken (_blank)",DlgLnkTargetParent:"Esivanem aken (_parent)",DlgLnkTargetSelf:"Sama aken (_self)",DlgLnkTargetTop:"Pealmine aken (_top)",DlgLnkTargetFrameName:"Sihtm??rk raami nimi",DlgLnkPopWinName:"H??pikakna nimi",DlgLnkPopWinFeat:"H??pikakna omadused",DlgLnkPopResize:"Suurendatav",DlgLnkPopLocation:"Aadressiriba",DlgLnkPopMenu:"Men????riba",DlgLnkPopScroll:"Kerimisribad",DlgLnkPopStatus:"Olekuriba",DlgLnkPopToolbar:"T????riistariba",DlgLnkPopFullScrn:"T??isekraan (IE)",DlgLnkPopDependent:"S??ltuv (Netscape)",DlgLnkPopWidth:"Laius",DlgLnkPopHeight:"K??rgus",DlgLnkPopLeft:"Vasak asukoht",DlgLnkPopTop:"??lemine asukoht",DlnLnkMsgNoUrl:"Palun kirjuta lingi URL",DlnLnkMsgNoEMail:"Palun kirjuta E-Posti aadress",DlnLnkMsgNoAnchor:"Palun vali ankur",DlnLnkMsgInvPopName:"H??pikakna nimi peab algama alfabeetilise t??hega ja ei tohi sisaldada t??hikuid",DlgColorTitle:"Vali v??rv",DlgColorBtnClear:"T??hjenda",DlgColorHighlight:"M??rgi",DlgColorSelected:"Valitud",DlgSmileyTitle:"Sisesta emotikon",DlgSpecialCharTitle:"Vali erim??rk",DlgTableTitle:"Tabeli atribuudid",DlgTableRows:"Read",DlgTableColumns:"Veerud",DlgTableBorder:"Joone suurus",DlgTableAlign:"Joondus",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Vasak",DlgTableAlignCenter:"Kesk",DlgTableAlignRight:"Parem",DlgTableWidth:"Laius",DlgTableWidthPx:"pikslit",DlgTableWidthPc:"protsenti",DlgTableHeight:"K??rgus",DlgTableCellSpace:"Lahtri vahe",DlgTableCellPad:"Lahtri t??idis",DlgTableCaption:"Tabeli tiitel",DlgTableSummary:"Kokkuv??te",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Lahtri atribuudid",DlgCellWidth:"Laius",DlgCellWidthPx:"pikslit",DlgCellWidthPc:"protsenti",DlgCellHeight:"K??rgus",DlgCellWordWrap:"S??na ??lekanne",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Jah",DlgCellWordWrapNo:"Ei",DlgCellHorAlign:"Horisontaaljoondus",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Vasak",DlgCellHorAlignCenter:"Kesk",DlgCellHorAlignRight:"Parem",DlgCellVerAlign:"Vertikaaljoondus",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"??les",DlgCellVerAlignMiddle:"Keskele",DlgCellVerAlignBottom:"Alla",DlgCellVerAlignBaseline:"Baasjoonele",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Reaulatus",DlgCellCollSpan:"Veeruulatus",DlgCellBackColor:"Tausta v??rv",DlgCellBorderColor:"Joone v??rv",DlgCellBtnSelect:"Vali...",DlgFindAndReplaceTitle:"Otsi ja asenda",DlgFindTitle:"Otsi",DlgFindFindBtn:"Otsi",DlgFindNotFoundMsg:"Valitud teksti ei leitud.",DlgReplaceTitle:"Asenda",DlgReplaceFindLbl:"Leia mida:",DlgReplaceReplaceLbl:"Asenda millega:",DlgReplaceCaseChk:"Erista suur- ja v??iket??hti",DlgReplaceReplaceBtn:"Asenda",DlgReplaceReplAllBtn:"Asenda k??ik",DlgReplaceWordChk:"Otsi terviklike s??nu",PasteErrorCut:"Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt l??igata. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+X).",PasteErrorCopy:"Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt kopeerida. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+C).",PasteAsText:"Kleebi tavalise tekstina",PasteFromWord:"Kleebi Wordist",DlgPasteMsg2:"Palun kleebi j??rgnevasse kasti kasutades klaviatuuri klahvikombinatsiooni (Ctrl+V) ja vajuta seej??rel OK.",DlgPasteSec:"Sinu veebisirvija turvaseadete t??ttu, ei oma redaktor otsest ligip????su l??ikelaua andmetele. Sa pead kleepima need uuesti siia aknasse.",DlgPasteIgnoreFont:"Ignoreeri kirja definitsioone",DlgPasteRemoveStyles:"Eemalda stiilide definitsioonid",ColorAutomatic:"Automaatne",ColorMoreColors:"Rohkem v??rve...",DocProps:"Dokumendi omadused",DlgAnchorTitle:"Ankru omadused",DlgAnchorName:"Ankru nimi",DlgAnchorErrorName:"Palun sisest ankru nimi",DlgSpellNotInDic:"Puudub s??nastikust",DlgSpellChangeTo:"Muuda",DlgSpellBtnIgnore:"Ignoreeri",DlgSpellBtnIgnoreAll:"Ignoreeri k??iki",DlgSpellBtnReplace:"Asenda",DlgSpellBtnReplaceAll:"Asenda k??ik",DlgSpellBtnUndo:"V??ta tagasi",DlgSpellNoSuggestions:"- Soovitused puuduvad -",DlgSpellProgress:"Toimub ??igekirja kontroll...",DlgSpellNoMispell:"??igekirja kontroll sooritatud: ??igekirjuvigu ei leitud",DlgSpellNoChanges:"??igekirja kontroll sooritatud: ??htegi s??na ei muudetud",DlgSpellOneChange:"??igekirja kontroll sooritatud: ??ks s??na muudeti",DlgSpellManyChanges:"??igekirja kontroll sooritatud: %1 s??na muudetud",IeSpellDownload:"??igekirja kontrollija ei ole installeeritud. Soovid sa selle alla laadida?",DlgButtonText:"Tekst (v????rtus)",DlgButtonType:"T????p",DlgButtonTypeBtn:"Nupp",DlgButtonTypeSbm:"Saada",DlgButtonTypeRst:"L??htesta",DlgCheckboxName:"Nimi",DlgCheckboxValue:"V????rtus",DlgCheckboxSelected:"Valitud",DlgFormName:"Nimi",DlgFormAction:"Toiming",DlgFormMethod:"Meetod",DlgSelectName:"Nimi",DlgSelectValue:"V????rtus",DlgSelectSize:"Suurus",DlgSelectLines:"ridu",DlgSelectChkMulti:"V??imalda mitu valikut",DlgSelectOpAvail:"V??imalikud valikud",DlgSelectOpText:"Tekst",DlgSelectOpValue:"V????rtus",DlgSelectBtnAdd:"Lisa",DlgSelectBtnModify:"Muuda",DlgSelectBtnUp:"??les",DlgSelectBtnDown:"Alla",DlgSelectBtnSetValue:"Sea valitud olekuna",DlgSelectBtnDelete:"Kustuta",DlgTextareaName:"Nimi",DlgTextareaCols:"Veerge",DlgTextareaRows:"Ridu",DlgTextName:"Nimi",DlgTextValue:"V????rtus",DlgTextCharWidth:"Laius (t??hem??rkides)",DlgTextMaxChars:"Maksimaalselt t??hem??rke",DlgTextType:"T????p",DlgTextTypeText:"Tekst",DlgTextTypePass:"Parool",DlgHiddenName:"Nimi",DlgHiddenValue:"V????rtus",BulletedListProp:"T??pitud loetelu omadused",NumberedListProp:"Nummerdatud loetelu omadused",DlgLstStart:"Alusta",DlgLstType:"T????p",DlgLstTypeCircle:"Ring",DlgLstTypeDisc:"Ketas",DlgLstTypeSquare:"Ruut",DlgLstTypeNumbers:"Numbrid (1, 2, 3)",DlgLstTypeLCase:"V??iket??hed (a, b, c)",DlgLstTypeUCase:"Suurt??hed (A, B, C)",DlgLstTypeSRoman:"V??iksed Rooma numbrid (i, ii, iii)",DlgLstTypeLRoman:"Suured Rooma numbrid (I, II, III)",DlgDocGeneralTab:"??ldine",DlgDocBackTab:"Taust",DlgDocColorsTab:"V??rvid ja veerised",DlgDocMetaTab:"Meta andmed",DlgDocPageTitle:"Lehek??lje tiitel",DlgDocLangDir:"Kirja suund",DlgDocLangDirLTR:"Vasakult paremale (LTR)",DlgDocLangDirRTL:"Paremalt vasakule (RTL)",DlgDocLangCode:"Keele kood",DlgDocCharSet:"M??rgistiku kodeering",DlgDocCharSetCE:"Kesk-Euroopa",DlgDocCharSetCT:"Hiina traditsiooniline (Big5)",DlgDocCharSetCR:"Kirillisa",DlgDocCharSetGR:"Kreeka",DlgDocCharSetJP:"Jaapani",DlgDocCharSetKR:"Korea",DlgDocCharSetTR:"T??rgi",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"L????ne-Euroopa",DlgDocCharSetOther:"??lej????nud m??rgistike kodeeringud",DlgDocDocType:"Dokumendi t????pp??is",DlgDocDocTypeOther:"Teised dokumendi t????pp??ised",DlgDocIncXHTML:"Arva kaasa XHTML deklaratsioonid",DlgDocBgColor:"Taustav??rv",DlgDocBgImage:"Taustapildi URL",DlgDocBgNoScroll:"Mittekeritav tagataust",DlgDocCText:"Tekst",DlgDocCLink:"Link",DlgDocCVisited:"K??lastatud link",DlgDocCActive:"Aktiivne link",DlgDocMargins:"Lehek??lje ????rised",DlgDocMaTop:"??laserv",DlgDocMaLeft:"Vasakserv",DlgDocMaRight:"Paremserv",DlgDocMaBottom:"Alaserv",DlgDocMeIndex:"Dokumendi v??tmes??nad (eraldatud komadega)",DlgDocMeDescr:"Dokumendi kirjeldus",DlgDocMeAuthor:"Autor",DlgDocMeCopy:"Autori??igus",DlgDocPreview:"Eelvaade",Templates:"??abloon",DlgTemplatesTitle:"Sisu ??abloonid",DlgTemplatesSelMsg:"Palun vali ??abloon, et avada see redaktoris (praegune sisu l??heb kaotsi):",DlgTemplatesLoading:"Laen ??abloonide nimekirja. Palun oota...",DlgTemplatesNoTpl:"(??htegi ??ablooni ei ole defineeritud)",DlgTemplatesReplace:"Asenda tegelik sisu",DlgAboutAboutTab:"Teave",DlgAboutBrowserInfoTab:"Veebisirvija info",DlgAboutLicenseTab:"Litsents",DlgAboutVersion:"versioon",DlgAboutInfo:"T??psema info saamiseks mine",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/eu.js b/horde/services/editor/fckeditor/editor/lang/eu.js
deleted file mode 100644
index 6e91d2a86..000000000
--- a/horde/services/editor/fckeditor/editor/lang/eu.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Estutu Tresna Barra",ToolbarExpand:"Hedatu Tresna Barra",Save:"Gorde",NewPage:"Orrialde Berria",Preview:"Aurrebista",Cut:"Ebaki",Copy:"Kopiatu",Paste:"Itsatsi",PasteText:"Itsatsi testu bezala",PasteWord:"Itsatsi Word-etik",Print:"Inprimatu",SelectAll:"Hautatu dena",RemoveFormat:"Kendu Formatua",InsertLinkLbl:"Esteka",InsertLink:"Txertatu/Editatu Esteka",RemoveLink:"Kendu Esteka",VisitLink:"Ireki Esteka",Anchor:"Aingura",AnchorDelete:"Ezabatu Aingura",InsertImageLbl:"Irudia",InsertImage:"Txertatu/Editatu Irudia",InsertFlashLbl:"Flasha",InsertFlash:"Txertatu/Editatu Flasha",InsertTableLbl:"Taula",InsertTable:"Txertatu/Editatu Taula",InsertLineLbl:"Lerroa",InsertLine:"Txertatu Marra Horizontala",InsertSpecialCharLbl:"Karaktere Berezia",InsertSpecialChar:"Txertatu Karaktere Berezia",InsertSmileyLbl:"Aurpegierak",InsertSmiley:"Txertatu Aurpegierak",About:"FCKeditor-ri buruz",Bold:"Lodia",Italic:"Etzana",Underline:"Azpimarratu",StrikeThrough:"Marratua",Subscript:"Azpi-indize",Superscript:"Goi-indize",LeftJustify:"Lerrokatu Ezkerrean",CenterJustify:"Lerrokatu Erdian",RightJustify:"Lerrokatu Eskuman",BlockJustify:"Justifikatu",DecreaseIndent:"Txikitu Koska",IncreaseIndent:"Handitu Koska",Blockquote:"Aipamen blokea",CreateDiv:"Sortu Div Edukitzailea",EditDiv:"Editatu Div Edukitzailea",DeleteDiv:"Ezabatu Div Edukitzailea",Undo:"Desegin",Redo:"Berregin",NumberedListLbl:"Zenbakidun Zerrenda",NumberedList:"Txertatu/Kendu Zenbakidun zerrenda",BulletedListLbl:"Buletdun Zerrenda",BulletedList:"Txertatu/Kendu Buletdun zerrenda",ShowTableBorders:"Erakutsi Taularen Ertzak",ShowDetails:"Erakutsi Xehetasunak",Style:"Estiloa",FontFormat:"Formatua",Font:"Letra-tipoa",FontSize:"Tamaina",TextColor:"Testu Kolorea",BGColor:"Atzeko kolorea",Source:"HTML Iturburua",Find:"Bilatu",Replace:"Ordezkatu",SpellCheck:"Ortografia",UniversalKeyboard:"Teklatu Unibertsala",PageBreakLbl:"Orrialde-jauzia",PageBreak:"Txertatu Orrialde-jauzia",Form:"Formularioa",Checkbox:"Kontrol-laukia",RadioButton:"Aukera-botoia",TextField:"Testu Eremua",Textarea:"Testu-area",HiddenField:"Ezkutuko Eremua",Button:"Botoia",SelectionField:"Hautespen Eremua",ImageButton:"Irudi Botoia",FitWindow:"Maximizatu editorearen tamaina",ShowBlocks:"Blokeak erakutsi",EditLink:"Aldatu Esteka",CellCM:"Gelaxka",RowCM:"Errenkada",ColumnCM:"Zutabea",InsertRowAfter:"Txertatu Lerroa Ostean",InsertRowBefore:"Txertatu Lerroa Aurretik",DeleteRows:"Ezabatu Errenkadak",InsertColumnAfter:"Txertatu Zutabea Ostean",InsertColumnBefore:"Txertatu Zutabea Aurretik",DeleteColumns:"Ezabatu Zutabeak",InsertCellAfter:"Txertatu Gelaxka Ostean",InsertCellBefore:"Txertatu Gelaxka Aurretik",DeleteCells:"Kendu Gelaxkak",MergeCells:"Batu Gelaxkak",MergeRight:"Elkartu Eskumara",MergeDown:"Elkartu Behera",HorizontalSplitCell:"Banatu Gelaxkak Horizontalki",VerticalSplitCell:"Banatu Gelaxkak Bertikalki",TableDelete:"Ezabatu Taula",CellProperties:"Gelaxkaren Ezaugarriak",TableProperties:"Taularen Ezaugarriak",ImageProperties:"Irudiaren Ezaugarriak",FlashProperties:"Flasharen Ezaugarriak",AnchorProp:"Ainguraren Ezaugarriak",ButtonProp:"Botoiaren Ezaugarriak",CheckboxProp:"Kontrol-laukiko Ezaugarriak",HiddenFieldProp:"Ezkutuko Eremuaren Ezaugarriak",RadioButtonProp:"Aukera-botoiaren Ezaugarriak",ImageButtonProp:"Irudi Botoiaren Ezaugarriak",TextFieldProp:"Testu Eremuaren Ezaugarriak",SelectionFieldProp:"Hautespen Eremuaren Ezaugarriak",TextareaProp:"Testu-arearen Ezaugarriak",FormProp:"Formularioaren Ezaugarriak",FontFormats:"Arrunta;Formateatua;Helbidea;Izenburua 1;Izenburua 2;Izenburua 3;Izenburua 4;Izenburua 5;Izenburua 6;Paragrafoa (DIV)",ProcessingXHTML:"XHTML Prozesatzen. Itxaron mesedez...",Done:"Eginda",PasteWordConfirm:"Itsatsi nahi duzun testua Wordetik hartua dela dirudi. Itsatsi baino lehen garbitu nahi duzu?",NotCompatiblePaste:"Komando hau Internet Explorer 5.5 bertsiorako edo ondorengoentzako erabilgarria dago. Garbitu gabe itsatsi nahi duzu?",UnknownToolbarItem:'Ataza barrako elementu ezezaguna "%1"',UnknownCommand:'Komando izen ezezaguna "%1"',NotImplemented:"Komando ez inplementatua",UnknownToolbarSet:'Ataza barra "%1" taldea ez da existitzen',NoActiveX:'Zure nabigatzailearen segurtasun hobespenak editore honen zenbait ezaugarri mugatu ditzake. "ActiveX kontrolak eta pluginak" aktibatu beharko zenituzke, bestela erroreak eta ezaugarrietan mugak egon daitezke.',BrowseServerBlocked:"Baliabideen arakatzailea ezin da ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.",DialogBlocked:"Ezin da elkarrizketa-leihoa ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.",VisitLinkBlocked:"Ezin da leiho berri bat ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.",DlgBtnOK:"Ados",DlgBtnCancel:"Utzi",DlgBtnClose:"Itxi",DlgBtnBrowseServer:"Zerbitzaria arakatu",DlgAdvancedTag:"Aurreratua",DlgOpOther:"",DlgInfoTab:"Informazioa",DlgAlertUrl:"Mesedez URLa idatzi ezazu",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Hizkuntzaren Norabidea",DlgGenLangDirLtr:"Ezkerretik Eskumara(LTR)",DlgGenLangDirRtl:"Eskumatik Ezkerrera (RTL)",DlgGenLangCode:"Hizkuntza Kodea",DlgGenAccessKey:"Sarbide-gakoa",DlgGenName:"Izena",DlgGenTabIndex:"Tabulazio Indizea",DlgGenLongDescr:"URL Deskribapen Luzea",DlgGenClass:"Estilo-orriko Klaseak",DlgGenTitle:"Izenburua",DlgGenContType:"Eduki Mota (Content Type)",DlgGenLinkCharset:"Estekatutako Karaktere Multzoa",DlgGenStyle:"Estiloa",DlgImgTitle:"Irudi Ezaugarriak",DlgImgInfoTab:"Irudi informazioa",DlgImgBtnUpload:"Zerbitzarira bidalia",DlgImgURL:"URL",DlgImgUpload:"Gora Kargatu",DlgImgAlt:"Ordezko Testua",DlgImgWidth:"Zabalera",DlgImgHeight:"Altuera",DlgImgLockRatio:"Erlazioa Blokeatu",DlgBtnResetSize:"Tamaina Berrezarri",DlgImgBorder:"Ertza",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Lerrokatu",DlgImgAlignLeft:"Ezkerrera",DlgImgAlignAbsBottom:"Abs Behean",DlgImgAlignAbsMiddle:"Abs Erdian",DlgImgAlignBaseline:"Oinan",DlgImgAlignBottom:"Behean",DlgImgAlignMiddle:"Erdian",DlgImgAlignRight:"Eskuman",DlgImgAlignTextTop:"Testua Goian",DlgImgAlignTop:"Goian",DlgImgPreview:"Aurrebista",DlgImgAlertUrl:"Mesedez Irudiaren URLa idatzi",DlgImgLinkTab:"Esteka",DlgFlashTitle:"Flasharen Ezaugarriak",DlgFlashChkPlay:"Automatikoki Erreproduzitu",DlgFlashChkLoop:"Begizta",DlgFlashChkMenu:"Flasharen Menua Gaitu",DlgFlashScale:"Eskalatu",DlgFlashScaleAll:"Dena erakutsi",DlgFlashScaleNoBorder:"Ertzik gabe",DlgFlashScaleFit:"Doitu",DlgLnkWindowTitle:"Esteka",DlgLnkInfoTab:"Estekaren Informazioa",DlgLnkTargetTab:"Helburua",DlgLnkType:"Esteka Mota",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Aingura orrialde honetan",DlgLnkTypeEMail:"ePosta",DlgLnkProto:"Protokoloa",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Aingura bat hautatu",DlgLnkAnchorByName:"Aingura izenagatik",DlgLnkAnchorById:"Elementuaren ID-gatik",DlgLnkNoAnchors:"(Ez daude aingurak eskuragarri dokumentuan)",DlgLnkEMail:"ePosta Helbidea",DlgLnkEMailSubject:"Mezuaren Gaia",DlgLnkEMailBody:"Mezuaren Gorputza",DlgLnkUpload:"Gora kargatu",DlgLnkBtnUpload:"Zerbitzarira bidali",DlgLnkTarget:"Target (Helburua)",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Leiho Berria (_blank)",DlgLnkTargetParent:"Leiho Gurasoa (_parent)",DlgLnkTargetSelf:"Leiho Berdina (_self)",DlgLnkTargetTop:"Goiko Leihoa (_top)",DlgLnkTargetFrameName:"Marko Helburuaren Izena",DlgLnkPopWinName:"Popup Leihoaren Izena",DlgLnkPopWinFeat:"Popup Leihoaren Ezaugarriak",DlgLnkPopResize:"Tamaina Aldakorra",DlgLnkPopLocation:"Kokaleku Barra",DlgLnkPopMenu:"Menu Barra",DlgLnkPopScroll:"Korritze Barrak",DlgLnkPopStatus:"Egoera Barra",DlgLnkPopToolbar:"Tresna Barra",DlgLnkPopFullScrn:"Pantaila Osoa (IE)",DlgLnkPopDependent:"Menpekoa (Netscape)",DlgLnkPopWidth:"Zabalera",DlgLnkPopHeight:"Altuera",DlgLnkPopLeft:"Ezkerreko Posizioa",DlgLnkPopTop:"Goiko Posizioa",DlnLnkMsgNoUrl:"Mesedez URL esteka idatzi",DlnLnkMsgNoEMail:"Mesedez ePosta helbidea idatzi",DlnLnkMsgNoAnchor:"Mesedez aingura bat aukeratu",DlnLnkMsgInvPopName:"Popup leihoaren izenak karaktere alfabetiko batekin hasi behar du eta eta ezin du zuriunerik izan",DlgColorTitle:"Kolore Aukeraketa",DlgColorBtnClear:"Garbitu",DlgColorHighlight:"Nabarmendu",DlgColorSelected:"Aukeratuta",DlgSmileyTitle:"Aurpegiera Sartu",DlgSpecialCharTitle:"Karaktere Berezia Aukeratu",DlgTableTitle:"Taularen Ezaugarriak",DlgTableRows:"Lerroak",DlgTableColumns:"Zutabeak",DlgTableBorder:"Ertzaren Zabalera",DlgTableAlign:"Lerrokatu",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Ezkerrean",DlgTableAlignCenter:"Erdian",DlgTableAlignRight:"Eskuman",DlgTableWidth:"Zabalera",DlgTableWidthPx:"pixel",DlgTableWidthPc:"ehuneko",DlgTableHeight:"Altuera",DlgTableCellSpace:"Gelaxka arteko tartea",DlgTableCellPad:"Gelaxken betegarria",DlgTableCaption:"Epigrafea",DlgTableSummary:"Laburpena",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Gelaxken Ezaugarriak",DlgCellWidth:"Zabalera",DlgCellWidthPx:"pixel",DlgCellWidthPc:"ehuneko",DlgCellHeight:"Altuera",DlgCellWordWrap:"Itzulbira",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Bai",DlgCellWordWrapNo:"Ez",DlgCellHorAlign:"Lerrokatu Horizontalki",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Ezkerrean",DlgCellHorAlignCenter:"Erdian",DlgCellHorAlignRight:"Eskuman",DlgCellVerAlign:"Lerrokatu Bertikalki",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Goian",DlgCellVerAlignMiddle:"Erdian",DlgCellVerAlignBottom:"Behean",DlgCellVerAlignBaseline:"Oinean",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Lerroak Hedatu",DlgCellCollSpan:"Zutabeak Hedatu",DlgCellBackColor:"Atzeko Kolorea",DlgCellBorderColor:"Ertzako Kolorea",DlgCellBtnSelect:"Aukeratu...",DlgFindAndReplaceTitle:"Bilatu eta Ordeztu",DlgFindTitle:"Bilaketa",DlgFindFindBtn:"Bilatu",DlgFindNotFoundMsg:"Idatzitako testua ez da topatu.",DlgReplaceTitle:"Ordeztu",DlgReplaceFindLbl:"Zer bilatu:",DlgReplaceReplaceLbl:"Zerekin ordeztu:",DlgReplaceCaseChk:"Maiuskula/minuskula",DlgReplaceReplaceBtn:"Ordeztu",DlgReplaceReplAllBtn:"Ordeztu Guztiak",DlgReplaceWordChk:"Esaldi osoa bilatu",PasteErrorCut:"Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki moztea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+X).",PasteErrorCopy:"Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki kopiatzea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+C).",PasteAsText:"Testu Arrunta bezala Itsatsi",PasteFromWord:"Word-etik itsatsi",DlgPasteMsg2:"Mesedez teklatua erabilita (Ctrl+V) ondorego eremuan testua itsatsi eta OK sakatu.",DlgPasteSec:"Nabigatzailearen segurtasun ezarpenak direla eta, editoreak ezin du arbela zuzenean erabili. Leiho honetan berriro itsatsi behar duzu.",DlgPasteIgnoreFont:"Letra Motaren definizioa ezikusi",DlgPasteRemoveStyles:"Estilo definizioak kendu",ColorAutomatic:"Automatikoa",ColorMoreColors:"Kolore gehiago...",DocProps:"Dokumentuaren Ezarpenak",DlgAnchorTitle:"Ainguraren Ezaugarriak",DlgAnchorName:"Ainguraren Izena",DlgAnchorErrorName:"Idatzi ainguraren izena",DlgSpellNotInDic:"Ez dago hiztegian",DlgSpellChangeTo:"Honekin ordezkatu",DlgSpellBtnIgnore:"Ezikusi",DlgSpellBtnIgnoreAll:"Denak Ezikusi",DlgSpellBtnReplace:"Ordezkatu",DlgSpellBtnReplaceAll:"Denak Ordezkatu",DlgSpellBtnUndo:"Desegin",DlgSpellNoSuggestions:"- Iradokizunik ez -",DlgSpellProgress:"Zuzenketa ortografikoa martxan...",DlgSpellNoMispell:"Zuzenketa ortografikoa bukatuta: Akatsik ez",DlgSpellNoChanges:"Zuzenketa ortografikoa bukatuta: Ez da ezer aldatu",DlgSpellOneChange:"Zuzenketa ortografikoa bukatuta: Hitz bat aldatu da",DlgSpellManyChanges:"Zuzenketa ortografikoa bukatuta: %1 hitz aldatu dira",IeSpellDownload:"Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu nahi duzu?",DlgButtonText:"Testua (Balorea)",DlgButtonType:"Mota",DlgButtonTypeBtn:"Botoia",DlgButtonTypeSbm:"Bidali",DlgButtonTypeRst:"Garbitu",DlgCheckboxName:"Izena",DlgCheckboxValue:"Balorea",DlgCheckboxSelected:"Hautatuta",DlgFormName:"Izena",DlgFormAction:"Ekintza",DlgFormMethod:"Metodoa",DlgSelectName:"Izena",DlgSelectValue:"Balorea",DlgSelectSize:"Tamaina",DlgSelectLines:"lerro kopurura",DlgSelectChkMulti:"Hautaketa anitzak baimendu",DlgSelectOpAvail:"Aukera Eskuragarriak",DlgSelectOpText:"Testua",DlgSelectOpValue:"Balorea",DlgSelectBtnAdd:"Gehitu",DlgSelectBtnModify:"Aldatu",DlgSelectBtnUp:"Gora",DlgSelectBtnDown:"Behera",DlgSelectBtnSetValue:"Aukeratutako balorea ezarri",DlgSelectBtnDelete:"Ezabatu",DlgTextareaName:"Izena",DlgTextareaCols:"Zutabeak",DlgTextareaRows:"Lerroak",DlgTextName:"Izena",DlgTextValue:"Balorea",DlgTextCharWidth:"Zabalera",DlgTextMaxChars:"Zenbat karaktere gehienez",DlgTextType:"Mota",DlgTextTypeText:"Testua",DlgTextTypePass:"Pasahitza",DlgHiddenName:"Izena",DlgHiddenValue:"Balorea",BulletedListProp:"Buletdun Zerrendaren Ezarpenak",NumberedListProp:"Zenbakidun Zerrendaren Ezarpenak",DlgLstStart:"Hasiera",DlgLstType:"Mota",DlgLstTypeCircle:"Zirkulua",DlgLstTypeDisc:"Diskoa",DlgLstTypeSquare:"Karratua",DlgLstTypeNumbers:"Zenbakiak (1, 2, 3)",DlgLstTypeLCase:"Letra xeheak (a, b, c)",DlgLstTypeUCase:"Letra larriak (A, B, C)",DlgLstTypeSRoman:"Erromatar zenbaki zeheak (i, ii, iii)",DlgLstTypeLRoman:"Erromatar zenbaki larriak (I, II, III)",DlgDocGeneralTab:"Orokorra",DlgDocBackTab:"Atzealdea",DlgDocColorsTab:"Koloreak eta Marjinak",DlgDocMetaTab:"Meta Informazioa",DlgDocPageTitle:"Orriaren Izenburua",DlgDocLangDir:"Hizkuntzaren Norabidea",DlgDocLangDirLTR:"Ezkerretik eskumara (LTR)",DlgDocLangDirRTL:"Eskumatik ezkerrera (RTL)",DlgDocLangCode:"Hizkuntzaren Kodea",DlgDocCharSet:"Karaktere Multzoaren Kodeketa",DlgDocCharSetCE:"Erdialdeko Europakoa",DlgDocCharSetCT:"Txinatar Tradizionala (Big5)",DlgDocCharSetCR:"Zirilikoa",DlgDocCharSetGR:"Grekoa",DlgDocCharSetJP:"Japoniarra",DlgDocCharSetKR:"Korearra",DlgDocCharSetTR:"Turkiarra",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Mendebaldeko Europakoa",DlgDocCharSetOther:"Beste Karaktere Multzoko Kodeketa",DlgDocDocType:"Document Type Goiburua",DlgDocDocTypeOther:"Beste Document Type Goiburua",DlgDocIncXHTML:"XHTML Ezarpenak",DlgDocBgColor:"Atzeko Kolorea",DlgDocBgImage:"Atzeko Irudiaren URL-a",DlgDocBgNoScroll:"Korritze gabeko Atzealdea",DlgDocCText:"Testua",DlgDocCLink:"Estekak",DlgDocCVisited:"Bisitatutako Estekak",DlgDocCActive:"Esteka Aktiboa",DlgDocMargins:"Orrialdearen marjinak",DlgDocMaTop:"Goian",DlgDocMaLeft:"Ezkerrean",DlgDocMaRight:"Eskuman",DlgDocMaBottom:"Behean",DlgDocMeIndex:"Dokumentuaren Gako-hitzak (komarekin bananduta)",DlgDocMeDescr:"Dokumentuaren Deskribapena",DlgDocMeAuthor:"Egilea",DlgDocMeCopy:"Copyright",DlgDocPreview:"Aurrebista",Templates:"Txantiloiak",DlgTemplatesTitle:"Eduki Txantiloiak",DlgTemplatesSelMsg:"Mesedez txantiloia aukeratu editorean kargatzeko (orain dauden edukiak galduko dira):",DlgTemplatesLoading:"Txantiloiak kargatzen. Itxaron mesedez...",DlgTemplatesNoTpl:"(Ez dago definitutako txantiloirik)",DlgTemplatesReplace:"Ordeztu oraingo edukiak",DlgAboutAboutTab:"Honi buruz",DlgAboutBrowserInfoTab:"Nabigatzailearen Informazioa",DlgAboutLicenseTab:"Lizentzia",DlgAboutVersion:"bertsioa",DlgAboutInfo:"Informazio gehiago eskuratzeko hona joan",DlgDivGeneralTab:"Orokorra",DlgDivAdvancedTab:"Aurreratua",DlgDivStyle:"Estiloa",DlgDivInlineStyle:"Inline Estiloa"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/fa.js b/horde/services/editor/fckeditor/editor/lang/fa.js
deleted file mode 100644
index 669cd2aa1..000000000
--- a/horde/services/editor/fckeditor/editor/lang/fa.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"rtl",ToolbarCollapse:"???????????? ??????????????????",ToolbarExpand:"???????????? ??????????????????",Save:"??????????",NewPage:"?????????? ????????",Preview:"???????????????????",Cut:"??????",Copy:"??????",Paste:"??????????????",PasteText:"?????????????? ???? ?????????? ?????? ??????????",PasteWord:"?????????????? ???? Word",Print:"??????",SelectAll:"?????????? ??????",RemoveFormat:"?????????????? ????????",InsertLinkLbl:"??????????",InsertLink:"??????????????/???????????? ????????????",RemoveLink:"?????????????? ??????????",VisitLink:"?????? ???????? ??????????",Anchor:"??????????????/???????????? ??????????",AnchorDelete:"?????????????? ????????",InsertImageLbl:"??????????",InsertImage:"??????????????/???????????? ????????????",InsertFlashLbl:"Flash",InsertFlash:"??????????????/???????????? ??Flash",InsertTableLbl:"????????",InsertTable:"??????????????/???????????? ??????????",InsertLineLbl:"????",InsertLine:"?????????????? ???? ??????????",InsertSpecialCharLbl:"???????????? ????????",InsertSpecialChar:"?????????????? ???????????? ????????",InsertSmileyLbl:"????????????",InsertSmiley:"?????????????? ????????????",About:"?????????????? FCKeditor",Bold:"????????",Italic:"??????????",Underline:"???????????????????",StrikeThrough:"???????????????",Subscript:"??????????????",Superscript:"????????????????",LeftJustify:"?????????????",CenterJustify:"?????????????????",RightJustify:"?????????????????",BlockJustify:"?????????????????",DecreaseIndent:"???????? ??????????????",IncreaseIndent:"???????????? ??????????????",Blockquote:"???????? ?????? ??????",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"????????????",Redo:"??????????????",NumberedListLbl:"?????????? ???????????????????",NumberedList:"??????????????/?????????????? ?????????? ???????????????????",BulletedListLbl:"?????????? ???????????????",BulletedList:"??????????????/?????????????? ?????????? ???????????????",ShowTableBorders:"?????????? ???????? ????????",ShowDetails:"?????????? ????????????",Style:"??????",FontFormat:"????????",Font:"??????",FontSize:"????????????",TextColor:"?????? ??????",BGColor:"?????? ?????????????????",Source:"????????",Find:"??????????",Replace:"????????????????",SpellCheck:"?????????? ????????",UniversalKeyboard:"??????????????????? ??????????",PageBreakLbl:"???????????? ???????????? ??????????",PageBreak:"?????????????? ???????????? ???????????? ??????????",Form:"??????",Checkbox:"?????????? ?????????????????",RadioButton:"?????????? ??????????????",TextField:"???????? ????????",Textarea:"???????????? ????????",HiddenField:"???????? ??????????",Button:"????????",SelectionField:"???????? ???????????????????????",ImageButton:"?????????? ????????????",FitWindow:"??????????????????????? ???????????????? ????????????????",ShowBlocks:"?????????? ???????????????",EditLink:"???????????? ??????????",CellCM:"????????",RowCM:"??????",ColumnCM:"????????",InsertRowAfter:"???????????? ?????? ?????? ????",InsertRowBefore:"???????????? ?????? ?????? ????",DeleteRows:"?????? ??????????",InsertColumnAfter:"???????????? ???????? ?????? ????",InsertColumnBefore:"???????????? ???????? ?????? ????",DeleteColumns:"?????? ????????????",InsertCellAfter:"???????????? ???????? ?????? ????",InsertCellBefore:"???????????? ???????? ?????? ????",DeleteCells:"?????? ????????????",MergeCells:"?????????? ????????????",MergeRight:"?????????? ???? ????????",MergeDown:"?????????? ???? ??????????",HorizontalSplitCell:"?????? ???????? ???????? ????????",VerticalSplitCell:"?????? ???????? ?????????? ????????",TableDelete:"????????????????? ????????",CellProperties:"???????????????? ????????",TableProperties:"???????????????? ????????",ImageProperties:"???????????????? ??????????",FlashProperties:"???????????????? Flash",AnchorProp:"???????????????? ????????",ButtonProp:"???????????????? ????????",CheckboxProp:"???????????????? ?????????? ?????????????????",HiddenFieldProp:"???????????????? ???????? ??????????",RadioButtonProp:"???????????????? ?????????? ??????????????",ImageButtonProp:"???????????????? ?????????? ????????????",TextFieldProp:"???????????????? ???????? ????????",SelectionFieldProp:"???????????????? ???????? ???????????????????????",TextareaProp:"???????????????? ???????????? ????????",FormProp:"???????????????? ??????",FontFormats:"??????????;?????????????????;????????;???????????? 1;???????????? 2;???????????? 3;???????????? 4;???????????? 5;???????????? 6;??????;(DIV)",ProcessingXHTML:"???????????? XHTML. ???????? ?????? ????????...",Done:"?????????? ????",PasteWordConfirm:"???????? ???? ??????????????????? ???????????????? ???? ?????? ????????????? ???? Word ?????? ?????? ??????. ?????? ??????????????????? ?????? ???? ?????????????? ???? ???? ????????????????? ??????????",NotCompatiblePaste:"?????? ?????????? ???????? ???????????? Internet Explorer ???? ?????????? 5.5 ???? ???????????? ???? ?????????? ??????. ?????? ??????????????????? ???????? ??????????????????? ?????? ???? ??????????????????",UnknownToolbarItem:'?????????? ?????????????????? ???????????????? "%1"',UnknownCommand:'?????? ?????????? ???????????????? "%1"',NotImplemented:"?????????? ????????????????????????????????",UnknownToolbarSet:'?????????????? ?????????????????? "%1" ???????? ??????????',NoActiveX:'?????????????? ???????????? ???????????? ?????? ???????? ?????? ???? ???????? ???? ???????????????? ???????????? ?????????????? ?????????? ??????. ?????? ???????? ???????????? "Run ActiveX controls and plug-ins" ???? ???????? ????????. ???????? ?????? ?????? ???? ?????????????? ?????????? ?????????? ?? ?????????? ?????????? ?????????????????? ????????.',BrowseServerBlocked:"?????????????? ???????????????? ???????????? ?????????? ?????????? ????????. ?????????????? ???????? ???????? ???? ?????????? ????????????????????? ?????????????? ???? ?????????? popup ???? ???? ?????? ?????????????????????????.",DialogBlocked:"?????????????? ???????????????? ???????????? ???????? ???????????? ?????????? ????????. ?????????????? ???????? ???????? ???? ?????????? ????????????????????? ?????????????? ???? ?????????? popup ???? ???? ?????? ?????????????????????????.",VisitLinkBlocked:"?????????? ?????????????? ???? ?????????? ???????? ????????. ?????????????? ???????? ???????? ???? ?????????? ????????????????????? ?????????????? ???? ?????????? popup ???? ???? ?????? ?????????????????????????.",DlgBtnOK:"??????????",DlgBtnCancel:"????????????",DlgBtnClose:"????????",DlgBtnBrowseServer:"??????????????????????? ????????",DlgAdvancedTag:"??????????????",DlgOpOther:"???????>",DlgInfoTab:"??????????????",DlgAlertUrl:"?????????? URL ???? ??????????????",DlgGenNotSet:"??????????????????>",DlgGenId:"??????????",DlgGenLangDir:"????????????????? ????????",DlgGenLangDirLtr:"???? ???? ???????? (LTR)",DlgGenLangDirRtl:"???????? ???? ???? (RTL)",DlgGenLangCode:"???? ????????",DlgGenAccessKey:"???????? ??????????????",DlgGenName:"??????",DlgGenTabIndex:"???????????? ???????????? ???? Tab",DlgGenLongDescr:"URL ?????????? ????????????",DlgGenClass:"?????????????? ???????????????????(Stylesheet)",DlgGenTitle:"?????????? ????????",DlgGenContType:"?????? ???????????? ????????",DlgGenLinkCharset:"??????????????????? ???????? ??????????????????",DlgGenStyle:"????????(style)",DlgImgTitle:"???????????????? ??????????",DlgImgInfoTab:"?????????????? ??????????",DlgImgBtnUpload:"???? ???????? ??????????",DlgImgURL:"URL",DlgImgUpload:"???????????? ???? ????????",DlgImgAlt:"?????? ??????????????",DlgImgWidth:"????????",DlgImgHeight:"??????????",DlgImgLockRatio:"????????????????? ??????????",DlgBtnResetSize:"???????????????? ????????????",DlgImgBorder:"??????",DlgImgHSpace:"???????????? ????????",DlgImgVSpace:"???????????? ??????????",DlgImgAlign:"????????",DlgImgAlignLeft:"????",DlgImgAlignAbsBottom:"?????????? ????????",DlgImgAlignAbsMiddle:"?????? ????????",DlgImgAlignBaseline:"???????????????",DlgImgAlignBottom:"??????????",DlgImgAlignMiddle:"??????",DlgImgAlignRight:"????????",DlgImgAlignTextTop:"?????? ????????",DlgImgAlignTop:"????????",DlgImgPreview:"???????????????????",DlgImgAlertUrl:"???????? URL ?????????? ???? ??????????????",DlgImgLinkTab:"??????????",DlgFlashTitle:"???????????????? Flash",DlgFlashChkPlay:"???????? ??????????????",DlgFlashChkLoop:"?????????? ??????????",DlgFlashChkMenu:"????????????????????????? ???????? Flash",DlgFlashScale:"??????????",DlgFlashScaleAll:"?????????? ??????",DlgFlashScaleNoBorder:"???????? ????????",DlgFlashScaleFit:"?????????????? ????????",DlgLnkWindowTitle:"??????????",DlgLnkInfoTab:"?????????????? ??????????",DlgLnkTargetTab:"????????",DlgLnkType:"?????? ??????????",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"???????? ???? ???????? ????????",DlgLnkTypeEMail:"?????? ????????????????????",DlgLnkProto:"????????????",DlgLnkProtoOther:"???????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"???? ???????? ????????????????",DlgLnkAnchorByName:"???? ?????? ????????",DlgLnkAnchorById:"???? ???????????? ??????????",DlgLnkNoAnchors:"(???? ?????? ?????? ?????????? ?????????????? ????????)",DlgLnkEMail:"?????????? ?????? ????????????????????",DlgLnkEMailSubject:"?????????? ????????",DlgLnkEMailBody:"?????? ????????",DlgLnkUpload:"???????????? ???? ????????",DlgLnkBtnUpload:"???? ???????? ??????????",DlgLnkTarget:"????????",DlgLnkTargetFrame:"???????>",DlgLnkTargetPopup:"??????????? ??????????>",DlgLnkTargetBlank:"???????????? ???????? (_blank)",DlgLnkTargetParent:"???????????? ???????? (_parent)",DlgLnkTargetSelf:"???????? ?????????? (_self)",DlgLnkTargetTop:"???????????????? ?????????? (_top)",DlgLnkTargetFrameName:"?????? ???????? ????????",DlgLnkPopWinName:"?????? ???????????? ??????????",DlgLnkPopWinFeat:"???????????????? ???????????? ??????????",DlgLnkPopResize:"???????? ?????????? ????????????",DlgLnkPopLocation:"???????? ????????????",DlgLnkPopMenu:"???????? ??????",DlgLnkPopScroll:"????????????????? ????????????",DlgLnkPopStatus:"???????? ??????????",DlgLnkPopToolbar:"??????????????????",DlgLnkPopFullScrn:"??????????????????? (IE)",DlgLnkPopDependent:"???????????? (Netscape)",DlgLnkPopWidth:"????????",DlgLnkPopHeight:"??????????",DlgLnkPopLeft:"???????????? ??????",DlgLnkPopTop:"???????????? ??????????",DlnLnkMsgNoUrl:"???????? URL ?????????? ???? ??????????????",DlnLnkMsgNoEMail:"???????? ?????????? ?????? ???????????????????? ???? ??????????????",DlnLnkMsgNoAnchor:"???????? ?????????? ???? ????????????????",DlnLnkMsgInvPopName:"?????? ???????????? ?????????? ???????? ???? ???? ???????????? ?????????????? ???????? ???????? ?? ?????????? ??????????????????? ???????? ???? ???? ??????????",DlgColorTitle:"?????????? ??????",DlgColorBtnClear:"?????????????????",DlgColorHighlight:"??????????",DlgColorSelected:"??????????????",DlgSmileyTitle:"?????????????? ????????????",DlgSpecialCharTitle:"?????????? ???????????????????????",DlgTableTitle:"???????????????? ????????",DlgTableRows:"??????????",DlgTableColumns:"????????????",DlgTableBorder:"?????????????? ??????",DlgTableAlign:"????????",DlgTableAlignNotSet:"??????????????????>",DlgTableAlignLeft:"????",DlgTableAlignCenter:"??????",DlgTableAlignRight:"????????",DlgTableWidth:"????????",DlgTableWidthPx:"??????????",DlgTableWidthPc:"????????",DlgTableHeight:"??????????",DlgTableCellSpace:"???????????? ???????? ????????????",DlgTableCellPad:"???????????? ?????????? ???? ????????",DlgTableCaption:"??????????",DlgTableSummary:"??????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"???????????????? ????????",DlgCellWidth:"????????",DlgCellWidthPx:"??????????",DlgCellWidthPc:"????????",DlgCellHeight:"??????????",DlgCellWordWrap:"?????????? ???????????????",DlgCellWordWrapNotSet:"??????????????????>",DlgCellWordWrapYes:"??????",DlgCellWordWrapNo:"??????",DlgCellHorAlign:"???????? ??????????",DlgCellHorAlignNotSet:"??????????????????>",DlgCellHorAlignLeft:"????",DlgCellHorAlignCenter:"??????",DlgCellHorAlignRight:"????????",DlgCellVerAlign:"???????? ????????????",DlgCellVerAlignNotSet:"??????????????????>",DlgCellVerAlignTop:"????????",DlgCellVerAlignMiddle:"????????",DlgCellVerAlignBottom:"??????????",DlgCellVerAlignBaseline:"???????????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"?????????????? ??????????",DlgCellCollSpan:"?????????????? ????????????",DlgCellBackColor:"?????? ?????????????????",DlgCellBorderColor:"?????? ??????",DlgCellBtnSelect:"????????????????...",DlgFindAndReplaceTitle:"?????????? ?? ????????????????",DlgFindTitle:"??????????",DlgFindFindBtn:"??????????",DlgFindNotFoundMsg:"?????? ?????????????? ???????? ??????.",DlgReplaceTitle:"????????????????",DlgReplaceFindLbl:"????????????? ???? ?????????????????:",DlgReplaceReplaceLbl:"???????????????? ????:",DlgReplaceCaseChk:"???????????? ???? ?????????? ?? ?????????? ?????????????????",DlgReplaceReplaceBtn:"????????????????",DlgReplaceReplAllBtn:"???????????????? ???????? ?????????????????",DlgReplaceWordChk:"???????????? ???? ?????????? ????????",PasteErrorCut:"?????????????? ???????????? ???????????? ?????? ?????????? ??????????????? ???? ???????????????? ???? ?????? ???????????? ?????????????????? ?????? ???? ?????????? ??????. ???????? ???? ????????????????? ??????????????????? ?????? ?????? ???? ?????????? ???????? (Ctrl+X).",PasteErrorCopy:"?????????????? ???????????? ???????????? ?????? ?????????? ??????????????? ???? ???????????????? ???? ?????? ???????????? ?????????????????? ????????????????? ???? ?????????? ??????. ???????? ???? ????????????????? ??????????????????? ?????? ?????? ???? ?????????? ???????? (Ctrl+C).",PasteAsText:"?????????????? ???? ?????????? ?????? ??????????",PasteFromWord:"?????????????? ???? Word",DlgPasteMsg2:"???????? ?????? ???? ???? ?????????????? (Ctrl+V) ???? ?????? ?????????? ???????? ???????????????? ?? ?????????? ???? ??????????.",DlgPasteSec:"???? ???????? ?????????????? ???????????? ???????????? ???????? ???????????????? ??????????????????? ???????????? ???????????? ???? ????????????????? clipboard ?????????? ????????. ?????? ???????? ???????????? ???????? ???? ?????? ?????????? ????????????????.",DlgPasteIgnoreFont:"????????????????? ???? ???????????? ?????? ??????",DlgPasteRemoveStyles:"????????????????? ???? ???????????? ?????? (style)",ColorAutomatic:"????????????",ColorMoreColors:"???????????? ??????????...",DocProps:"???????????????? ??????",DlgAnchorTitle:"???????????????? ????????",DlgAnchorName:"?????? ????????",DlgAnchorErrorName:"???????? ?????? ???????? ???? ??????????????",DlgSpellNotInDic:"???? ??????????????????? ???????? ??????",DlgSpellChangeTo:"?????????? ????",DlgSpellBtnIgnore:"?????????????????",DlgSpellBtnIgnoreAll:"????????????????? ??????",DlgSpellBtnReplace:"????????????????",DlgSpellBtnReplaceAll:"???????????????? ??????",DlgSpellBtnUndo:"????????????",DlgSpellNoSuggestions:"- ???????????????? ???????? -",DlgSpellProgress:"?????????? ???????? ???? ?????? ??????????...",DlgSpellNoMispell:"?????????? ???????? ?????????? ????. ?????? ????????????????????? ???????? ??????",DlgSpellNoChanges:"?????????? ???????? ?????????? ????. ?????? ??????????????? ?????????? ??????????",DlgSpellOneChange:"?????????? ???????? ?????????? ????. ???? ???????? ?????????? ????????",DlgSpellManyChanges:"?????????? ???????? ?????????? ????. %1 ???????? ?????????? ????????",IeSpellDownload:"????????????????????????? ???????? ?????? ???????? ??????. ?????? ??????????????????? ???? ???? ????????????????? ???????????? ??????????",DlgButtonText:"?????? (??????????)",DlgButtonType:"??????",DlgButtonTypeBtn:"????????",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"???????????????? (Reset)",DlgCheckboxName:"??????",DlgCheckboxValue:"??????????",DlgCheckboxSelected:"??????????????",DlgFormName:"??????",DlgFormAction:"????????????",DlgFormMethod:"??????",DlgSelectName:"??????",DlgSelectValue:"??????????",DlgSelectSize:"????????????",DlgSelectLines:"????????",DlgSelectChkMulti:"?????????? ?????????????? ?????????? ????????",DlgSelectOpAvail:"??????????????????? ??????????????",DlgSelectOpText:"??????",DlgSelectOpValue:"??????????",DlgSelectBtnAdd:"????????????",DlgSelectBtnModify:"????????????",DlgSelectBtnUp:"????????",DlgSelectBtnDown:"??????????",DlgSelectBtnSetValue:"?????????? ???? ?????????? ?????????? ????????????????",DlgSelectBtnDelete:"?????????????????",DlgTextareaName:"??????",DlgTextareaCols:"????????????",DlgTextareaRows:"??????????",DlgTextName:"??????",DlgTextValue:"??????????",DlgTextCharWidth:"?????????? ??????????",DlgTextMaxChars:"?????????????? ?????????????????",DlgTextType:"??????",DlgTextTypeText:"??????",DlgTextTypePass:"??????????????",DlgHiddenName:"??????",DlgHiddenValue:"??????????",BulletedListProp:"???????????????? ?????????? ???????????????",NumberedListProp:"???????????????? ?????????? ???????????????????",DlgLstStart:"????????",DlgLstType:"??????",DlgLstTypeCircle:"??????????",DlgLstTypeDisc:"??????",DlgLstTypeSquare:"??????????????",DlgLstTypeNumbers:"????????????????? (1?? 2?? 3)",DlgLstTypeLCase:"??????????????????? ???????? (a?? b?? c)",DlgLstTypeUCase:"??????????????????? ???????? (A?? B?? C)",DlgLstTypeSRoman:"?????????????? ???????? ???????? (i?? ii?? iii)",DlgLstTypeLRoman:"?????????????? ???????? ???????? (I?? II?? III)",DlgDocGeneralTab:"??????????",DlgDocBackTab:"?????????????????",DlgDocColorsTab:"?????????? ?? ?????????????????",DlgDocMetaTab:"??????????????",DlgDocPageTitle:"?????????? ????????",DlgDocLangDir:"?????? ????????",DlgDocLangDirLTR:"???? ???? ???????? (LTR(",DlgDocLangDirRTL:"???????? ???? ???? (RTL(",DlgDocLangCode:"???? ????????",DlgDocCharSet:"???????????????? ???????????????????",DlgDocCharSetCE:"???????????? ??????????",DlgDocCharSetCT:"???????? ???????? (Big5)",DlgDocCharSetCR:"??????????????",DlgDocCharSetGR:"????????????",DlgDocCharSetJP:"??????????",DlgDocCharSetKR:"?????????????",DlgDocCharSetTR:"????????",DlgDocCharSetUN:"?????????????? (UTF-8)",DlgDocCharSetWE:"???????????? ????????",DlgDocCharSetOther:"???????????????? ??????????????????? ????????",DlgDocDocType:"?????????? ?????? ??????",DlgDocDocTypeOther:"?????????? ?????? ?????? ????????",DlgDocIncXHTML:"???????? ???????????? XHTML",DlgDocBgColor:"?????? ?????????????????",DlgDocBgImage:"URL ?????????? ?????????????????",DlgDocBgNoScroll:"??????????????????? ???????????????????????????",DlgDocCText:"??????",DlgDocCLink:"??????????",DlgDocCVisited:"?????????? ?????????????????????",DlgDocCActive:"?????????? ????????",DlgDocMargins:"??????????????????? ????????",DlgDocMaTop:"????????",DlgDocMaLeft:"????",DlgDocMaRight:"????????",DlgDocMaBottom:"??????????",DlgDocMeIndex:"???????????????????? ??????????????????????? ?????? (???? ???????? ?????? ????????)",DlgDocMeDescr:"?????????? ??????",DlgDocMeAuthor:"??????????????",DlgDocMeCopy:"?????????????????",DlgDocPreview:"???????????????????",Templates:"????????????",DlgTemplatesTitle:"?????????????? ??????????????",DlgTemplatesSelMsg:"???????? ?????????? ?????????????? ???? ???????? ?????????????? ???? ???????????????? ???????????????? (?????????????? ?????????? ???? ?????? ???????????? ??????):",DlgTemplatesLoading:"???????????????? ?????????? ????????????. ???????? ?????? ????????...",DlgTemplatesNoTpl:"(???????????? ?????????? ???????? ??????)",DlgTemplatesReplace:"?????????????? ?????????? ?????????????? ????????",DlgAboutAboutTab:"????????????",DlgAboutBrowserInfoTab:"?????????????? ????????????",DlgAboutLicenseTab:"??????????????????",DlgAboutVersion:"??????????",DlgAboutInfo:"???????? ?????????? ?????????? ???? ?????? ?????????? ??????????",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/fi.js b/horde/services/editor/fckeditor/editor/lang/fi.js
deleted file mode 100644
index fe1e72881..000000000
--- a/horde/services/editor/fckeditor/editor/lang/fi.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Piilota ty??kalurivi",ToolbarExpand:"N??yt?? ty??kalurivi",Save:"Tallenna",NewPage:"Tyhjenn??",Preview:"Esikatsele",Cut:"Leikkaa",Copy:"Kopioi",Paste:"Liit??",PasteText:"Liit?? tekstin??",PasteWord:"Liit?? Wordista",Print:"Tulosta",SelectAll:"Valitse kaikki",RemoveFormat:"Poista muotoilu",InsertLinkLbl:"Linkki",InsertLink:"Lis???? linkki/muokkaa linkki??",RemoveLink:"Poista linkki",VisitLink:"Open Link",Anchor:"Lis???? ankkuri/muokkaa ankkuria",AnchorDelete:"Poista ankkuri",InsertImageLbl:"Kuva",InsertImage:"Lis???? kuva/muokkaa kuvaa",InsertFlashLbl:"Flash",InsertFlash:"Lis????/muokkaa Flashia",InsertTableLbl:"Taulu",InsertTable:"Lis???? taulu/muokkaa taulua",InsertLineLbl:"Murtoviiva",InsertLine:"Lis???? murtoviiva",InsertSpecialCharLbl:"Erikoismerkki",InsertSpecialChar:"Lis???? erikoismerkki",InsertSmileyLbl:"Hymi??",InsertSmiley:"Lis???? hymi??",About:"FCKeditorista",Bold:"Lihavoitu",Italic:"Kursivoitu",Underline:"Alleviivattu",StrikeThrough:"Yliviivattu",Subscript:"Alaindeksi",Superscript:"Yl??indeksi",LeftJustify:"Tasaa vasemmat reunat",CenterJustify:"Keskit??",RightJustify:"Tasaa oikeat reunat",BlockJustify:"Tasaa molemmat reunat",DecreaseIndent:"Pienenn?? sisennyst??",IncreaseIndent:"Suurenna sisennyst??",Blockquote:"Lainaus",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Kumoa",Redo:"Toista",NumberedListLbl:"Numerointi",NumberedList:"Lis????/poista numerointi",BulletedListLbl:"Luottelomerkit",BulletedList:"Lis????/poista luottelomerkit",ShowTableBorders:"N??yt?? taulun rajat",ShowDetails:"N??yt?? muotoilu",Style:"Tyyli",FontFormat:"Muotoilu",Font:"Fontti",FontSize:"Koko",TextColor:"Tekstiv??ri",BGColor:"Taustav??ri",Source:"Koodi",Find:"Etsi",Replace:"Korvaa",SpellCheck:"Tarkista oikeinkirjoitus",UniversalKeyboard:"Universaali n??pp??imist??",PageBreakLbl:"Sivun vaihto",PageBreak:"Lis???? sivun vaihto",Form:"Lomake",Checkbox:"Valintaruutu",RadioButton:"Radiopainike",TextField:"Tekstikentt??",Textarea:"Tekstilaatikko",HiddenField:"Piilokentt??",Button:"Painike",SelectionField:"Valintakentt??",ImageButton:"Kuvapainike",FitWindow:"Suurenna editori koko ikkunaan",ShowBlocks:"N??yt?? elementit",EditLink:"Muokkaa linkki??",CellCM:"Solu",RowCM:"Rivi",ColumnCM:"Sarake",InsertRowAfter:"Lis???? rivi alapuolelle",InsertRowBefore:"Lis???? rivi yl??puolelle",DeleteRows:"Poista rivit",InsertColumnAfter:"Lis???? sarake oikealle",InsertColumnBefore:"Lis???? sarake vasemmalle",DeleteColumns:"Poista sarakkeet",InsertCellAfter:"Lis???? solu per????n",InsertCellBefore:"Lis???? solu eteen",DeleteCells:"Poista solut",MergeCells:"Yhdist?? solut",MergeRight:"Yhdist?? oikealla olevan kanssa",MergeDown:"Yhdist?? alla olevan kanssa",HorizontalSplitCell:"Jaa solu vaakasuunnassa",VerticalSplitCell:"Jaa solu pystysuunnassa",TableDelete:"Poista taulu",CellProperties:"Solun ominaisuudet",TableProperties:"Taulun ominaisuudet",ImageProperties:"Kuvan ominaisuudet",FlashProperties:"Flash ominaisuudet",AnchorProp:"Ankkurin ominaisuudet",ButtonProp:"Painikkeen ominaisuudet",CheckboxProp:"Valintaruudun ominaisuudet",HiddenFieldProp:"Piilokent??n ominaisuudet",RadioButtonProp:"Radiopainikkeen ominaisuudet",ImageButtonProp:"Kuvapainikkeen ominaisuudet",TextFieldProp:"Tekstikent??n ominaisuudet",SelectionFieldProp:"Valintakent??n ominaisuudet",TextareaProp:"Tekstilaatikon ominaisuudet",FormProp:"Lomakkeen ominaisuudet",FontFormats:"Normaali;Muotoiltu;Osoite;Otsikko 1;Otsikko 2;Otsikko 3;Otsikko 4;Otsikko 5;Otsikko 6",ProcessingXHTML:"Prosessoidaan XHTML:????. Odota hetki...",Done:"Valmis",PasteWordConfirm:"Teksti, jonka haluat liitt????, n??ytt???? olevan kopioitu Wordista. Haluatko puhdistaa sen ennen liitt??mist???",NotCompatiblePaste:"T??m?? komento toimii vain Internet Explorer 5.5:ssa tai uudemmassa. Haluatko liitt???? ilman puhdistusta?",UnknownToolbarItem:'Tuntemanton ty??kalu "%1"',UnknownCommand:'Tuntematon komento "%1"',NotImplemented:"Komentoa ei ole liitetty sovellukseen",UnknownToolbarSet:'Ty??kalukokonaisuus "%1" ei ole olemassa',NoActiveX:'Selaimesi turvallisuusasetukset voivat rajoittaa joitain editorin ominaisuuksia. Sinun pit???? ottaa k??ytt????n asetuksista "Suorita ActiveX komponentit ja -plugin-laajennukset". Saatat kohdata virheit?? ja huomata puuttuvia ominaisuuksia.',BrowseServerBlocked:"Resurssiselainta ei voitu avata. Varmista, ett?? ponnahdusikkunoiden est??j??t eiv??t ole p????ll??.",DialogBlocked:"Apuikkunaa ei voitu avaata. Varmista, ett?? ponnahdusikkunoiden est??j??t eiv??t ole p????ll??.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Peruuta",DlgBtnClose:"Sulje",DlgBtnBrowseServer:"Selaa palvelinta",DlgAdvancedTag:"Lis??ominaisuudet",DlgOpOther:"Muut",DlgInfoTab:"Info",DlgAlertUrl:"Lis???? URL",DlgGenNotSet:"",DlgGenId:"Tunniste",DlgGenLangDir:"Kielen suunta",DlgGenLangDirLtr:"Vasemmalta oikealle (LTR)",DlgGenLangDirRtl:"Oikealta vasemmalle (RTL)",DlgGenLangCode:"Kielikoodi",DlgGenAccessKey:"Pikan??pp??in",DlgGenName:"Nimi",DlgGenTabIndex:"Tabulaattori indeksi",DlgGenLongDescr:"Pitk??n kuvauksen URL",DlgGenClass:"Tyyliluokat",DlgGenTitle:"Avustava otsikko",DlgGenContType:"Avustava sis??ll??n tyyppi",DlgGenLinkCharset:"Linkitetty kirjaimisto",DlgGenStyle:"Tyyli",DlgImgTitle:"Kuvan ominaisuudet",DlgImgInfoTab:"Kuvan tiedot",DlgImgBtnUpload:"L??het?? palvelimelle",DlgImgURL:"Osoite",DlgImgUpload:"Lis???? kuva",DlgImgAlt:"Vaihtoehtoinen teksti",DlgImgWidth:"Leveys",DlgImgHeight:"Korkeus",DlgImgLockRatio:"Lukitse suhteet",DlgBtnResetSize:"Alkuper??inen koko",DlgImgBorder:"Raja",DlgImgHSpace:"Vaakatila",DlgImgVSpace:"Pystytila",DlgImgAlign:"Kohdistus",DlgImgAlignLeft:"Vasemmalle",DlgImgAlignAbsBottom:"Aivan alas",DlgImgAlignAbsMiddle:"Aivan keskelle",DlgImgAlignBaseline:"Alas (teksti)",DlgImgAlignBottom:"Alas",DlgImgAlignMiddle:"Keskelle",DlgImgAlignRight:"Oikealle",DlgImgAlignTextTop:"Yl??s (teksti)",DlgImgAlignTop:"Yl??s",DlgImgPreview:"Esikatselu",DlgImgAlertUrl:"Kirjoita kuvan osoite (URL)",DlgImgLinkTab:"Linkki",DlgFlashTitle:"Flash ominaisuudet",DlgFlashChkPlay:"Automaattinen k??ynnistys",DlgFlashChkLoop:"Toisto",DlgFlashChkMenu:"N??yt?? Flash-valikko",DlgFlashScale:"Levit??",DlgFlashScaleAll:"N??yt?? kaikki",DlgFlashScaleNoBorder:"Ei rajaa",DlgFlashScaleFit:"Tarkka koko",DlgLnkWindowTitle:"Linkki",DlgLnkInfoTab:"Linkin tiedot",DlgLnkTargetTab:"Kohde",DlgLnkType:"Linkkityyppi",DlgLnkTypeURL:"Osoite",DlgLnkTypeAnchor:"Ankkuri t??ss?? sivussa",DlgLnkTypeEMail:"S??hk??posti",DlgLnkProto:"Protokolla",DlgLnkProtoOther:"",DlgLnkURL:"Osoite",DlgLnkAnchorSel:"Valitse ankkuri",DlgLnkAnchorByName:"Ankkurin nimen mukaan",DlgLnkAnchorById:"Ankkurin ID:n mukaan",DlgLnkNoAnchors:"(Ei ankkureita t??ss?? dokumentissa)",DlgLnkEMail:"S??hk??postiosoite",DlgLnkEMailSubject:"Aihe",DlgLnkEMailBody:"Viesti",DlgLnkUpload:"Lis???? tiedosto",DlgLnkBtnUpload:"L??het?? palvelimelle",DlgLnkTarget:"Kohde",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Uusi ikkuna (_blank)",DlgLnkTargetParent:"Emoikkuna (_parent)",DlgLnkTargetSelf:"Sama ikkuna (_self)",DlgLnkTargetTop:"P????llimm??isin ikkuna (_top)",DlgLnkTargetFrameName:"Kohdekehyksen nimi",DlgLnkPopWinName:"Popup ikkunan nimi",DlgLnkPopWinFeat:"Popup ikkunan ominaisuudet",DlgLnkPopResize:"Venytett??v??",DlgLnkPopLocation:"Osoiterivi",DlgLnkPopMenu:"Valikkorivi",DlgLnkPopScroll:"Vierityspalkit",DlgLnkPopStatus:"Tilarivi",DlgLnkPopToolbar:"Vakiopainikkeet",DlgLnkPopFullScrn:"T??ysi ikkuna (IE)",DlgLnkPopDependent:"Riippuva (Netscape)",DlgLnkPopWidth:"Leveys",DlgLnkPopHeight:"Korkeus",DlgLnkPopLeft:"Vasemmalta (px)",DlgLnkPopTop:"Ylh????lt?? (px)",DlnLnkMsgNoUrl:"Linkille on kirjoitettava URL",DlnLnkMsgNoEMail:"Kirjoita s??hk??postiosoite",DlnLnkMsgNoAnchor:"Valitse ankkuri",DlnLnkMsgInvPopName:"Popup-ikkunan nimi pit???? alkaa aakkosella ja ei saa sis??lt???? v??lej??",DlgColorTitle:"Valitse v??ri",DlgColorBtnClear:"Tyhjenn??",DlgColorHighlight:"Kohdalla",DlgColorSelected:"Valittu",DlgSmileyTitle:"Lis???? hymi??",DlgSpecialCharTitle:"Valitse erikoismerkki",DlgTableTitle:"Taulun ominaisuudet",DlgTableRows:"Rivit",DlgTableColumns:"Sarakkeet",DlgTableBorder:"Rajan paksuus",DlgTableAlign:"Kohdistus",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Vasemmalle",DlgTableAlignCenter:"Keskelle",DlgTableAlignRight:"Oikealle",DlgTableWidth:"Leveys",DlgTableWidthPx:"pikseli??",DlgTableWidthPc:"prosenttia",DlgTableHeight:"Korkeus",DlgTableCellSpace:"Solujen v??li",DlgTableCellPad:"Solujen sisennys",DlgTableCaption:"Otsikko",DlgTableSummary:"Yhteenveto",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Solun ominaisuudet",DlgCellWidth:"Leveys",DlgCellWidthPx:"pikseli??",DlgCellWidthPc:"prosenttia",DlgCellHeight:"Korkeus",DlgCellWordWrap:"Tekstikierr??tys",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Kyll??",DlgCellWordWrapNo:"Ei",DlgCellHorAlign:"Vaakakohdistus",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Vasemmalle",DlgCellHorAlignCenter:"Keskelle",DlgCellHorAlignRight:"Oikealle",DlgCellVerAlign:"Pystykohdistus",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Yl??s",DlgCellVerAlignMiddle:"Keskelle",DlgCellVerAlignBottom:"Alas",DlgCellVerAlignBaseline:"Tekstin alas",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Rivin jatkuvuus",DlgCellCollSpan:"Sarakkeen jatkuvuus",DlgCellBackColor:"Taustav??ri",DlgCellBorderColor:"Rajan v??ri",DlgCellBtnSelect:"Valitse...",DlgFindAndReplaceTitle:"Etsi ja korvaa",DlgFindTitle:"Etsi",DlgFindFindBtn:"Etsi",DlgFindNotFoundMsg:"Etsitty?? teksti?? ei l??ytynyt.",DlgReplaceTitle:"Korvaa",DlgReplaceFindLbl:"Etsi mit??:",DlgReplaceReplaceLbl:"Korvaa t??ll??:",DlgReplaceCaseChk:"Sama kirjainkoko",DlgReplaceReplaceBtn:"Korvaa",DlgReplaceReplAllBtn:"Korvaa kaikki",DlgReplaceWordChk:"Koko sana",PasteErrorCut:"Selaimesi turva-asetukset eiv??t salli editorin toteuttaa leikkaamista. K??yt?? n??pp??imist???? leikkaamiseen (Ctrl+X).",PasteErrorCopy:"Selaimesi turva-asetukset eiv??t salli editorin toteuttaa kopioimista. K??yt?? n??pp??imist???? kopioimiseen (Ctrl+C).",PasteAsText:"Liit?? tekstin??",PasteFromWord:"Liit?? Wordista",DlgPasteMsg2:"Liit?? painamalla (Ctrl+V) ja painamalla OK.",DlgPasteSec:"Selaimesi turva-asetukset eiv??t salli editorin k??ytt???? leikep??yt???? suoraan. Sinun pit???? suorittaa liitt??minen t??ss?? ikkunassa.",DlgPasteIgnoreFont:"J??t?? huomioimatta fonttim????ritykset",DlgPasteRemoveStyles:"Poista tyylim????ritykset",ColorAutomatic:"Automaattinen",ColorMoreColors:"Lis???? v??rej??...",DocProps:"Dokumentin ominaisuudet",DlgAnchorTitle:"Ankkurin ominaisuudet",DlgAnchorName:"Nimi",DlgAnchorErrorName:"Ankkurille on kirjoitettava nimi",DlgSpellNotInDic:"Ei sanakirjassa",DlgSpellChangeTo:"Vaihda",DlgSpellBtnIgnore:"J??t?? huomioimatta",DlgSpellBtnIgnoreAll:"J??t?? kaikki huomioimatta",DlgSpellBtnReplace:"Korvaa",DlgSpellBtnReplaceAll:"Korvaa kaikki",DlgSpellBtnUndo:"Kumoa",DlgSpellNoSuggestions:"Ei ehdotuksia",DlgSpellProgress:"Tarkistus k??ynniss??...",DlgSpellNoMispell:"Tarkistus valmis: Ei virheit??",DlgSpellNoChanges:"Tarkistus valmis: Yht????n sanaa ei muutettu",DlgSpellOneChange:"Tarkistus valmis: Yksi sana muutettiin",DlgSpellManyChanges:"Tarkistus valmis: %1 sanaa muutettiin",IeSpellDownload:"Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?",DlgButtonText:"Teksti (arvo)",DlgButtonType:"Tyyppi",DlgButtonTypeBtn:"Painike",DlgButtonTypeSbm:"L??het??",DlgButtonTypeRst:"Tyhjenn??",DlgCheckboxName:"Nimi",DlgCheckboxValue:"Arvo",DlgCheckboxSelected:"Valittu",DlgFormName:"Nimi",DlgFormAction:"Toiminto",DlgFormMethod:"Tapa",DlgSelectName:"Nimi",DlgSelectValue:"Arvo",DlgSelectSize:"Koko",DlgSelectLines:"Rivit",DlgSelectChkMulti:"Salli usea valinta",DlgSelectOpAvail:"Ominaisuudet",DlgSelectOpText:"Teksti",DlgSelectOpValue:"Arvo",DlgSelectBtnAdd:"Lis????",DlgSelectBtnModify:"Muuta",DlgSelectBtnUp:"Yl??s",DlgSelectBtnDown:"Alas",DlgSelectBtnSetValue:"Aseta valituksi",DlgSelectBtnDelete:"Poista",DlgTextareaName:"Nimi",DlgTextareaCols:"Sarakkeita",DlgTextareaRows:"Rivej??",DlgTextName:"Nimi",DlgTextValue:"Arvo",DlgTextCharWidth:"Leveys",DlgTextMaxChars:"Maksimi merkkim????r??",DlgTextType:"Tyyppi",DlgTextTypeText:"Teksti",DlgTextTypePass:"Salasana",DlgHiddenName:"Nimi",DlgHiddenValue:"Arvo",BulletedListProp:"Luettelon ominaisuudet",NumberedListProp:"Numeroinnin ominaisuudet",DlgLstStart:"Alku",DlgLstType:"Tyyppi",DlgLstTypeCircle:"Keh??",DlgLstTypeDisc:"Ympyr??",DlgLstTypeSquare:"Neli??",DlgLstTypeNumbers:"Numerot (1, 2, 3)",DlgLstTypeLCase:"Pienet kirjaimet (a, b, c)",DlgLstTypeUCase:"Isot kirjaimet (A, B, C)",DlgLstTypeSRoman:"Pienet roomalaiset numerot (i, ii, iii)",DlgLstTypeLRoman:"Isot roomalaiset numerot (Ii, II, III)",DlgDocGeneralTab:"Yleiset",DlgDocBackTab:"Tausta",DlgDocColorsTab:"V??rit ja marginaalit",DlgDocMetaTab:"Meta-tieto",DlgDocPageTitle:"Sivun nimi",DlgDocLangDir:"Kielen suunta",DlgDocLangDirLTR:"Vasemmalta oikealle (LTR)",DlgDocLangDirRTL:"Oikealta vasemmalle (RTL)",DlgDocLangCode:"Kielikoodi",DlgDocCharSet:"Merkist??koodaus",DlgDocCharSetCE:"Keskieurooppalainen",DlgDocCharSetCT:"Kiina, perinteinen (Big5)",DlgDocCharSetCR:"Kyrillinen",DlgDocCharSetGR:"Kreikka",DlgDocCharSetJP:"Japani",DlgDocCharSetKR:"Korealainen",DlgDocCharSetTR:"Turkkilainen",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"L??nsieurooppalainen",DlgDocCharSetOther:"Muu merkist??koodaus",DlgDocDocType:"Dokumentin tyyppi",DlgDocDocTypeOther:"Muu dokumentin tyyppi",DlgDocIncXHTML:"Lis???? XHTML julistukset",DlgDocBgColor:"Taustav??ri",DlgDocBgImage:"Taustakuva",DlgDocBgNoScroll:"Paikallaanpysyv?? tausta",DlgDocCText:"Teksti",DlgDocCLink:"Linkki",DlgDocCVisited:"Vierailtu linkki",DlgDocCActive:"Aktiivinen linkki",DlgDocMargins:"Sivun marginaalit",DlgDocMaTop:"Yl??",DlgDocMaLeft:"Vasen",DlgDocMaRight:"Oikea",DlgDocMaBottom:"Ala",DlgDocMeIndex:"Hakusanat (pilkulla erotettuna)",DlgDocMeDescr:"Kuvaus",DlgDocMeAuthor:"Tekij??",DlgDocMeCopy:"Tekij??noikeudet",DlgDocPreview:"Esikatselu",Templates:"Pohjat",DlgTemplatesTitle:"Sis??lt??pohjat",DlgTemplatesSelMsg:"Valitse pohja editoriin (aiempi sis??lt?? menetet????n):",DlgTemplatesLoading:"Ladataan listaa pohjista. Hetkinen...",DlgTemplatesNoTpl:"(Ei m????riteltyj?? pohjia)",DlgTemplatesReplace:"Korvaa editorin koko sis??lt??",DlgAboutAboutTab:"Editorista",DlgAboutBrowserInfoTab:"Selaimen tiedot",DlgAboutLicenseTab:"Lisenssi",DlgAboutVersion:"versio",DlgAboutInfo:"Lis???? tietoa osoitteesta",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/fo.js b/horde/services/editor/fckeditor/editor/lang/fo.js
deleted file mode 100644
index 90fbd6d67..000000000
--- a/horde/services/editor/fckeditor/editor/lang/fo.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Fjal ambo??sbj??lkan",ToolbarExpand:"V??s ambo??sbj??lkan",Save:"Goym",NewPage:"N??ggj s????a",Preview:"Frums??ning",Cut:"Kvett",Copy:"Avrita",Paste:"Innrita",PasteText:"Innrita reinan tekst",PasteWord:"Innrita fr?? Word",Print:"Prenta",SelectAll:"Markera alt",RemoveFormat:"Strika sni??geving",InsertLinkLbl:"Tilkn??ti",InsertLink:"Ger/broyt tilkn??ti",RemoveLink:"Strika tilkn??ti",VisitLink:"Opna tilkn??ti",Anchor:"Ger/broyt marknastein",AnchorDelete:"Strika marknastein",InsertImageLbl:"Myndir",InsertImage:"Set inn/broyt mynd",InsertFlashLbl:"Flash",InsertFlash:"Set inn/broyt Flash",InsertTableLbl:"Tabell",InsertTable:"Set inn/broyt tabell",InsertLineLbl:"Linja",InsertLine:"Ger vatnr??tta linju",InsertSpecialCharLbl:"Sertekn",InsertSpecialChar:"Set inn sertekn",InsertSmileyLbl:"Smiley",InsertSmiley:"Set inn Smiley",About:"Um FCKeditor",Bold:"Feit skrift",Italic:"Skr??skrift",Underline:"Undirstrika??",StrikeThrough:"Yvirstrika??",Subscript:"L??kka?? skrift",Superscript:"H??kka?? skrift",LeftJustify:"Vinstrasett",CenterJustify:"Mi??sett",RightJustify:"H??grasett",BlockJustify:"Javnir tekstkantar",DecreaseIndent:"Minka reglubrotarinntriv",IncreaseIndent:"??kja reglubrotarinntriv",Blockquote:"Blockquote",CreateDiv:"Ger DIV ??ki",EditDiv:"Broyt DIV ??ki",DeleteDiv:"Strika DIV ??ki",Undo:"Angra",Redo:"Vend aftur",NumberedListLbl:"Talmerktur listi",NumberedList:"Ger/strika talmerktan lista",BulletedListLbl:"Punktmerktur listi",BulletedList:"Ger/strika punktmerktan lista",ShowTableBorders:"V??s tabellbordar",ShowDetails:"V??s ?? sm??lutum",Style:"Typografi",FontFormat:"Skriftsni??",Font:"Skrift",FontSize:"Skriftst??dd",TextColor:"Tekstlitur",BGColor:"Bakgrundslitur",Source:"Kelda",Find:"Leita",Replace:"Yvirskriva",SpellCheck:"Kanna stavseting",UniversalKeyboard:"Knappabor??",PageBreakLbl:"S????uskift",PageBreak:"Ger s????uskift",Form:"Formur",Checkbox:"Flugubein",RadioButton:"Radiokn??ttur",TextField:"Tekstteigur",Textarea:"Tekstumr????i",HiddenField:"Fjaldur teigur",Button:"Kn??ttur",SelectionField:"Valskr??",ImageButton:"Myndakn??ttur",FitWindow:"Set tekstvi??gera til fulla st??dd",ShowBlocks:"V??s blokkar",EditLink:"Broyt tilkn??ti",CellCM:"Meski",RowCM:"Ra??",ColumnCM:"Kolonna",InsertRowAfter:"Set ra?? inn aftan??",InsertRowBefore:"Set ra?? inn ????renn",DeleteRows:"Strika r????ir",InsertColumnAfter:"Set kolonnu inn aftan??",InsertColumnBefore:"Set kolonnu inn ????renn",DeleteColumns:"Strika kolonnur",InsertCellAfter:"Set meska inn aftan??",InsertCellBefore:"Set meska inn ????renn",DeleteCells:"Strika meskar",MergeCells:"Fl??tta meskar",MergeRight:"Fl??tta meskar til h??gru",MergeDown:"Fl??tta saman",HorizontalSplitCell:"Kloyv meska vatnr??tt",VerticalSplitCell:"Kloyv meska loddr??tt",TableDelete:"Strika tabell",CellProperties:"Meskueginleikar",TableProperties:"Tabelleginleikar",ImageProperties:"Myndaeginleikar",FlashProperties:"Flash eginleikar",AnchorProp:"Eginleikar fyri marknastein",ButtonProp:"Eginleikar fyri kn??tt",CheckboxProp:"Eginleikar fyri flugubein",HiddenFieldProp:"Eginleikar fyri fjaldan teig",RadioButtonProp:"Eginleikar fyri radiokn??tt",ImageButtonProp:"Eginleikar fyri myndakn??tt",TextFieldProp:"Eginleikar fyri tekstteig",SelectionFieldProp:"Eginleikar fyri valskr??",TextareaProp:"Eginleikar fyri tekstumr????i",FormProp:"Eginleikar fyri Form",FontFormats:"Vanligt;Sni??givi??;Adressa;Yvirskrift 1;Yvirskrift 2;Yvirskrift 3;Yvirskrift 4;Yvirskrift 5;Yvirskrift 6",ProcessingXHTML:"XHTML ver??ur vi??gj??rt. B????a vi??...",Done:"Li??ugt",PasteWordConfirm:"Teksturin, royndur ver??ur at seta inn, tykist at stava fr?? Word. Vilt t?? reinsa tekstin, ????renn hann ver??ur settur inn?",NotCompatiblePaste:"Hetta er bert t??kt ?? Internet Explorer 5.5 og n??ggjari. Vilt t?? seta tekstin inn kortini - ??reinsa??an?",UnknownToolbarItem:'??kendur lutur ?? ambo??sbj??lkanum "%1"',UnknownCommand:'??kend kommando "%1"',NotImplemented:"Hetta er ikki t??kt ?? hesi ??tg??vuni",UnknownToolbarSet:'Ambo??sbj??lkin "%1" finst ikki',NoActiveX:'Trygdaruppsetingin ?? aln??tskaganum kann sum er avmarka onkrar hentleikar ?? tekstvi??geranum. T?? m??st loyva m??guleikanum "Run/K??r ActiveX controls and plug-ins". T?? kanst uppliva feilir og ??varingar um tv??rrandi hentleikar.',BrowseServerBlocked:"Amb??tarakagin kundi ikki opnast. Tryggja t??r, at allar pop-up for??ingar eru ??virknar.",DialogBlocked:"Ta?? ey??na??ist ikki at opna samskiftisr??tin. Tryggja t??r, at allar pop-up for??ingar eru ??virknar.",VisitLinkBlocked:"Ta?? ey??na??ist ikki at opna n??ggjan r??t. Tryggja t??r, at allar pop-up for??ingar eru ??virknar.",DlgBtnOK:"G????kent",DlgBtnCancel:"Avl??st",DlgBtnClose:"Lat aftur",DlgBtnBrowseServer:"Amb??tarakagi",DlgAdvancedTag:"Fj??lbroytt",DlgOpOther:"",DlgInfoTab:"Uppl??singar",DlgAlertUrl:"Vinarliga veit ein URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Tekstk??s",DlgGenLangDirLtr:"Fr?? vinstru til h??gru (LTR)",DlgGenLangDirRtl:"Fr?? h??gru til vinstru (RTL)",DlgGenLangCode:"M??lkoda",DlgGenAccessKey:"Snarvegisknappur",DlgGenName:"Navn",DlgGenTabIndex:"Inntriv indeks",DlgGenLongDescr:"V????ka?? URL fr??grei??ing",DlgGenClass:"Typografi klassar",DlgGenTitle:"Veglei??andi heiti",DlgGenContType:"Veglei??andi innihaldsslag",DlgGenLinkCharset:"Atkn??tt teknsett",DlgGenStyle:"Typografi",DlgImgTitle:"Myndaeginleikar",DlgImgInfoTab:"Myndauppl??singar",DlgImgBtnUpload:"Send til amb??taran",DlgImgURL:"URL",DlgImgUpload:"Send",DlgImgAlt:"Alternativur tekstur",DlgImgWidth:"Breidd",DlgImgHeight:"H??dd",DlgImgLockRatio:"L??s lutfalli??",DlgBtnResetSize:"Upprunast??dd",DlgImgBorder:"Bordi",DlgImgHSpace:"H??gri breddi",DlgImgVSpace:"Vinstri breddi",DlgImgAlign:"Justering",DlgImgAlignLeft:"Vinstra",DlgImgAlignAbsBottom:"Abs botnur",DlgImgAlignAbsMiddle:"Abs mi??ja",DlgImgAlignBaseline:"Basislinja",DlgImgAlignBottom:"Botnur",DlgImgAlignMiddle:"Mi??ja",DlgImgAlignRight:"H??gra",DlgImgAlignTextTop:"Tekst toppur",DlgImgAlignTop:"Ovast",DlgImgPreview:"Frums??ning",DlgImgAlertUrl:"Rita sl????ina til myndina",DlgImgLinkTab:"Tilkn??ti",DlgFlashTitle:"Flash eginleikar",DlgFlashChkPlay:"Avsp??lingin byrjar sj??lv",DlgFlashChkLoop:"Endursp??l",DlgFlashChkMenu:"Ger Flash skr?? virkna",DlgFlashScale:"Skalering",DlgFlashScaleAll:"V??s alt",DlgFlashScaleNoBorder:"Eingin bordi",DlgFlashScaleFit:"Neyv skalering",DlgLnkWindowTitle:"Tilkn??ti",DlgLnkInfoTab:"Tilkn??tis uppl??singar",DlgLnkTargetTab:"M??l",DlgLnkType:"Tilkn??tisslag",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Tilkn??ti til marknastein ?? tekstinum",DlgLnkTypeEMail:"Teldupostur",DlgLnkProto:"Protokoll",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Vel ein marknastein",DlgLnkAnchorByName:"Eftir navni ?? marknasteini",DlgLnkAnchorById:"Eftir element Id",DlgLnkNoAnchors:"(Eingir marknasteinar eru ?? hesum dokumenti??)",DlgLnkEMail:"Teldupost-adressa",DlgLnkEMailSubject:"Evni",DlgLnkEMailBody:"Brey??tekstur",DlgLnkUpload:"Send til amb??taran",DlgLnkBtnUpload:"Send til amb??taran",DlgLnkTarget:"M??l",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"N??tt vindeyga (_blank)",DlgLnkTargetParent:"Upphavliga vindeyga?? (_parent)",DlgLnkTargetSelf:"Sama vindeyga?? (_self)",DlgLnkTargetTop:"Alt vindeyga?? (_top)",DlgLnkTargetFrameName:"V??s navn vindeygans",DlgLnkPopWinName:"Popup vindeygans navn",DlgLnkPopWinFeat:"Popup vindeygans v????ka??u eginleikar",DlgLnkPopResize:"Kann broyta st??dd",DlgLnkPopLocation:"Adressulinja",DlgLnkPopMenu:"Skr??bj??lki",DlgLnkPopScroll:"Rullibj??lki",DlgLnkPopStatus:"St????ufr??grei??ingarbj??lki",DlgLnkPopToolbar:"Ambo??sbj??lki",DlgLnkPopFullScrn:"Fullur skermur (IE)",DlgLnkPopDependent:"Bundi?? (Netscape)",DlgLnkPopWidth:"Breidd",DlgLnkPopHeight:"H??dd",DlgLnkPopLeft:"Fr??st????a fr?? vinstru",DlgLnkPopTop:"Fr??st????a fr?? ??erva",DlnLnkMsgNoUrl:"Vinarliga skriva tilkn??ti (URL)",DlnLnkMsgNoEMail:"Vinarliga skriva teldupost-adressu",DlnLnkMsgNoAnchor:"Vinarliga vel marknastein",DlnLnkMsgInvPopName:"Popup navni?? m?? byrja vi?? b??kstavi og m?? ikki hava millumr??m",DlgColorTitle:"Vel lit",DlgColorBtnClear:"Strika alt",DlgColorHighlight:"Framhevja",DlgColorSelected:"Valt",DlgSmileyTitle:"Vel Smiley",DlgSpecialCharTitle:"Vel sertekn",DlgTableTitle:"Eginleikar fyri tabell",DlgTableRows:"R????ir",DlgTableColumns:"Kolonnur",DlgTableBorder:"Bordabreidd",DlgTableAlign:"Justering",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Vinstrasett",DlgTableAlignCenter:"Mi??sett",DlgTableAlignRight:"H??grasett",DlgTableWidth:"Breidd",DlgTableWidthPx:"pixels",DlgTableWidthPc:"prosent",DlgTableHeight:"H??dd",DlgTableCellSpace:"Fjarst????a millum meskar",DlgTableCellPad:"Meskubreddi",DlgTableCaption:"Tabellfr??grei??ing",DlgTableSummary:"Samandr??ttur",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Mesku eginleikar",DlgCellWidth:"Breidd",DlgCellWidthPx:"pixels",DlgCellWidthPc:"prosent",DlgCellHeight:"H??dd",DlgCellWordWrap:"Or??kloyving",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Ja",DlgCellWordWrapNo:"Nei",DlgCellHorAlign:"Vatnr??tt justering",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Vinstrasett",DlgCellHorAlignCenter:"Mi??sett",DlgCellHorAlignRight:"H??grasett",DlgCellVerAlign:"Lodr??tt justering",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Ovast",DlgCellVerAlignMiddle:"Mi??jan",DlgCellVerAlignBottom:"Ni??ast",DlgCellVerAlignBaseline:"Basislinja",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"R????ir, meskin fevnir um",DlgCellCollSpan:"Kolonnur, meskin fevnir um",DlgCellBackColor:"Bakgrundslitur",DlgCellBorderColor:"Litur ?? borda",DlgCellBtnSelect:"Vel...",DlgFindAndReplaceTitle:"Finn og broyt",DlgFindTitle:"Finn",DlgFindFindBtn:"Finn",DlgFindNotFoundMsg:"Leititeksturin var?? ikki funnin",DlgReplaceTitle:"Yvirskriva",DlgReplaceFindLbl:"Finn:",DlgReplaceReplaceLbl:"Yvirskriva vi??:",DlgReplaceCaseChk:"Munur ?? st??rum og sm????um b??kstavum",DlgReplaceReplaceBtn:"Yvirskriva",DlgReplaceReplAllBtn:"Yvirskriva alt",DlgReplaceWordChk:"Bert heil or??",PasteErrorCut:"Trygdaruppseting aln??tskagans for??ar tekstvi??geranum ?? at kvetta tekstin. Vinarliga n??t knappabor??i?? til at kvetta tekstin (CTRL+X).",PasteErrorCopy:"Trygdaruppseting aln??tskagans for??ar tekstvi??geranum ?? at avrita tekstin. Vinarliga n??t knappabor??i?? til at avrita tekstin (CTRL+C).",PasteAsText:"Innrita som reinan tekst",PasteFromWord:"Innrita fra Word",DlgPasteMsg2:"Vinarliga koyr tekstin ?? hendan r??tin vi?? knappabor??inum (CTRL+V) og klikk ?? G????tak.",DlgPasteSec:"Trygdaruppseting aln??tskagans for??ar tekstvi??geranum ?? beinlei??is atgongd til avritingarminni??. Tygum mugu royna aftur ?? hesum r??tinum.",DlgPasteIgnoreFont:"Forfj??na Font definiti??nirnar",DlgPasteRemoveStyles:"Strika typografi definiti??nir",ColorAutomatic:"Automatiskt",ColorMoreColors:"Fleiri litir...",DocProps:"Eginleikar fyri dokument",DlgAnchorTitle:"Eginleikar fyri marknastein",DlgAnchorName:"Heiti marknasteinsins",DlgAnchorErrorName:"Vinarliga rita marknasteinsins heiti",DlgSpellNotInDic:"Finst ikki ?? or??ab??kini",DlgSpellChangeTo:"Broyt til",DlgSpellBtnIgnore:"Forfj??na",DlgSpellBtnIgnoreAll:"Forfj??na alt",DlgSpellBtnReplace:"Yvirskriva",DlgSpellBtnReplaceAll:"Yvirskriva alt",DlgSpellBtnUndo:"Angra",DlgSpellNoSuggestions:"- Einki uppskot -",DlgSpellProgress:"R??ttstavarin arbei??ir...",DlgSpellNoMispell:"R??ttstavarain li??ugur: Eingin feilur funnin",DlgSpellNoChanges:"R??ttstavarain li??ugur: Einki or?? var?? broytt",DlgSpellOneChange:"R??ttstavarain li??ugur: Eitt or?? er broytt",DlgSpellManyChanges:"R??ttstavarain li??ugur: %1 or?? broytt",IeSpellDownload:"R??ttstavarin er ikki t??kur ?? tekstvi??geranum. Vilt t?? heinta hann n???",DlgButtonText:"Tekstur",DlgButtonType:"Slag",DlgButtonTypeBtn:"Kn??ttur",DlgButtonTypeSbm:"Send",DlgButtonTypeRst:"Nullstilla",DlgCheckboxName:"Navn",DlgCheckboxValue:"Vir??i",DlgCheckboxSelected:"Valt",DlgFormName:"Navn",DlgFormAction:"Hending",DlgFormMethod:"H??ttur",DlgSelectName:"Navn",DlgSelectValue:"Vir??i",DlgSelectSize:"St??dd",DlgSelectLines:"Linjur",DlgSelectChkMulti:"Loyv fleiri valm??guleikum samstundis",DlgSelectOpAvail:"T??kir m??guleikar",DlgSelectOpText:"Tekstur",DlgSelectOpValue:"Vir??i",DlgSelectBtnAdd:"Legg afturat",DlgSelectBtnModify:"Broyt",DlgSelectBtnUp:"Upp",DlgSelectBtnDown:"Ni??ur",DlgSelectBtnSetValue:"Set sum valt vir??i",DlgSelectBtnDelete:"Strika",DlgTextareaName:"Navn",DlgTextareaCols:"kolonnur",DlgTextareaRows:"r????ir",DlgTextName:"Navn",DlgTextValue:"Vir??i",DlgTextCharWidth:"Breidd (sj??nlig tekn)",DlgTextMaxChars:"Mest loyvdu tekn",DlgTextType:"Slag",DlgTextTypeText:"Tekstur",DlgTextTypePass:"Loynior??",DlgHiddenName:"Navn",DlgHiddenValue:"Vir??i",BulletedListProp:"Eginleikar fyri punktmerktan lista",NumberedListProp:"Eginleikar fyri talmerktan lista",DlgLstStart:"Byrjan",DlgLstType:"Slag",DlgLstTypeCircle:"Sirkul",DlgLstTypeDisc:"Fyltur sirkul",DlgLstTypeSquare:"Fj??rhyrningur",DlgLstTypeNumbers:"Talmerkt (1, 2, 3)",DlgLstTypeLCase:"Sm??ir b??kstavir (a, b, c)",DlgLstTypeUCase:"St??rir b??kstavir (A, B, C)",DlgLstTypeSRoman:"Sm?? r??marat??l (i, ii, iii)",DlgLstTypeLRoman:"St??r r??marat??l (I, II, III)",DlgDocGeneralTab:"Generelt",DlgDocBackTab:"Bakgrund",DlgDocColorsTab:"Litir og breddar",DlgDocMetaTab:"META-uppl??singar",DlgDocPageTitle:"S????uheiti",DlgDocLangDir:"Tekstk??s",DlgDocLangDirLTR:"Fr?? vinstru m??ti h??gru (LTR)",DlgDocLangDirRTL:"Fr?? h??gru m??ti vinstru (RTL)",DlgDocLangCode:"M??lkoda",DlgDocCharSet:"Teknsett koda",DlgDocCharSetCE:"Mi??europa",DlgDocCharSetCT:"Kinesiskt traditionelt (Big5)",DlgDocCharSetCR:"Cyrilliskt",DlgDocCharSetGR:"Grikst",DlgDocCharSetJP:"Japanskt",DlgDocCharSetKR:"Koreanskt",DlgDocCharSetTR:"Turkiskt",DlgDocCharSetUN:"UNICODE (UTF-8)",DlgDocCharSetWE:"Vestureuropa",DlgDocCharSetOther:"Onnur teknsett koda",DlgDocDocType:"Dokumentslag yvirskrift",DlgDocDocTypeOther:"Anna?? dokumentslag yvirskrift",DlgDocIncXHTML:"Vi??fest XHTML deklarati??nir",DlgDocBgColor:"Bakgrundslitur",DlgDocBgImage:"Lei?? til bakgrundsmynd (URL)",DlgDocBgNoScroll:"L??st bakgrund (rullar ikki)",DlgDocCText:"Tekstur",DlgDocCLink:"Tilkn??ti",DlgDocCVisited:"Vitja??i tilkn??ti",DlgDocCActive:"Virkin tilkn??ti",DlgDocMargins:"S????ubreddar",DlgDocMaTop:"Ovast",DlgDocMaLeft:"Vinstra",DlgDocMaRight:"H??gra",DlgDocMaBottom:"Ni??ast",DlgDocMeIndex:"Dokument index lyklaor?? (sundurb??tt vi?? komma)",DlgDocMeDescr:"Dokumentl??sing",DlgDocMeAuthor:"H??vundur",DlgDocMeCopy:"Upphavsr??ttindi",DlgDocPreview:"Frums??ning",Templates:"Skabel??nir",DlgTemplatesTitle:"Innihaldsskabel??nir",DlgTemplatesSelMsg:"Vinarliga vel ta skabel??n, i?? skal opnast ?? tekstvi??geranum (Hetta yvirskrivar n??verandi innihald):",DlgTemplatesLoading:"Heinti yvirlit yvir skabel??nir. Vinarliga b????a vi??...",DlgTemplatesNoTpl:"(Ongar skabel??nir t??kar)",DlgTemplatesReplace:"Yvirskriva n??verandi innihald",DlgAboutAboutTab:"Um",DlgAboutBrowserInfoTab:"Uppl??singar um aln??tskagan",DlgAboutLicenseTab:"License",DlgAboutVersion:"version",DlgAboutInfo:"Fyri fleiri uppl??singar, far til",DlgDivGeneralTab:"Generelt",DlgDivAdvancedTab:"Fj??lbroytt",DlgDivStyle:"Typografi",DlgDivInlineStyle:"Inline typografi"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/fr-ca.js b/horde/services/editor/fckeditor/editor/lang/fr-ca.js
deleted file mode 100644
index c05b5675b..000000000
--- a/horde/services/editor/fckeditor/editor/lang/fr-ca.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Masquer Outils",ToolbarExpand:"Afficher Outils",Save:"Sauvegarder",NewPage:"Nouvelle page",Preview:"Previsualiser",Cut:"Couper",Copy:"Copier",Paste:"Coller",PasteText:"Coller en tant que texte",PasteWord:"Coller en tant que Word (format??)",Print:"Imprimer",SelectAll:"Tout s??lectionner",RemoveFormat:"Supprimer le formatage",InsertLinkLbl:"Lien",InsertLink:"Ins??rer/modifier le lien",RemoveLink:"Supprimer le lien",VisitLink:"Suivre le lien",Anchor:"Ins??rer/modifier l'ancre",AnchorDelete:"Supprimer l'ancre",InsertImageLbl:"Image",InsertImage:"Ins??rer/modifier l'image",InsertFlashLbl:"Animation Flash",InsertFlash:"Ins??rer/modifier l'animation Flash",InsertTableLbl:"Tableau",InsertTable:"Ins??rer/modifier le tableau",InsertLineLbl:"S??parateur",InsertLine:"Ins??rer un s??parateur",InsertSpecialCharLbl:"Caract??res sp??ciaux",InsertSpecialChar:"Ins??rer un caract??re sp??cial",InsertSmileyLbl:"Emoticon",InsertSmiley:"Ins??rer un Emoticon",About:"A propos de FCKeditor",Bold:"Gras",Italic:"Italique",Underline:"Soulign??",StrikeThrough:"Barrer",Subscript:"Indice",Superscript:"Exposant",LeftJustify:"Aligner ?? gauche",CenterJustify:"Centrer",RightJustify:"Aligner ?? Droite",BlockJustify:"Texte justifi??",DecreaseIndent:"Diminuer le retrait",IncreaseIndent:"Augmenter le retrait",Blockquote:"Citation",CreateDiv:"Cr??er Balise Div",EditDiv:"Modifier Balise Div",DeleteDiv:"Supprimer Balise Div",Undo:"Annuler",Redo:"Refaire",NumberedListLbl:"Liste num??rot??e",NumberedList:"Ins??rer/supprimer la liste num??rot??e",BulletedListLbl:"Liste ?? puces",BulletedList:"Ins??rer/supprimer la liste ?? puces",ShowTableBorders:"Afficher les bordures du tableau",ShowDetails:"Afficher les caract??res invisibles",Style:"Style",FontFormat:"Format",Font:"Police",FontSize:"Taille",TextColor:"Couleur de caract??re",BGColor:"Couleur de fond",Source:"Source",Find:"Chercher",Replace:"Remplacer",SpellCheck:"Orthographe",UniversalKeyboard:"Clavier universel",PageBreakLbl:"Saut de page",PageBreak:"Ins??rer un saut de page",Form:"Formulaire",Checkbox:"Case ?? cocher",RadioButton:"Bouton radio",TextField:"Champ texte",Textarea:"Zone de texte",HiddenField:"Champ cach??",Button:"Bouton",SelectionField:"Champ de s??lection",ImageButton:"Bouton image",FitWindow:"Edition pleine page",ShowBlocks:"Afficher les blocs",EditLink:"Modifier le lien",CellCM:"Cellule",RowCM:"Ligne",ColumnCM:"Colonne",InsertRowAfter:"Ins??rer une ligne apr??s",InsertRowBefore:"Ins??rer une ligne avant",DeleteRows:"Supprimer des lignes",InsertColumnAfter:"Ins??rer une colonne apr??s",InsertColumnBefore:"Ins??rer une colonne avant",DeleteColumns:"Supprimer des colonnes",InsertCellAfter:"Ins??rer une cellule apr??s",InsertCellBefore:"Ins??rer une cellule avant",DeleteCells:"Supprimer des cellules",MergeCells:"Fusionner les cellules",MergeRight:"Fusionner ?? droite",MergeDown:"Fusionner en bas",HorizontalSplitCell:"Scinder la cellule horizontalement",VerticalSplitCell:"Scinder la cellule verticalement",TableDelete:"Supprimer le tableau",CellProperties:"Propri??t??s de cellule",TableProperties:"Propri??t??s du tableau",ImageProperties:"Propri??t??s de l'image",FlashProperties:"Propri??t??s de l'animation Flash",AnchorProp:"Propri??t??s de l'ancre",ButtonProp:"Propri??t??s du bouton",CheckboxProp:"Propri??t??s de la case ?? cocher",HiddenFieldProp:"Propri??t??s du champ cach??",RadioButtonProp:"Propri??t??s du bouton radio",ImageButtonProp:"Propri??t??s du bouton image",TextFieldProp:"Propri??t??s du champ texte",SelectionFieldProp:"Propri??t??s de la liste/du menu",TextareaProp:"Propri??t??s de la zone de texte",FormProp:"Propri??t??s du formulaire",FontFormats:"Normal;Format??;Adresse;En-t??te 1;En-t??te 2;En-t??te 3;En-t??te 4;En-t??te 5;En-t??te 6;Normal (DIV)",ProcessingXHTML:"Calcul XHTML. Veuillez patienter...",Done:"Termin??",PasteWordConfirm:"Le texte ?? coller semble provenir de Word. D??sirez-vous le nettoyer avant de coller?",NotCompatiblePaste:"Cette commande n??cessite Internet Explorer version 5.5 et plus. Souhaitez-vous coller sans nettoyage?",UnknownToolbarItem:'??l??ment de barre d\'outil inconnu "%1"',UnknownCommand:'Nom de commande inconnu "%1"',NotImplemented:"Commande indisponible",UnknownToolbarSet:"La barre d'outils \"%1\" n'existe pas",NoActiveX:"Les param??tres de s??curit?? de votre navigateur peuvent limiter quelques fonctionnalit??s de l'??diteur. Veuillez activer l'option \"Ex??cuter les contr??les ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.",BrowseServerBlocked:"Le navigateur n'a pas pu ??tre ouvert. Assurez-vous que les bloqueurs de popups soient d??sactiv??s.",DialogBlocked:"La fen??tre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient d??sactiv??s.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Annuler",DlgBtnClose:"Fermer",DlgBtnBrowseServer:"Parcourir le serveur",DlgAdvancedTag:"Avanc??e",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Veuillez saisir l'URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Sens d'??criture",DlgGenLangDirLtr:"De gauche ?? droite (LTR)",DlgGenLangDirRtl:"De droite ?? gauche (RTL)",DlgGenLangCode:"Code langue",DlgGenAccessKey:"??quivalent clavier",DlgGenName:"Nom",DlgGenTabIndex:"Ordre de tabulation",DlgGenLongDescr:"URL de description longue",DlgGenClass:"Classes de feuilles de style",DlgGenTitle:"Titre",DlgGenContType:"Type de contenu",DlgGenLinkCharset:"Encodage de caract??re",DlgGenStyle:"Style",DlgImgTitle:"Propri??t??s de l'image",DlgImgInfoTab:"Informations sur l'image",DlgImgBtnUpload:"Envoyer sur le serveur",DlgImgURL:"URL",DlgImgUpload:"T??l??charger",DlgImgAlt:"Texte de remplacement",DlgImgWidth:"Largeur",DlgImgHeight:"Hauteur",DlgImgLockRatio:"Garder les proportions",DlgBtnResetSize:"Taille originale",DlgImgBorder:"Bordure",DlgImgHSpace:"Espacement horizontal",DlgImgVSpace:"Espacement vertical",DlgImgAlign:"Alignement",DlgImgAlignLeft:"Gauche",DlgImgAlignAbsBottom:"Abs Bas",DlgImgAlignAbsMiddle:"Abs Milieu",DlgImgAlignBaseline:"Bas du texte",DlgImgAlignBottom:"Bas",DlgImgAlignMiddle:"Milieu",DlgImgAlignRight:"Droite",DlgImgAlignTextTop:"Haut du texte",DlgImgAlignTop:"Haut",DlgImgPreview:"Pr??visualisation",DlgImgAlertUrl:"Veuillez saisir l'URL de l'image",DlgImgLinkTab:"Lien",DlgFlashTitle:"Propri??t??s de l'animation Flash",DlgFlashChkPlay:"Lecture automatique",DlgFlashChkLoop:"Boucle",DlgFlashChkMenu:"Activer le menu Flash",DlgFlashScale:"Affichage",DlgFlashScaleAll:"Par d??faut (tout montrer)",DlgFlashScaleNoBorder:"Sans bordure",DlgFlashScaleFit:"Ajuster aux dimensions",DlgLnkWindowTitle:"Propri??t??s du lien",DlgLnkInfoTab:"Informations sur le lien",DlgLnkTargetTab:"Destination",DlgLnkType:"Type de lien",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Ancre dans cette page",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocole",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"S??lectionner une ancre",DlgLnkAnchorByName:"Par nom",DlgLnkAnchorById:"Par id",DlgLnkNoAnchors:"(Pas d'ancre disponible dans le document)",DlgLnkEMail:"Adresse E-Mail",DlgLnkEMailSubject:"Sujet du message",DlgLnkEMailBody:"Corps du message",DlgLnkUpload:"T??l??charger",DlgLnkBtnUpload:"Envoyer sur le serveur",DlgLnkTarget:"Destination",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nouvelle fen??tre (_blank)",DlgLnkTargetParent:"Fen??tre m??re (_parent)",DlgLnkTargetSelf:"M??me fen??tre (_self)",DlgLnkTargetTop:"Fen??tre sup??rieure (_top)",DlgLnkTargetFrameName:"Nom du cadre de destination",DlgLnkPopWinName:"Nom de la fen??tre popup",DlgLnkPopWinFeat:"Caract??ristiques de la fen??tre popup",DlgLnkPopResize:"Taille modifiable",DlgLnkPopLocation:"Barre d'adresses",DlgLnkPopMenu:"Barre de menu",DlgLnkPopScroll:"Barres de d??filement",DlgLnkPopStatus:"Barre d'??tat",DlgLnkPopToolbar:"Barre d'outils",DlgLnkPopFullScrn:"Plein ??cran (IE)",DlgLnkPopDependent:"D??pendante (Netscape)",DlgLnkPopWidth:"Largeur",DlgLnkPopHeight:"Hauteur",DlgLnkPopLeft:"Position ?? partir de la gauche",DlgLnkPopTop:"Position ?? partir du haut",DlnLnkMsgNoUrl:"Veuillez saisir l'URL",DlnLnkMsgNoEMail:"Veuillez saisir l'adresse e-mail",DlnLnkMsgNoAnchor:"Veuillez s??lectionner une ancre",DlnLnkMsgInvPopName:"Le nom de la fen??tre popup doit commencer par une lettre et ne doit pas contenir d'espace",DlgColorTitle:"S??lectionner",DlgColorBtnClear:"Effacer",DlgColorHighlight:"Pr??visualisation",DlgColorSelected:"S??lectionn??",DlgSmileyTitle:"Ins??rer un Emoticon",DlgSpecialCharTitle:"Ins??rer un caract??re sp??cial",DlgTableTitle:"Propri??t??s du tableau",DlgTableRows:"Lignes",DlgTableColumns:"Colonnes",DlgTableBorder:"Taille de la bordure",DlgTableAlign:"Alignement",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Gauche",DlgTableAlignCenter:"Centr??",DlgTableAlignRight:"Droite",DlgTableWidth:"Largeur",DlgTableWidthPx:"pixels",DlgTableWidthPc:"pourcentage",DlgTableHeight:"Hauteur",DlgTableCellSpace:"Espacement",DlgTableCellPad:"Contour",DlgTableCaption:"Titre",DlgTableSummary:"R??sum??",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Propri??t??s de la cellule",DlgCellWidth:"Largeur",DlgCellWidthPx:"pixels",DlgCellWidthPc:"pourcentage",DlgCellHeight:"Hauteur",DlgCellWordWrap:"Retour ?? la ligne",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Oui",DlgCellWordWrapNo:"Non",DlgCellHorAlign:"Alignement horizontal",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Gauche",DlgCellHorAlignCenter:"Centr??",DlgCellHorAlignRight:"Droite",DlgCellVerAlign:"Alignement vertical",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Haut",DlgCellVerAlignMiddle:"Milieu",DlgCellVerAlignBottom:"Bas",DlgCellVerAlignBaseline:"Bas du texte",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Lignes fusionn??es",DlgCellCollSpan:"Colonnes fusionn??es",DlgCellBackColor:"Couleur de fond",DlgCellBorderColor:"Couleur de bordure",DlgCellBtnSelect:"S??lectionner...",DlgFindAndReplaceTitle:"Chercher et Remplacer",DlgFindTitle:"Chercher",DlgFindFindBtn:"Chercher",DlgFindNotFoundMsg:"Le texte indiqu?? est introuvable.",DlgReplaceTitle:"Remplacer",DlgReplaceFindLbl:"Rechercher:",DlgReplaceReplaceLbl:"Remplacer par:",DlgReplaceCaseChk:"Respecter la casse",DlgReplaceReplaceBtn:"Remplacer",DlgReplaceReplAllBtn:"Tout remplacer",DlgReplaceWordChk:"Mot entier",PasteErrorCut:"Les param??tres de s??curit?? de votre navigateur emp??chent l'??diteur de couper automatiquement vos donn??es. Veuillez utiliser les ??quivalents claviers (Ctrl+X).",PasteErrorCopy:"Les param??tres de s??curit?? de votre navigateur emp??chent l'??diteur de copier automatiquement vos donn??es. Veuillez utiliser les ??quivalents claviers (Ctrl+C).",PasteAsText:"Coller comme texte",PasteFromWord:"Coller ?? partir de Word",DlgPasteMsg2:"Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et appuyer sur OK.",DlgPasteSec:"A cause des param??tres de s??curit?? de votre navigateur, l'??diteur ne peut acc??der au presse-papier directement. Vous devez coller ?? nouveau le contenu dans cette fen??tre.",DlgPasteIgnoreFont:"Ignorer les polices de caract??res",DlgPasteRemoveStyles:"Supprimer les styles",ColorAutomatic:"Automatique",ColorMoreColors:"Plus de couleurs...",DocProps:"Propri??t??s du document",DlgAnchorTitle:"Propri??t??s de l'ancre",DlgAnchorName:"Nom de l'ancre",DlgAnchorErrorName:"Veuillez saisir le nom de l'ancre",DlgSpellNotInDic:"Pas dans le dictionnaire",DlgSpellChangeTo:"Changer en",DlgSpellBtnIgnore:"Ignorer",DlgSpellBtnIgnoreAll:"Ignorer tout",DlgSpellBtnReplace:"Remplacer",DlgSpellBtnReplaceAll:"Remplacer tout",DlgSpellBtnUndo:"Annuler",DlgSpellNoSuggestions:"- Pas de suggestion -",DlgSpellProgress:"V??rification d'orthographe en cours...",DlgSpellNoMispell:"V??rification d'orthographe termin??e: pas d'erreur trouv??e",DlgSpellNoChanges:"V??rification d'orthographe termin??e: Pas de modifications",DlgSpellOneChange:"V??rification d'orthographe termin??e: Un mot modifi??",DlgSpellManyChanges:"V??rification d'orthographe termin??e: %1 mots modifi??s",IeSpellDownload:"Le Correcteur d'orthographe n'est pas install??. Souhaitez-vous le t??l??charger maintenant?",DlgButtonText:"Texte (Valeur)",DlgButtonType:"Type",DlgButtonTypeBtn:"Bouton",DlgButtonTypeSbm:"Soumettre",DlgButtonTypeRst:"R??initialiser",DlgCheckboxName:"Nom",DlgCheckboxValue:"Valeur",DlgCheckboxSelected:"S??lectionn??",DlgFormName:"Nom",DlgFormAction:"Action",DlgFormMethod:"M??thode",DlgSelectName:"Nom",DlgSelectValue:"Valeur",DlgSelectSize:"Taille",DlgSelectLines:"lignes",DlgSelectChkMulti:"S??lection multiple",DlgSelectOpAvail:"Options disponibles",DlgSelectOpText:"Texte",DlgSelectOpValue:"Valeur",DlgSelectBtnAdd:"Ajouter",DlgSelectBtnModify:"Modifier",DlgSelectBtnUp:"Monter",DlgSelectBtnDown:"Descendre",DlgSelectBtnSetValue:"Valeur s??lectionn??e",DlgSelectBtnDelete:"Supprimer",DlgTextareaName:"Nom",DlgTextareaCols:"Colonnes",DlgTextareaRows:"Lignes",DlgTextName:"Nom",DlgTextValue:"Valeur",DlgTextCharWidth:"Largeur en caract??res",DlgTextMaxChars:"Nombre maximum de caract??res",DlgTextType:"Type",DlgTextTypeText:"Texte",DlgTextTypePass:"Mot de passe",DlgHiddenName:"Nom",DlgHiddenValue:"Valeur",BulletedListProp:"Propri??t??s de liste ?? puces",NumberedListProp:"Propri??t??s de liste num??rot??e",DlgLstStart:"D??but",DlgLstType:"Type",DlgLstTypeCircle:"Cercle",DlgLstTypeDisc:"Disque",DlgLstTypeSquare:"Carr??",DlgLstTypeNumbers:"Nombres (1, 2, 3)",DlgLstTypeLCase:"Lettres minuscules (a, b, c)",DlgLstTypeUCase:"Lettres majuscules (A, B, C)",DlgLstTypeSRoman:"Chiffres romains minuscules (i, ii, iii)",DlgLstTypeLRoman:"Chiffres romains majuscules (I, II, III)",DlgDocGeneralTab:"G??n??ral",DlgDocBackTab:"Fond",DlgDocColorsTab:"Couleurs et Marges",DlgDocMetaTab:"M??ta-Donn??es",DlgDocPageTitle:"Titre de la page",DlgDocLangDir:"Sens d'??criture",DlgDocLangDirLTR:"De la gauche vers la droite (LTR)",DlgDocLangDirRTL:"De la droite vers la gauche (RTL)",DlgDocLangCode:"Code langue",DlgDocCharSet:"Encodage de caract??re",DlgDocCharSetCE:"Europe Centrale",DlgDocCharSetCT:"Chinois Traditionnel (Big5)",DlgDocCharSetCR:"Cyrillique",DlgDocCharSetGR:"Grecque",DlgDocCharSetJP:"Japonais",DlgDocCharSetKR:"Cor??en",DlgDocCharSetTR:"Turcque",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Occidental",DlgDocCharSetOther:"Autre encodage de caract??re",DlgDocDocType:"Type de document",DlgDocDocTypeOther:"Autre type de document",DlgDocIncXHTML:"Inclure les d??clarations XHTML",DlgDocBgColor:"Couleur de fond",DlgDocBgImage:"Image de fond",DlgDocBgNoScroll:"Image fixe sans d??filement",DlgDocCText:"Texte",DlgDocCLink:"Lien",DlgDocCVisited:"Lien visit??",DlgDocCActive:"Lien activ??",DlgDocMargins:"Marges",DlgDocMaTop:"Haut",DlgDocMaLeft:"Gauche",DlgDocMaRight:"Droite",DlgDocMaBottom:"Bas",DlgDocMeIndex:"Mots-cl??s (s??par??s par des virgules)",DlgDocMeDescr:"Description",DlgDocMeAuthor:"Auteur",DlgDocMeCopy:"Copyright",DlgDocPreview:"Pr??visualisation",Templates:"Mod??les",DlgTemplatesTitle:"Mod??les de contenu",DlgTemplatesSelMsg:"S??lectionner le mod??le ?? ouvrir dans l'??diteur (le contenu actuel sera remplac??):",DlgTemplatesLoading:"Chargement de la liste des mod??les. Veuillez patienter...",DlgTemplatesNoTpl:"(Aucun mod??le disponible)",DlgTemplatesReplace:"Remplacer tout le contenu actuel",DlgAboutAboutTab:"?? propos de",DlgAboutBrowserInfoTab:"Navigateur",DlgAboutLicenseTab:"License",DlgAboutVersion:"Version",DlgAboutInfo:"Pour plus d'informations, visiter",DlgDivGeneralTab:"G??n??ral",DlgDivAdvancedTab:"Avanc??",DlgDivStyle:"Style",DlgDivInlineStyle:"Attribut Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/fr.js b/horde/services/editor/fckeditor/editor/lang/fr.js
deleted file mode 100644
index 029aa45a0..000000000
--- a/horde/services/editor/fckeditor/editor/lang/fr.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Masquer Outils",ToolbarExpand:"Afficher Outils",Save:"Enregistrer",NewPage:"Nouvelle page",Preview:"Pr??visualisation",Cut:"Couper",Copy:"Copier",Paste:"Coller",PasteText:"Coller comme texte",PasteWord:"Coller de Word",Print:"Imprimer",SelectAll:"Tout s??lectionner",RemoveFormat:"Supprimer le format",InsertLinkLbl:"Lien",InsertLink:"Ins??rer/modifier le lien",RemoveLink:"Supprimer le lien",VisitLink:"Suivre le lien",Anchor:"Ins??rer/modifier l'ancre",AnchorDelete:"Supprimer l'ancre",InsertImageLbl:"Image",InsertImage:"Ins??rer/modifier l'image",InsertFlashLbl:"Animation Flash",InsertFlash:"Ins??rer/modifier l'animation Flash",InsertTableLbl:"Tableau",InsertTable:"Ins??rer/modifier le tableau",InsertLineLbl:"S??parateur",InsertLine:"Ins??rer un s??parateur",InsertSpecialCharLbl:"Caract??res sp??ciaux",InsertSpecialChar:"Ins??rer un caract??re sp??cial",InsertSmileyLbl:"Smiley",InsertSmiley:"Ins??rer un Smiley",About:"A propos de FCKeditor",Bold:"Gras",Italic:"Italique",Underline:"Soulign??",StrikeThrough:"Barr??",Subscript:"Indice",Superscript:"Exposant",LeftJustify:"Align?? ?? gauche",CenterJustify:"Centr??",RightJustify:"Align?? ?? Droite",BlockJustify:"Texte justifi??",DecreaseIndent:"Diminuer le retrait",IncreaseIndent:"Augmenter le retrait",Blockquote:"Citation",CreateDiv:"Cr??er Balise Div",EditDiv:"Modifier Balise Div",DeleteDiv:"Supprimer Balise Div",Undo:"Annuler",Redo:"Refaire",NumberedListLbl:"Liste num??rot??e",NumberedList:"Ins??rer/supprimer la liste num??rot??e",BulletedListLbl:"Liste ?? puces",BulletedList:"Ins??rer/supprimer la liste ?? puces",ShowTableBorders:"Afficher les bordures du tableau",ShowDetails:"Afficher les caract??res invisibles",Style:"Style",FontFormat:"Format",Font:"Police",FontSize:"Taille",TextColor:"Couleur de caract??re",BGColor:"Couleur de fond",Source:"Source",Find:"Chercher",Replace:"Remplacer",SpellCheck:"Orthographe",UniversalKeyboard:"Clavier universel",PageBreakLbl:"Saut de page",PageBreak:"Ins??rer un saut de page",Form:"Formulaire",Checkbox:"Case ?? cocher",RadioButton:"Bouton radio",TextField:"Champ texte",Textarea:"Zone de texte",HiddenField:"Champ cach??",Button:"Bouton",SelectionField:"Liste/menu",ImageButton:"Bouton image",FitWindow:"Edition pleine page",ShowBlocks:"Afficher les blocs",EditLink:"Modifier le lien",CellCM:"Cellule",RowCM:"Ligne",ColumnCM:"Colonne",InsertRowAfter:"Ins??rer une ligne apr??s",InsertRowBefore:"Ins??rer une ligne avant",DeleteRows:"Supprimer des lignes",InsertColumnAfter:"Ins??rer une colonne apr??s",InsertColumnBefore:"Ins??rer une colonne avant",DeleteColumns:"Supprimer des colonnes",InsertCellAfter:"Ins??rer une cellule apr??s",InsertCellBefore:"Ins??rer une cellule avant",DeleteCells:"Supprimer des cellules",MergeCells:"Fusionner les cellules",MergeRight:"Fusionner ?? droite",MergeDown:"Fusionner en bas",HorizontalSplitCell:"Scinder la cellule horizontalement",VerticalSplitCell:"Scinder la cellule verticalement",TableDelete:"Supprimer le tableau",CellProperties:"Propri??t??s de cellule",TableProperties:"Propri??t??s du tableau",ImageProperties:"Propri??t??s de l'image",FlashProperties:"Propri??t??s de l'animation Flash",AnchorProp:"Propri??t??s de l'ancre",ButtonProp:"Propri??t??s du bouton",CheckboxProp:"Propri??t??s de la case ?? cocher",HiddenFieldProp:"Propri??t??s du champ cach??",RadioButtonProp:"Propri??t??s du bouton radio",ImageButtonProp:"Propri??t??s du bouton image",TextFieldProp:"Propri??t??s du champ texte",SelectionFieldProp:"Propri??t??s de la liste/du menu",TextareaProp:"Propri??t??s de la zone de texte",FormProp:"Propri??t??s du formulaire",FontFormats:"Normal;Format??;Adresse;En-t??te 1;En-t??te 2;En-t??te 3;En-t??te 4;En-t??te 5;En-t??te 6;Normal (DIV)",ProcessingXHTML:"Calcul XHTML. Veuillez patienter...",Done:"Termin??",PasteWordConfirm:"Le texte ?? coller semble provenir de Word. D??sirez-vous le nettoyer avant de coller?",NotCompatiblePaste:"Cette commande n??cessite Internet Explorer version 5.5 minimum. Souhaitez-vous coller sans nettoyage?",UnknownToolbarItem:'El??ment de barre d\'outil inconnu "%1"',UnknownCommand:'Nom de commande inconnu "%1"',NotImplemented:"Commande non encore ??crite",UnknownToolbarSet:"La barre d'outils \"%1\" n'existe pas",NoActiveX:"Les param??tres de s??curit?? de votre navigateur peuvent limiter quelques fonctionnalit??s de l'??diteur. Veuillez activer l'option \"Ex??cuter les contr??les ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.",BrowseServerBlocked:"Le navigateur n'a pas pu ??tre ouvert. Assurez-vous que les bloqueurs de popups soient d??sactiv??s.",DialogBlocked:"La fen??tre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient d??sactiv??s.",VisitLinkBlocked:"Impossible d'ouvrir une nouvelle fen??tre. Assurez-vous que les bloqueurs de popups soient d??sactiv??s.",DlgBtnOK:"OK",DlgBtnCancel:"Annuler",DlgBtnClose:"Fermer",DlgBtnBrowseServer:"Parcourir le serveur",DlgAdvancedTag:"Avanc??",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Veuillez saisir l'URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Sens d'??criture",DlgGenLangDirLtr:"De gauche ?? droite (LTR)",DlgGenLangDirRtl:"De droite ?? gauche (RTL)",DlgGenLangCode:"Code langue",DlgGenAccessKey:"Equivalent clavier",DlgGenName:"Nom",DlgGenTabIndex:"Ordre de tabulation",DlgGenLongDescr:"URL de description longue",DlgGenClass:"Classes de feuilles de style",DlgGenTitle:"Titre",DlgGenContType:"Type de contenu",DlgGenLinkCharset:"Encodage de caract??re",DlgGenStyle:"Style",DlgImgTitle:"Propri??t??s de l'image",DlgImgInfoTab:"Informations sur l'image",DlgImgBtnUpload:"Envoyer sur le serveur",DlgImgURL:"URL",DlgImgUpload:"T??l??charger",DlgImgAlt:"Texte de remplacement",DlgImgWidth:"Largeur",DlgImgHeight:"Hauteur",DlgImgLockRatio:"Garder les proportions",DlgBtnResetSize:"Taille originale",DlgImgBorder:"Bordure",DlgImgHSpace:"Espacement horizontal",DlgImgVSpace:"Espacement vertical",DlgImgAlign:"Alignement",DlgImgAlignLeft:"Gauche",DlgImgAlignAbsBottom:"Abs Bas",DlgImgAlignAbsMiddle:"Abs Milieu",DlgImgAlignBaseline:"Bas du texte",DlgImgAlignBottom:"Bas",DlgImgAlignMiddle:"Milieu",DlgImgAlignRight:"Droite",DlgImgAlignTextTop:"Haut du texte",DlgImgAlignTop:"Haut",DlgImgPreview:"Pr??visualisation",DlgImgAlertUrl:"Veuillez saisir l'URL de l'image",DlgImgLinkTab:"Lien",DlgFlashTitle:"Propri??t??s de l'animation Flash",DlgFlashChkPlay:"Lecture automatique",DlgFlashChkLoop:"Boucle",DlgFlashChkMenu:"Activer le menu Flash",DlgFlashScale:"Affichage",DlgFlashScaleAll:"Par d??faut (tout montrer)",DlgFlashScaleNoBorder:"Sans bordure",DlgFlashScaleFit:"Ajuster aux dimensions",DlgLnkWindowTitle:"Propri??t??s du lien",DlgLnkInfoTab:"Informations sur le lien",DlgLnkTargetTab:"Destination",DlgLnkType:"Type de lien",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Ancre dans cette page",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocole",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"S??lectionner une ancre",DlgLnkAnchorByName:"Par nom",DlgLnkAnchorById:"Par id",DlgLnkNoAnchors:"(Pas d'ancre disponible dans le document)",DlgLnkEMail:"Adresse E-Mail",DlgLnkEMailSubject:"Sujet du message",DlgLnkEMailBody:"Corps du message",DlgLnkUpload:"T??l??charger",DlgLnkBtnUpload:"Envoyer sur le serveur",DlgLnkTarget:"Destination",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nouvelle fen??tre (_blank)",DlgLnkTargetParent:"Fen??tre m??re (_parent)",DlgLnkTargetSelf:"M??me fen??tre (_self)",DlgLnkTargetTop:"Fen??tre sup??rieure (_top)",DlgLnkTargetFrameName:"Nom du cadre de destination",DlgLnkPopWinName:"Nom de la fen??tre popup",DlgLnkPopWinFeat:"Caract??ristiques de la fen??tre popup",DlgLnkPopResize:"Taille modifiable",DlgLnkPopLocation:"Barre d'adresses",DlgLnkPopMenu:"Barre de menu",DlgLnkPopScroll:"Barres de d??filement",DlgLnkPopStatus:"Barre d'??tat",DlgLnkPopToolbar:"Barre d'outils",DlgLnkPopFullScrn:"Plein ??cran (IE)",DlgLnkPopDependent:"D??pendante (Netscape)",DlgLnkPopWidth:"Largeur",DlgLnkPopHeight:"Hauteur",DlgLnkPopLeft:"Position ?? partir de la gauche",DlgLnkPopTop:"Position ?? partir du haut",DlnLnkMsgNoUrl:"Veuillez saisir l'URL",DlnLnkMsgNoEMail:"Veuillez saisir l'adresse e-mail",DlnLnkMsgNoAnchor:"Veuillez s??lectionner une ancre",DlnLnkMsgInvPopName:"Le nom de la fen??tre popup doit commencer par une lettre et ne doit pas contenir d'espace",DlgColorTitle:"S??lectionner",DlgColorBtnClear:"Effacer",DlgColorHighlight:"Pr??visualisation",DlgColorSelected:"S??lectionn??",DlgSmileyTitle:"Ins??rer un Smiley",DlgSpecialCharTitle:"Ins??rer un caract??re sp??cial",DlgTableTitle:"Propri??t??s du tableau",DlgTableRows:"Lignes",DlgTableColumns:"Colonnes",DlgTableBorder:"Bordure",DlgTableAlign:"Alignement",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Gauche",DlgTableAlignCenter:"Centr??",DlgTableAlignRight:"Droite",DlgTableWidth:"Largeur",DlgTableWidthPx:"pixels",DlgTableWidthPc:"pourcentage",DlgTableHeight:"Hauteur",DlgTableCellSpace:"Espacement",DlgTableCellPad:"Contour",DlgTableCaption:"Titre",DlgTableSummary:"R??sum??",DlgTableHeaders:"Ent??tes",DlgTableHeadersNone:"Sans",DlgTableHeadersColumn:"Premi??re colonne",DlgTableHeadersRow:"Premi??re Ligne",DlgTableHeadersBoth:"Les 2",DlgCellTitle:"Propri??t??s de la cellule",DlgCellWidth:"Largeur",DlgCellWidthPx:"pixels",DlgCellWidthPc:"pourcentage",DlgCellHeight:"Hauteur",DlgCellWordWrap:"Retour ?? la ligne",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Oui",DlgCellWordWrapNo:"Non",DlgCellHorAlign:"Alignement horizontal",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Gauche",DlgCellHorAlignCenter:"Centr??",DlgCellHorAlignRight:"Droite",DlgCellVerAlign:"Alignement vertical",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Haut",DlgCellVerAlignMiddle:"Milieu",DlgCellVerAlignBottom:"Bas",DlgCellVerAlignBaseline:"Bas du texte",DlgCellType:"Type de Cellule",DlgCellTypeData:"Donn??es",DlgCellTypeHeader:"Ent??te",DlgCellRowSpan:"Lignes fusionn??es",DlgCellCollSpan:"Colonnes fusionn??es",DlgCellBackColor:"Fond",DlgCellBorderColor:"Bordure",DlgCellBtnSelect:"Choisir...",DlgFindAndReplaceTitle:"Chercher et Remplacer",DlgFindTitle:"Chercher",DlgFindFindBtn:"Chercher",DlgFindNotFoundMsg:"Le texte indiqu?? est introuvable.",DlgReplaceTitle:"Remplacer",DlgReplaceFindLbl:"Rechercher:",DlgReplaceReplaceLbl:"Remplacer par:",DlgReplaceCaseChk:"Respecter la casse",DlgReplaceReplaceBtn:"Remplacer",DlgReplaceReplAllBtn:"Tout remplacer",DlgReplaceWordChk:"Mot entier",PasteErrorCut:"Les param??tres de s??curit?? de votre navigateur emp??chent l'??diteur de couper automatiquement vos donn??es. Veuillez utiliser les ??quivalents claviers (Ctrl+X).",PasteErrorCopy:"Les param??tres de s??curit?? de votre navigateur emp??chent l'??diteur de copier automatiquement vos donn??es. Veuillez utiliser les ??quivalents claviers (Ctrl+C).",PasteAsText:"Coller comme texte",PasteFromWord:"Coller ?? partir de Word",DlgPasteMsg2:"Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et cliquez sur OK.",DlgPasteSec:"A cause des param??tres de s??curit?? de votre navigateur, l'??diteur ne peut acc??der au presse-papier directement. Vous devez coller ?? nouveau le contenu dans cette fen??tre.",DlgPasteIgnoreFont:"Ignorer les polices de caract??res",DlgPasteRemoveStyles:"Supprimer les styles",ColorAutomatic:"Automatique",ColorMoreColors:"Plus de couleurs...",DocProps:"Propri??t??s du document",DlgAnchorTitle:"Propri??t??s de l'ancre",DlgAnchorName:"Nom de l'ancre",DlgAnchorErrorName:"Veuillez saisir le nom de l'ancre",DlgSpellNotInDic:"Pas dans le dictionnaire",DlgSpellChangeTo:"Changer en",DlgSpellBtnIgnore:"Ignorer",DlgSpellBtnIgnoreAll:"Ignorer tout",DlgSpellBtnReplace:"Remplacer",DlgSpellBtnReplaceAll:"Remplacer tout",DlgSpellBtnUndo:"Annuler",DlgSpellNoSuggestions:"- Aucune suggestion -",DlgSpellProgress:"V??rification d'orthographe en cours...",DlgSpellNoMispell:"V??rification d'orthographe termin??e: Aucune erreur trouv??e",DlgSpellNoChanges:"V??rification d'orthographe termin??e: Pas de modifications",DlgSpellOneChange:"V??rification d'orthographe termin??e: Un mot modifi??",DlgSpellManyChanges:"V??rification d'orthographe termin??e: %1 mots modifi??s",IeSpellDownload:"Le Correcteur n'est pas install??. Souhaitez-vous le t??l??charger maintenant?",DlgButtonText:"Texte (valeur)",DlgButtonType:"Type",DlgButtonTypeBtn:"Bouton",DlgButtonTypeSbm:"Envoyer",DlgButtonTypeRst:"R??initialiser",DlgCheckboxName:"Nom",DlgCheckboxValue:"Valeur",DlgCheckboxSelected:"S??lectionn??",DlgFormName:"Nom",DlgFormAction:"Action",DlgFormMethod:"M??thode",DlgSelectName:"Nom",DlgSelectValue:"Valeur",DlgSelectSize:"Taille",DlgSelectLines:"lignes",DlgSelectChkMulti:"S??lection multiple",DlgSelectOpAvail:"Options disponibles",DlgSelectOpText:"Texte",DlgSelectOpValue:"Valeur",DlgSelectBtnAdd:"Ajouter",DlgSelectBtnModify:"Modifier",DlgSelectBtnUp:"Monter",DlgSelectBtnDown:"Descendre",DlgSelectBtnSetValue:"Valeur s??lectionn??e",DlgSelectBtnDelete:"Supprimer",DlgTextareaName:"Nom",DlgTextareaCols:"Colonnes",DlgTextareaRows:"Lignes",DlgTextName:"Nom",DlgTextValue:"Valeur",DlgTextCharWidth:"Largeur en caract??res",DlgTextMaxChars:"Nombre maximum de caract??res",DlgTextType:"Type",DlgTextTypeText:"Texte",DlgTextTypePass:"Mot de passe",DlgHiddenName:"Nom",DlgHiddenValue:"Valeur",BulletedListProp:"Propri??t??s de liste ?? puces",NumberedListProp:"Propri??t??s de liste num??rot??e",DlgLstStart:"D??but",DlgLstType:"Type",DlgLstTypeCircle:"Cercle",DlgLstTypeDisc:"Disque",DlgLstTypeSquare:"Carr??",DlgLstTypeNumbers:"Nombres (1, 2, 3)",DlgLstTypeLCase:"Lettres minuscules (a, b, c)",DlgLstTypeUCase:"Lettres majuscules (A, B, C)",DlgLstTypeSRoman:"Chiffres romains minuscules (i, ii, iii)",DlgLstTypeLRoman:"Chiffres romains majuscules (I, II, III)",DlgDocGeneralTab:"G??n??ral",DlgDocBackTab:"Fond",DlgDocColorsTab:"Couleurs et marges",DlgDocMetaTab:"M??tadonn??es",DlgDocPageTitle:"Titre de la page",DlgDocLangDir:"Sens d'??criture",DlgDocLangDirLTR:"De la gauche vers la droite (LTR)",DlgDocLangDirRTL:"De la droite vers la gauche (RTL)",DlgDocLangCode:"Code langue",DlgDocCharSet:"Encodage de caract??re",DlgDocCharSetCE:"Europe Centrale",DlgDocCharSetCT:"Chinois Traditionnel (Big5)",DlgDocCharSetCR:"Cyrillique",DlgDocCharSetGR:"Grec",DlgDocCharSetJP:"Japonais",DlgDocCharSetKR:"Cor??en",DlgDocCharSetTR:"Turc",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Occidental",DlgDocCharSetOther:"Autre encodage de caract??re",DlgDocDocType:"Type de document",DlgDocDocTypeOther:"Autre type de document",DlgDocIncXHTML:"Inclure les d??clarations XHTML",DlgDocBgColor:"Couleur de fond",DlgDocBgImage:"Image de fond",DlgDocBgNoScroll:"Image fixe sans d??filement",DlgDocCText:"Texte",DlgDocCLink:"Lien",DlgDocCVisited:"Lien visit??",DlgDocCActive:"Lien activ??",DlgDocMargins:"Marges",DlgDocMaTop:"Haut",DlgDocMaLeft:"Gauche",DlgDocMaRight:"Droite",DlgDocMaBottom:"Bas",DlgDocMeIndex:"Mots-cl??s (s??par??s par des virgules)",DlgDocMeDescr:"Description",DlgDocMeAuthor:"Auteur",DlgDocMeCopy:"Copyright",DlgDocPreview:"Pr??visualisation",Templates:"Mod??les",DlgTemplatesTitle:"Mod??les de contenu",DlgTemplatesSelMsg:"Veuillez s??lectionner le mod??le ?? ouvrir dans l'??diteur (le contenu actuel sera remplac??):",DlgTemplatesLoading:"Chargement de la liste des mod??les. Veuillez patienter...",DlgTemplatesNoTpl:"(Aucun mod??le disponible)",DlgTemplatesReplace:"Remplacer tout le contenu",DlgAboutAboutTab:"A propos de",DlgAboutBrowserInfoTab:"Navigateur",DlgAboutLicenseTab:"Licence",DlgAboutVersion:"Version",DlgAboutInfo:"Pour plus d'informations, aller ??",DlgDivGeneralTab:"G??n??ral",DlgDivAdvancedTab:"Avanc??",DlgDivStyle:"Style",DlgDivInlineStyle:"Attribut Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/gl.js b/horde/services/editor/fckeditor/editor/lang/gl.js
deleted file mode 100644
index 1c8009925..000000000
--- a/horde/services/editor/fckeditor/editor/lang/gl.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Ocultar Ferramentas",ToolbarExpand:"Mostrar Ferramentas",Save:"Gardar",NewPage:"Nova P??xina",Preview:"Vista Previa",Cut:"Cortar",Copy:"Copiar",Paste:"Pegar",PasteText:"Pegar como texto plano",PasteWord:"Pegar dende Word",Print:"Imprimir",SelectAll:"Seleccionar todo",RemoveFormat:"Eliminar Formato",InsertLinkLbl:"Ligaz??n",InsertLink:"Inserir/Editar Ligaz??n",RemoveLink:"Eliminar Ligaz??n",VisitLink:"Open Link",Anchor:"Inserir/Editar Referencia",AnchorDelete:"Remove Anchor",InsertImageLbl:"Imaxe",InsertImage:"Inserir/Editar Imaxe",InsertFlashLbl:"Flash",InsertFlash:"Inserir/Editar Flash",InsertTableLbl:"Tabla",InsertTable:"Inserir/Editar Tabla",InsertLineLbl:"Li??a",InsertLine:"Inserir Li??a Horizontal",InsertSpecialCharLbl:"Car??cter Special",InsertSpecialChar:"Inserir Car??cter Especial",InsertSmileyLbl:"Smiley",InsertSmiley:"Inserir Smiley",About:"Acerca de FCKeditor",Bold:"Negrita",Italic:"Cursiva",Underline:"Sub-raiado",StrikeThrough:"Tachado",Subscript:"Sub??ndice",Superscript:"Super??ndice",LeftJustify:"Ali??ar ?? Esquerda",CenterJustify:"Centrado",RightJustify:"Ali??ar ?? Dereita",BlockJustify:"Xustificado",DecreaseIndent:"Disminuir Sangr??a",IncreaseIndent:"Aumentar Sangr??a",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Desfacer",Redo:"Refacer",NumberedListLbl:"Lista Numerada",NumberedList:"Inserir/Eliminar Lista Numerada",BulletedListLbl:"Marcas",BulletedList:"Inserir/Eliminar Marcas",ShowTableBorders:"Mostrar Bordes das T??boas",ShowDetails:"Mostrar Marcas Par??grafo",Style:"Estilo",FontFormat:"Formato",Font:"Tipo",FontSize:"Tama??o",TextColor:"Cor do Texto",BGColor:"Cor do Fondo",Source:"C??digo Fonte",Find:"Procurar",Replace:"Substituir",SpellCheck:"Correcci??n Ortogr??fica",UniversalKeyboard:"Teclado Universal",PageBreakLbl:"Salto de P??xina",PageBreak:"Inserir Salto de P??xina",Form:"Formulario",Checkbox:"Cadro de Verificaci??n",RadioButton:"Bot??n de Radio",TextField:"Campo de Texto",Textarea:"??rea de Texto",HiddenField:"Campo Oculto",Button:"Bot??n",SelectionField:"Campo de Selecci??n",ImageButton:"Bot??n de Imaxe",FitWindow:"Maximizar o tama??o do editor",ShowBlocks:"Show Blocks",EditLink:"Editar Ligaz??n",CellCM:"Cela",RowCM:"Fila",ColumnCM:"Columna",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Borrar Filas",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Borrar Columnas",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Borrar Cela",MergeCells:"Unir Celas",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Borrar T??boa",CellProperties:"Propriedades da Cela",TableProperties:"Propriedades da T??boa",ImageProperties:"Propriedades Imaxe",FlashProperties:"Propriedades Flash",AnchorProp:"Propriedades da Referencia",ButtonProp:"Propriedades do Bot??n",CheckboxProp:"Propriedades do Cadro de Verificaci??n",HiddenFieldProp:"Propriedades do Campo Oculto",RadioButtonProp:"Propriedades do Bot??n de Radio",ImageButtonProp:"Propriedades do Bot??n de Imaxe",TextFieldProp:"Propriedades do Campo de Texto",SelectionFieldProp:"Propriedades do Campo de Selecci??n",TextareaProp:"Propriedades da ??rea de Texto",FormProp:"Propriedades do Formulario",FontFormats:"Normal;Formateado;Enderezo;Enacabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Paragraph (DIV)",ProcessingXHTML:"Procesando XHTML. Por facor, agarde...",Done:"Feiro",PasteWordConfirm:"Parece que o texto que quere pegar est?? copiado do Word.??Quere limpar o formato antes de pegalo?",NotCompatiblePaste:"Este comando est?? disponible para Internet Explorer versi??n 5.5 ou superior. ??Quere pegalo sen limpar o formato?",UnknownToolbarItem:'??tem de ferramentas desco??ecido "%1"',UnknownCommand:'Nome de comando desco??ecido "%1"',NotImplemented:"Comando non implementado",UnknownToolbarSet:'O conxunto de ferramentas "%1" non existe',NoActiveX:'As opci??ns de seguridade do seu navegador poder??an limitar algunha das caracter??sticas de editor. Debe activar a opci??n "Executar controis ActiveX e plug-ins". Pode notar que faltan caracter??sticas e experimentar erros',BrowseServerBlocked:"Non se poido abrir o navegador de recursos. Aseg??rese de que est??n desactivados os bloqueadores de xanelas emerxentes",DialogBlocked:"Non foi posible abrir a xanela de di??logo. Aseg??rese de que est??n desactivados os bloqueadores de xanelas emerxentes",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Cancelar",DlgBtnClose:"Pechar",DlgBtnBrowseServer:"Navegar no Servidor",DlgAdvancedTag:"Advanzado",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Por favor, insira a URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Orientaci??n do Idioma",DlgGenLangDirLtr:"Esquerda a Dereita (LTR)",DlgGenLangDirRtl:"Dereita a Esquerda (RTL)",DlgGenLangCode:"C??digo do Idioma",DlgGenAccessKey:"Chave de Acceso",DlgGenName:"Nome",DlgGenTabIndex:"??ndice de Tabulaci??n",DlgGenLongDescr:"Descrici??n Completa da URL",DlgGenClass:"Clases da Folla de Estilos",DlgGenTitle:"T??tulo",DlgGenContType:"Tipo de Contido",DlgGenLinkCharset:"Fonte de Caracteres Vinculado",DlgGenStyle:"Estilo",DlgImgTitle:"Propriedades da Imaxe",DlgImgInfoTab:"Informaci??n da Imaxe",DlgImgBtnUpload:"Enviar ?? Servidor",DlgImgURL:"URL",DlgImgUpload:"Carregar",DlgImgAlt:"Texto Alternativo",DlgImgWidth:"Largura",DlgImgHeight:"Altura",DlgImgLockRatio:"Proporcional",DlgBtnResetSize:"Tama??o Orixinal",DlgImgBorder:"L??mite",DlgImgHSpace:"Esp. Horiz.",DlgImgVSpace:"Esp. Vert.",DlgImgAlign:"Ali??amento",DlgImgAlignLeft:"Esquerda",DlgImgAlignAbsBottom:"Abs Inferior",DlgImgAlignAbsMiddle:"Abs Centro",DlgImgAlignBaseline:"Li??a Base",DlgImgAlignBottom:"P??",DlgImgAlignMiddle:"Centro",DlgImgAlignRight:"Dereita",DlgImgAlignTextTop:"Tope do Texto",DlgImgAlignTop:"Tope",DlgImgPreview:"Vista Previa",DlgImgAlertUrl:"Por favor, escriba a URL da imaxe",DlgImgLinkTab:"Ligaz??n",DlgFlashTitle:"Propriedades Flash",DlgFlashChkPlay:"Auto Execuci??n",DlgFlashChkLoop:"Bucle",DlgFlashChkMenu:"Activar Men?? Flash",DlgFlashScale:"Escalar",DlgFlashScaleAll:"Amosar Todo",DlgFlashScaleNoBorder:"Sen Borde",DlgFlashScaleFit:"Encaixar axustando",DlgLnkWindowTitle:"Ligaz??n",DlgLnkInfoTab:"Informaci??n da Ligaz??n",DlgLnkTargetTab:"Referencia a esta p??xina",DlgLnkType:"Tipo de Ligaz??n",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Referencia nesta p??xina",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocolo",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Seleccionar unha Referencia",DlgLnkAnchorByName:"Por Nome de Referencia",DlgLnkAnchorById:"Por Element Id",DlgLnkNoAnchors:"(Non hai referencias disponibles no documento)",DlgLnkEMail:"Enderezo de E-Mail",DlgLnkEMailSubject:"Asunto do Mensaxe",DlgLnkEMailBody:"Corpo do Mensaxe",DlgLnkUpload:"Carregar",DlgLnkBtnUpload:"Enviar ?? servidor",DlgLnkTarget:"Destino",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nova Xanela (_blank)",DlgLnkTargetParent:"Xanela Pai (_parent)",DlgLnkTargetSelf:"Mesma Xanela (_self)",DlgLnkTargetTop:"Xanela Primaria (_top)",DlgLnkTargetFrameName:"Nome do Marco Destino",DlgLnkPopWinName:"Nome da Xanela Emerxente",DlgLnkPopWinFeat:"Caracter??sticas da Xanela Emerxente",DlgLnkPopResize:"Axustable",DlgLnkPopLocation:"Barra de Localizaci??n",DlgLnkPopMenu:"Barra de Men??",DlgLnkPopScroll:"Barras de Desplazamento",DlgLnkPopStatus:"Barra de Estado",DlgLnkPopToolbar:"Barra de Ferramentas",DlgLnkPopFullScrn:"A Toda Pantalla (IE)",DlgLnkPopDependent:"Dependente (Netscape)",DlgLnkPopWidth:"Largura",DlgLnkPopHeight:"Altura",DlgLnkPopLeft:"Posici??n Esquerda",DlgLnkPopTop:"Posici??n dende Arriba",DlnLnkMsgNoUrl:"Por favor, escriba a ligaz??n URL",DlnLnkMsgNoEMail:"Por favor, escriba o enderezo de e-mail",DlnLnkMsgNoAnchor:"Por favor, seleccione un destino",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Seleccionar Color",DlgColorBtnClear:"Nengunha",DlgColorHighlight:"Destacado",DlgColorSelected:"Seleccionado",DlgSmileyTitle:"Inserte un Smiley",DlgSpecialCharTitle:"Seleccione Caracter Especial",DlgTableTitle:"Propiedades da T??boa",DlgTableRows:"Filas",DlgTableColumns:"Columnas",DlgTableBorder:"Tama??o do Borde",DlgTableAlign:"Ali??amento",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Esquerda",DlgTableAlignCenter:"Centro",DlgTableAlignRight:"Ereita",DlgTableWidth:"Largura",DlgTableWidthPx:"pixels",DlgTableWidthPc:"percent",DlgTableHeight:"Altura",DlgTableCellSpace:"Marxe entre Celas",DlgTableCellPad:"Marxe interior",DlgTableCaption:"T??tulo",DlgTableSummary:"Sumario",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Propriedades da Cela",DlgCellWidth:"Largura",DlgCellWidthPx:"pixels",DlgCellWidthPc:"percent",DlgCellHeight:"Altura",DlgCellWordWrap:"Axustar Li??as",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Si",DlgCellWordWrapNo:"Non",DlgCellHorAlign:"Ali??amento Horizontal",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Esquerda",DlgCellHorAlignCenter:"Centro",DlgCellHorAlignRight:"Dereita",DlgCellVerAlign:"Ali??amento Vertical",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Arriba",DlgCellVerAlignMiddle:"Medio",DlgCellVerAlignBottom:"Abaixo",DlgCellVerAlignBaseline:"Li??a de Base",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Ocupar Filas",DlgCellCollSpan:"Ocupar Columnas",DlgCellBackColor:"Color de Fondo",DlgCellBorderColor:"Color de Borde",DlgCellBtnSelect:"Seleccionar...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Procurar",DlgFindFindBtn:"Procurar",DlgFindNotFoundMsg:"Non te atopou o texto indicado.",DlgReplaceTitle:"Substituir",DlgReplaceFindLbl:"Texto a procurar:",DlgReplaceReplaceLbl:"Substituir con:",DlgReplaceCaseChk:"Coincidir Mai./min.",DlgReplaceReplaceBtn:"Substituir",DlgReplaceReplAllBtn:"Substitiur Todo",DlgReplaceWordChk:"Coincidir con toda a palabra",PasteErrorCut:"Os axustes de seguridade do seu navegador non permiten que o editor realice autom??ticamente as tarefas de corte. Por favor, use o teclado para iso (Ctrl+X).",PasteErrorCopy:"Os axustes de seguridade do seu navegador non permiten que o editor realice autom??ticamente as tarefas de copia. Por favor, use o teclado para iso (Ctrl+C).",PasteAsText:"Pegar como texto plano",PasteFromWord:"Pegar dende Word",DlgPasteMsg2:"Por favor, pegue dentro do seguinte cadro usando o teclado (Ctrl+V) e pulse OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignorar as definici??ns de Tipograf??a",DlgPasteRemoveStyles:"Eliminar as definici??ns de Estilos",ColorAutomatic:"Autom??tico",ColorMoreColors:"M??is Cores...",DocProps:"Propriedades do Documento",DlgAnchorTitle:"Propriedades da Referencia",DlgAnchorName:"Nome da Referencia",DlgAnchorErrorName:"Por favor, escriba o nome da referencia",DlgSpellNotInDic:"Non est?? no diccionario",DlgSpellChangeTo:"Cambiar a",DlgSpellBtnIgnore:"Ignorar",DlgSpellBtnIgnoreAll:"Ignorar Todas",DlgSpellBtnReplace:"Substituir",DlgSpellBtnReplaceAll:"Substituir Todas",DlgSpellBtnUndo:"Desfacer",DlgSpellNoSuggestions:"- Sen candidatos -",DlgSpellProgress:"Correcci??n ortogr??fica en progreso...",DlgSpellNoMispell:"Correcci??n ortogr??fica rematada: Non se atoparon erros",DlgSpellNoChanges:"Correcci??n ortogr??fica rematada: Non se substituiu nengunha verba",DlgSpellOneChange:"Correcci??n ortogr??fica rematada: Unha verba substituida",DlgSpellManyChanges:"Correcci??n ortogr??fica rematada: %1 verbas substituidas",IeSpellDownload:"O corrector ortogr??fico non est?? instalado. ??Quere descargalo agora?",DlgButtonText:"Texto (Valor)",DlgButtonType:"Tipo",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Nome",DlgCheckboxValue:"Valor",DlgCheckboxSelected:"Seleccionado",DlgFormName:"Nome",DlgFormAction:"Acci??n",DlgFormMethod:"M??todo",DlgSelectName:"Nome",DlgSelectValue:"Valor",DlgSelectSize:"Tama??o",DlgSelectLines:"li??as",DlgSelectChkMulti:"Permitir m??ltiples selecci??ns",DlgSelectOpAvail:"Opci??ns Disponibles",DlgSelectOpText:"Texto",DlgSelectOpValue:"Valor",DlgSelectBtnAdd:"Engadir",DlgSelectBtnModify:"Modificar",DlgSelectBtnUp:"Subir",DlgSelectBtnDown:"Baixar",DlgSelectBtnSetValue:"Definir como valor por defecto",DlgSelectBtnDelete:"Borrar",DlgTextareaName:"Nome",DlgTextareaCols:"Columnas",DlgTextareaRows:"Filas",DlgTextName:"Nome",DlgTextValue:"Valor",DlgTextCharWidth:"Tama??o do Caracter",DlgTextMaxChars:"M??ximo de Caracteres",DlgTextType:"Tipo",DlgTextTypeText:"Texto",DlgTextTypePass:"Chave",DlgHiddenName:"Nome",DlgHiddenValue:"Valor",BulletedListProp:"Propriedades das Marcas",NumberedListProp:"Propriedades da Lista de Numeraci??n",DlgLstStart:"Start",DlgLstType:"Tipo",DlgLstTypeCircle:"C??rculo",DlgLstTypeDisc:"Disco",DlgLstTypeSquare:"Cuadrado",DlgLstTypeNumbers:"N??meros (1, 2, 3)",DlgLstTypeLCase:"Letras Min??sculas (a, b, c)",DlgLstTypeUCase:"Letras Mai??sculas (A, B, C)",DlgLstTypeSRoman:"N??meros Romanos en min??scula (i, ii, iii)",DlgLstTypeLRoman:"N??meros Romanos en Mai??scula (I, II, III)",DlgDocGeneralTab:"Xeral",DlgDocBackTab:"Fondo",DlgDocColorsTab:"Cores e Marxes",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"T??tulo da P??xina",DlgDocLangDir:"Orientaci??n do Idioma",DlgDocLangDirLTR:"Esquerda a Dereita (LTR)",DlgDocLangDirRTL:"Dereita a Esquerda (RTL)",DlgDocLangCode:"C??digo de Idioma",DlgDocCharSet:"Codificaci??n do Xogo de Caracteres",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Outra Codificaci??n do Xogo de Caracteres",DlgDocDocType:"Encabezado do Tipo de Documento",DlgDocDocTypeOther:"Outro Encabezado do Tipo de Documento",DlgDocIncXHTML:"Incluir Declaraci??ns XHTML",DlgDocBgColor:"Cor de Fondo",DlgDocBgImage:"URL da Imaxe de Fondo",DlgDocBgNoScroll:"Fondo Fixo",DlgDocCText:"Texto",DlgDocCLink:"Ligaz??ns",DlgDocCVisited:"Ligaz??n Visitada",DlgDocCActive:"Ligaz??n Activa",DlgDocMargins:"Marxes da P??xina",DlgDocMaTop:"Arriba",DlgDocMaLeft:"Esquerda",DlgDocMaRight:"Dereita",DlgDocMaBottom:"Abaixo",DlgDocMeIndex:"Palabras Chave de Indexaci??n do Documento (separadas por comas)",DlgDocMeDescr:"Descripci??n do Documento",DlgDocMeAuthor:"Autor",DlgDocMeCopy:"Copyright",DlgDocPreview:"Vista Previa",Templates:"Plantillas",DlgTemplatesTitle:"Plantillas de Contido",DlgTemplatesSelMsg:"Por favor, seleccione a plantilla a abrir no editor (o contido actual perderase):",DlgTemplatesLoading:"Cargando listado de plantillas. Por favor, espere...",DlgTemplatesNoTpl:"(Non hai plantillas definidas)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"Acerca de",DlgAboutBrowserInfoTab:"Informaci??n do Navegador",DlgAboutLicenseTab:"Licencia",DlgAboutVersion:"versi??n",DlgAboutInfo:"Para m??is informaci??n visitar:",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/gu.js b/horde/services/editor/fckeditor/editor/lang/gu.js
deleted file mode 100644
index b2c618e17..000000000
--- a/horde/services/editor/fckeditor/editor/lang/gu.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"?????????????????? ??????????????? ???????????????",ToolbarExpand:"?????????????????? ??????????????? ???????????????",Save:"?????????",NewPage:"????????? ???????????????",Preview:"??????????????????????????????",Cut:"??????????????????",Copy:"?????????",Paste:"???????????????",PasteText:"??????????????? (???????????? ?????????????????????)",PasteWord:"??????????????? (????????? ?????????????????????)",Print:"?????????????????????",SelectAll:"???????????? ???????????? ???????????????",RemoveFormat:"?????????????????? ??????????????????",InsertLinkLbl:"??????????????????, ????????????",InsertLink:"???????????? ?????????????????????/???????????? ????????????",RemoveLink:"???????????? ???????????????",VisitLink:"Open Link",Anchor:"???????????? ?????????????????????/???????????? ????????????",AnchorDelete:"???????????? ???????????????",InsertImageLbl:"???????????????",InsertImage:"??????????????? ?????????????????????/???????????? ???????????????",InsertFlashLbl:"???????????????",InsertFlash:"??????????????? ?????????????????????/???????????? ???????????????",InsertTableLbl:"????????????, ????????????",InsertTable:"????????????, ???????????? ?????????????????????/???????????? ???????????????",InsertLineLbl:"????????????",InsertLine:"???????????????????????? ???????????? ?????????????????????/???????????? ????????????",InsertSpecialCharLbl:"????????????????????? ???????????????",InsertSpecialChar:"????????????????????? ??????????????? ?????????????????????/???????????? ???????????????",InsertSmileyLbl:"?????????????????????",InsertSmiley:"????????????????????? ?????????????????????/???????????? ????????????",About:"FCKeditor?????? ????????????",Bold:"???????????????/??????????????????",Italic:"??????????????????, ?????????????????????",Underline:"??????????????????????????????, ???????????? ????????????",StrikeThrough:"???????????? ??????????????????",Subscript:"?????? ????????????????????? ???????????? ?????????????????? ??????????????? ???????????????",Superscript:"?????? ??????????????? ????????? ?????????????????? ??????????????? ???????????????.",LeftJustify:"???????????? ???????????????/???????????? ?????????",CenterJustify:"???????????????????????????/????????????????????????",RightJustify:"???????????? ???????????????/???????????? ?????????",BlockJustify:"???????????????, ?????????????????? ????????????????????????",DecreaseIndent:"???????????????????????? ?????????????????? ????????????????????? ??????????????? ??????????????????",IncreaseIndent:"????????????????????????, ?????????????????? ????????????????????? ??????????????? ??????????????????",Blockquote:"???????????????-?????????, ?????????????????????????????????",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"?????? ???????????????; ?????????????????? ????????? ????????? ?????????????????? ???????????? ???????????????",Redo:"????????????; ????????? ????????? ????????? ?????????????????? ???????????? ???????????????",NumberedListLbl:"??????????????????????????? ????????????",NumberedList:"??????????????????????????? ???????????? ?????????????????????/???????????? ????????????",BulletedListLbl:"??????????????? ????????????",BulletedList:"??????????????? ???????????? ?????????????????????/???????????? ????????????",ShowTableBorders:"????????????, ?????????????????? ????????????(??????????????????) ??????????????????",ShowDetails:"????????????????????? ????????????????????? ?????????????????????",Style:"????????????/?????????",FontFormat:"??????????????? ??????????????????, ?????????????????? ????????????",Font:"???????????????",FontSize:"??????????????? ????????????/??????",TextColor:"?????????????????? ?????????",BGColor:"????????????????????????????????? ?????????,",Source:"????????? ?????? ???????????????????????? ????????????????????????",Find:"??????????????????",Replace:"?????????????????????/??????????????????",SpellCheck:"??????????????? (????????????????????????) ??????????????????",UniversalKeyboard:"???????????????????????????/????????????????????????????????? ?????????????????????",PageBreakLbl:"????????????????????????/?????????????????? ????????? ???????????????",PageBreak:"????????????????????? ????????????????????????/?????????????????? ????????? ???????????????/???????????? ???????????????",Form:"???????????????/???????????????",Checkbox:"????????? ???????????????",RadioButton:"??????????????? ?????????",TextField:"????????????????????? ???????????????, ???????????? ?????????????????????",Textarea:"????????????????????? ????????????, ???????????? ?????????????????????",HiddenField:"??????????????? ?????????????????????",Button:"?????????",SelectionField:"?????????????????? ?????????????????????",ImageButton:"??????????????? ?????????",FitWindow:"????????????????????? ???????????? ?????????????????? ????????????",ShowBlocks:"??????????????? ?????????????????????",EditLink:" ???????????? ????????????/????????? ?????????????????? ????????????",CellCM:"??????????????? ????????????",RowCM:"???????????????????????? ????????????",ColumnCM:"????????????/????????? ????????????",InsertRowAfter:"????????? ?????????????????? ??????????????????",InsertRowBefore:"?????????????????? ?????????????????? ??????????????????",DeleteRows:"????????????????????? ???????????????/???????????? ???????????????",InsertColumnAfter:"????????? ????????????/????????? ???????????? ??????????????????",InsertColumnBefore:"?????????????????? ????????????/????????? ???????????? ??????????????????",DeleteColumns:"????????????/????????? ???????????? ???????????????/???????????? ???????????????",InsertCellAfter:"????????? ????????? ??????????????????",InsertCellBefore:"?????????????????? ????????? ??????????????????",DeleteCells:"????????? ???????????????/???????????? ???????????????",MergeCells:"????????? ???????????? ????????????",MergeRight:"???????????? ???????????? ???????????? ????????????",MergeDown:"???????????? ???????????? ????????????",HorizontalSplitCell:"??????????????? ???????????????????????? ?????????????????? ???????????????",VerticalSplitCell:"??????????????? ??????????????? ?????? ???????????? ?????????????????? ???????????????",TableDelete:"???????????? ???????????????/???????????? ??????????????????",CellProperties:"??????????????? ?????????",TableProperties:"?????????????????? ?????????",ImageProperties:"????????????????????? ?????????",FlashProperties:"????????????????????? ?????????",AnchorProp:"?????????????????? ?????????",ButtonProp:"??????????????? ?????????",CheckboxProp:"????????? ??????????????? ?????????",HiddenFieldProp:"??????????????? ??????????????????????????? ?????????",RadioButtonProp:"??????????????? ??????????????? ?????????",ImageButtonProp:"??????????????? ??????????????? ?????????",TextFieldProp:"????????????????????? ???????????????, ???????????? ??????????????????????????? ?????????",SelectionFieldProp:"?????????????????? ??????????????????????????? ?????????",TextareaProp:"????????????????????? ???????????????, ???????????? ??????????????????????????? ?????????",FormProp:"???????????????/????????????????????? ?????????",FontFormats:"?????????????????????;????????????????????????;?????????????????????;?????????????????? 1;?????????????????? 2;?????????????????? 3;?????????????????? 4;?????????????????? 5;?????????????????? 6;?????????????????? (DIV)",ProcessingXHTML:"XHTML ??????????????????????????? ???????????? ??????. ???????????????????????? ??????????????? ????????? ????????????...",Done:"????????? ????????????",PasteWordConfirm:"????????? ?????? ????????????????????? ??????????????? ???????????? ??????????????? ??????, ?????? ???????????????????????? ???????????? ??????????????? ???????????? ??????. ??????????????? ???????????? ?????????????????? ????????????????????? ????????? ???????????? ???????",NotCompatiblePaste:"??? ?????????????????? ????????????????????? ??????????????????????????????(Internet Explorer) 5.5 ???????????? ????????? ??????????????? ??????????????? ??????????????? ??????. ??????????????????????????? ????????? ???????????? ?????????????????? ??????????????? ???????????? ???????",UnknownToolbarItem:'??????????????? ?????????????????? ???????????? "%1"',UnknownCommand:'?????????????????? ?????????????????? "%1"',NotImplemented:"?????????????????? ????????????????????????????????? ????????? ???????????????",UnknownToolbarSet:'?????????????????? ????????? "%1" ?????????????????? ?????????',NoActiveX:'??????????????? ??????????????????????????? ????????????????????? ????????????????????? ????????????????????? ???????????? ?????????????????? ????????????????????? ???????????? ?????????. ??????????????? "Run ActiveX controls and plug-ins" ???????????????????????? ???????????????/??????????????? ?????????. ??????????????? ?????????????????????????????? ????????? ??????????????????????????? ?????????????????? ??????????????? ?????? ????????? ??????. ??????????????? ?????????-?????? ?????????????????? ?????????????????? ?????????.',BrowseServerBlocked:"????????????????????? ????????????????????? ???????????? ??? ??????????????????.",DialogBlocked:"?????????????????? ?????????????????? ???????????? ??? ??????????????????. ??????????????? ?????????-?????? ?????????????????? ?????????????????? ?????????.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"????????? ??????",DlgBtnCancel:"?????? ???????????????",DlgBtnClose:"????????? ???????????????",DlgBtnBrowseServer:"??????????????? ?????????????????? ?????????",DlgAdvancedTag:"???????????????????????????",DlgOpOther:"???????????>",DlgInfoTab:"???????????????",DlgAlertUrl:"URL ????????????????????? ?????????",DlgGenNotSet:"???????? ?????????>",DlgGenId:"Id",DlgGenLangDir:"???????????? ????????????????????? ??????????????????",DlgGenLangDirLtr:"???????????? ?????? ???????????? (LTR)",DlgGenLangDirRtl:"???????????? ?????? ???????????? (RTL)",DlgGenLangCode:"???????????? ?????????",DlgGenAccessKey:"?????????????????? ??????",DlgGenName:"?????????",DlgGenTabIndex:"????????? ????????????????????????",DlgGenLongDescr:"??????????????? ?????????????????? ???????????? URL",DlgGenClass:"??????????????????-????????? ???????????????",DlgGenTitle:"??????????????? ??????????????????",DlgGenContType:"??????????????? ???????????????????????? ??????????????????",DlgGenLinkCharset:"???????????? ????????????????????? ???????????????????????? ?????????",DlgGenStyle:"??????????????????",DlgImgTitle:"????????????????????? ?????????",DlgImgInfoTab:"??????????????? ?????? ?????????????????????",DlgImgBtnUpload:"??? ????????????????????? ?????????????????????",DlgImgURL:"URL",DlgImgUpload:"???????????????",DlgImgAlt:"???????????????????????? ?????????????????????",DlgImgWidth:"??????????????????",DlgImgHeight:"???????????????",DlgImgLockRatio:"????????? ????????????????????????",DlgBtnResetSize:"??????????????? ????????????",DlgImgBorder:"??????????????????",DlgImgHSpace:"???????????????????????? ???????????????",DlgImgVSpace:"?????????????????? ???????????????",DlgImgAlign:"????????????????????????????????? ?????????????????????",DlgImgAlignLeft:"???????????? ???????????? ?????????????????????",DlgImgAlignAbsBottom:"Abs ????????????",DlgImgAlignAbsMiddle:"Abs ?????????",DlgImgAlignBaseline:"???????????? ????????????",DlgImgAlignBottom:"????????????",DlgImgAlignMiddle:"???????????????",DlgImgAlignRight:"????????????",DlgImgAlignTextTop:"????????????????????? ?????????",DlgImgAlignTop:"?????????",DlgImgPreview:"??????????????????????????????",DlgImgAlertUrl:"????????????????????? URL ???????????? ?????????",DlgImgLinkTab:"????????????",DlgFlashTitle:"??????????????? ?????????",DlgFlashChkPlay:"?????????/??????????????? ????????????",DlgFlashChkLoop:"?????????",DlgFlashChkMenu:"??????????????? ?????????????????? ?????? ?????????????????? ?????????",DlgFlashScale:"???????????????",DlgFlashScaleAll:"??????????????? ??????/????????? ???????????????",DlgFlashScaleNoBorder:"??????????????? ?????????????????? ?????????",DlgFlashScaleFit:"??????????????? ???????????? ?????????",DlgLnkWindowTitle:"????????????",DlgLnkInfoTab:"???????????? ??????????????? ?????????",DlgLnkTargetTab:"?????????????????????/?????????????????? ?????????",DlgLnkType:"???????????? ??????????????????",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"??? ??????????????? ????????????",DlgLnkTypeEMail:"???-?????????",DlgLnkProto:"???????????????????????????",DlgLnkProtoOther:"???????????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"???????????? ???????????? ?????????",DlgLnkAnchorByName:"???????????? ??????????????? ???????????? ?????????",DlgLnkAnchorById:"???????????? ????????????????????? Id ?????? ???????????? ?????????",DlgLnkNoAnchors:"(??????????????????????????????????????? ?????????????????? ??????????????????)",DlgLnkEMail:"???-????????? ?????????????????????",DlgLnkEMailSubject:"???-????????? ????????????",DlgLnkEMailBody:"???????????????",DlgLnkUpload:"???????????????",DlgLnkBtnUpload:"??? ????????????????????? ?????????????????????",DlgLnkTarget:"?????????????????????/??????????????????",DlgLnkTargetFrame:"??????????????>",DlgLnkTargetPopup:"????????-?????? ??????????????????>",DlgLnkTargetBlank:"????????? ?????????????????? (_blank)",DlgLnkTargetParent:"????????? ?????????????????? (_parent)",DlgLnkTargetSelf:"?????? ?????????????????? (_self)",DlgLnkTargetTop:"??????????????? ?????????????????? (_top)",DlgLnkTargetFrameName:"????????????????????? ??????????????? ????????? ?????????",DlgLnkPopWinName:"?????????-?????? ?????????????????? ????????? ?????????",DlgLnkPopWinFeat:"?????????-?????? ?????????????????? ??????????????????",DlgLnkPopResize:"???????????? ???????????? ???????????? ??????",DlgLnkPopLocation:"?????????????????? ?????????",DlgLnkPopMenu:"?????????????????? ?????????",DlgLnkPopScroll:"????????????????????? ?????????",DlgLnkPopStatus:"?????????????????? ?????????",DlgLnkPopToolbar:"????????? ?????????",DlgLnkPopFullScrn:"????????? ????????????????????? (IE)",DlgLnkPopDependent:"?????????????????????????????? (Netscape)",DlgLnkPopWidth:"??????????????????",DlgLnkPopHeight:"???????????????",DlgLnkPopLeft:"???????????? ????????????",DlgLnkPopTop:"???????????? ????????????",DlnLnkMsgNoUrl:"???????????? URL ???????????? ?????????",DlnLnkMsgNoEMail:"???-????????? ????????????????????? ???????????? ?????????",DlnLnkMsgNoAnchor:"???????????? ???????????? ?????????",DlnLnkMsgInvPopName:"?????????-?????? ?????????????????? ????????? ????????? ??????????????????????????? ????????? ???????????? ????????? ??????????????? ?????????????????? ??? ???????????? ????????????",DlgColorTitle:"????????? ???????????? ?????????",DlgColorBtnClear:"????????? ?????????",DlgColorHighlight:"?????????????????????",DlgColorSelected:"???????????????????????????/???????????? ???????????????",DlgSmileyTitle:"????????????????????? ???????????? ?????????",DlgSpecialCharTitle:"???????????????????????? ????????????????????? ??????????????? ???????????? ?????????",DlgTableTitle:"????????????, ????????????????????? ??????????????????",DlgTableRows:"???????????????????????? ????????????",DlgTableColumns:"????????????/????????? ????????????",DlgTableBorder:"?????????????????? ????????????(??????????????????) ????????????",DlgTableAlign:"???????????????????????????/?????????????????????????????? ",DlgTableAlignNotSet:"???????? ?????????>",DlgTableAlignLeft:"???????????? ????????????",DlgTableAlignCenter:"???????????? ??????????????????",DlgTableAlignRight:"???????????? ????????????",DlgTableWidth:"??????????????????",DlgTableWidthPx:"???????????????",DlgTableWidthPc:"?????????????????????",DlgTableHeight:"???????????????",DlgTableCellSpace:"????????? ????????????",DlgTableCellPad:"????????? ??????????????????",DlgTableCaption:"??????????????????/?????????????????? ",DlgTableSummary:"??????????????? ??????????????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"???????????????????????? ?????????????????? ?????????",DlgCellWidth:"??????????????????",DlgCellWidthPx:"???????????????",DlgCellWidthPc:"?????????????????????",DlgCellHeight:"???????????????",DlgCellWordWrap:"???????????? ?????????",DlgCellWordWrapNotSet:"???????? ?????????>",DlgCellWordWrapYes:"??????",DlgCellWordWrapNo:"??????",DlgCellHorAlign:"???????????????????????? ?????????????????????",DlgCellHorAlignNotSet:"???????? ?????????>",DlgCellHorAlignLeft:"???????????? ????????????",DlgCellHorAlignCenter:"???????????? ??????????????????",DlgCellHorAlignRight:"???????????? ????????????",DlgCellVerAlign:"?????????????????? ?????????????????????",DlgCellVerAlignNotSet:"???????? ?????????>",DlgCellVerAlignTop:"?????????",DlgCellVerAlignMiddle:"???????????? ??????????????????",DlgCellVerAlignBottom:"????????????",DlgCellVerAlignBaseline:"????????? ????????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"?????????????????? ???????????????",DlgCellCollSpan:"????????????/????????? ???????????? ???????????????",DlgCellBackColor:"????????????????????????????????? ?????????",DlgCellBorderColor:"???????????????????????? ?????????",DlgCellBtnSelect:"???????????? ?????????...",DlgFindAndReplaceTitle:"?????????????????? ????????? ??????????????????",DlgFindTitle:"??????????????????",DlgFindFindBtn:"??????????????????",DlgFindNotFoundMsg:"????????? ?????????????????? ????????????????????? ????????? ?????????",DlgReplaceTitle:"??????????????????",DlgReplaceFindLbl:"??? ????????????",DlgReplaceReplaceLbl:"??????????????? ????????????",DlgReplaceCaseChk:"????????? ???????????? ????????????",DlgReplaceReplaceBtn:"??????????????????",DlgReplaceReplAllBtn:"????????? ???????????? ",DlgReplaceWordChk:"????????? ???????????? ???????????? ????????????",PasteErrorCut:"??????????????? ????????????????????? ?????? ???????????????????????? ????????????????????? ?????? ?????????????????? ????????????????????? ????????? ????????????. (Ctrl+X) ?????? ??????????????? ?????????.",PasteErrorCopy:"??????????????? ????????????????????? ?????? ???????????????????????? ????????????????????? ???????????? ?????????????????? ????????????????????? ????????? ????????????. (Ctrl+C) ?????? ?????????????????? ???????????????",PasteAsText:"??????????????? (?????????????????????)",PasteFromWord:"??????????????? (???????????? ??????)",DlgPasteMsg2:"Ctrl+V ?????? ?????????????????? ????????? ??????????????? ?????????",DlgPasteSec:"??????????????? ????????????????????? ?????? ???????????????????????? ??????????????????????????? ???????????????,??????????????? ??????????????? ?????????????????????????????? ???????????? ?????? ???????????? ????????? ????????? ????????????. ??????????????? ??? ??????????????????????????? ??????????????? ??????????????? ??????????????? ????????????.",DlgPasteIgnoreFont:"???????????????????????? ?????????????????????????????? ??????????????????",DlgPasteRemoveStyles:"?????????????????? ???????????????????????? ???????????? ???????????????",ColorAutomatic:"????????????????????????",ColorMoreColors:"?????? ?????????...",DocProps:"?????????????????????????????? ?????????/??????????????????????????????",DlgAnchorTitle:"???????????? ?????????/??????????????????????????????",DlgAnchorName:"????????????????????? ?????????",DlgAnchorErrorName:"????????????????????? ????????? ???????????? ?????????",DlgSpellNotInDic:"?????????????????????????????? ?????????",DlgSpellChangeTo:"??????????????? ??????????????????",DlgSpellBtnIgnore:"??????????????????/?????????????????? ????????????",DlgSpellBtnIgnoreAll:"??????????????? ??????????????????/?????????????????? ????????????",DlgSpellBtnReplace:"??????????????????",DlgSpellBtnReplaceAll:"????????? ???????????? ?????????",DlgSpellBtnUndo:"???????????????",DlgSpellNoSuggestions:"- ?????? ??????????????? ????????? -",DlgSpellProgress:"?????????????????? ???????????????/??????????????? ????????? ???????????? ??????...",DlgSpellNoMispell:"?????????????????? ???????????????/??????????????? ????????? ???????????????: ???????????? ??????????????? ????????? ?????????",DlgSpellNoChanges:"?????????????????? ???????????????/??????????????? ????????? ???????????????: ???????????? ???????????? ??????????????? ?????????",DlgSpellOneChange:"?????????????????? ???????????????/??????????????? ????????? ???????????????: ?????? ???????????? ??????????????? ??????",DlgSpellManyChanges:"?????????????????? ???????????????/??????????????? ????????? ???????????????: %1 ???????????? ??????????????? ??????",IeSpellDownload:"???????????????-???????????? ???????????????????????? ?????????. ????????? ????????? ????????????????????? ???????????? ??????????????? ???????",DlgButtonText:"????????????????????? (??????????????????)",DlgButtonType:"??????????????????",DlgButtonTypeBtn:"?????????",DlgButtonTypeSbm:"??????????????????",DlgButtonTypeRst:"???????????????",DlgCheckboxName:"?????????",DlgCheckboxValue:"??????????????????",DlgCheckboxSelected:"???????????????????????????",DlgFormName:"?????????",DlgFormAction:"??????????????????",DlgFormMethod:"??????????????????",DlgSelectName:"?????????",DlgSelectValue:"??????????????????",DlgSelectSize:"????????????",DlgSelectLines:"???????????????",DlgSelectChkMulti:"???????????? ??????????????? ???????????? ????????? ?????????",DlgSelectOpAvail:"?????????????????? ??????????????????",DlgSelectOpText:"?????????????????????",DlgSelectOpValue:"??????????????????",DlgSelectBtnAdd:"?????????????????????",DlgSelectBtnModify:"??????????????????",DlgSelectBtnUp:"?????????",DlgSelectBtnDown:"????????????",DlgSelectBtnSetValue:"???????????? ???????????? ?????????????????? ????????? ?????????",DlgSelectBtnDelete:"?????? ???????????????",DlgTextareaName:"?????????",DlgTextareaCols:"????????????/????????? ????????????",DlgTextareaRows:"?????????????????????",DlgTextName:"?????????",DlgTextValue:"??????????????????",DlgTextCharWidth:"?????????????????????????????? ??????????????????",DlgTextMaxChars:"?????????????????? ????????????????????????",DlgTextType:"????????????",DlgTextTypeText:"?????????????????????",DlgTextTypePass:"?????????????????????",DlgHiddenName:"?????????",DlgHiddenValue:"??????????????????",BulletedListProp:"??????????????? ???????????? ?????????",NumberedListProp:"????????????????????????????????? ???????????? ?????????",DlgLstStart:"?????????????????????",DlgLstType:"??????????????????",DlgLstTypeCircle:"??????????????????",DlgLstTypeDisc:"???????????????",DlgLstTypeSquare:"????????????",DlgLstTypeNumbers:"?????????????????? (1, 2, 3)",DlgLstTypeLCase:"???????????? ??????????????? (a, b, c)",DlgLstTypeUCase:"???????????? ??????????????? (A, B, C)",DlgLstTypeSRoman:"???????????? ???????????? ????????? (i, ii, iii)",DlgLstTypeLRoman:"???????????? ???????????? ????????? (I, II, III)",DlgDocGeneralTab:"??????????????????",DlgDocBackTab:"?????????????????????????????????",DlgDocColorsTab:"????????? ????????? ?????????????????????/???????????????",DlgDocMetaTab:"????????????????????????",DlgDocPageTitle:"????????? ??????????????????/???????????????",DlgDocLangDir:"???????????? ????????????????????? ??????????????????",DlgDocLangDirLTR:"???????????? ?????? ???????????? (LTR)",DlgDocLangDirRTL:"???????????? ?????? ???????????? (RTL)",DlgDocLangCode:"???????????? ?????????",DlgDocCharSet:"???????????????????????? ????????? ???????????????????????????",DlgDocCharSetCE:"???????????? ???????????????????????? (Central European)",DlgDocCharSetCT:"?????????????????? (Chinese Traditional Big5)",DlgDocCharSetCR:"????????????????????? (Cyrillic)",DlgDocCharSetGR:"??????????????? (Greek)",DlgDocCharSetJP:"????????????????????? (Japanese)",DlgDocCharSetKR:"?????????????????? (Korean)",DlgDocCharSetTR:"??????????????? (Turkish)",DlgDocCharSetUN:"????????????????????? (UTF-8)",DlgDocCharSetWE:"?????????????????? ???????????????????????? (Western European)",DlgDocCharSetOther:"???????????? ???????????????????????? ????????? ???????????????????????????",DlgDocDocType:"?????????????????????????????? ?????????????????? ??????????????????",DlgDocDocTypeOther:"???????????? ?????????????????????????????? ?????????????????? ??????????????????",DlgDocIncXHTML:"XHTML ??????????????? ???????????????????????? ????????????",DlgDocBgColor:"????????????????????????????????? ?????????",DlgDocBgImage:"????????????????????????????????? ??????????????? URL",DlgDocBgNoScroll:"????????????????????? ??? ????????? ??????????????? ?????????????????????????????????",DlgDocCText:"?????????????????????",DlgDocCLink:"????????????",DlgDocCVisited:"????????????????????? ????????????",DlgDocCActive:"?????????????????? ????????????",DlgDocMargins:"????????? ?????????????????????",DlgDocMaTop:"?????????",DlgDocMaLeft:"????????????",DlgDocMaRight:"????????????",DlgDocMaBottom:"????????????",DlgDocMeIndex:"?????????????????????????????? ???????????????????????? ??????????????????????????? (??????????????????????????? (,) ?????? ????????? ?????????)",DlgDocMeDescr:"?????????????????????????????? ???????????????",DlgDocMeAuthor:"????????????",DlgDocMeCopy:"????????????????????????",DlgDocPreview:"??????????????????????????????",Templates:"???????????????????????????",DlgTemplatesTitle:"???????????????????????? ???????????????????????????",DlgTemplatesSelMsg:"???????????????????????? ????????? ???????????? ??????????????????????????? ???????????? ????????? (????????????????????? ???????????????????????? ????????? ???????????? ?????????):",DlgTemplatesLoading:"??????????????????????????? ???????????? ????????? ????????? ??????. ????????? ?????????...",DlgTemplatesNoTpl:"(????????? ??????????????????????????? ?????????????????? ?????????)",DlgTemplatesReplace:"????????? ?????????????????? ????????????",DlgAboutAboutTab:"FCKEditor ?????? ????????????",DlgAboutBrowserInfoTab:"????????????????????? ?????? ????????????",DlgAboutLicenseTab:"?????????????????????",DlgAboutVersion:"???????????????",DlgAboutInfo:"??????????????? ?????????????????? ????????????:",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/he.js b/horde/services/editor/fckeditor/editor/lang/he.js
deleted file mode 100644
index 3cc75e369..000000000
--- a/horde/services/editor/fckeditor/editor/lang/he.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"rtl",ToolbarCollapse:"?????????? ???????? ??????????",ToolbarExpand:"?????????? ???????? ??????????",Save:"??????????",NewPage:"???? ??????",Preview:"?????????? ????????????",Cut:"??????????",Copy:"??????????",Paste:"??????????",PasteText:"?????????? ?????????? ????????",PasteWord:"?????????? ??-????????",Print:"??????????",SelectAll:"?????????? ??????",RemoveFormat:"???????? ????????????",InsertLinkLbl:"??????????",InsertLink:"??????????/?????????? ??????????",RemoveLink:"???????? ????????????",VisitLink:"?????? ??????????",Anchor:"??????????/?????????? ?????????? ??????????",AnchorDelete:"?????? ?????????? ??????????",InsertImageLbl:"??????????",InsertImage:"??????????/?????????? ??????????",InsertFlashLbl:"????????",InsertFlash:"????????/???????? ????????",InsertTableLbl:"????????",InsertTable:"??????????/?????????? ????????",InsertLineLbl:"????",InsertLine:"?????????? ???? ??????????",InsertSpecialCharLbl:"???? ??????????",InsertSpecialChar:"?????????? ???? ??????????",InsertSmileyLbl:"????????????",InsertSmiley:"?????????? ????????????",About:"?????????? FCKeditor",Bold:"??????????",Italic:"????????",Underline:"???? ??????????",StrikeThrough:"???????? ????????",Subscript:"???????? ??????????",Superscript:"???????? ??????????",LeftJustify:"?????????? ??????????",CenterJustify:"??????????",RightJustify:"?????????? ??????????",BlockJustify:"?????????? ??????????????",DecreaseIndent:"?????????? ??????????????????",IncreaseIndent:"?????????? ??????????????????",Blockquote:"???????? ??????????",CreateDiv:"?????? ????????(????)DIV",EditDiv:"???????? ???????? (????)DIV",DeleteDiv:"?????? ????????(????) DIV",Undo:"?????????? ?????? ??????????",Redo:"???????? ???? ?????? ??????????",NumberedListLbl:"?????????? ??????????????",NumberedList:"??????????/???????? ?????????? ??????????????",BulletedListLbl:"?????????? ????????????",BulletedList:"??????????/???????? ?????????? ????????????",ShowTableBorders:"???????? ?????????? ??????????",ShowDetails:"???????? ??????????",Style:"??????????",FontFormat:"??????????",Font:"????????",FontSize:"????????",TextColor:"?????? ????????",BGColor:"?????? ??????",Source:"????????",Find:"??????????",Replace:"??????????",SpellCheck:"?????????? ????????",UniversalKeyboard:"?????????? ????????????????????",PageBreakLbl:"?????????? ????",PageBreak:"???????? ?????????? ????",Form:"????????",Checkbox:"???????? ??????????",RadioButton:"???????? ????????????????",TextField:"?????? ????????",Textarea:"?????????? ????????",HiddenField:"?????? ????????",Button:"??????????",SelectionField:"?????? ??????????",ImageButton:"?????????? ??????????",FitWindow:"???????? ???? ???????? ??????????",ShowBlocks:"?????? ????????????",EditLink:"?????????? ??????????",CellCM:"????",RowCM:"????????",ColumnCM:"??????????",InsertRowAfter:"???????? ???????? ????????",InsertRowBefore:"???????? ???????? ????????",DeleteRows:"?????????? ??????????",InsertColumnAfter:"???????? ?????????? ????????",InsertColumnBefore:"???????? ?????????? ????????",DeleteColumns:"?????????? ????????????",InsertCellAfter:"???????? ???? ????????",InsertCellBefore:"???????? ???? ????????",DeleteCells:"?????????? ????????",MergeCells:"?????????? ????????",MergeRight:"?????? ??????????",MergeDown:"?????? ????????",HorizontalSplitCell:"?????? ???? ????????????",VerticalSplitCell:"?????? ???? ??????????",TableDelete:"?????? ????????",CellProperties:"???????????? ??????",TableProperties:"???????????? ??????????",ImageProperties:"???????????? ????????????",FlashProperties:"?????????????? ????????",AnchorProp:"?????????????? ?????????? ??????????",ButtonProp:"?????????????? ??????????",CheckboxProp:"?????????????? ???????? ??????????",HiddenFieldProp:"???????????? ?????? ????????",RadioButtonProp:"?????????????? ???????? ????????????????",ImageButtonProp:"???????????? ?????????? ??????????",TextFieldProp:"?????????????? ?????? ????????",SelectionFieldProp:"?????????????? ?????? ??????????",TextareaProp:"???????????? ?????????? ????????",FormProp:"???????????? ????????",FontFormats:"????????????;??????;??????????;??????????;?????????? 2;?????????? 3;?????????? 4;?????????? 5;?????????? 6",ProcessingXHTML:"???????? XHTML, ???? ????????????...",Done:"???????????? ????????????",PasteWordConfirm:"???????? ?????????? ???????????????? ???????????? ?????????? ?????????? ????????. ?????? ???????????? ?????????? ???????? ?????? ?????????????",NotCompatiblePaste:"?????????? ???? ?????????? ???????????? ?????????????? ???????????????? ???????????? 5.5 ??????????. ?????? ???????????? ???????????? ?????? ?????????????",UnknownToolbarItem:'???????? ???? ???????? ?????????? ?????????? "%1"',UnknownCommand:'???? ?????????? ???? ???????? "%1"',NotImplemented:"???????????? ???? ????????????",UnknownToolbarSet:'???????? ???????? ?????????? "%1" ???? ??????????',NoActiveX:'???????????? ?????????? ???? ???????????? ???????????? ?????????? ???? ???????????????? ????????????.???? ?????????? ???? ?????????????? "?????? ?????????? ???????????? ??????????????". ???????? ?????????? ???????????? ?????????????? ???? ???????????????? ????????????.',BrowseServerBlocked:"???? ???????? ???????? ???????????? ????????????.?????? ???????? ?????????? ???????????? ?????????????? ???? ????????.",DialogBlocked:"???? ?????? ???????? ?????????? ???????? ????????????. ?????? ???????? ?????????? ???????????? ???????????? ???? ????????.",VisitLinkBlocked:"???? ???????? ?????????? ???????? ??????.???? ?????????? ???????????? ?????????????? ?????????????? ???? ????????????.",DlgBtnOK:"??????????",DlgBtnCancel:"??????????",DlgBtnClose:"??????????",DlgBtnBrowseServer:"???????? ????????",DlgAdvancedTag:"???????????????? ??????????????",DlgOpOther:"?????>",DlgInfoTab:"????????",DlgAlertUrl:"?????? ?????? URL",DlgGenNotSet:"??? ????????>",DlgGenId:"?????????? (Id)",DlgGenLangDir:"?????????? ??????",DlgGenLangDirLtr:"???????? ?????????? (LTR)",DlgGenLangDirRtl:"???????? ?????????? (RTL)",DlgGenLangCode:"?????? ??????",DlgGenAccessKey:"?????? ????????",DlgGenName:"????",DlgGenTabIndex:"???????? ??????",DlgGenLongDescr:"?????????? ???????????? ??????????",DlgGenClass:"???????????????? ?????????? ????????????",DlgGenTitle:"?????????? ??????????",DlgGenContType:"Content Type ????????",DlgGenLinkCharset:"?????????? ?????????? ????????????",DlgGenStyle:"??????????",DlgImgTitle:"???????????? ????????????",DlgImgInfoTab:"???????? ???? ????????????",DlgImgBtnUpload:"?????????? ????????",DlgImgURL:"?????????? (URL)",DlgImgUpload:"??????????",DlgImgAlt:"???????? ??????????",DlgImgWidth:"????????",DlgImgHeight:"????????",DlgImgLockRatio:"?????????? ????????",DlgBtnResetSize:"?????????? ??????????",DlgImgBorder:"??????????",DlgImgHSpace:"?????????? ??????????",DlgImgVSpace:"?????????? ????????",DlgImgAlign:"??????????",DlgImgAlignLeft:"??????????",DlgImgAlignAbsBottom:"???????????? ????????????????????",DlgImgAlignAbsMiddle:"?????????? ????????????????",DlgImgAlignBaseline:"?????? ????????????",DlgImgAlignBottom:"????????????",DlgImgAlignMiddle:"??????????",DlgImgAlignRight:"??????????",DlgImgAlignTextTop:"???????? ??????????",DlgImgAlignTop:"??????????",DlgImgPreview:"?????????? ????????????",DlgImgAlertUrl:"???? ???????????? ???? ?????????? ????????????",DlgImgLinkTab:"??????????",DlgFlashTitle:"???????????? ????????",DlgFlashChkPlay:"?????? ??????????????",DlgFlashChkLoop:"??????????",DlgFlashChkMenu:"???????? ?????????? ????????",DlgFlashScale:"????????",DlgFlashScaleAll:"?????? ??????",DlgFlashScaleNoBorder:"?????? ????????????",DlgFlashScaleFit:"?????????? ????????????",DlgLnkWindowTitle:"??????????",DlgLnkInfoTab:"???????? ???? ????????????",DlgLnkTargetTab:"????????",DlgLnkType:"?????? ??????????",DlgLnkTypeURL:"?????????? (URL)",DlgLnkTypeAnchor:"???????? ?????????? ????",DlgLnkTypeEMail:"??????''??",DlgLnkProto:"????????????????",DlgLnkProtoOther:"?????>",DlgLnkURL:"?????????? (URL)",DlgLnkAnchorSel:"?????????? ????????",DlgLnkAnchorByName:"????''?? ???? ??????????",DlgLnkAnchorById:"????''?? ?????????? (Id) ??????????",DlgLnkNoAnchors:"(?????? ???????????? ???????????? ??????)",DlgLnkEMail:"?????????? ????????''??",DlgLnkEMailSubject:"???????? ????????????",DlgLnkEMailBody:"?????? ????????????",DlgLnkUpload:"??????????",DlgLnkBtnUpload:"?????????? ????????",DlgLnkTarget:"????????",DlgLnkTargetFrame:"?????????>",DlgLnkTargetPopup:"??????? ????????>",DlgLnkTargetBlank:"???????? ?????? (_blank)",DlgLnkTargetParent:"???????? ?????? (_parent)",DlgLnkTargetSelf:"?????????? ?????????? (_self)",DlgLnkTargetTop:"???????? ???????? (_top)",DlgLnkTargetFrameName:"???? ?????????? ????????",DlgLnkPopWinName:"???? ?????????? ??????????",DlgLnkPopWinFeat:"???????????? ?????????? ??????????",DlgLnkPopResize:"?????? ???????? ???????? ????????????",DlgLnkPopLocation:"???????? ??????????",DlgLnkPopMenu:"???????? ??????????",DlgLnkPopScroll:"???????? ????????????",DlgLnkPopStatus:"???????? ??????????",DlgLnkPopToolbar:"???????? ??????????",DlgLnkPopFullScrn:"?????? ?????? (IE)",DlgLnkPopDependent:"???????? (Netscape)",DlgLnkPopWidth:"????????",DlgLnkPopHeight:"????????",DlgLnkPopLeft:"?????????? ???? ????????",DlgLnkPopTop:"?????????? ???? ??????????",DlnLnkMsgNoUrl:"???? ???????????? ???? ?????????? ???????????? (URL)",DlnLnkMsgNoEMail:"???? ???????????? ???? ?????????? ????????''??",DlnLnkMsgNoAnchor:"???? ?????????? ???????? ??????????",DlnLnkMsgInvPopName:"???? ?????????? ?????????? ???????? ???????????? ?????????????? ?????????? ?????????? ????????????",DlgColorTitle:"?????????? ??????",DlgColorBtnClear:"??????????",DlgColorHighlight:"??????????",DlgColorSelected:"????????",DlgSmileyTitle:"?????????? ????????????",DlgSpecialCharTitle:"?????????? ???? ??????????",DlgTableTitle:"???????????? ????????",DlgTableRows:"??????????",DlgTableColumns:"????????????",DlgTableBorder:"???????? ??????????",DlgTableAlign:"??????????",DlgTableAlignNotSet:"??? ????????>",DlgTableAlignLeft:"????????",DlgTableAlignCenter:"????????",DlgTableAlignRight:"????????",DlgTableWidth:"????????",DlgTableWidthPx:"??????????????",DlgTableWidthPc:"????????",DlgTableHeight:"????????",DlgTableCellSpace:"?????????? ????",DlgTableCellPad:"?????????? ????",DlgTableCaption:"??????????",DlgTableSummary:"??????????",DlgTableHeaders:"????????????",DlgTableHeadersNone:"??????",DlgTableHeadersColumn:"?????????? ????????????",DlgTableHeadersRow:"???????? ????????????",DlgTableHeadersBoth:"??????????",DlgCellTitle:"???????????? ????",DlgCellWidth:"????????",DlgCellWidthPx:"??????????????",DlgCellWidthPc:"????????",DlgCellHeight:"????????",DlgCellWordWrap:"?????????? ??????????",DlgCellWordWrapNotSet:"??? ????????>",DlgCellWordWrapYes:"????",DlgCellWordWrapNo:"????",DlgCellHorAlign:"?????????? ??????????",DlgCellHorAlignNotSet:"??? ????????>",DlgCellHorAlignLeft:"????????",DlgCellHorAlignCenter:"????????",DlgCellHorAlignRight:"????????",DlgCellVerAlign:"?????????? ????????",DlgCellVerAlignNotSet:"??? ????????>",DlgCellVerAlignTop:"??????????",DlgCellVerAlignMiddle:"??????????",DlgCellVerAlignBottom:"????????????",DlgCellVerAlignBaseline:"???? ??????????",DlgCellType:"?????? ????",DlgCellTypeData:"??????",DlgCellTypeHeader:"??????????",DlgCellRowSpan:"???????? ??????????",DlgCellCollSpan:"???????? ????????????",DlgCellBackColor:"?????? ??????",DlgCellBorderColor:"?????? ??????????",DlgCellBtnSelect:"??????????...",DlgFindAndReplaceTitle:"?????? ??????????",DlgFindTitle:"??????????",DlgFindFindBtn:"??????????",DlgFindNotFoundMsg:"?????????? ???????????? ???? ????????.",DlgReplaceTitle:"??????????",DlgReplaceFindLbl:"?????????? ????????????:",DlgReplaceReplaceLbl:"?????????? ??????????????:",DlgReplaceCaseChk:"?????????? ?????? ???????????? (Case)",DlgReplaceReplaceBtn:"??????????",DlgReplaceReplAllBtn:"?????????? ?????? ??????????",DlgReplaceWordChk:"?????????? ?????????? ??????????",PasteErrorCut:"???????????? ???????????? ???????????? ?????? ???? ?????????????? ?????????? ???????? ???????????? ?????????? ??????????????????. ???? ???????????? ???????????? ?????? ???? (Ctrl+X).",PasteErrorCopy:"???????????? ???????????? ???????????? ?????? ???? ?????????????? ?????????? ???????? ???????????? ?????????? ??????????????????. ???? ???????????? ???????????? ?????? ???? (Ctrl+C).",PasteAsText:"?????????? ?????????? ????????",PasteFromWord:"?????????? ??-????????",DlgPasteMsg2:"?????? ???????? ???????? ???????????? ?????????????? (Ctrl+V) ???????? ???? ??????????.",DlgPasteSec:"?????? ???????????? ?????????? ????????????, ???? ???????? ???????? ???? ?????? ?????????????? (clipboard) ?????????? ??????????.?????? ?????? ???????? ?????? ?????????? ????.",DlgPasteIgnoreFont:"?????????? ?????????????? ?????? ????????",DlgPasteRemoveStyles:"?????? ???????????? ??????????",ColorAutomatic:"??????????????",ColorMoreColors:"?????????? ????????????...",DocProps:"???????????? ????????",DlgAnchorTitle:"???????????? ?????????? ??????????",DlgAnchorName:"???? ???????????? ??????????",DlgAnchorErrorName:"?????? ?????? ???? ???????????? ??????????",DlgSpellNotInDic:"???? ???????? ????????????",DlgSpellChangeTo:"?????? ??",DlgSpellBtnIgnore:"??????????",DlgSpellBtnIgnoreAll:"?????????? ????????",DlgSpellBtnReplace:"????????",DlgSpellBtnReplaceAll:"???????? ??????",DlgSpellBtnUndo:"????????",DlgSpellNoSuggestions:"- ?????? ?????????? -",DlgSpellProgress:"???????????? ???????? ???????????? ....",DlgSpellNoMispell:"???????????? ???????? ??????????????: ???? ?????????? ???????????? ????????",DlgSpellNoChanges:"???????????? ???????? ??????????????: ???? ?????????? ???? ????????",DlgSpellOneChange:"???????????? ???????? ??????????????: ?????????? ???????? ??????",DlgSpellManyChanges:"???????????? ???????? ??????????????: %1 ?????????? ????????",IeSpellDownload:"???????? ?????????? ???? ??????????, ?????? ?????? ?????????????? ?????????????",DlgButtonText:"???????? (??????)",DlgButtonType:"??????",DlgButtonTypeBtn:"??????????",DlgButtonTypeSbm:"??????",DlgButtonTypeRst:"??????",DlgCheckboxName:"????",DlgCheckboxValue:"??????",DlgCheckboxSelected:"????????",DlgFormName:"????",DlgFormAction:"?????? ????",DlgFormMethod:"?????? ??????????",DlgSelectName:"????",DlgSelectValue:"??????",DlgSelectSize:"????????",DlgSelectLines:"??????????",DlgSelectChkMulti:"???????? ???????????? ????????????",DlgSelectOpAvail:"???????????????? ????????????",DlgSelectOpText:"????????",DlgSelectOpValue:"??????",DlgSelectBtnAdd:"????????",DlgSelectBtnModify:"??????",DlgSelectBtnUp:"??????????",DlgSelectBtnDown:"????????",DlgSelectBtnSetValue:"?????? ???????????? ????????",DlgSelectBtnDelete:"??????",DlgTextareaName:"????",DlgTextareaCols:"????????????",DlgTextareaRows:"??????????",DlgTextName:"????",DlgTextValue:"??????",DlgTextCharWidth:"???????? ??????????????",DlgTextMaxChars:"?????????????? ????????????",DlgTextType:"??????",DlgTextTypeText:"????????",DlgTextTypePass:"??????????",DlgHiddenName:"????",DlgHiddenValue:"??????",BulletedListProp:"?????????????? ??????????",NumberedListProp:"?????????????? ?????????? ??????????????",DlgLstStart:"??????????",DlgLstType:"??????",DlgLstTypeCircle:"??????????",DlgLstTypeDisc:"????????",DlgLstTypeSquare:"??????????",DlgLstTypeNumbers:"???????????? (1, 2, 3)",DlgLstTypeLCase:"???????????? ?????????? (a, b, c)",DlgLstTypeUCase:"???????????? ???????????? (A, B, C)",DlgLstTypeSRoman:"?????????? ?????????????? ?????????? (i, ii, iii)",DlgLstTypeLRoman:"?????????? ?????????????? ???????????? (I, II, III)",DlgDocGeneralTab:"????????",DlgDocBackTab:"??????",DlgDocColorsTab:"?????????? ??????????????",DlgDocMetaTab:"?????????? META",DlgDocPageTitle:"?????????? ????",DlgDocLangDir:"?????????? ??????",DlgDocLangDirLTR:"???????? ?????????? (LTR)",DlgDocLangDirRTL:"???????? ?????????? (RTL)",DlgDocLangCode:"?????? ??????",DlgDocCharSet:"?????????? ????????????",DlgDocCharSetCE:"???????? ????????????",DlgDocCharSetCT:"???????? ???????????? (Big5)",DlgDocCharSetCR:"????????????",DlgDocCharSetGR:"????????????",DlgDocCharSetJP:"??????????",DlgDocCharSetKR:"??????????????",DlgDocCharSetTR:"????????????",DlgDocCharSetUN:"???????? ?????? (UTF-8)",DlgDocCharSetWE:"???????? ????????????",DlgDocCharSetOther:"?????????? ???????????? ??????",DlgDocDocType:"???????????? ?????? ????????",DlgDocDocTypeOther:"???????????? ?????? ???????? ??????????",DlgDocIncXHTML:"???????? ???????????? XHTML",DlgDocBgColor:"?????? ??????",DlgDocBgImage:"URL ???????????? ??????",DlgDocBgNoScroll:"?????? ?????? ??????????",DlgDocCText:"????????",DlgDocCLink:"??????????",DlgDocCVisited:"?????????? ??????????",DlgDocCActive:" ?????????? ????????",DlgDocMargins:"???????????? ????",DlgDocMaTop:"??????????",DlgDocMaLeft:"??????????",DlgDocMaRight:"??????????",DlgDocMaBottom:"????????",DlgDocMeIndex:"???????? ?????????????? ???? ?????????? )?????????? ??????????(",DlgDocMeDescr:"???????? ????????",DlgDocMeAuthor:"????????",DlgDocMeCopy:"???????????? ????????????",DlgDocPreview:"?????????? ????????????",Templates:"????????????",DlgTemplatesTitle:"?????????? ????????",DlgTemplatesSelMsg:"?????? ?????? ?????????? ???????????? ?????????? ?????????? ???????????? ????????:",DlgTemplatesLoading:"???????? ?????????? ???????????? ?????? ????????",DlgTemplatesNoTpl:"(???? ???????????? ????????????)",DlgTemplatesReplace:"?????????? ???????? ????????",DlgAboutAboutTab:"??????????",DlgAboutBrowserInfoTab:"?????????? ??????????",DlgAboutLicenseTab:"??????????",DlgAboutVersion:"??????????",DlgAboutInfo:"???????? ???????? ???????? ?????????? ??????:",DlgDivGeneralTab:"????????",DlgDivAdvancedTab:"??????????",DlgDivStyle:"??????????",DlgDivInlineStyle:"?????????? ???????? ??????????"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/hi.js b/horde/services/editor/fckeditor/editor/lang/hi.js
deleted file mode 100644
index 25a524e94..000000000
--- a/horde/services/editor/fckeditor/editor/lang/hi.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"?????????????????? ????????????????????????",ToolbarExpand:"?????????????????? ?????? ????????????????????? ????????????",Save:"?????????",NewPage:"????????? ?????????",Preview:"????????????????????????",Cut:"??????",Copy:"????????????",Paste:"???????????????",PasteText:"??????????????? (???????????? ?????????????????????)",PasteWord:"??????????????? (???????????? ??????)",Print:"?????????????????????",SelectAll:"?????? ????????????????????? ????????????",RemoveFormat:"????????????????????? ??????????????????",InsertLinkLbl:"????????????",InsertLink:"???????????? ?????????????????????/??????????????????",RemoveLink:"???????????? ??????????????????",VisitLink:"???????????? ???????????????",Anchor:"???????????? ?????????????????????/??????????????????",AnchorDelete:"???????????? ??????????????????",InsertImageLbl:"??????????????????",InsertImage:"?????????????????? ?????????????????????/??????????????????",InsertFlashLbl:"???????????????",InsertFlash:"??????????????? ?????????????????????/??????????????????",InsertTableLbl:"????????????",InsertTable:"???????????? ?????????????????????/??????????????????",InsertLineLbl:"????????????",InsertLine:"?????????????????????????????? ???????????? ????????????????????? ????????????",InsertSpecialCharLbl:"??????????????? ?????????????????????",InsertSpecialChar:"??????????????? ????????????????????? ????????????????????? ????????????",InsertSmileyLbl:"?????????????????????",InsertSmiley:"????????????????????? ????????????????????? ????????????",About:"FCKeditor ?????? ???????????? ?????????",Bold:"???????????????",Italic:"??????????????????",Underline:"?????????????????????",StrikeThrough:"???????????????????????? ????????????",Subscript:"??????????????????",Superscript:"??????????????????",LeftJustify:"??????????????? ?????????",CenterJustify:"????????? ?????????",RightJustify:"??????????????? ?????????",BlockJustify:"??????????????? ????????????????????????",DecreaseIndent:"???????????????????????? ?????? ????????????",IncreaseIndent:"???????????????????????? ??????????????????",Blockquote:"???????????????-?????????",CreateDiv:"????????? (Div) ????????????????????? ??????????????????",EditDiv:"????????? (Div) ????????????????????? ???????????????",DeleteDiv:"????????? ????????????????????? ??????????????????",Undo:"???????????????",Redo:"????????????",NumberedListLbl:"??????????????? ????????????",NumberedList:"??????????????? ???????????? ?????????????????????/??????????????????",BulletedListLbl:"??????????????? ????????????",BulletedList:"??????????????? ???????????? ?????????????????????/??????????????????",ShowTableBorders:"???????????? ??????????????????????????? ?????????????????????",ShowDetails:"?????????????????? ?????????????????????",Style:"??????????????????",FontFormat:"?????????????????????",Font:"???????????????",FontSize:"????????????",TextColor:"????????????????????? ?????????",BGColor:"???????????????????????????????????? ?????????",Source:"???????????????",Find:"???????????????",Replace:"?????????????????????",SpellCheck:"?????????????????? (????????????????????????) ????????????",UniversalKeyboard:"??????????????????????????? ?????????????????????",PageBreakLbl:"????????? ???????????????",PageBreak:"????????? ??????????????? ???????????????????????? ????????????",Form:"???????????????",Checkbox:"????????? ???????????????",RadioButton:"??????????????? ?????????",TextField:"????????????????????? ???????????????",Textarea:"????????????????????? ???????????????",HiddenField:"??????????????? ???????????????",Button:"?????????",SelectionField:"??????????????? ???????????????",ImageButton:"?????????????????? ?????????",FitWindow:"??????????????? ???????????? ?????? ????????? ???????????? ?????? ??????????????????",ShowBlocks:"??????????????? ?????????????????????",EditLink:"???????????? ??????????????????",CellCM:"????????????",RowCM:"??????????????????",ColumnCM:"????????????",InsertRowAfter:"????????? ????????? ?????????????????? ???????????????",InsertRowBefore:"???????????? ?????????????????? ???????????????",DeleteRows:"??????????????????????????? ??????????????? ????????????",InsertColumnAfter:"????????? ????????? ???????????? ???????????????",InsertColumnBefore:"???????????? ???????????? ???????????????",DeleteColumns:"???????????? ??????????????? ????????????",InsertCellAfter:"????????? ????????? ????????? ???????????????",InsertCellBefore:"???????????? ????????? ???????????????",DeleteCells:"????????? ??????????????? ????????????",MergeCells:"????????? ?????????????????????",MergeRight:"??????????????? ????????????",MergeDown:"???????????? ???????????? ????????????",HorizontalSplitCell:"????????? ?????? ????????????????????? ?????????????????? ????????? ????????????????????? ????????????",VerticalSplitCell:"????????? ?????? ???????????????????????? ????????? ????????????????????? ????????????",TableDelete:"???????????? ??????????????? ????????????",CellProperties:"????????? ??????????????????????????????",TableProperties:"???????????? ??????????????????????????????",ImageProperties:"?????????????????? ??????????????????????????????",FlashProperties:"??????????????? ??????????????????????????????",AnchorProp:"???????????? ??????????????????????????????",ButtonProp:"????????? ??????????????????????????????",CheckboxProp:"????????? ??????????????? ??????????????????????????????",HiddenFieldProp:"??????????????? ??????????????? ??????????????????????????????",RadioButtonProp:"??????????????? ????????? ??????????????????????????????",ImageButtonProp:"?????????????????? ????????? ??????????????????????????????",TextFieldProp:"????????????????????? ??????????????? ??????????????????????????????",SelectionFieldProp:"??????????????? ??????????????? ??????????????????????????????",TextareaProp:"????????????????????? ??????????????? ??????????????????????????????",FormProp:"??????????????? ??????????????????????????????",FontFormats:"??????????????????;???????????????????????????;?????????;?????????????????? 1;?????????????????? 2;?????????????????? 3;?????????????????? 4;?????????????????? 5;?????????????????? 6;?????????????????? (DIV)",ProcessingXHTML:"XHTML ????????????????????? ?????? ????????? ????????? ????????? ???????????????...",Done:"???????????? ?????????",PasteWordConfirm:"?????? ?????? ????????????????????? ??????????????? ???????????? ??????????????? ?????????, ?????? ???????????? ?????? ???????????? ???????????? ????????? ?????? ????????? ????????? ???????????? ??????????????? ???????????? ?????? ???????????? ?????? ????????? ????????? ???????????? ??????????????????????",NotCompatiblePaste:"?????? ??????????????? ???????????????????????? ?????????????????????????????????(Internet Explorer) 5.5 ?????? ???????????? ????????? ?????? ??????????????? ?????? ????????? ?????? ?????????????????? ????????? ???????????? ?????? ???????????? ????????? ????????? ??????????????? ???????????? ??????????????????????",UnknownToolbarItem:'??????????????? ?????????????????? ???????????? "%1"',UnknownCommand:'??????????????? ?????????????????? "%1"',NotImplemented:"?????????????????? ???????????????????????????????????? ???????????? ???????????? ????????? ??????",UnknownToolbarSet:'?????????????????? ????????? "%1" ?????????????????? ???????????? ??????',NoActiveX:'???????????? ???????????????????????? ?????? ????????????????????? ??????????????????????????? ??????????????? ?????? ???????????? ?????????????????? ?????? ??????????????? ????????? ???????????? ???????????? ????????????????????? "Run ActiveX controls and plug-ins" ?????????????????? ?????? ??????????????? ????????????. ???????????? ?????????????????? ?????? ???????????? ????????????????????? ?????? ??????????????? ?????? ???????????? ?????????',BrowseServerBlocked:"??????????????????????????? ???????????????????????? ???????????? ???????????? ?????? ???????????? ????????????????????? ????????? ????????????-????????? ??????????????????????????? ?????? ??????????????????????????? ???????????????",DialogBlocked:"??????????????? ?????????????????? ???????????? ???????????? ?????? ???????????? ????????????????????? ????????? ????????????-????????? ??????????????????????????? ?????? ??????????????????????????? ???????????????",VisitLinkBlocked:"????????? ?????????????????? ???????????? ???????????? ?????? ???????????? ????????????????????? ????????? ????????????-????????? ??????????????????????????? ?????? ??????????????????????????? ???????????????",DlgBtnOK:"????????? ??????",DlgBtnCancel:"???????????? ????????????",DlgBtnClose:"???????????? ????????????",DlgBtnBrowseServer:"??????????????? ?????????????????? ????????????",DlgAdvancedTag:"??????????????????????????????",DlgOpOther:"???????????>",DlgInfoTab:"???????????????",DlgAlertUrl:"URL ????????????????????? ????????????",DlgGenNotSet:"???????? ????????????>",DlgGenId:"Id",DlgGenLangDir:"???????????? ??????????????? ?????? ????????????",DlgGenLangDirLtr:"??????????????? ?????? ??????????????? (LTR)",DlgGenLangDirRtl:"??????????????? ?????? ??????????????? (RTL)",DlgGenLangCode:"???????????? ?????????",DlgGenAccessKey:"?????????????????? ??????",DlgGenName:"?????????",DlgGenTabIndex:"????????? ????????????????????????",DlgGenLongDescr:"???????????? ??????????????? ?????? ????????? URL",DlgGenClass:"??????????????????-????????? ???????????????",DlgGenTitle:"????????????????????? ??????????????????",DlgGenContType:"????????????????????? ???????????????????????? ??????????????????",DlgGenLinkCharset:"???????????? ????????????????????? ????????????????????? ?????????",DlgGenStyle:"??????????????????",DlgImgTitle:"?????????????????? ??????????????????????????????",DlgImgInfoTab:"?????????????????? ?????? ?????????????????????",DlgImgBtnUpload:"????????? ??????????????? ?????? ???????????????",DlgImgURL:"URL",DlgImgUpload:"???????????????",DlgImgAlt:"???????????????????????? ?????????????????????",DlgImgWidth:"???????????????",DlgImgHeight:"???????????????",DlgImgLockRatio:"????????? ??????????????????",DlgBtnResetSize:"??????????????? ????????????",DlgImgBorder:"??????????????????",DlgImgHSpace:"?????????????????????????????? ???????????????",DlgImgVSpace:"????????????????????? ???????????????",DlgImgAlign:"???????????????",DlgImgAlignLeft:"???????????????",DlgImgAlignAbsBottom:"Abs ????????????",DlgImgAlignAbsMiddle:"Abs ?????????",DlgImgAlignBaseline:"????????? ????????????",DlgImgAlignBottom:"????????????",DlgImgAlignMiddle:"????????????",DlgImgAlignRight:"???????????????",DlgImgAlignTextTop:"????????????????????? ?????????",DlgImgAlignTop:"?????????",DlgImgPreview:"????????????????????????",DlgImgAlertUrl:"?????????????????? ?????? URL ???????????? ???????????? ",DlgImgLinkTab:"????????????",DlgFlashTitle:"??????????????? ??????????????????????????????",DlgFlashChkPlay:"????????? ????????????",DlgFlashChkLoop:"?????????",DlgFlashChkMenu:"??????????????? ?????????????????? ?????? ?????????????????? ????????????",DlgFlashScale:"???????????????",DlgFlashScaleAll:"????????? ?????????????????????",DlgFlashScaleNoBorder:"????????? ?????????????????? ????????????",DlgFlashScaleFit:"????????????????????? ?????????",DlgLnkWindowTitle:"????????????",DlgLnkInfoTab:"???????????? ",DlgLnkTargetTab:"?????????????????????",DlgLnkType:"???????????? ??????????????????",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"?????? ????????? ?????? ????????????",DlgLnkTypeEMail:"???-?????????",DlgLnkProto:"???????????????????????????",DlgLnkProtoOther:"???????????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"???????????? ???????????????",DlgLnkAnchorByName:"???????????? ????????? ??????",DlgLnkAnchorById:"???????????????????????? Id ??????",DlgLnkNoAnchors:"(????????????????????????????????? ????????? ?????????????????? ?????? ??????????????????)",DlgLnkEMail:"???-????????? ?????????",DlgLnkEMailSubject:"??????????????? ????????????",DlgLnkEMailBody:"???????????????",DlgLnkUpload:"???????????????",DlgLnkBtnUpload:"????????? ??????????????? ?????? ???????????????",DlgLnkTarget:"?????????????????????",DlgLnkTargetFrame:"??????????????>",DlgLnkTargetPopup:"????????-?????? ??????????????????>",DlgLnkTargetBlank:"????????? ?????????????????? (_blank)",DlgLnkTargetParent:"????????? ?????????????????? (_parent)",DlgLnkTargetSelf:"????????? ?????????????????? (_self)",DlgLnkTargetTop:"??????????????? ?????????????????? (_top)",DlgLnkTargetFrameName:"????????????????????? ??????????????? ?????? ?????????",DlgLnkPopWinName:"?????????-?????? ?????????????????? ?????? ?????????",DlgLnkPopWinFeat:"?????????-?????? ?????????????????? ??????????????????",DlgLnkPopResize:"???????????? ???????????? ?????? ???????????? ??????",DlgLnkPopLocation:"?????????????????? ?????????",DlgLnkPopMenu:"?????????????????? ?????????",DlgLnkPopScroll:"????????????????????? ?????????",DlgLnkPopStatus:"?????????????????? ?????????",DlgLnkPopToolbar:"????????? ?????????",DlgLnkPopFullScrn:"????????? ????????????????????? (IE)",DlgLnkPopDependent:"????????????????????????????????? (Netscape)",DlgLnkPopWidth:"???????????????",DlgLnkPopHeight:"???????????????",DlgLnkPopLeft:"??????????????? ?????????",DlgLnkPopTop:"??????????????? ?????????",DlnLnkMsgNoUrl:"???????????? URL ???????????? ????????????",DlnLnkMsgNoEMail:"???-????????? ????????? ???????????? ????????????",DlnLnkMsgNoAnchor:"???????????? ???????????????",DlnLnkMsgInvPopName:"?????????-?????? ?????? ????????? ???????????????????????? ?????? ???????????? ???????????? ?????????????????? ?????? ??????????????? ??????????????? ???????????? ???????????? ???????????????",DlgColorTitle:"????????? ???????????????",DlgColorBtnClear:"????????? ????????????",DlgColorHighlight:"?????????????????????",DlgColorSelected:"???????????????????????????",DlgSmileyTitle:"????????????????????? ????????????????????? ????????????",DlgSpecialCharTitle:"??????????????? ????????????????????? ???????????????",DlgTableTitle:"???????????? ??????????????????????????????",DlgTableRows:"???????????????????????????",DlgTableColumns:"????????????",DlgTableBorder:"?????????????????? ????????????",DlgTableAlign:"?????????????????????????????????",DlgTableAlignNotSet:"???????? ????????????>",DlgTableAlignLeft:"???????????????",DlgTableAlignCenter:"????????? ?????????",DlgTableAlignRight:"???????????????",DlgTableWidth:"???????????????",DlgTableWidthPx:"?????????????????????",DlgTableWidthPc:"?????????????????????",DlgTableHeight:"???????????????",DlgTableCellSpace:"????????? ????????????",DlgTableCellPad:"????????? ??????????????????",DlgTableCaption:"??????????????????",DlgTableSummary:"??????????????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"????????? ??????????????????????????????",DlgCellWidth:"???????????????",DlgCellWidthPx:"?????????????????????",DlgCellWidthPc:"?????????????????????",DlgCellHeight:"???????????????",DlgCellWordWrap:"???????????? ?????????",DlgCellWordWrapNotSet:"???????? ????????????>",DlgCellWordWrapYes:"?????????",DlgCellWordWrapNo:"????????????",DlgCellHorAlign:"?????????????????????????????? ?????????????????????????????????",DlgCellHorAlignNotSet:"???????? ????????????>",DlgCellHorAlignLeft:"???????????????",DlgCellHorAlignCenter:"????????? ?????????",DlgCellHorAlignRight:"???????????????",DlgCellVerAlign:"????????????????????? ?????????????????????????????????",DlgCellVerAlignNotSet:"???????? ????????????>",DlgCellVerAlignTop:"?????????",DlgCellVerAlignMiddle:"????????????",DlgCellVerAlignBottom:"????????????",DlgCellVerAlignBaseline:"?????????????????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"?????????????????? ???????????????",DlgCellCollSpan:"???????????? ???????????????",DlgCellBackColor:"???????????????????????????????????? ?????????",DlgCellBorderColor:"?????????????????? ?????? ?????????",DlgCellBtnSelect:"???????????????...",DlgFindAndReplaceTitle:"??????????????? ?????? ???????????????",DlgFindTitle:"???????????????",DlgFindFindBtn:"???????????????",DlgFindNotFoundMsg:"???????????? ?????????????????? ???????????? ????????? ????????????????????? ???????????? ????????????",DlgReplaceTitle:"?????????????????????",DlgReplaceFindLbl:"?????? ???????????????:",DlgReplaceReplaceLbl:"???????????? ????????????????????? ????????????:",DlgReplaceCaseChk:"????????? ?????????????????????",DlgReplaceReplaceBtn:"?????????????????????",DlgReplaceReplAllBtn:"????????? ????????????????????? ????????????",DlgReplaceWordChk:"???????????? ???????????? ?????????????????????",PasteErrorCut:"???????????? ????????????????????? ?????? ????????????????????? ??????????????????????????? ?????? ?????? ???????????? ?????? ?????????????????? ???????????? ?????????????????? ?????? ????????? (Ctrl+X) ?????? ?????????????????? ???????????????",PasteErrorCopy:"???????????? ???????????????????????? ?????? ????????????????????? ??????????????????????????? ?????? ???????????? ???????????? ?????? ?????????????????? ???????????? ?????????????????? ?????? ????????? (Ctrl+C) ?????? ?????????????????? ???????????????",PasteAsText:"??????????????? (???????????? ?????????????????????)",PasteFromWord:"??????????????? (???????????? ??????)",DlgPasteMsg2:"Ctrl+V ?????? ?????????????????? ???????????? ??????????????? ???????????? ?????? ????????? ?????? ????????????.",DlgPasteSec:"???????????? ????????????????????? ?????? ????????????????????? ???????????? ????????????????????? ?????? ?????????K??? ?????????????????? ?????? ????????????, ??????????????? ???????????? ?????????????????????????????? ???????????? ?????? ???????????? ?????? ???????????? ??????. ???????????? ????????? ?????? ?????????????????? ????????? ?????????????????? ??????????????? ???????????? ????????????.",DlgPasteIgnoreFont:"??????????????? ????????????????????? ?????????????????????",DlgPasteRemoveStyles:"?????????????????? ????????????????????? ?????????????????????",ColorAutomatic:"????????????????????????",ColorMoreColors:"?????? ?????????...",DocProps:"????????????????????????????????? ??????????????????????????????",DlgAnchorTitle:"???????????? ??????????????????????????????",DlgAnchorName:"???????????? ?????? ?????????",DlgAnchorErrorName:"???????????? ?????? ????????? ???????????? ????????????",DlgSpellNotInDic:"????????????????????? ????????? ????????????",DlgSpellChangeTo:"??????????????? ???????????????",DlgSpellBtnIgnore:"??????????????????",DlgSpellBtnIgnoreAll:"????????? ?????????????????? ????????????",DlgSpellBtnReplace:"?????????????????????",DlgSpellBtnReplaceAll:"????????? ????????????????????? ????????????",DlgSpellBtnUndo:"???????????????",DlgSpellNoSuggestions:"- ????????? ??????????????? ???????????? -",DlgSpellProgress:"?????????????????? ?????? ???????????? (???????????????-?????????) ???????????? ??????...",DlgSpellNoMispell:"?????????????????? ?????? ???????????? : ????????? ????????? ?????????????????? (????????????????????????) ???????????? ????????? ??????",DlgSpellNoChanges:"?????????????????? ?????? ???????????? :????????? ???????????? ???????????? ???????????? ?????????",DlgSpellOneChange:"?????????????????? ?????? ???????????? : ?????? ???????????? ???????????? ?????????",DlgSpellManyChanges:"?????????????????? ?????? ???????????? : %1 ???????????? ???????????? ?????????",IeSpellDownload:"???????????????-???????????? ???????????????????????? ???????????? ???????????? ????????? ????????? ???????????? ?????? ????????? ???????????????????????? ???????????? ??????????????????????",DlgButtonText:"????????????????????? (??????????????????)",DlgButtonType:"??????????????????",DlgButtonTypeBtn:"?????????",DlgButtonTypeSbm:"??????????????????",DlgButtonTypeRst:"???????????????",DlgCheckboxName:"?????????",DlgCheckboxValue:"??????????????????",DlgCheckboxSelected:"???????????????????????????",DlgFormName:"?????????",DlgFormAction:"??????????????????",DlgFormMethod:"???????????????",DlgSelectName:"?????????",DlgSelectValue:"??????????????????",DlgSelectSize:"????????????",DlgSelectLines:"???????????????????????????",DlgSelectChkMulti:"?????? ?????? ?????????????????? ?????????????????? ??????????????? ?????????",DlgSelectOpAvail:"?????????????????? ??????????????????",DlgSelectOpText:"?????????????????????",DlgSelectOpValue:"??????????????????",DlgSelectBtnAdd:"???????????????",DlgSelectBtnModify:"???????????????",DlgSelectBtnUp:"?????????",DlgSelectBtnDown:"????????????",DlgSelectBtnSetValue:"???????????? ?????? ?????????????????? ????????? ????????????",DlgSelectBtnDelete:"???????????????",DlgTextareaName:"?????????",DlgTextareaCols:"????????????",DlgTextareaRows:"???????????????????????????",DlgTextName:"?????????",DlgTextValue:"??????????????????",DlgTextCharWidth:"????????????????????? ?????? ???????????????",DlgTextMaxChars:"?????????????????? ?????????????????????",DlgTextType:"????????????",DlgTextTypeText:"?????????????????????",DlgTextTypePass:"????????????????????????",DlgHiddenName:"?????????",DlgHiddenValue:"??????????????????",BulletedListProp:"??????????????? ???????????? ??????????????????????????????",NumberedListProp:"??????????????? ???????????? ??????????????????????????????",DlgLstStart:"????????????????????????",DlgLstType:"??????????????????",DlgLstTypeCircle:"?????????",DlgLstTypeDisc:"???????????????",DlgLstTypeSquare:"???????????????",DlgLstTypeNumbers:"????????? (1, 2, 3)",DlgLstTypeLCase:"???????????? ??????????????? (a, b, c)",DlgLstTypeUCase:"????????? ??????????????? (A, B, C)",DlgLstTypeSRoman:"???????????? ???????????? ????????? (i, ii, iii)",DlgLstTypeLRoman:"????????? ???????????? ????????? (I, II, III)",DlgDocGeneralTab:"??????",DlgDocBackTab:"????????????????????????????????????",DlgDocColorsTab:"????????? ?????? ?????????????????????",DlgDocMetaTab:"????????????????????????",DlgDocPageTitle:"????????? ??????????????????",DlgDocLangDir:"???????????? ??????????????? ?????? ????????????",DlgDocLangDirLTR:"??????????????? ?????? ??????????????? (LTR)",DlgDocLangDirRTL:"??????????????? ?????? ??????????????? (RTL)",DlgDocLangCode:"???????????? ?????????",DlgDocCharSet:"????????????????????? ????????? ???????????????????????????",DlgDocCharSetCE:"???????????? ????????????????????? (Central European)",DlgDocCharSetCT:"???????????? (Chinese Traditional Big5)",DlgDocCharSetCR:"????????????????????? (Cyrillic)",DlgDocCharSetGR:"????????? (Greek)",DlgDocCharSetJP:"?????????????????? (Japanese)",DlgDocCharSetKR:"?????????????????? (Korean)",DlgDocCharSetTR:"?????????????????? (Turkish)",DlgDocCharSetUN:"????????????????????? (UTF-8)",DlgDocCharSetWE:"?????????????????? ????????????????????? (Western European)",DlgDocCharSetOther:"???????????? ????????????????????? ????????? ???????????????????????????",DlgDocDocType:"????????????????????????????????? ?????????????????? ??????????????????",DlgDocDocTypeOther:"???????????? ????????????????????????????????? ?????????????????? ??????????????????",DlgDocIncXHTML:"XHTML ??????????????? ???????????????????????? ????????????",DlgDocBgColor:"???????????????????????????????????? ?????????",DlgDocBgImage:"???????????????????????????????????? ?????????????????? URL",DlgDocBgNoScroll:"????????????????????? ??? ???????????? ???????????? ????????????????????????????????????",DlgDocCText:"?????????????????????",DlgDocCLink:"????????????",DlgDocCVisited:"??????????????? ???????????? ????????? ????????????",DlgDocCActive:"?????????????????? ????????????",DlgDocMargins:"????????? ?????????????????????",DlgDocMaTop:"?????????",DlgDocMaLeft:"???????????????",DlgDocMaRight:"???????????????",DlgDocMaBottom:"????????????",DlgDocMeIndex:"????????????????????????????????? ???????????????????????? ??????????????????????????? (??????????????????????????? ?????? ????????? ????????????)",DlgDocMeDescr:"????????????????????????????????? ????????????????????????",DlgDocMeAuthor:"????????????",DlgDocMeCopy:"????????????????????????",DlgDocPreview:"????????????????????????",Templates:"???????????????????????????",DlgTemplatesTitle:"???????????????????????? ???????????????????????????",DlgTemplatesSelMsg:"??????????????? ????????? ????????? ???????????? ???????????? ??????????????????????????? ???????????????(????????????????????? ???????????????????????? ????????? ???????????? ???????????????):",DlgTemplatesLoading:"??????????????????????????? ???????????? ????????? ?????? ?????? ????????? ????????? ????????? ???????????????...",DlgTemplatesNoTpl:"(????????? ??????????????????????????? ?????????????????? ???????????? ???????????? ????????? ??????)",DlgTemplatesReplace:"????????? ?????????????????? ?????? ???????????????",DlgAboutAboutTab:"FCKEditor ?????? ???????????? ?????????",DlgAboutBrowserInfoTab:"????????????????????? ?????? ???????????? ?????????",DlgAboutLicenseTab:"????????????????????????",DlgAboutVersion:"???????????????",DlgAboutInfo:"???????????? ????????????????????? ?????? ???????????? ???????????? ???????????????:",DlgDivGeneralTab:"?????????????????????",DlgDivAdvancedTab:"??????????????????????????????",DlgDivStyle:"??????????????????",DlgDivInlineStyle:"?????????????????? ??????????????????"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/hr.js b/horde/services/editor/fckeditor/editor/lang/hr.js
deleted file mode 100644
index ee52698da..000000000
--- a/horde/services/editor/fckeditor/editor/lang/hr.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Smanji trake s alatima",ToolbarExpand:"Pro??iri trake s alatima",Save:"Snimi",NewPage:"Nova stranica",Preview:"Pregledaj",Cut:"Izre??i",Copy:"Kopiraj",Paste:"Zalijepi",PasteText:"Zalijepi kao ??isti tekst",PasteWord:"Zalijepi iz Worda",Print:"Ispi??i",SelectAll:"Odaberi sve",RemoveFormat:"Ukloni formatiranje",InsertLinkLbl:"Link",InsertLink:"Ubaci/promijeni link",RemoveLink:"Ukloni link",VisitLink:"Otvori link",Anchor:"Ubaci/promijeni sidro",AnchorDelete:"Ukloni sidro",InsertImageLbl:"Slika",InsertImage:"Ubaci/promijeni sliku",InsertFlashLbl:"Flash",InsertFlash:"Ubaci/promijeni Flash",InsertTableLbl:"Tablica",InsertTable:"Ubaci/promijeni tablicu",InsertLineLbl:"Linija",InsertLine:"Ubaci vodoravnu liniju",InsertSpecialCharLbl:"Posebni karakteri",InsertSpecialChar:"Ubaci posebne znakove",InsertSmileyLbl:"Smje??ko",InsertSmiley:"Ubaci smje??ka",About:"O FCKeditoru",Bold:"Podebljaj",Italic:"Ukosi",Underline:"Potcrtano",StrikeThrough:"Precrtano",Subscript:"Subscript",Superscript:"Superscript",LeftJustify:"Lijevo poravnanje",CenterJustify:"Sredi??nje poravnanje",RightJustify:"Desno poravnanje",BlockJustify:"Blok poravnanje",DecreaseIndent:"Pomakni ulijevo",IncreaseIndent:"Pomakni udesno",Blockquote:"Blockquote",CreateDiv:"Napravi Div kontejner",EditDiv:"Uredi Div kontejner",DeleteDiv:"Ukloni Div kontejner",Undo:"Poni??ti",Redo:"Ponovi",NumberedListLbl:"Broj??ana lista",NumberedList:"Ubaci/ukloni broj??anu listu",BulletedListLbl:"Obi??na lista",BulletedList:"Ubaci/ukloni obi??nu listu",ShowTableBorders:"Prika??i okvir tablice",ShowDetails:"Prika??i detalje",Style:"Stil",FontFormat:"Format",Font:"Font",FontSize:"Veli??ina",TextColor:"Boja teksta",BGColor:"Boja pozadine",Source:"K??d",Find:"Prona??i",Replace:"Zamijeni",SpellCheck:"Provjeri pravopis",UniversalKeyboard:"Univerzalna tipkovnica",PageBreakLbl:"Prijelom stranice",PageBreak:"Ubaci prijelom stranice",Form:"Form",Checkbox:"Checkbox",RadioButton:"Radio Button",TextField:"Text Field",Textarea:"Textarea",HiddenField:"Hidden Field",Button:"Button",SelectionField:"Selection Field",ImageButton:"Image Button",FitWindow:"Pove??aj veli??inu editora",ShowBlocks:"Prika??i blokove",EditLink:"Promijeni link",CellCM:"??elija",RowCM:"Red",ColumnCM:"Kolona",InsertRowAfter:"Ubaci red poslije",InsertRowBefore:"Ubaci red prije",DeleteRows:"Izbri??i redove",InsertColumnAfter:"Ubaci kolonu poslije",InsertColumnBefore:"Ubaci kolonu prije",DeleteColumns:"Izbri??i kolone",InsertCellAfter:"Ubaci ??eliju poslije",InsertCellBefore:"Ubaci ??eliju prije",DeleteCells:"Izbri??i ??elije",MergeCells:"Spoji ??elije",MergeRight:"Spoji desno",MergeDown:"Spoji dolje",HorizontalSplitCell:"Podijeli ??eliju vodoravno",VerticalSplitCell:"Podijeli ??eliju okomito",TableDelete:"Izbri??i tablicu",CellProperties:"Svojstva ??elije",TableProperties:"Svojstva tablice",ImageProperties:"Svojstva slike",FlashProperties:"Flash svojstva",AnchorProp:"Svojstva sidra",ButtonProp:"Image Button svojstva",CheckboxProp:"Checkbox svojstva",HiddenFieldProp:"Hidden Field svojstva",RadioButtonProp:"Radio Button svojstva",ImageButtonProp:"Image Button svojstva",TextFieldProp:"Text Field svojstva",SelectionFieldProp:"Selection svojstva",TextareaProp:"Textarea svojstva",FormProp:"Form svojstva",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",ProcessingXHTML:"Obra??ujem XHTML. Molimo pri??ekajte...",Done:"Zavr??io",PasteWordConfirm:"Tekst koji ??elite zalijepiti ??ini se da je kopiran iz Worda. ??elite li prije o??istiti tekst?",NotCompatiblePaste:"Ova naredba je dostupna samo u Internet Exploreru 5.5 ili novijem. ??elite li nastaviti bez ??i????enja?",UnknownToolbarItem:'Nepoznati ??lan trake s alatima "%1"',UnknownCommand:'Nepoznata naredba "%1"',NotImplemented:"Naredba nije implementirana",UnknownToolbarSet:'Traka s alatima "%1" ne postoji',NoActiveX:'Va??e postavke pretra??iva??a mogle bi ograni??iti neke od mogu??nosti editora. Morate uklju??iti opciju "Run ActiveX controls and plug-ins" u postavkama. Ukoliko to ne u??inite, mogu??e su razliite gre??ke tijekom rada.',BrowseServerBlocked:"Pretraiva?? nije mogu??e otvoriti. Provjerite da li je uklju??eno blokiranje pop-up prozora.",DialogBlocked:"Nije mogu??e otvoriti novi prozor. Provjerite da li je uklju??eno blokiranje pop-up prozora.",VisitLinkBlocked:"Nije mogu??e otvoriti novi prozor. Provjerite da li je uklju??eno blokiranje pop-up prozora.",DlgBtnOK:"OK",DlgBtnCancel:"Poni??ti",DlgBtnClose:"Zatvori",DlgBtnBrowseServer:"Pretra??i server",DlgAdvancedTag:"Napredno",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Molimo unesite URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Smjer jezika",DlgGenLangDirLtr:"S lijeva na desno (LTR)",DlgGenLangDirRtl:"S desna na lijevo (RTL)",DlgGenLangCode:"K??d jezika",DlgGenAccessKey:"Pristupna tipka",DlgGenName:"Naziv",DlgGenTabIndex:"Tab Indeks",DlgGenLongDescr:"Duga??ki opis URL",DlgGenClass:"Stylesheet klase",DlgGenTitle:"Advisory naslov",DlgGenContType:"Advisory vrsta sadr??aja",DlgGenLinkCharset:"Kodna stranica povezanih resursa",DlgGenStyle:"Stil",DlgImgTitle:"Svojstva slika",DlgImgInfoTab:"Info slike",DlgImgBtnUpload:"Po??alji na server",DlgImgURL:"URL",DlgImgUpload:"Po??alji",DlgImgAlt:"Alternativni tekst",DlgImgWidth:"??irina",DlgImgHeight:"Visina",DlgImgLockRatio:"Zaklju??aj odnos",DlgBtnResetSize:"Obri??i veli??inu",DlgImgBorder:"Okvir",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Poravnaj",DlgImgAlignLeft:"Lijevo",DlgImgAlignAbsBottom:"Abs dolje",DlgImgAlignAbsMiddle:"Abs sredina",DlgImgAlignBaseline:"Bazno",DlgImgAlignBottom:"Dolje",DlgImgAlignMiddle:"Sredina",DlgImgAlignRight:"Desno",DlgImgAlignTextTop:"Vrh teksta",DlgImgAlignTop:"Vrh",DlgImgPreview:"Pregledaj",DlgImgAlertUrl:"Unesite URL slike",DlgImgLinkTab:"Link",DlgFlashTitle:"Flash svojstva",DlgFlashChkPlay:"Auto Play",DlgFlashChkLoop:"Ponavljaj",DlgFlashChkMenu:"Omogu??i Flash izbornik",DlgFlashScale:"Omjer",DlgFlashScaleAll:"Prika??i sve",DlgFlashScaleNoBorder:"Bez okvira",DlgFlashScaleFit:"To??na veli??ina",DlgLnkWindowTitle:"Link",DlgLnkInfoTab:"Link Info",DlgLnkTargetTab:"Meta",DlgLnkType:"Link vrsta",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Sidro na ovoj stranici",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protokol",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Odaberi sidro",DlgLnkAnchorByName:"Po nazivu sidra",DlgLnkAnchorById:"Po Id elementa",DlgLnkNoAnchors:"(Nema dostupnih sidra)",DlgLnkEMail:"E-Mail adresa",DlgLnkEMailSubject:"Naslov",DlgLnkEMailBody:"Sadr??aj poruke",DlgLnkUpload:"Po??alji",DlgLnkBtnUpload:"Po??alji na server",DlgLnkTarget:"Meta",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Novi prozor (_blank)",DlgLnkTargetParent:"Roditeljski prozor (_parent)",DlgLnkTargetSelf:"Isti prozor (_self)",DlgLnkTargetTop:"Vr??ni prozor (_top)",DlgLnkTargetFrameName:"Ime ciljnog okvira",DlgLnkPopWinName:"Naziv popup prozora",DlgLnkPopWinFeat:"Mogu??nosti popup prozora",DlgLnkPopResize:"Promjenljive veli??ine",DlgLnkPopLocation:"Traka za lokaciju",DlgLnkPopMenu:"Izborna traka",DlgLnkPopScroll:"Scroll traka",DlgLnkPopStatus:"Statusna traka",DlgLnkPopToolbar:"Traka s alatima",DlgLnkPopFullScrn:"Cijeli ekran (IE)",DlgLnkPopDependent:"Ovisno (Netscape)",DlgLnkPopWidth:"??irina",DlgLnkPopHeight:"Visina",DlgLnkPopLeft:"Lijeva pozicija",DlgLnkPopTop:"Gornja pozicija",DlnLnkMsgNoUrl:"Molimo upi??ite URL link",DlnLnkMsgNoEMail:"Molimo upi??ite e-mail adresu",DlnLnkMsgNoAnchor:"Molimo odaberite sidro",DlnLnkMsgInvPopName:"Ime popup prozora mora po??eti sa slovom i ne smije sadr??avati razmake",DlgColorTitle:"Odaberite boju",DlgColorBtnClear:"Obri??i",DlgColorHighlight:"Osvijetli",DlgColorSelected:"Odaberi",DlgSmileyTitle:"Ubaci smje??ka",DlgSpecialCharTitle:"Odaberite posebni karakter",DlgTableTitle:"Svojstva tablice",DlgTableRows:"Redova",DlgTableColumns:"Kolona",DlgTableBorder:"Veli??ina okvira",DlgTableAlign:"Poravnanje",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Lijevo",DlgTableAlignCenter:"Sredi??nje",DlgTableAlignRight:"Desno",DlgTableWidth:"??irina",DlgTableWidthPx:"piksela",DlgTableWidthPc:"postotaka",DlgTableHeight:"Visina",DlgTableCellSpace:"Prostornost ??elija",DlgTableCellPad:"Razmak ??elija",DlgTableCaption:"Naslov",DlgTableSummary:"Sa??etak",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Svojstva ??elije",DlgCellWidth:"??irina",DlgCellWidthPx:"piksela",DlgCellWidthPc:"postotaka",DlgCellHeight:"Visina",DlgCellWordWrap:"Word Wrap",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Da",DlgCellWordWrapNo:"Ne",DlgCellHorAlign:"Vodoravno poravnanje",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Lijevo",DlgCellHorAlignCenter:"Sredi??nje",DlgCellHorAlignRight:"Desno",DlgCellVerAlign:"Okomito poravnanje",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Gornje",DlgCellVerAlignMiddle:"Sredni??nje",DlgCellVerAlignBottom:"Donje",DlgCellVerAlignBaseline:"Bazno",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Spajanje redova",DlgCellCollSpan:"Spajanje kolona",DlgCellBackColor:"Boja pozadine",DlgCellBorderColor:"Boja okvira",DlgCellBtnSelect:"Odaberi...",DlgFindAndReplaceTitle:"Prona??i i zamijeni",DlgFindTitle:"Prona??i",DlgFindFindBtn:"Prona??i",DlgFindNotFoundMsg:"Tra??eni tekst nije prona??en.",DlgReplaceTitle:"Zamijeni",DlgReplaceFindLbl:"Prona??i:",DlgReplaceReplaceLbl:"Zamijeni s:",DlgReplaceCaseChk:"Usporedi mala/velika slova",DlgReplaceReplaceBtn:"Zamijeni",DlgReplaceReplAllBtn:"Zamijeni sve",DlgReplaceWordChk:"Usporedi cijele rije??i",PasteErrorCut:"Sigurnosne postavke Va??eg pretra??iva??a ne dozvoljavaju operacije automatskog izrezivanja. Molimo koristite kraticu na tipkovnici (Ctrl+X).",PasteErrorCopy:"Sigurnosne postavke Va??eg pretra??iva??a ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tipkovnici (Ctrl+C).",PasteAsText:"Zalijepi kao ??isti tekst",PasteFromWord:"Zalijepi iz Worda",DlgPasteMsg2:"Molimo zaljepite unutar doljnjeg okvira koriste??i tipkovnicu (Ctrl+V) i kliknite OK.",DlgPasteSec:"Zbog sigurnosnih postavki Va??eg pretra??iva??a, editor nema direktan pristup Va??em me??uspremniku. Potrebno je ponovno zalijepiti tekst u ovaj prozor.",DlgPasteIgnoreFont:"Zanemari definiciju vrste fonta",DlgPasteRemoveStyles:"Ukloni definicije stilova",ColorAutomatic:"Automatski",ColorMoreColors:"Vi??e boja...",DocProps:"Svojstva dokumenta",DlgAnchorTitle:"Svojstva sidra",DlgAnchorName:"Ime sidra",DlgAnchorErrorName:"Molimo unesite ime sidra",DlgSpellNotInDic:"Nije u rje??niku",DlgSpellChangeTo:"Promijeni u",DlgSpellBtnIgnore:"Zanemari",DlgSpellBtnIgnoreAll:"Zanemari sve",DlgSpellBtnReplace:"Zamijeni",DlgSpellBtnReplaceAll:"Zamijeni sve",DlgSpellBtnUndo:"Vrati",DlgSpellNoSuggestions:"-Nema preporuke-",DlgSpellProgress:"Provjera u tijeku...",DlgSpellNoMispell:"Provjera zavr??ena: Nema gre??aka",DlgSpellNoChanges:"Provjera zavr??ena: Nije napravljena promjena",DlgSpellOneChange:"Provjera zavr??ena: Jedna rije?? promjenjena",DlgSpellManyChanges:"Provjera zavr??ena: Promijenjeno %1 rije??i",IeSpellDownload:"Provjera pravopisa nije instalirana. ??elite li skinuti provjeru pravopisa?",DlgButtonText:"Tekst (vrijednost)",DlgButtonType:"Vrsta",DlgButtonTypeBtn:"Gumb",DlgButtonTypeSbm:"Po??alji",DlgButtonTypeRst:"Poni??ti",DlgCheckboxName:"Ime",DlgCheckboxValue:"Vrijednost",DlgCheckboxSelected:"Odabrano",DlgFormName:"Ime",DlgFormAction:"Akcija",DlgFormMethod:"Metoda",DlgSelectName:"Ime",DlgSelectValue:"Vrijednost",DlgSelectSize:"Veli??ina",DlgSelectLines:"linija",DlgSelectChkMulti:"Dozvoli vi??estruki odabir",DlgSelectOpAvail:"Dostupne opcije",DlgSelectOpText:"Tekst",DlgSelectOpValue:"Vrijednost",DlgSelectBtnAdd:"Dodaj",DlgSelectBtnModify:"Promijeni",DlgSelectBtnUp:"Gore",DlgSelectBtnDown:"Dolje",DlgSelectBtnSetValue:"Postavi kao odabranu vrijednost",DlgSelectBtnDelete:"Obri??i",DlgTextareaName:"Ime",DlgTextareaCols:"Kolona",DlgTextareaRows:"Redova",DlgTextName:"Ime",DlgTextValue:"Vrijednost",DlgTextCharWidth:"??irina",DlgTextMaxChars:"Najvi??e karaktera",DlgTextType:"Vrsta",DlgTextTypeText:"Tekst",DlgTextTypePass:"??ifra",DlgHiddenName:"Ime",DlgHiddenValue:"Vrijednost",BulletedListProp:"Svojstva liste",NumberedListProp:"Svojstva broj??ane liste",DlgLstStart:"Po??etak",DlgLstType:"Vrsta",DlgLstTypeCircle:"Krug",DlgLstTypeDisc:"Disk",DlgLstTypeSquare:"Kvadrat",DlgLstTypeNumbers:"Brojevi (1, 2, 3)",DlgLstTypeLCase:"Mala slova (a, b, c)",DlgLstTypeUCase:"Velika slova (A, B, C)",DlgLstTypeSRoman:"Male rimske brojke (i, ii, iii)",DlgLstTypeLRoman:"Velike rimske brojke (I, II, III)",DlgDocGeneralTab:"Op??enito",DlgDocBackTab:"Pozadina",DlgDocColorsTab:"Boje i margine",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Naslov stranice",DlgDocLangDir:"Smjer jezika",DlgDocLangDirLTR:"S lijeva na desno",DlgDocLangDirRTL:"S desna na lijevo",DlgDocLangCode:"K??d jezika",DlgDocCharSet:"Enkodiranje znakova",DlgDocCharSetCE:"Sredi??nja Europa",DlgDocCharSetCT:"Tradicionalna kineska (Big5)",DlgDocCharSetCR:"??irilica",DlgDocCharSetGR:"Gr??ka",DlgDocCharSetJP:"Japanska",DlgDocCharSetKR:"Koreanska",DlgDocCharSetTR:"Turska",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Zapadna Europa",DlgDocCharSetOther:"Ostalo enkodiranje znakova",DlgDocDocType:"Zaglavlje vrste dokumenta",DlgDocDocTypeOther:"Ostalo zaglavlje vrste dokumenta",DlgDocIncXHTML:"Ubaci XHTML deklaracije",DlgDocBgColor:"Boja pozadine",DlgDocBgImage:"URL slike pozadine",DlgDocBgNoScroll:"Pozadine se ne pomi??e",DlgDocCText:"Tekst",DlgDocCLink:"Link",DlgDocCVisited:"Posje??eni link",DlgDocCActive:"Aktivni link",DlgDocMargins:"Margine stranice",DlgDocMaTop:"Vrh",DlgDocMaLeft:"Lijevo",DlgDocMaRight:"Desno",DlgDocMaBottom:"Dolje",DlgDocMeIndex:"Klju??ne rije??i dokumenta (odvojene zarezom)",DlgDocMeDescr:"Opis dokumenta",DlgDocMeAuthor:"Autor",DlgDocMeCopy:"Autorska prava",DlgDocPreview:"Pregledaj",Templates:"Predlo??ci",DlgTemplatesTitle:"Predlo??ci sadr??aja",DlgTemplatesSelMsg:"Molimo odaberite predlo??ak koji ??elite otvoriti (stvarni sadr??aj ??e biti izgubljen):",DlgTemplatesLoading:"U??itavam listu predlo??aka. Molimo pri??ekajte...",DlgTemplatesNoTpl:"(Nema definiranih predlo??aka)",DlgTemplatesReplace:"Zamijeni trenutne sadr??aje",DlgAboutAboutTab:"O FCKEditoru",DlgAboutBrowserInfoTab:"Podaci o pretra??iva??u",DlgAboutLicenseTab:"Licenca",DlgAboutVersion:"ina??ica",DlgAboutInfo:"Za vi??e informacija posjetite",DlgDivGeneralTab:"Op??enito",DlgDivAdvancedTab:"Napredno",DlgDivStyle:"Stil",DlgDivInlineStyle:"Stil u redu"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/hu.js b/horde/services/editor/fckeditor/editor/lang/hu.js
deleted file mode 100644
index e1b02fcf2..000000000
--- a/horde/services/editor/fckeditor/editor/lang/hu.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Eszk??zt??r elrejt??se",ToolbarExpand:"Eszk??zt??r megjelen??t??se",Save:"Ment??s",NewPage:"??j oldal",Preview:"El??n??zet",Cut:"Kiv??g??s",Copy:"M??sol??s",Paste:"Beilleszt??s",PasteText:"Beilleszt??s form??z??s n??lk??l",PasteWord:"Beilleszt??s Word-b??l",Print:"Nyomtat??s",SelectAll:"Mindent kijel??l",RemoveFormat:"Form??z??s elt??vol??t??sa",InsertLinkLbl:"Hivatkoz??s",InsertLink:"Hivatkoz??s beilleszt??se/m??dos??t??sa",RemoveLink:"Hivatkoz??s t??rl??se",VisitLink:"Open Link",Anchor:"Horgony beilleszt??se/szerkeszt??se",AnchorDelete:"Horgony elt??vol??t??sa",InsertImageLbl:"K??p",InsertImage:"K??p beilleszt??se/m??dos??t??sa",InsertFlashLbl:"Flash",InsertFlash:"Flash beilleszt??se, m??dos??t??sa",InsertTableLbl:"T??bl??zat",InsertTable:"T??bl??zat beilleszt??se/m??dos??t??sa",InsertLineLbl:"Vonal",InsertLine:"Elv??laszt??vonal beilleszt??se",InsertSpecialCharLbl:"Speci??lis karakter",InsertSpecialChar:"Speci??lis karakter beilleszt??se",InsertSmileyLbl:"Hangulatjelek",InsertSmiley:"Hangulatjelek beilleszt??se",About:"FCKeditor n??vjegy",Bold:"F??lk??v??r",Italic:"D??lt",Underline:"Al??h??zott",StrikeThrough:"??th??zott",Subscript:"Als?? index",Superscript:"Fels?? index",LeftJustify:"Balra",CenterJustify:"K??z??pre",RightJustify:"Jobbra",BlockJustify:"Sorkiz??rt",DecreaseIndent:"Beh??z??s cs??kkent??se",IncreaseIndent:"Beh??z??s n??vel??se",Blockquote:"Id??zet blokk",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Visszavon??s",Redo:"Ism??tl??s",NumberedListLbl:"Sz??moz??s",NumberedList:"Sz??moz??s beilleszt??se/t??rl??se",BulletedListLbl:"Felsorol??s",BulletedList:"Felsorol??s beilleszt??se/t??rl??se",ShowTableBorders:"T??bl??zat szeg??ly mutat??sa",ShowDetails:"R??szletek mutat??sa",Style:"St??lus",FontFormat:"Form??tum",Font:"Bet??t??pus",FontSize:"M??ret",TextColor:"Bet??sz??n",BGColor:"H??tt??rsz??n",Source:"Forr??sk??d",Find:"Keres??s",Replace:"Csere",SpellCheck:"Helyes??r??s-ellen??rz??s",UniversalKeyboard:"Univerz??lis billenty??zet",PageBreakLbl:"Oldalt??r??s",PageBreak:"Oldalt??r??s beilleszt??se",Form:"??rlap",Checkbox:"Jel??l??n??gyzet",RadioButton:"V??laszt??gomb",TextField:"Sz??vegmez??",Textarea:"Sz??vegter??let",HiddenField:"Rejtettmez??",Button:"Gomb",SelectionField:"Leg??rd??l?? lista",ImageButton:"K??pgomb",FitWindow:"Maximaliz??l??s",ShowBlocks:"Blokkok megjelen??t??se",EditLink:"Hivatkoz??s m??dos??t??sa",CellCM:"Cella",RowCM:"Sor",ColumnCM:"Oszlop",InsertRowAfter:"Sor beilleszt??se az aktu??lis sor m??g??",InsertRowBefore:"Sor beilleszt??se az aktu??lis sor el??",DeleteRows:"Sorok t??rl??se",InsertColumnAfter:"Oszlop beilleszt??se az aktu??lis oszlop m??g??",InsertColumnBefore:"Oszlop beilleszt??se az aktu??lis oszlop el??",DeleteColumns:"Oszlopok t??rl??se",InsertCellAfter:"Cella beilleszt??se az aktu??lis cella m??g??",InsertCellBefore:"Cella beilleszt??se az aktu??lis cella el??",DeleteCells:"Cell??k t??rl??se",MergeCells:"Cell??k egyes??t??se",MergeRight:"Cell??k egyes??t??se jobbra",MergeDown:"Cell??k egyes??t??se lefel??",HorizontalSplitCell:"Cell??k sz??tv??laszt??sa v??zszintesen",VerticalSplitCell:"Cell??k sz??tv??laszt??sa f??gg??legesen",TableDelete:"T??bl??zat t??rl??se",CellProperties:"Cella tulajdons??gai",TableProperties:"T??bl??zat tulajdons??gai",ImageProperties:"K??p tulajdons??gai",FlashProperties:"Flash tulajdons??gai",AnchorProp:"Horgony tulajdons??gai",ButtonProp:"Gomb tulajdons??gai",CheckboxProp:"Jel??l??n??gyzet tulajdons??gai",HiddenFieldProp:"Rejtett mez?? tulajdons??gai",RadioButtonProp:"V??laszt??gomb tulajdons??gai",ImageButtonProp:"K??pgomb tulajdons??gai",TextFieldProp:"Sz??vegmez?? tulajdons??gai",SelectionFieldProp:"Leg??rd??l?? lista tulajdons??gai",TextareaProp:"Sz??vegter??let tulajdons??gai",FormProp:"??rlap tulajdons??gai",FontFormats:"Norm??l;Form??zott;C??msor;Fejl??c 1;Fejl??c 2;Fejl??c 3;Fejl??c 4;Fejl??c 5;Fejl??c 6;Bekezd??s (DIV)",ProcessingXHTML:"XHTML feldolgoz??sa. K??rem v??rjon...",Done:"K??sz",PasteWordConfirm:"A beilleszteni k??v??nt sz??veg Word-b??l van m??solva. El k??v??nja t??vol??tani a form??z??st a beilleszt??s el??tt?",NotCompatiblePaste:"Ez a parancs csak Internet Explorer 5.5 verzi??t??l haszn??lhat??. Megpr??b??lja beilleszteni a sz??veget az eredeti form??z??ssal?",UnknownToolbarItem:'Ismeretlen eszk??zt??r elem "%1"',UnknownCommand:'Ismeretlen parancs "%1"',NotImplemented:"A parancs nem hajthat?? v??gre",UnknownToolbarSet:'Az eszk??zk??szlet "%1" nem l??tezik',NoActiveX:'A b??ng??sz?? biztons??gi be??ll??t??sai korl??tozz??k a szerkeszt?? lehet??s??geit. Enged??lyezni kell ezt az opci??t: "Run ActiveX controls and plug-ins". Ett??l f??ggetlen??l el??fordulhatnak hiba??zenetek ill. bizonyos funkci??k hi??nyozhatnak.',BrowseServerBlocked:"Nem lehet megnyitni a f??jlb??ng??sz??t. Bizonyosodjon meg r??la, hogy a felbukkan?? ablakok enged??lyezve vannak.",DialogBlocked:"Nem lehet megnyitni a p??rbesz??dablakot. Bizonyosodjon meg r??la, hogy a felbukkan?? ablakok enged??lyezve vannak.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"Rendben",DlgBtnCancel:"M??gsem",DlgBtnClose:"Bez??r??s",DlgBtnBrowseServer:"B??ng??sz??s a szerveren",DlgAdvancedTag:"Tov??bbi opci??k",DlgOpOther:"Egy??b",DlgInfoTab:"Alaptulajdons??gok",DlgAlertUrl:"Illessze be a webc??met",DlgGenNotSet:"",DlgGenId:"Azonos??t??",DlgGenLangDir:"??r??s ir??nya",DlgGenLangDirLtr:"Balr??l jobbra",DlgGenLangDirRtl:"Jobbr??l balra",DlgGenLangCode:"Nyelv k??dja",DlgGenAccessKey:"Billenty??kombin??ci??",DlgGenName:"N??v",DlgGenTabIndex:"Tabul??tor index",DlgGenLongDescr:"R??szletes le??r??s webc??me",DlgGenClass:"St??lusk??szlet",DlgGenTitle:"S??g??cimke",DlgGenContType:"S??g?? tartalomt??pusa",DlgGenLinkCharset:"Hivatkozott tartalom k??dlapja",DlgGenStyle:"St??lus",DlgImgTitle:"K??p tulajdons??gai",DlgImgInfoTab:"Alaptulajdons??gok",DlgImgBtnUpload:"K??ld??s a szerverre",DlgImgURL:"Hivatkoz??s",DlgImgUpload:"Felt??lt??s",DlgImgAlt:"Bubor??k sz??veg",DlgImgWidth:"Sz??less??g",DlgImgHeight:"Magass??g",DlgImgLockRatio:"Ar??ny megtart??sa",DlgBtnResetSize:"Eredeti m??ret",DlgImgBorder:"Keret",DlgImgHSpace:"V??zsz. t??v",DlgImgVSpace:"F??gg. t??v",DlgImgAlign:"Igaz??t??s",DlgImgAlignLeft:"Bal",DlgImgAlignAbsBottom:"Legalj??ra",DlgImgAlignAbsMiddle:"K??zep??re",DlgImgAlignBaseline:"Alapvonalhoz",DlgImgAlignBottom:"Alj??ra",DlgImgAlignMiddle:"K??z??pre",DlgImgAlignRight:"Jobbra",DlgImgAlignTextTop:"Sz??veg tetej??re",DlgImgAlignTop:"Tetej??re",DlgImgPreview:"El??n??zet",DlgImgAlertUrl:"T??ltse ki a k??p webc??m??t",DlgImgLinkTab:"Hivatkoz??s",DlgFlashTitle:"Flash tulajdons??gai",DlgFlashChkPlay:"Automata lej??tsz??s",DlgFlashChkLoop:"Folyamatosan",DlgFlashChkMenu:"Flash men?? enged??lyez??se",DlgFlashScale:"M??retez??s",DlgFlashScaleAll:"Mindent mutat",DlgFlashScaleNoBorder:"Keret n??lk??l",DlgFlashScaleFit:"Teljes kit??lt??s",DlgLnkWindowTitle:"Hivatkoz??s tulajdons??gai",DlgLnkInfoTab:"Alaptulajdons??gok",DlgLnkTargetTab:"Megjelen??t??s",DlgLnkType:"Hivatkoz??s t??pusa",DlgLnkTypeURL:"Webc??m",DlgLnkTypeAnchor:"Horgony az oldalon",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protokoll",DlgLnkProtoOther:"",DlgLnkURL:"Webc??m",DlgLnkAnchorSel:"Horgony v??laszt??sa",DlgLnkAnchorByName:"Horgony n??v szerint",DlgLnkAnchorById:"Azonos??t?? szerint",DlgLnkNoAnchors:"(Nincs horgony a dokumentumban)",DlgLnkEMail:"E-Mail c??m",DlgLnkEMailSubject:"??zenet t??rgya",DlgLnkEMailBody:"??zenet",DlgLnkUpload:"Felt??lt??s",DlgLnkBtnUpload:"K??ld??s a szerverre",DlgLnkTarget:"Tartalom megjelen??t??se",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"??j ablakban (_blank)",DlgLnkTargetParent:"Sz??l?? ablakban (_parent)",DlgLnkTargetSelf:"Azonos ablakban (_self)",DlgLnkTargetTop:"Legfels?? ablakban (_top)",DlgLnkTargetFrameName:"Keret neve",DlgLnkPopWinName:"Felugr?? ablak neve",DlgLnkPopWinFeat:"Felugr?? ablak jellemz??i",DlgLnkPopResize:"M??retezhet??",DlgLnkPopLocation:"C??msor",DlgLnkPopMenu:"Men?? sor",DlgLnkPopScroll:"G??rd??t??s??v",DlgLnkPopStatus:"??llapotsor",DlgLnkPopToolbar:"Eszk??zt??r",DlgLnkPopFullScrn:"Teljes k??perny?? (csak IE)",DlgLnkPopDependent:"Sz??l??h??z kapcsolt (csak Netscape)",DlgLnkPopWidth:"Sz??less??g",DlgLnkPopHeight:"Magass??g",DlgLnkPopLeft:"Bal poz??ci??",DlgLnkPopTop:"Fels?? poz??ci??",DlnLnkMsgNoUrl:"Adja meg a hivatkoz??s webc??m??t",DlnLnkMsgNoEMail:"Adja meg az E-Mail c??met",DlnLnkMsgNoAnchor:"V??lasszon egy horgonyt",DlnLnkMsgInvPopName:"A felbukkan?? ablak neve alfanumerikus karakterrel kezd??dj??n, valamint ne tartalmazzon sz??k??zt",DlgColorTitle:"Sz??nv??laszt??s",DlgColorBtnClear:"T??rl??s",DlgColorHighlight:"El??n??zet",DlgColorSelected:"Kiv??lasztott",DlgSmileyTitle:"Hangulatjel besz??r??sa",DlgSpecialCharTitle:"Speci??lis karakter v??laszt??sa",DlgTableTitle:"T??bl??zat tulajdons??gai",DlgTableRows:"Sorok",DlgTableColumns:"Oszlopok",DlgTableBorder:"Szeg??lym??ret",DlgTableAlign:"Igaz??t??s",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Balra",DlgTableAlignCenter:"K??z??pre",DlgTableAlignRight:"Jobbra",DlgTableWidth:"Sz??less??g",DlgTableWidthPx:"k??ppont",DlgTableWidthPc:"sz??zal??k",DlgTableHeight:"Magass??g",DlgTableCellSpace:"Cella t??rk??z",DlgTableCellPad:"Cella bels?? marg??",DlgTableCaption:"Felirat",DlgTableSummary:"Le??r??s",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Cella tulajdons??gai",DlgCellWidth:"Sz??less??g",DlgCellWidthPx:"k??ppont",DlgCellWidthPc:"sz??zal??k",DlgCellHeight:"Magass??g",DlgCellWordWrap:"Sort??r??s",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Igen",DlgCellWordWrapNo:"Nem",DlgCellHorAlign:"V??zsz. igaz??t??s",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Balra",DlgCellHorAlignCenter:"K??z??pre",DlgCellHorAlignRight:"Jobbra",DlgCellVerAlign:"F??gg. igaz??t??s",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Tetej??re",DlgCellVerAlignMiddle:"K??z??pre",DlgCellVerAlignBottom:"Alj??ra",DlgCellVerAlignBaseline:"Egyvonalba",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Sorok egyes??t??se",DlgCellCollSpan:"Oszlopok egyes??t??se",DlgCellBackColor:"H??tt??rsz??n",DlgCellBorderColor:"Szeg??lysz??n",DlgCellBtnSelect:"Kiv??laszt??s...",DlgFindAndReplaceTitle:"Keres??s ??s csere",DlgFindTitle:"Keres??s",DlgFindFindBtn:"Keres??s",DlgFindNotFoundMsg:"A keresett sz??veg nem tal??lhat??.",DlgReplaceTitle:"Csere",DlgReplaceFindLbl:"Keresett sz??veg:",DlgReplaceReplaceLbl:"Csere erre:",DlgReplaceCaseChk:"kis- ??s nagybet?? megk??l??nb??ztet??se",DlgReplaceReplaceBtn:"Csere",DlgReplaceReplAllBtn:"Az ??sszes cser??je",DlgReplaceWordChk:"csak ha ez a teljes sz??",PasteErrorCut:"A b??ng??sz?? biztons??gi be??ll??t??sai nem enged??lyezik a szerkeszt??nek, hogy v??grehajtsa a kiv??g??s m??veletet. Haszn??lja az al??bbi billenty??kombin??ci??t (Ctrl+X).",PasteErrorCopy:"A b??ng??sz?? biztons??gi be??ll??t??sai nem enged??lyezik a szerkeszt??nek, hogy v??grehajtsa a m??sol??s m??veletet. Haszn??lja az al??bbi billenty??kombin??ci??t (Ctrl+X).",PasteAsText:"Beilleszt??s form??zatlan sz??vegk??nt",PasteFromWord:"Beilleszt??s Word-b??l",DlgPasteMsg2:"M??solja be az al??bbi mez??be a Ctrl+V billenty??k lenyom??s??val, majd nyomjon Rendben-t.",DlgPasteSec:"A b??ng??sz?? biztons??gi be??ll??t??sai miatt a szerkeszt?? nem k??pes hozz??f??rni a v??g??lap adataihoz. Illeszd be ??jra ebben az ablakban.",DlgPasteIgnoreFont:"Bet?? form??z??sok megsz??ntet??se",DlgPasteRemoveStyles:"St??lusok elt??vol??t??sa",ColorAutomatic:"Automatikus",ColorMoreColors:"Tov??bbi sz??nek...",DocProps:"Dokumentum tulajdons??gai",DlgAnchorTitle:"Horgony tulajdons??gai",DlgAnchorName:"Horgony neve",DlgAnchorErrorName:"K??rem adja meg a horgony nev??t",DlgSpellNotInDic:"Nincs a sz??t??rban",DlgSpellChangeTo:"M??dos??t??s",DlgSpellBtnIgnore:"Kihagyja",DlgSpellBtnIgnoreAll:"Mindet kihagyja",DlgSpellBtnReplace:"Csere",DlgSpellBtnReplaceAll:"??sszes cser??je",DlgSpellBtnUndo:"Visszavon??s",DlgSpellNoSuggestions:"Nincs javaslat",DlgSpellProgress:"Helyes??r??s-ellen??rz??s folyamatban...",DlgSpellNoMispell:"Helyes??r??s-ellen??rz??s k??sz: Nem tal??ltam hib??t",DlgSpellNoChanges:"Helyes??r??s-ellen??rz??s k??sz: Nincs v??ltoztatott sz??",DlgSpellOneChange:"Helyes??r??s-ellen??rz??s k??sz: Egy sz?? cser??lve",DlgSpellManyChanges:"Helyes??r??s-ellen??rz??s k??sz: %1 sz?? cser??lve",IeSpellDownload:"A helyes??r??s-ellen??rz?? nincs telep??tve. Szeretn?? let??lteni most?",DlgButtonText:"Sz??veg (??rt??k)",DlgButtonType:"T??pus",DlgButtonTypeBtn:"Gomb",DlgButtonTypeSbm:"K??ld??s",DlgButtonTypeRst:"Alaphelyzet",DlgCheckboxName:"N??v",DlgCheckboxValue:"??rt??k",DlgCheckboxSelected:"Kiv??lasztott",DlgFormName:"N??v",DlgFormAction:"Adatfeldolgoz??st v??gz?? hivatkoz??s",DlgFormMethod:"Adatk??ld??s m??dja",DlgSelectName:"N??v",DlgSelectValue:"??rt??k",DlgSelectSize:"M??ret",DlgSelectLines:"sor",DlgSelectChkMulti:"t??bb sor is kiv??laszthat??",DlgSelectOpAvail:"El??rhet?? opci??k",DlgSelectOpText:"Sz??veg",DlgSelectOpValue:"??rt??k",DlgSelectBtnAdd:"Hozz??ad",DlgSelectBtnModify:"M??dos??t",DlgSelectBtnUp:"Fel",DlgSelectBtnDown:"Le",DlgSelectBtnSetValue:"Legyen az alap??rtelmezett ??rt??k",DlgSelectBtnDelete:"T??r??l",DlgTextareaName:"N??v",DlgTextareaCols:"Karakterek sz??ma egy sorban",DlgTextareaRows:"Sorok sz??ma",DlgTextName:"N??v",DlgTextValue:"??rt??k",DlgTextCharWidth:"Megjelen??tett karakterek sz??ma",DlgTextMaxChars:"Maxim??lis karaktersz??m",DlgTextType:"T??pus",DlgTextTypeText:"Sz??veg",DlgTextTypePass:"Jelsz??",DlgHiddenName:"N??v",DlgHiddenValue:"??rt??k",BulletedListProp:"Felsorol??s tulajdons??gai",NumberedListProp:"Sz??moz??s tulajdons??gai",DlgLstStart:"Start",DlgLstType:"Form??tum",DlgLstTypeCircle:"K??r",DlgLstTypeDisc:"Lemez",DlgLstTypeSquare:"N??gyzet",DlgLstTypeNumbers:"Sz??mok (1, 2, 3)",DlgLstTypeLCase:"Kisbet??k (a, b, c)",DlgLstTypeUCase:"Nagybet??k (A, B, C)",DlgLstTypeSRoman:"Kis r??mai sz??mok (i, ii, iii)",DlgLstTypeLRoman:"Nagy r??mai sz??mok (I, II, III)",DlgDocGeneralTab:"??ltal??nos",DlgDocBackTab:"H??tt??r",DlgDocColorsTab:"Sz??nek ??s marg??k",DlgDocMetaTab:"Meta adatok",DlgDocPageTitle:"Oldalc??m",DlgDocLangDir:"??r??s ir??nya",DlgDocLangDirLTR:"Balr??l jobbra",DlgDocLangDirRTL:"Jobbr??l balra",DlgDocLangCode:"Nyelv k??d",DlgDocCharSet:"Karakterk??dol??s",DlgDocCharSetCE:"K??z??p-Eur??pai",DlgDocCharSetCT:"K??nai Tradicion??lis (Big5)",DlgDocCharSetCR:"Cyrill",DlgDocCharSetGR:"G??r??g",DlgDocCharSetJP:"Jap??n",DlgDocCharSetKR:"Koreai",DlgDocCharSetTR:"T??r??k",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Nyugat-Eur??pai",DlgDocCharSetOther:"M??s karakterk??dol??s",DlgDocDocType:"Dokumentum t??pus fejl??c",DlgDocDocTypeOther:"M??s dokumentum t??pus fejl??c",DlgDocIncXHTML:"XHTML deklar??ci??k beilleszt??se",DlgDocBgColor:"H??tt??rsz??n",DlgDocBgImage:"H??tt??rk??p c??m",DlgDocBgNoScroll:"Nem g??rd??thet?? h??tt??r",DlgDocCText:"Sz??veg",DlgDocCLink:"C??m",DlgDocCVisited:"L??togatott c??m",DlgDocCActive:"Akt??v c??m",DlgDocMargins:"Oldal marg??k",DlgDocMaTop:"Fels??",DlgDocMaLeft:"Bal",DlgDocMaRight:"Jobb",DlgDocMaBottom:"Als??",DlgDocMeIndex:"Dokumentum keres??szavak (vessz??vel elv??lasztva)",DlgDocMeDescr:"Dokumentum le??r??s",DlgDocMeAuthor:"Szerz??",DlgDocMeCopy:"Szerz??i jog",DlgDocPreview:"El??n??zet",Templates:"Sablonok",DlgTemplatesTitle:"El??rhet?? sablonok",DlgTemplatesSelMsg:"V??lassza ki melyik sablon ny??ljon meg a szerkeszt??ben (a jelenlegi tartalom elveszik):",DlgTemplatesLoading:"Sablon lista bet??lt??se. Kis t??relmet...",DlgTemplatesNoTpl:"(Nincs sablon megadva)",DlgTemplatesReplace:"Kicser??li a jelenlegi tartalmat",DlgAboutAboutTab:"N??vjegy",DlgAboutBrowserInfoTab:"B??ng??sz?? inform??ci??",DlgAboutLicenseTab:"Licensz",DlgAboutVersion:"verzi??",DlgAboutInfo:"Tov??bbi inform??ci??k??rt l??togasson el ide:",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/is.js b/horde/services/editor/fckeditor/editor/lang/is.js
deleted file mode 100644
index 562566d9a..000000000
--- a/horde/services/editor/fckeditor/editor/lang/is.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Fela verkstiku",ToolbarExpand:"S??na verkstiku",Save:"Vista",NewPage:"N?? s????a",Preview:"Forsko??a",Cut:"Klippa",Copy:"Afrita",Paste:"L??ma",PasteText:"L??ma ??sni??inn texta",PasteWord:"L??ma ??r Word",Print:"Prenta",SelectAll:"Velja allt",RemoveFormat:"Fjarl??gja sni??",InsertLinkLbl:"Stikla",InsertLink:"Stofna/breyta stiklu",RemoveLink:"Fjarl??gja stiklu",VisitLink:"Opna stiklus????u",Anchor:"Stofna/breyta kaflamerki",AnchorDelete:"Ey??a kaflamerki",InsertImageLbl:"Setja inn mynd",InsertImage:"Setja inn/breyta mynd",InsertFlashLbl:"Flash",InsertFlash:"Setja inn/breyta Flash",InsertTableLbl:"Tafla",InsertTable:"Setja inn/breyta t??flu",InsertLineLbl:"L??na",InsertLine:"L????r??tt l??na",InsertSpecialCharLbl:"Merki",InsertSpecialChar:"Setja inn merki",InsertSmileyLbl:"Svipur",InsertSmiley:"Setja upp svip",About:"Um FCKeditor",Bold:"Feitletra??",Italic:"Sk??letra??",Underline:"Undirstrika??",StrikeThrough:"Yfirstrika??",Subscript:"Ni??urskrifa??",Superscript:"Uppskrifa??",LeftJustify:"Vinstrij??fnun",CenterJustify:"Mi??ja texta",RightJustify:"H??grij??fnun",BlockJustify:"Jafna b????um megin",DecreaseIndent:"Auka inndr??tt",IncreaseIndent:"Minnka inndr??tt",Blockquote:"Inndr??ttur",CreateDiv:"B??a til DIV-h??sil",EditDiv:"Breyta DIV-h??sli",DeleteDiv:"Ey??a DIV-h??sli",Undo:"Afturkalla",Redo:"H??tta vi?? afturk??llun",NumberedListLbl:"N??mera??ur listi",NumberedList:"Setja inn/fella n??mera??an lista",BulletedListLbl:"Punktalisti",BulletedList:"Setja inn/fella punktalista",ShowTableBorders:"S??na t??flugrind",ShowDetails:"S??na sm??atri??i",Style:"St??lflokkur",FontFormat:"St??lsni??",Font:"Leturger?? ",FontSize:"Leturst??r?? ",TextColor:"Litur texta",BGColor:"Bakgrunnslitur",Source:"K????i",Find:"Leita",Replace:"Skipta ??t",SpellCheck:"Villuleit",UniversalKeyboard:"Hnattr??nt lyklabor??",PageBreakLbl:"S????uskil",PageBreak:"Setja inn s????uskil",Form:"Setja inn innsl??ttarform",Checkbox:"Setja inn h??kunarreit",RadioButton:"Setja inn valhnapp",TextField:"Setja inn textareit",Textarea:"Setja inn textasv????i",HiddenField:"Setja inn fali?? sv????i",Button:"Setja inn hnapp",SelectionField:"Setja inn lista",ImageButton:"Setja inn myndahnapp",FitWindow:"Sko??a ritil ?? fullri st??r??",ShowBlocks:"S??na blokkir",EditLink:"Breyta stiklu",CellCM:"Reitur",RowCM:"R????",ColumnCM:"D??lkur",InsertRowAfter:"Skj??ta inn r???? fyrir ne??an",InsertRowBefore:"Skj??ta inn r???? fyrir ofan",DeleteRows:"Ey??a r????",InsertColumnAfter:"Skj??ta inn d??lki h??gra megin",InsertColumnBefore:"Skj??ta inn d??lki vinstra megin",DeleteColumns:"Fella d??lk",InsertCellAfter:"Skj??ta inn reiti fyrir framan",InsertCellBefore:"Skj??ta inn reiti fyrir aftan",DeleteCells:"Fella reit",MergeCells:"Sameina reiti",MergeRight:"Sameina til h??gri",MergeDown:"Sameina ni??ur ?? vi??",HorizontalSplitCell:"Klj??fa reit l??r??tt",VerticalSplitCell:"Klj??fa reit l????r??tt",TableDelete:"Fella t??flu",CellProperties:"Eigindi reits",TableProperties:"Eigindi t??flu",ImageProperties:"Eigindi myndar",FlashProperties:"Eigindi Flash",AnchorProp:"Eigindi kaflamerkis",ButtonProp:"Eigindi hnapps",CheckboxProp:"Eigindi markreits",HiddenFieldProp:"Eigindi falins sv????is",RadioButtonProp:"Eigindi valhnapps",ImageButtonProp:"Eigindi myndahnapps",TextFieldProp:"Eigindi textareits",SelectionFieldProp:"Eigindi lista",TextareaProp:"Eigindi textasv????is",FormProp:"Eigindi innsl??ttarforms",FontFormats:"Venjulegt letur;Forsni??i??;Vistfang;Fyrirs??gn 1;Fyrirs??gn 2;Fyrirs??gn 3;Fyrirs??gn 4;Fyrirs??gn 5;Fyrirs??gn 6;Venjulegt (DIV)",ProcessingXHTML:"Me??h??ndla XHTML...",Done:"Tilb??i??",PasteWordConfirm:"Textinn sem ???? ??tlar a?? l??ma vir??ist koma ??r Word. Viltu hreinsa ????arfar Word-skipanir ??r honum?",NotCompatiblePaste:"??essi a??ger?? er bundin vi?? Internet Explorer 5.5 og n??rri. Viltu l??ma textann ??n ??ess a?? hreinsa hann?",UnknownToolbarItem:'????ekktur hlutur ?? verkstiku "%1"!',UnknownCommand:'????ekkt skipanaheiti "%1"!',NotImplemented:"Skipun ekki virkju??!",UnknownToolbarSet:'Verkstikan "%1" ekki til!',NoActiveX:"??ryggisstillingarnar ?? vafranum ????num leyfa ekki alla m??guleika ritilsins. L??ttu vafrann leyfa Active-X og vi??b??tur til a?? komast hj?? villum og takm??rkunum.",BrowseServerBlocked:"Ritillinn getur ekki opna?? nau??synlega hj??lparglugga! L??ttu hann leyfa ??essari s????u a?? opna sprettiglugga.",DialogBlocked:"Ekki var h??gt a?? opna skipanaglugga! Nau??synlegt er a?? leyfa s????unni a?? opna sprettiglugga.",VisitLinkBlocked:"Ekki var h??gt a?? opna n??jan glugga. Gangtu ??r skugga um a?? engir sprettigluggabanar s??u virkir.",DlgBtnOK:"?? lagi",DlgBtnCancel:"H??tta vi??",DlgBtnClose:"Loka",DlgBtnBrowseServer:"Fletta ?? skjalasafni",DlgAdvancedTag:"T??knilegt",DlgOpOther:"",DlgInfoTab:"Uppl??singar",DlgAlertUrl:"Sl????u inn sl????",DlgGenNotSet:"",DlgGenId:"Au??kenni",DlgGenLangDir:"Lesstefna",DlgGenLangDirLtr:"Fr?? vinstri til h??gri (LTR)",DlgGenLangDirRtl:"Fr?? h??gri til vinstri (RTL)",DlgGenLangCode:"Tungum??lak????i",DlgGenAccessKey:"Skammvalshnappur",DlgGenName:"Nafn",DlgGenTabIndex:"Ra??n??mer innsl??ttarreits",DlgGenLongDescr:"N??nari l??sing",DlgGenClass:"St??lsni??sflokkur",DlgGenTitle:"Titill",DlgGenContType:"Tegund innihalds",DlgGenLinkCharset:"T??knr??f",DlgGenStyle:"St??ll",DlgImgTitle:"Eigindi myndar",DlgImgInfoTab:"Almennt",DlgImgBtnUpload:"Hla??a upp",DlgImgURL:"Vefsl????",DlgImgUpload:"Hla??a upp",DlgImgAlt:"Bakl??gur texti",DlgImgWidth:"Breidd",DlgImgHeight:"H????",DlgImgLockRatio:"Festa st??r??arhlutfall",DlgBtnResetSize:"Reikna st??r??",DlgImgBorder:"Rammi",DlgImgHSpace:"Vinstri bil",DlgImgVSpace:"H??gri bil",DlgImgAlign:"J??fnun",DlgImgAlignLeft:"Vinstri",DlgImgAlignAbsBottom:"Abs ne??st",DlgImgAlignAbsMiddle:"Abs mi??ju??",DlgImgAlignBaseline:"Grunnl??na",DlgImgAlignBottom:"Ne??st",DlgImgAlignMiddle:"Mi??ju??",DlgImgAlignRight:"H??gri",DlgImgAlignTextTop:"Efri br??n texta",DlgImgAlignTop:"Efst",DlgImgPreview:"S??na d??mi",DlgImgAlertUrl:"Sl????u inn sl????ina a?? myndinni",DlgImgLinkTab:"Stikla",DlgFlashTitle:"Eigindi Flash",DlgFlashChkPlay:"Sj??lfvirk spilun",DlgFlashChkLoop:"Endurtekning",DlgFlashChkMenu:"S??na Flash-valmynd",DlgFlashScale:"Skali",DlgFlashScaleAll:"S??na allt",DlgFlashScaleNoBorder:"??n ramma",DlgFlashScaleFit:"Fella skala a?? st??r??",DlgLnkWindowTitle:"Stikla",DlgLnkInfoTab:"Almennt",DlgLnkTargetTab:"Mark",DlgLnkType:"Stikluflokkur",DlgLnkTypeURL:"Vefsl????",DlgLnkTypeAnchor:"B??kamerki ?? ??essari s????u",DlgLnkTypeEMail:"Netfang",DlgLnkProto:"Samskiptasta??all",DlgLnkProtoOther:"",DlgLnkURL:"Vefsl????",DlgLnkAnchorSel:"Veldu akkeri",DlgLnkAnchorByName:"Eftir akkerisnafni",DlgLnkAnchorById:"Eftir au??kenni einingar",DlgLnkNoAnchors:"",DlgLnkEMail:"Netfang",DlgLnkEMailSubject:"Efni",DlgLnkEMailBody:"Meginm??l",DlgLnkUpload:"Senda upp",DlgLnkBtnUpload:"Senda upp",DlgLnkTarget:"Mark",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"N??r gluggi (_blank)",DlgLnkTargetParent:"Yfirsettur rammi (_parent)",DlgLnkTargetSelf:"Sami gluggi (_self)",DlgLnkTargetTop:"Allur glugginn (_top)",DlgLnkTargetFrameName:"Nafn markglugga",DlgLnkPopWinName:"Nafn sprettiglugga",DlgLnkPopWinFeat:"Eigindi sprettiglugga",DlgLnkPopResize:"Sk??lun",DlgLnkPopLocation:"Fangl??na",DlgLnkPopMenu:"Vall??na",DlgLnkPopScroll:"Skrunstikur",DlgLnkPopStatus:"St????ustika",DlgLnkPopToolbar:"Verkf??rastika",DlgLnkPopFullScrn:"Heilskj??r (IE)",DlgLnkPopDependent:"H???? venslum (Netscape)",DlgLnkPopWidth:"Breidd",DlgLnkPopHeight:"H????",DlgLnkPopLeft:"Fjarl??g?? fr?? vinstri",DlgLnkPopTop:"Fjarl??g?? fr?? efri br??n",DlnLnkMsgNoUrl:"Sl????u inn veffang stiklunnar!",DlnLnkMsgNoEMail:"Sl????u inn netfang!",DlnLnkMsgNoAnchor:"Veldu fyrst eitthvert b??kamerki!",DlnLnkMsgInvPopName:"Sprettis????an ver??ur a?? byrja ?? b??kstaf (a-z) og m?? ekki innihalda stafabil",DlgColorTitle:"Velja lit",DlgColorBtnClear:"N??llstilla",DlgColorHighlight:"Litmerkja",DlgColorSelected:"Vali??",DlgSmileyTitle:"Velja svip",DlgSpecialCharTitle:"Velja t??kn",DlgTableTitle:"Eigindi t??flu",DlgTableRows:"Ra??ir",DlgTableColumns:"D??lkar",DlgTableBorder:"Breidd ramma",DlgTableAlign:"J??fnun",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Vinstrijafna??",DlgTableAlignCenter:"Mi??ja??",DlgTableAlignRight:"H??grijafna??",DlgTableWidth:"Breidd",DlgTableWidthPx:"myndeindir",DlgTableWidthPc:"pr??sent",DlgTableHeight:"H????",DlgTableCellSpace:"Bil milli reita",DlgTableCellPad:"Reitasp??ss??a",DlgTableCaption:"Titill",DlgTableSummary:"??fram",DlgTableHeaders:"Fyrirsagnir",DlgTableHeadersNone:"Engar",DlgTableHeadersColumn:"Fyrsti d??lkur",DlgTableHeadersRow:"Fyrsta r????",DlgTableHeadersBoth:"Hvort tveggja",DlgCellTitle:"Eigindi reits",DlgCellWidth:"Breidd",DlgCellWidthPx:"myndeindir",DlgCellWidthPc:"pr??sent",DlgCellHeight:"H????",DlgCellWordWrap:"L??nuskipting",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"J??",DlgCellWordWrapNo:"Nei",DlgCellHorAlign:"L??r??tt j??fnun",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Vinstrijafna??",DlgCellHorAlignCenter:"Mi??ja??",DlgCellHorAlignRight:"H??grijafna??",DlgCellVerAlign:"L????r??tt j??fnun",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Efst",DlgCellVerAlignMiddle:"Mi??ja??",DlgCellVerAlignBottom:"Ne??st",DlgCellVerAlignBaseline:"Grunnl??na",DlgCellType:"Tegund reits",DlgCellTypeData:"G??gn",DlgCellTypeHeader:"Fyrirs??gn",DlgCellRowSpan:"H???? ?? r????um tali??",DlgCellCollSpan:"Breidd ?? d??lkum tali??",DlgCellBackColor:"Bakgrunnslitur",DlgCellBorderColor:"Rammalitur",DlgCellBtnSelect:"Veldu...",DlgFindAndReplaceTitle:"Finna og skipta",DlgFindTitle:"Finna",DlgFindFindBtn:"Finna",DlgFindNotFoundMsg:"Leitartexti fannst ekki!",DlgReplaceTitle:"Skipta ??t",DlgReplaceFindLbl:"Leita a??:",DlgReplaceReplaceLbl:"Skipta ??t fyrir:",DlgReplaceCaseChk:"Gera greinarmun ???? h????- og l??gst??fum",DlgReplaceReplaceBtn:"Skipta ??t",DlgReplaceReplAllBtn:"Skipta ??t allssta??ar",DlgReplaceWordChk:"A??eins heil or??",PasteErrorCut:"??ryggisstillingar vafrans ????ns leyfa ekki klippingu texta me?? m??sara??ger??. Nota??u lyklabor??i?? ?? klippa (Ctrl+X).",PasteErrorCopy:"??ryggisstillingar vafrans ????ns leyfa ekki afritun texta me?? m??sara??ger??. Nota??u lyklabor??i?? ?? afrita (Ctrl+C).",PasteAsText:"L??ma sem ??sni??inn texta",PasteFromWord:"L??ma ??r Word",DlgPasteMsg2:"L??mdu ?? sv????i?? h??r a?? ne??an og (Ctrl+V) og smelltu ?? OK.",DlgPasteSec:"Vegna ??ryggisstillinga ?? vafranum ????num f??r ritillinn ekki beinan a??gang a?? klippubor??inu. ???? ver??ur a?? l??ma innihaldi?? aftur inn ?? ??ennan glugga.",DlgPasteIgnoreFont:"Hunsa leturskilgreiningar",DlgPasteRemoveStyles:"Hunsa letureigindi",ColorAutomatic:"Sj??lfval",ColorMoreColors:"Fleiri liti...",DocProps:"Eigindi skjals",DlgAnchorTitle:"Eigindi b??kamerkis",DlgAnchorName:"Nafn b??kamerkis",DlgAnchorErrorName:"Sl????u inn nafn b??kamerkis!",DlgSpellNotInDic:"Ekki ?? or??ab??kinni",DlgSpellChangeTo:"Tillaga",DlgSpellBtnIgnore:"Hunsa",DlgSpellBtnIgnoreAll:"Hunsa allt",DlgSpellBtnReplace:"Skipta",DlgSpellBtnReplaceAll:"Skipta ??llu",DlgSpellBtnUndo:"Til baka",DlgSpellNoSuggestions:"- engar till??gur -",DlgSpellProgress:"Villuleit ?? gangi...",DlgSpellNoMispell:"Villuleit loki??: Engin villa fannst",DlgSpellNoChanges:"Villuleit loki??: Engu or??i breytt",DlgSpellOneChange:"Villuleit loki??: Einu or??i breytt",DlgSpellManyChanges:"Villuleit loki??: %1 or??um breytt",IeSpellDownload:"Villuleit ekki sett upp. Viltu setja hana upp?",DlgButtonText:"Texti",DlgButtonType:"Ger??",DlgButtonTypeBtn:"Hnappur",DlgButtonTypeSbm:"Sta??festa",DlgButtonTypeRst:"Hreinsa",DlgCheckboxName:"Nafn",DlgCheckboxValue:"Gildi",DlgCheckboxSelected:"Vali??",DlgFormName:"Nafn",DlgFormAction:"A??ger??",DlgFormMethod:"A??fer??",DlgSelectName:"Nafn",DlgSelectValue:"Gildi",DlgSelectSize:"St??r??",DlgSelectLines:"l??nur",DlgSelectChkMulti:"Leyfa fleiri kosti",DlgSelectOpAvail:"Kostir",DlgSelectOpText:"Texti",DlgSelectOpValue:"Gildi",DlgSelectBtnAdd:"B??ta vi??",DlgSelectBtnModify:"Breyta",DlgSelectBtnUp:"Upp",DlgSelectBtnDown:"Ni??ur",DlgSelectBtnSetValue:"Merkja sem vali??",DlgSelectBtnDelete:"Ey??a",DlgTextareaName:"Nafn",DlgTextareaCols:"D??lkar",DlgTextareaRows:"L??nur",DlgTextName:"Nafn",DlgTextValue:"Gildi",DlgTextCharWidth:"Breidd (leturt??kn)",DlgTextMaxChars:"H??marksfj??ldi leturt??kna",DlgTextType:"Ger??",DlgTextTypeText:"Texti",DlgTextTypePass:"Lykilor??",DlgHiddenName:"Nafn",DlgHiddenValue:"Gildi",BulletedListProp:"Eigindi depillista",NumberedListProp:"Eigindi t??lusetts lista",DlgLstStart:"Byrja",DlgLstType:"Ger??",DlgLstTypeCircle:"Hringur",DlgLstTypeDisc:"Fylltur hringur",DlgLstTypeSquare:"Ferningur",DlgLstTypeNumbers:"T??lusett (1, 2, 3)",DlgLstTypeLCase:"L??gstafir (a, b, c)",DlgLstTypeUCase:"H??stafir (A, B, C)",DlgLstTypeSRoman:"R??mverkar l??gstafat??lur (i, ii, iii)",DlgLstTypeLRoman:"R??mverkar h??stafat??lur (I, II, III)",DlgDocGeneralTab:"Almennt",DlgDocBackTab:"Bakgrunnur",DlgDocColorsTab:"Litir og rammar",DlgDocMetaTab:"L??sig??gn",DlgDocPageTitle:"Titill s????u",DlgDocLangDir:"Tungum??l",DlgDocLangDirLTR:"Vinstri til h??gri (LTR)",DlgDocLangDirRTL:"H??gri til vinstri (RTL)",DlgDocLangCode:"Tungum??lak????i",DlgDocCharSet:"Letursett",DlgDocCharSetCE:"Mi??-evr??pskt",DlgDocCharSetCT:"K??nverskt, hef??bundi?? (Big5)",DlgDocCharSetCR:"K??rilskt",DlgDocCharSetGR:"Gr??skt",DlgDocCharSetJP:"Japanskt",DlgDocCharSetKR:"K??reskt",DlgDocCharSetTR:"Tyrkneskt",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Vestur-evr??pst",DlgDocCharSetOther:"Anna?? letursett",DlgDocDocType:"Flokkur skjalategunda",DlgDocDocTypeOther:"Annar flokkur skjalategunda",DlgDocIncXHTML:"Fella inn XHTML l??singu",DlgDocBgColor:"Bakgrunnslitur",DlgDocBgImage:"Sl???? bakgrunnsmyndar",DlgDocBgNoScroll:"L??stur bakgrunnur",DlgDocCText:"Texti",DlgDocCLink:"Stikla",DlgDocCVisited:"Heims??tt stikla",DlgDocCActive:"Virk stikla",DlgDocMargins:"Hli??arsp??ss??a",DlgDocMaTop:"Efst",DlgDocMaLeft:"Vinstri",DlgDocMaRight:"H??gri",DlgDocMaBottom:"Ne??st",DlgDocMeIndex:"Lykilor?? efnisor??askr??r (a??greind me?? kommum)",DlgDocMeDescr:"L??sing skjals",DlgDocMeAuthor:"H??fundur",DlgDocMeCopy:"H??fundarr??ttur",DlgDocPreview:"S??na",Templates:"Sni??m??t",DlgTemplatesTitle:"Innihaldssni??m??t",DlgTemplatesSelMsg:"Veldu sni??m??t til a?? opna ?? ritlinum. (N??verandi innihald v??kur fyrir ??v??!):",DlgTemplatesLoading:"S??ki lista yfir sni??m??t...",DlgTemplatesNoTpl:"(Ekkert sni??m??t er skilgreint!)",DlgTemplatesReplace:"Skipta ??t raunverulegu innihaldi",DlgAboutAboutTab:"Um",DlgAboutBrowserInfoTab:"Almennt",DlgAboutLicenseTab:"Leyfi",DlgAboutVersion:"??tg??fa",DlgAboutInfo:"N??nari uppl??sinar, sj??:",DlgDivGeneralTab:"Almennt",DlgDivAdvancedTab:"S??rh??ft",DlgDivStyle:"St??ll",DlgDivInlineStyle:"L??nul??gur st??ll"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/it.js b/horde/services/editor/fckeditor/editor/lang/it.js
deleted file mode 100644
index 9bbc55dd3..000000000
--- a/horde/services/editor/fckeditor/editor/lang/it.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Nascondi la barra degli strumenti",ToolbarExpand:"Mostra la barra degli strumenti",Save:"Salva",NewPage:"Nuova pagina vuota",Preview:"Anteprima",Cut:"Taglia",Copy:"Copia",Paste:"Incolla",PasteText:"Incolla come testo semplice",PasteWord:"Incolla da Word",Print:"Stampa",SelectAll:"Seleziona tutto",RemoveFormat:"Elimina formattazione",InsertLinkLbl:"Collegamento",InsertLink:"Inserisci/Modifica collegamento",RemoveLink:"Elimina collegamento",VisitLink:"Open Link",Anchor:"Inserisci/Modifica Ancora",AnchorDelete:"Rimuovi Ancora",InsertImageLbl:"Immagine",InsertImage:"Inserisci/Modifica immagine",InsertFlashLbl:"Oggetto Flash",InsertFlash:"Inserisci/Modifica Oggetto Flash",InsertTableLbl:"Tabella",InsertTable:"Inserisci/Modifica tabella",InsertLineLbl:"Riga orizzontale",InsertLine:"Inserisci riga orizzontale",InsertSpecialCharLbl:"Caratteri speciali",InsertSpecialChar:"Inserisci carattere speciale",InsertSmileyLbl:"Emoticon",InsertSmiley:"Inserisci emoticon",About:"Informazioni su FCKeditor",Bold:"Grassetto",Italic:"Corsivo",Underline:"Sottolineato",StrikeThrough:"Barrato",Subscript:"Pedice",Superscript:"Apice",LeftJustify:"Allinea a sinistra",CenterJustify:"Centra",RightJustify:"Allinea a destra",BlockJustify:"Giustifica",DecreaseIndent:"Riduci rientro",IncreaseIndent:"Aumenta rientro",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Annulla",Redo:"Ripristina",NumberedListLbl:"Elenco numerato",NumberedList:"Inserisci/Modifica elenco numerato",BulletedListLbl:"Elenco puntato",BulletedList:"Inserisci/Modifica elenco puntato",ShowTableBorders:"Mostra bordi tabelle",ShowDetails:"Mostra dettagli",Style:"Stile",FontFormat:"Formato",Font:"Font",FontSize:"Dimensione",TextColor:"Colore testo",BGColor:"Colore sfondo",Source:"Codice Sorgente",Find:"Trova",Replace:"Sostituisci",SpellCheck:"Correttore ortografico",UniversalKeyboard:"Tastiera universale",PageBreakLbl:"Interruzione di pagina",PageBreak:"Inserisci interruzione di pagina",Form:"Modulo",Checkbox:"Checkbox",RadioButton:"Radio Button",TextField:"Campo di testo",Textarea:"Area di testo",HiddenField:"Campo nascosto",Button:"Bottone",SelectionField:"Menu di selezione",ImageButton:"Bottone immagine",FitWindow:"Massimizza l'area dell'editor",ShowBlocks:"Visualizza Blocchi",EditLink:"Modifica collegamento",CellCM:"Cella",RowCM:"Riga",ColumnCM:"Colonna",InsertRowAfter:"Inserisci Riga Dopo",InsertRowBefore:"Inserisci Riga Prima",DeleteRows:"Elimina righe",InsertColumnAfter:"Inserisci Colonna Dopo",InsertColumnBefore:"Inserisci Colonna Prima",DeleteColumns:"Elimina colonne",InsertCellAfter:"Inserisci Cella Dopo",InsertCellBefore:"Inserisci Cella Prima",DeleteCells:"Elimina celle",MergeCells:"Unisce celle",MergeRight:"Unisci a Destra",MergeDown:"Unisci in Basso",HorizontalSplitCell:"Dividi Cella Orizzontalmente",VerticalSplitCell:"Dividi Cella Verticalmente",TableDelete:"Cancella Tabella",CellProperties:"Propriet?? cella",TableProperties:"Propriet?? tabella",ImageProperties:"Propriet?? immagine",FlashProperties:"Propriet?? Oggetto Flash",AnchorProp:"Propriet?? ancora",ButtonProp:"Propriet?? bottone",CheckboxProp:"Propriet?? checkbox",HiddenFieldProp:"Propriet?? campo nascosto",RadioButtonProp:"Propriet?? radio button",ImageButtonProp:"Propriet?? bottone immagine",TextFieldProp:"Propriet?? campo di testo",SelectionFieldProp:"Propriet?? menu di selezione",TextareaProp:"Propriet?? area di testo",FormProp:"Propriet?? modulo",FontFormats:"Normale;Formattato;Indirizzo;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)",ProcessingXHTML:"Elaborazione XHTML in corso. Attendere prego...",Done:"Completato",PasteWordConfirm:"Il testo da incollare sembra provenire da Word. Desideri pulirlo prima di incollare?",NotCompatiblePaste:"Questa funzione ?? disponibile solo per Internet Explorer 5.5 o superiore. Desideri incollare il testo senza pulirlo?",UnknownToolbarItem:'Elemento della barra strumenti sconosciuto "%1"',UnknownCommand:'Comando sconosciuto "%1"',NotImplemented:"Comando non implementato",UnknownToolbarSet:'La barra di strumenti "%1" non esiste',NoActiveX:"Le impostazioni di sicurezza del tuo browser potrebbero limitare alcune funzionalit?? dell'editor. Devi abilitare l'opzione \"Esegui controlli e plug-in ActiveX\". Potresti avere errori e notare funzionalit?? mancanti.",BrowseServerBlocked:"Non ?? possibile aprire la finestra di espolorazione risorse. Verifica che tutti i blocca popup siano bloccati.",DialogBlocked:"Non ?? possibile aprire la finestra di dialogo. Verifica che tutti i blocca popup siano bloccati.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Annulla",DlgBtnClose:"Chiudi",DlgBtnBrowseServer:"Cerca sul server",DlgAdvancedTag:"Avanzate",DlgOpOther:"",DlgInfoTab:"Info",DlgAlertUrl:"Devi inserire l'URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Direzione scrittura",DlgGenLangDirLtr:"Da Sinistra a Destra (LTR)",DlgGenLangDirRtl:"Da Destra a Sinistra (RTL)",DlgGenLangCode:"Codice Lingua",DlgGenAccessKey:"Scorciatoia da tastiera",DlgGenName:"Nome",DlgGenTabIndex:"Ordine di tabulazione",DlgGenLongDescr:"URL descrizione estesa",DlgGenClass:"Nome classe CSS",DlgGenTitle:"Titolo",DlgGenContType:"Tipo della risorsa collegata",DlgGenLinkCharset:"Set di caretteri della risorsa collegata",DlgGenStyle:"Stile",DlgImgTitle:"Propriet?? immagine",DlgImgInfoTab:"Informazioni immagine",DlgImgBtnUpload:"Invia al server",DlgImgURL:"URL",DlgImgUpload:"Carica",DlgImgAlt:"Testo alternativo",DlgImgWidth:"Larghezza",DlgImgHeight:"Altezza",DlgImgLockRatio:"Blocca rapporto",DlgBtnResetSize:"Reimposta dimensione",DlgImgBorder:"Bordo",DlgImgHSpace:"HSpace",DlgImgVSpace:"VSpace",DlgImgAlign:"Allineamento",DlgImgAlignLeft:"Sinistra",DlgImgAlignAbsBottom:"In basso assoluto",DlgImgAlignAbsMiddle:"Centrato assoluto",DlgImgAlignBaseline:"Linea base",DlgImgAlignBottom:"In Basso",DlgImgAlignMiddle:"Centrato",DlgImgAlignRight:"Destra",DlgImgAlignTextTop:"In alto al testo",DlgImgAlignTop:"In Alto",DlgImgPreview:"Anteprima",DlgImgAlertUrl:"Devi inserire l'URL per l'immagine",DlgImgLinkTab:"Collegamento",DlgFlashTitle:"Propriet?? Oggetto Flash",DlgFlashChkPlay:"Avvio Automatico",DlgFlashChkLoop:"Cicla",DlgFlashChkMenu:"Abilita Menu di Flash",DlgFlashScale:"Ridimensiona",DlgFlashScaleAll:"Mostra Tutto",DlgFlashScaleNoBorder:"Senza Bordo",DlgFlashScaleFit:"Dimensione Esatta",DlgLnkWindowTitle:"Collegamento",DlgLnkInfoTab:"Informazioni collegamento",DlgLnkTargetTab:"Destinazione",DlgLnkType:"Tipo di Collegamento",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"Ancora nella pagina",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"Protocollo",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Scegli Ancora",DlgLnkAnchorByName:"Per Nome",DlgLnkAnchorById:"Per id elemento",DlgLnkNoAnchors:"(Nessuna ancora disponibile nel documento)",DlgLnkEMail:"Indirizzo E-Mail",DlgLnkEMailSubject:"Oggetto del messaggio",DlgLnkEMailBody:"Corpo del messaggio",DlgLnkUpload:"Carica",DlgLnkBtnUpload:"Invia al Server",DlgLnkTarget:"Destinazione",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Nuova finestra (_blank)",DlgLnkTargetParent:"Finestra padre (_parent)",DlgLnkTargetSelf:"Stessa finestra (_self)",DlgLnkTargetTop:"Finestra superiore (_top)",DlgLnkTargetFrameName:"Nome del riquadro di destinazione",DlgLnkPopWinName:"Nome finestra popup",DlgLnkPopWinFeat:"Caratteristiche finestra popup",DlgLnkPopResize:"Ridimensionabile",DlgLnkPopLocation:"Barra degli indirizzi",DlgLnkPopMenu:"Barra del menu",DlgLnkPopScroll:"Barre di scorrimento",DlgLnkPopStatus:"Barra di stato",DlgLnkPopToolbar:"Barra degli strumenti",DlgLnkPopFullScrn:"A tutto schermo (IE)",DlgLnkPopDependent:"Dipendente (Netscape)",DlgLnkPopWidth:"Larghezza",DlgLnkPopHeight:"Altezza",DlgLnkPopLeft:"Posizione da sinistra",DlgLnkPopTop:"Posizione dall'alto",DlnLnkMsgNoUrl:"Devi inserire l'URL del collegamento",DlnLnkMsgNoEMail:"Devi inserire un'indirizzo e-mail",DlnLnkMsgNoAnchor:"Devi selezionare un'ancora",DlnLnkMsgInvPopName:"Il nome del popup deve iniziare con una lettera, e non pu?? contenere spazi",DlgColorTitle:"Seleziona colore",DlgColorBtnClear:"Vuota",DlgColorHighlight:"Evidenziato",DlgColorSelected:"Selezionato",DlgSmileyTitle:"Inserisci emoticon",DlgSpecialCharTitle:"Seleziona carattere speciale",DlgTableTitle:"Propriet?? tabella",DlgTableRows:"Righe",DlgTableColumns:"Colonne",DlgTableBorder:"Dimensione bordo",DlgTableAlign:"Allineamento",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Sinistra",DlgTableAlignCenter:"Centrato",DlgTableAlignRight:"Destra",DlgTableWidth:"Larghezza",DlgTableWidthPx:"pixel",DlgTableWidthPc:"percento",DlgTableHeight:"Altezza",DlgTableCellSpace:"Spaziatura celle",DlgTableCellPad:"Padding celle",DlgTableCaption:"Intestazione",DlgTableSummary:"Indice",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Propriet?? cella",DlgCellWidth:"Larghezza",DlgCellWidthPx:"pixel",DlgCellWidthPc:"percento",DlgCellHeight:"Altezza",DlgCellWordWrap:"A capo automatico",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Si",DlgCellWordWrapNo:"No",DlgCellHorAlign:"Allineamento orizzontale",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Sinistra",DlgCellHorAlignCenter:"Centrato",DlgCellHorAlignRight:"Destra",DlgCellVerAlign:"Allineamento verticale",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"In Alto",DlgCellVerAlignMiddle:"Centrato",DlgCellVerAlignBottom:"In Basso",DlgCellVerAlignBaseline:"Linea base",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Righe occupate",DlgCellCollSpan:"Colonne occupate",DlgCellBackColor:"Colore sfondo",DlgCellBorderColor:"Colore bordo",DlgCellBtnSelect:"Scegli...",DlgFindAndReplaceTitle:"Cerca e Sostituisci",DlgFindTitle:"Trova",DlgFindFindBtn:"Trova",DlgFindNotFoundMsg:"L'elemento cercato non ?? stato trovato.",DlgReplaceTitle:"Sostituisci",DlgReplaceFindLbl:"Trova:",DlgReplaceReplaceLbl:"Sostituisci con:",DlgReplaceCaseChk:"Maiuscole/minuscole",DlgReplaceReplaceBtn:"Sostituisci",DlgReplaceReplAllBtn:"Sostituisci tutto",DlgReplaceWordChk:"Solo parole intere",PasteErrorCut:"Le impostazioni di sicurezza del browser non permettono di tagliare automaticamente il testo. Usa la tastiera (Ctrl+X).",PasteErrorCopy:"Le impostazioni di sicurezza del browser non permettono di copiare automaticamente il testo. Usa la tastiera (Ctrl+C).",PasteAsText:"Incolla come testo semplice",PasteFromWord:"Incolla da Word",DlgPasteMsg2:"Incolla il testo all'interno dell'area sottostante usando la scorciatoia di tastiere (Ctrl+V) e premi OK.",DlgPasteSec:"A causa delle impostazioni di sicurezza del browser,l'editor non ?? in grado di accedere direttamente agli appunti. E' pertanto necessario incollarli di nuovo in questa finestra.",DlgPasteIgnoreFont:"Ignora le definizioni di Font",DlgPasteRemoveStyles:"Rimuovi le definizioni di Stile",ColorAutomatic:"Automatico",ColorMoreColors:"Altri colori...",DocProps:"Propriet?? del Documento",DlgAnchorTitle:"Propriet?? ancora",DlgAnchorName:"Nome ancora",DlgAnchorErrorName:"Inserici il nome dell'ancora",DlgSpellNotInDic:"Non nel dizionario",DlgSpellChangeTo:"Cambia in",DlgSpellBtnIgnore:"Ignora",DlgSpellBtnIgnoreAll:"Ignora tutto",DlgSpellBtnReplace:"Cambia",DlgSpellBtnReplaceAll:"Cambia tutto",DlgSpellBtnUndo:"Annulla",DlgSpellNoSuggestions:"- Nessun suggerimento -",DlgSpellProgress:"Controllo ortografico in corso",DlgSpellNoMispell:"Controllo ortografico completato: nessun errore trovato",DlgSpellNoChanges:"Controllo ortografico completato: nessuna parola cambiata",DlgSpellOneChange:"Controllo ortografico completato: 1 parola cambiata",DlgSpellManyChanges:"Controllo ortografico completato: %1 parole cambiate",IeSpellDownload:"Contollo ortografico non installato. Lo vuoi scaricare ora?",DlgButtonText:"Testo (Value)",DlgButtonType:"Tipo",DlgButtonTypeBtn:"Bottone",DlgButtonTypeSbm:"Invio",DlgButtonTypeRst:"Annulla",DlgCheckboxName:"Nome",DlgCheckboxValue:"Valore",DlgCheckboxSelected:"Selezionato",DlgFormName:"Nome",DlgFormAction:"Azione",DlgFormMethod:"Metodo",DlgSelectName:"Nome",DlgSelectValue:"Valore",DlgSelectSize:"Dimensione",DlgSelectLines:"righe",DlgSelectChkMulti:"Permetti selezione multipla",DlgSelectOpAvail:"Opzioni disponibili",DlgSelectOpText:"Testo",DlgSelectOpValue:"Valore",DlgSelectBtnAdd:"Aggiungi",DlgSelectBtnModify:"Modifica",DlgSelectBtnUp:"Su",DlgSelectBtnDown:"Gi",DlgSelectBtnSetValue:"Imposta come predefinito",DlgSelectBtnDelete:"Rimuovi",DlgTextareaName:"Nome",DlgTextareaCols:"Colonne",DlgTextareaRows:"Righe",DlgTextName:"Nome",DlgTextValue:"Valore",DlgTextCharWidth:"Larghezza",DlgTextMaxChars:"Numero massimo di caratteri",DlgTextType:"Tipo",DlgTextTypeText:"Testo",DlgTextTypePass:"Password",DlgHiddenName:"Nome",DlgHiddenValue:"Valore",BulletedListProp:"Propriet?? lista puntata",NumberedListProp:"Propriet?? lista numerata",DlgLstStart:"Inizio",DlgLstType:"Tipo",DlgLstTypeCircle:"Tondo",DlgLstTypeDisc:"Disco",DlgLstTypeSquare:"Quadrato",DlgLstTypeNumbers:"Numeri (1, 2, 3)",DlgLstTypeLCase:"Caratteri minuscoli (a, b, c)",DlgLstTypeUCase:"Caratteri maiuscoli (A, B, C)",DlgLstTypeSRoman:"Numeri Romani minuscoli (i, ii, iii)",DlgLstTypeLRoman:"Numeri Romani maiuscoli (I, II, III)",DlgDocGeneralTab:"Genarale",DlgDocBackTab:"Sfondo",DlgDocColorsTab:"Colori e margini",DlgDocMetaTab:"Meta Data",DlgDocPageTitle:"Titolo pagina",DlgDocLangDir:"Direzione scrittura",DlgDocLangDirLTR:"Da Sinistra a Destra (LTR)",DlgDocLangDirRTL:"Da Destra a Sinistra (RTL)",DlgDocLangCode:"Codice Lingua",DlgDocCharSet:"Set di caretteri",DlgDocCharSetCE:"Europa Centrale",DlgDocCharSetCT:"Cinese Tradizionale (Big5)",DlgDocCharSetCR:"Cirillico",DlgDocCharSetGR:"Greco",DlgDocCharSetJP:"Giapponese",DlgDocCharSetKR:"Coreano",DlgDocCharSetTR:"Turco",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Europa Occidentale",DlgDocCharSetOther:"Altro set di caretteri",DlgDocDocType:"Intestazione DocType",DlgDocDocTypeOther:"Altra intestazione DocType",DlgDocIncXHTML:"Includi dichiarazione XHTML",DlgDocBgColor:"Colore di sfondo",DlgDocBgImage:"Immagine di sfondo",DlgDocBgNoScroll:"Sfondo fissato",DlgDocCText:"Testo",DlgDocCLink:"Collegamento",DlgDocCVisited:"Collegamento visitato",DlgDocCActive:"Collegamento attivo",DlgDocMargins:"Margini",DlgDocMaTop:"In Alto",DlgDocMaLeft:"A Sinistra",DlgDocMaRight:"A Destra",DlgDocMaBottom:"In Basso",DlgDocMeIndex:"Chiavi di indicizzazione documento (separate da virgola)",DlgDocMeDescr:"Descrizione documento",DlgDocMeAuthor:"Autore",DlgDocMeCopy:"Copyright",DlgDocPreview:"Anteprima",Templates:"Modelli",DlgTemplatesTitle:"Contenuto dei modelli",DlgTemplatesSelMsg:"Seleziona il modello da aprire nell'editor (il contenuto attuale verr?? eliminato):",DlgTemplatesLoading:"Caricamento modelli in corso. Attendere prego...",DlgTemplatesNoTpl:"(Nessun modello definito)",DlgTemplatesReplace:"Cancella il contenuto corrente",DlgAboutAboutTab:"Informazioni",DlgAboutBrowserInfoTab:"Informazioni Browser",DlgAboutLicenseTab:"Licenza",DlgAboutVersion:"versione",DlgAboutInfo:"Per maggiori informazioni visitare",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/ja.js b/horde/services/editor/fckeditor/editor/lang/ja.js
deleted file mode 100644
index f9f0d35c8..000000000
--- a/horde/services/editor/fckeditor/editor/lang/ja.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"????????????????????????",ToolbarExpand:"????????????????????????",Save:"??????",NewPage:"??????????????????",Preview:"???????????????",Cut:"????????????",Copy:"?????????",Paste:"????????????",PasteText:"????????????????????????????????????",PasteWord:"?????????????????????????????????",Print:"??????",SelectAll:"???????????????",RemoveFormat:"????????????????????????",InsertLinkLbl:"?????????",InsertLink:"???????????????/??????",RemoveLink:"???????????????",VisitLink:"??????????????????",Anchor:"??????????????????/??????",AnchorDelete:"??????????????????",InsertImageLbl:"????????????",InsertImage:"??????????????????/??????",InsertFlashLbl:"Flash",InsertFlash:"Flash??????/??????",InsertTableLbl:"????????????",InsertTable:"??????????????????/??????",InsertLineLbl:"?????????",InsertLine:"?????????",InsertSpecialCharLbl:"????????????",InsertSpecialChar:"??????????????????",InsertSmileyLbl:"?????????",InsertSmiley:"???????????????",About:"FCKeditor?????????",Bold:"??????",Italic:"??????",Underline:"??????",StrikeThrough:"???????????????",Subscript:"?????????",Superscript:"???????????????",LeftJustify:"?????????",CenterJustify:"????????????",RightJustify:"?????????",BlockJustify:"????????????",DecreaseIndent:"?????????????????????",IncreaseIndent:"???????????????",Blockquote:"??????????????????",CreateDiv:"Div ??????",EditDiv:"Div ??????",DeleteDiv:"Div ??????",Undo:"????????????",Redo:"????????????",NumberedListLbl:"????????????",NumberedList:"?????????????????????/??????",BulletedListLbl:"????????????",BulletedList:"?????????????????????/??????",ShowTableBorders:"??????????????????????????????",ShowDetails:"????????????",Style:"????????????",FontFormat:"??????????????????",Font:"????????????",FontSize:"?????????",TextColor:"???????????????",BGColor:"?????????",Source:"?????????",Find:"??????",Replace:"????????????",SpellCheck:"?????????????????????",UniversalKeyboard:"????????????????????????????????????",PageBreakLbl:"????????????",PageBreak:"??????????????????",Form:"????????????",Checkbox:"????????????????????????",RadioButton:"??????????????????",TextField:"??????????????????",Textarea:"?????????????????????",HiddenField:"????????????????????????",Button:"?????????",SelectionField:"?????????????????????",ImageButton:"???????????????",FitWindow:"??????????????????????????????????????????",ShowBlocks:"??????????????????",EditLink:"???????????????",CellCM:"??????",RowCM:"???",ColumnCM:"?????????",InsertRowAfter:"??????????????????",InsertRowBefore:"??????????????????",DeleteRows:"?????????",InsertColumnAfter:"????????????????????????",InsertColumnBefore:"????????????????????????",DeleteColumns:"?????????",InsertCellAfter:"?????????????????????",InsertCellBefore:"?????????????????????",DeleteCells:"????????????",MergeCells:"????????????",MergeRight:"????????????",MergeDown:"????????????",HorizontalSplitCell:"???????????????????????????",VerticalSplitCell:"??????????????????????????????",TableDelete:"??????????????????",CellProperties:"?????? ???????????????",TableProperties:"???????????? ???????????????",ImageProperties:"???????????? ???????????????",FlashProperties:"Flash ???????????????",AnchorProp:"???????????? ???????????????",ButtonProp:"????????? ???????????????",CheckboxProp:"???????????????????????? ???????????????",HiddenFieldProp:"???????????????????????? ???????????????",RadioButtonProp:"?????????????????? ???????????????",ImageButtonProp:"??????????????? ???????????????",TextFieldProp:"?????????????????? ???????????????",SelectionFieldProp:"????????????????????? ???????????????",TextareaProp:"????????????????????? ???????????????",FormProp:"???????????? ???????????????",FontFormats:"??????;????????????;????????????;????????? 1;????????? 2;????????? 3;????????? 4;????????? 5;????????? 6;?????? (DIV)",ProcessingXHTML:"XHTML?????????. ?????????????????????????????????...",Done:"??????",PasteWordConfirm:"??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",NotCompatiblePaste:"????????????????????????????????????????????????????????????????????????????????????5.5?????????????????????????????????????????????????????????????????????????????????????????????",UnknownToolbarItem:'?????????????????????????????? "%1"',UnknownCommand:'???????????????????????? "%1"',NotImplemented:"???????????????????????????????????????????????????????????????",UnknownToolbarSet:'????????????????????? "%1" ?????????????????????',NoActiveX:'??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"ActiveX?????????????????????????????????????????????"??????????????????????????????????????????',BrowseServerBlocked:"????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",DialogBlocked:"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",VisitLinkBlocked:"?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",DlgBtnOK:"OK",DlgBtnCancel:"???????????????",DlgBtnClose:"?????????",DlgBtnBrowseServer:"???????????????????????????",DlgAdvancedTag:"???????????????",DlgOpOther:"????????>",DlgInfoTab:"??????",DlgAlertUrl:"URL???????????????????????????",DlgGenNotSet:"?????>",DlgGenId:"Id",DlgGenLangDir:"?????????????????????",DlgGenLangDirLtr:"???????????? (LTR)",DlgGenLangDirRtl:"???????????? (RTL)",DlgGenLangCode:"???????????????",DlgGenAccessKey:"??????????????????",DlgGenName:"Name??????",DlgGenTabIndex:"????????????????????????",DlgGenLongDescr:"longdesc??????(????????????)",DlgGenClass:"??????????????????????????????",DlgGenTitle:"Title??????",DlgGenContType:"Content Type??????",DlgGenLinkCharset:"?????????charset??????",DlgGenStyle:"?????????????????????",DlgImgTitle:"???????????? ???????????????",DlgImgInfoTab:"???????????? ??????",DlgImgBtnUpload:"?????????????????????",DlgImgURL:"URL",DlgImgUpload:"??????????????????",DlgImgAlt:"??????????????????",DlgImgWidth:"???",DlgImgHeight:"??????",DlgImgLockRatio:"???????????????",DlgBtnResetSize:"?????????????????????",DlgImgBorder:"????????????",DlgImgHSpace:"?????????",DlgImgVSpace:"?????????",DlgImgAlign:"?????????",DlgImgAlignLeft:"???",DlgImgAlignAbsBottom:"??????(?????????)",DlgImgAlignAbsMiddle:"??????(?????????)",DlgImgAlignBaseline:"??????????????????",DlgImgAlignBottom:"???",DlgImgAlignMiddle:"??????",DlgImgAlignRight:"???",DlgImgAlignTextTop:"??????????????????",DlgImgAlignTop:"???",DlgImgPreview:"???????????????",DlgImgAlertUrl:"???????????????URL??????????????????????????????",DlgImgLinkTab:"?????????",DlgFlashTitle:"Flash ???????????????",DlgFlashChkPlay:"??????",DlgFlashChkLoop:"???????????????",DlgFlashChkMenu:"Flash??????????????????",DlgFlashScale:"??????????????????",DlgFlashScaleAll:"???????????????",DlgFlashScaleNoBorder:"??????????????????????????????",DlgFlashScaleFit:"???????????????????????????",DlgLnkWindowTitle:"?????????????????????",DlgLnkInfoTab:"????????????????????? ??????",DlgLnkTargetTab:"???????????????",DlgLnkType:"??????????????????",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"??????????????????????????????",DlgLnkTypeEMail:"E-Mail",DlgLnkProto:"???????????????",DlgLnkProtoOther:"????????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"?????????????????????",DlgLnkAnchorByName:"???????????????",DlgLnkAnchorById:"???????????????ID",DlgLnkNoAnchors:"(??????????????????????????????????????????????????????????????????????????????)",DlgLnkEMail:"E-Mail ????????????",DlgLnkEMailSubject:"??????",DlgLnkEMailBody:"??????",DlgLnkUpload:"??????????????????",DlgLnkBtnUpload:"?????????????????????",DlgLnkTarget:"???????????????",DlgLnkTargetFrame:"???????????>",DlgLnkTargetPopup:"????????????????????????????????>",DlgLnkTargetBlank:"???????????????????????? (_blank)",DlgLnkTargetParent:"?????????????????? (_parent)",DlgLnkTargetSelf:"????????????????????? (_self)",DlgLnkTargetTop:"???????????????????????? (_top)",DlgLnkTargetFrameName:"????????????????????????",DlgLnkPopWinName:"????????????????????????????????????",DlgLnkPopWinFeat:"???????????????????????????????????????",DlgLnkPopResize:"??????????????????",DlgLnkPopLocation:"????????????????????????",DlgLnkPopMenu:"??????????????????",DlgLnkPopScroll:"?????????????????????",DlgLnkPopStatus:"?????????????????????",DlgLnkPopToolbar:"???????????????",DlgLnkPopFullScrn:"??????????????????(IE)",DlgLnkPopDependent:"???????????????????????????????????????????????? (Netscape)",DlgLnkPopWidth:"???",DlgLnkPopHeight:"??????",DlgLnkPopLeft:"??????????????????????????????",DlgLnkPopTop:"??????????????????????????????",DlnLnkMsgNoUrl:"?????????URL??????????????????????????????",DlnLnkMsgNoEMail:"???????????????????????????????????????????????????",DlnLnkMsgNoAnchor:"??????????????????????????????????????????",DlnLnkMsgInvPopName:"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",DlgColorTitle:"?????????",DlgColorBtnClear:"?????????",DlgColorHighlight:"???????????????",DlgColorSelected:"?????????",DlgSmileyTitle:"???????????????",DlgSpecialCharTitle:"??????????????????",DlgTableTitle:"???????????? ???????????????",DlgTableRows:"???",DlgTableColumns:"???",DlgTableBorder:"?????????????????????",DlgTableAlign:"???????????????????????????",DlgTableAlignNotSet:"?????>",DlgTableAlignLeft:"???",DlgTableAlignCenter:"??????",DlgTableAlignRight:"???",DlgTableWidth:"???????????????",DlgTableWidthPx:"????????????",DlgTableWidthPc:"???????????????",DlgTableHeight:"??????????????????",DlgTableCellSpace:"???????????????",DlgTableCellPad:"???????????????",DlgTableCaption:"?????????????????????",DlgTableSummary:"??????????????????/??????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"?????? ???????????????",DlgCellWidth:"???",DlgCellWidthPx:"????????????",DlgCellWidthPc:"???????????????",DlgCellHeight:"??????",DlgCellWordWrap:"????????????",DlgCellWordWrapNotSet:"?????>",DlgCellWordWrapYes:"Yes",DlgCellWordWrapNo:"No",DlgCellHorAlign:"??????????????????",DlgCellHorAlignNotSet:"?????>",DlgCellHorAlignLeft:"???",DlgCellHorAlignCenter:"??????",DlgCellHorAlignRight:"???",DlgCellVerAlign:"??????????????????",DlgCellVerAlignNotSet:"?????>",DlgCellVerAlignTop:"???",DlgCellVerAlignMiddle:"??????",DlgCellVerAlignBottom:"???",DlgCellVerAlignBaseline:"??????????????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"??????(??????)",DlgCellCollSpan:"??????(??????)",DlgCellBackColor:"?????????",DlgCellBorderColor:"?????????????????????",DlgCellBtnSelect:"??????...",DlgFindAndReplaceTitle:"??????????????????",DlgFindTitle:"??????",DlgFindFindBtn:"??????",DlgFindNotFoundMsg:"????????????????????????????????????????????????????????????",DlgReplaceTitle:"????????????",DlgReplaceFindLbl:"?????????????????????:",DlgReplaceReplaceLbl:"????????????????????????:",DlgReplaceCaseChk:"????????????",DlgReplaceReplaceBtn:"?????????",DlgReplaceReplAllBtn:"??????????????????",DlgReplaceWordChk:"?????????????????????",PasteErrorCut:"????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????(Ctrl+X)??????????????????????????????",PasteErrorCopy:"?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????(Ctrl+C)??????????????????????????????",PasteAsText:"????????????????????????????????????",PasteFromWord:"?????????????????????????????????",DlgPasteMsg2:"???????????????(Ctrl+V)?????????????????????????????????????????????????????????OK???????????????????????????",DlgPasteSec:"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",DlgPasteIgnoreFont:"Font?????????Face???????????????????????????",DlgPasteRemoveStyles:"???????????????????????????????????????",ColorAutomatic:"??????",ColorMoreColors:"???????????????...",DocProps:"?????? ???????????????",DlgAnchorTitle:"???????????? ???????????????",DlgAnchorName:"???????????????",DlgAnchorErrorName:"???????????????????????????????????????????????????",DlgSpellNotInDic:"????????????????????????",DlgSpellChangeTo:"??????",DlgSpellBtnIgnore:"??????",DlgSpellBtnIgnoreAll:"???????????????",DlgSpellBtnReplace:"??????",DlgSpellBtnReplaceAll:"???????????????",DlgSpellBtnUndo:"????????????",DlgSpellNoSuggestions:"- ???????????? -",DlgSpellProgress:"??????????????????????????????...",DlgSpellNoMispell:"???????????????????????????: ?????????????????????????????????????????????",DlgSpellNoChanges:"???????????????????????????: ???????????????????????????????????????",DlgSpellOneChange:"???????????????????????????: ??????????????????????????????",DlgSpellManyChanges:"???????????????????????????: %1 ???????????????????????????",IeSpellDownload:"?????????????????????????????????????????????????????????????????????????????????????????????????????????????",DlgButtonText:"???????????? (???)",DlgButtonType:"?????????",DlgButtonTypeBtn:"?????????",DlgButtonTypeSbm:"??????",DlgButtonTypeRst:"????????????",DlgCheckboxName:"??????",DlgCheckboxValue:"???",DlgCheckboxSelected:"????????????",DlgFormName:"???????????????",DlgFormAction:"???????????????",DlgFormMethod:"????????????",DlgSelectName:"??????",DlgSelectValue:"???",DlgSelectSize:"?????????",DlgSelectLines:"???",DlgSelectChkMulti:"???????????????????????????",DlgSelectOpAvail:"??????????????????????????????",DlgSelectOpText:"???????????????",DlgSelectOpValue:"???????????????",DlgSelectBtnAdd:"??????",DlgSelectBtnModify:"??????",DlgSelectBtnUp:"??????",DlgSelectBtnDown:"??????",DlgSelectBtnSetValue:"????????????????????????",DlgSelectBtnDelete:"??????",DlgTextareaName:"??????",DlgTextareaCols:"???",DlgTextareaRows:"???",DlgTextName:"??????",DlgTextValue:"???",DlgTextCharWidth:"?????????",DlgTextMaxChars:"?????????",DlgTextType:"?????????",DlgTextTypeText:"????????????",DlgTextTypePass:"?????????????????????",DlgHiddenName:"??????",DlgHiddenValue:"???",BulletedListProp:"???????????? ???????????????",NumberedListProp:"???????????? ???????????????",DlgLstStart:"????????????",DlgLstType:"?????????",DlgLstTypeCircle:"??????",DlgLstTypeDisc:"??????",DlgLstTypeSquare:"??????",DlgLstTypeNumbers:"?????????????????? (1, 2, 3)",DlgLstTypeLCase:"??????????????? (a, b, c)",DlgLstTypeUCase:"??????????????? (A, B, C)",DlgLstTypeSRoman:"???????????????????????? (i, ii, iii)",DlgLstTypeLRoman:"???????????????????????? (I, II, III)",DlgDocGeneralTab:"??????",DlgDocBackTab:"??????",DlgDocColorsTab:"??????????????????",DlgDocMetaTab:"???????????????",DlgDocPageTitle:"?????????????????????",DlgDocLangDir:"???????????????????????????",DlgDocLangDirLTR:"?????????????????????(LTR)",DlgDocLangDirRTL:"?????????????????????(RTL)",DlgDocLangCode:"???????????????",DlgDocCharSet:"????????????????????????",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"??????????????????????????????",DlgDocDocType:"???????????????????????????",DlgDocDocTypeOther:"????????????????????????????????????",DlgDocIncXHTML:"XHTML???????????????????????????",DlgDocBgColor:"?????????",DlgDocBgImage:"???????????? URL",DlgDocBgNoScroll:"??????????????????????????????",DlgDocCText:"????????????",DlgDocCLink:"?????????",DlgDocCVisited:"???????????????????????????",DlgDocCActive:"????????????????????????",DlgDocMargins:"????????????????????????",DlgDocMaTop:"??????",DlgDocMaLeft:"???",DlgDocMaRight:"???",DlgDocMaBottom:"??????",DlgDocMeIndex:"????????????????????????(??????????????????)",DlgDocMeDescr:"???????????????",DlgDocMeAuthor:"???????????????",DlgDocMeCopy:"??????????????????",DlgDocPreview:"???????????????",Templates:"??????????????????(??????)",DlgTemplatesTitle:"????????????????????????",DlgTemplatesSelMsg:"?????????????????????????????????????????????????????????????????????????????? (????????????????????????????????????????????????):",DlgTemplatesLoading:"???????????????????????????????????????. ?????????????????????????????????...",DlgTemplatesNoTpl:"(????????????????????????????????????????????????)",DlgTemplatesReplace:"??????????????????????????????????????????????????????",DlgAboutAboutTab:"?????????????????????",DlgAboutBrowserInfoTab:"??????????????????",DlgAboutLicenseTab:"???????????????",DlgAboutVersion:"???????????????",DlgAboutInfo:"????????????????????????????????????",DlgDivGeneralTab:"??????",DlgDivAdvancedTab:"???????????????",DlgDivStyle:"????????????",DlgDivInlineStyle:"???????????????????????????"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/km.js b/horde/services/editor/fckeditor/editor/lang/km.js
deleted file mode 100644
index 8febbcd8b..000000000
--- a/horde/services/editor/fckeditor/editor/lang/km.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"?????????????????????????????????????????????",ToolbarExpand:"??????????????????????????????????????????",Save:"????????????????????????",NewPage:"???????????????????????????",Preview:"??????????????????????????????",Cut:"??????????????????",Copy:"??????????????????",Paste:"????????????????????????",PasteText:"??????????????????????????????????????????????????????????????????",PasteWord:"?????????????????????????????? Word",Print:"????????????????????????",SelectAll:"?????????????????????????????????????????????",RemoveFormat:"?????????????????? ?????????????????????",InsertLinkLbl:"??????????????????",InsertLink:"??????????????????/?????????????????? ??????????????????",RemoveLink:"???????????????????????????",VisitLink:"Open Link",Anchor:"??????????????????/?????????????????? ??????????????????",AnchorDelete:"Remove Anchor",InsertImageLbl:"??????????????????",InsertImage:"??????????????????/?????????????????? ??????????????????",InsertFlashLbl:"Flash",InsertFlash:"??????????????????/?????????????????? Flash",InsertTableLbl:"???????????????",InsertTable:"??????????????????/?????????????????? ???????????????",InsertLineLbl:"?????????????????????",InsertLine:"??????????????????????????????????????????????????????",InsertSpecialCharLbl:"??????????????????????????????",InsertSpecialChar:"????????????????????????????????????????????????",InsertSmileyLbl:"??????????????????",InsertSmiley:"?????????????????? ??????????????????",About:"???????????? FCKeditor",Bold:"??????????????????????????????",Italic:"??????????????????????????????",Underline:"??????????????????????????????????????????????????????????????????",StrikeThrough:"???????????????????????????????????????????????????????????????????????????",Subscript:"???????????????????????????????????????",Superscript:"??????????????????????????????",LeftJustify:"??????????????????????????????",CenterJustify:"?????????????????????????????????",RightJustify:"??????????????????????????????",BlockJustify:"??????????????????????????????",DecreaseIndent:"??????????????????????????????????????????????????????",IncreaseIndent:"?????????????????????????????????????????????????????????",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"???????????????????????????",Redo:"??????????????????????????????",NumberedListLbl:"????????????????????????????????????",NumberedList:"??????????????????/????????? ????????????????????????????????????",BulletedListLbl:"????????????????????????????????????????????????",BulletedList:"??????????????????/????????? ????????????????????????????????????????????????",ShowTableBorders:"?????????????????????????????????????????????",ShowDetails:"???????????????????????????????????????",Style:"????????????",FontFormat:"????????????",Font:"???????????????",FontSize:"????????????",TextColor:"????????????????????????",BGColor:"?????????????????????????????????????????????",Source:"?????????",Find:"?????????????????????",Replace:"???????????????",SpellCheck:"????????????????????????????????????????????????????????????",UniversalKeyboard:"??????????????????????????????????????????????????????",PageBreakLbl:"??????????????????????????????????????????",PageBreak:"?????????????????? ??????????????????????????????????????????",Form:"???????????????",Checkbox:"??????????????????????????????????????????",RadioButton:"?????????????????????????????????????????????",TextField:"??????????????????????????????????????????",Textarea:"????????????????????????????????????????????????",HiddenField:"?????????????????????",Button:"??????????????????",SelectionField:"?????????????????????????????????",ImageButton:"????????????????????????????????????",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"????????????????????????????????????",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"?????????????????????????????????",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"????????????????????????",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"??????????????????",MergeCells:"???????????????????????????",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"????????????????????????",CellProperties:"?????????????????????????????????",TableProperties:"???????????????????????????????????????",ImageProperties:"??????????????????????????????????????????",FlashProperties:"???????????????????????? Flash",AnchorProp:"??????????????????????????????????????????",ButtonProp:"???????????????????????? ??????????????????",CheckboxProp:"??????????????????????????????????????????????????????????????????",HiddenFieldProp:"?????????????????????????????????????????????",RadioButtonProp:"????????????????????????????????????????????????????????????",ImageButtonProp:"????????????????????????????????????????????????????????????",TextFieldProp:"???????????????????????????????????????????????????",SelectionFieldProp:"?????????????????????????????????????????????????????????",TextareaProp:"???????????????????????????????????????????????????????????????????????????",FormProp:"???????????????????????????????????????",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",ProcessingXHTML:"??????????????????????????????????????? XHTML ??? ????????????????????????...",Done:"??????????????????????????????",PasteWordConfirm:"??????????????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????????????????????????Word?????? ?????????????????????????????????????????????????????????????????????????????????????????????????????????????",NotCompatiblePaste:"????????????????????????????????????????????????????????????????????????????????? Internet Explorer ??????????????? 5.5 ?????? ?????????????????? ??? ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",UnknownToolbarItem:'???????????????????????????????????????????????? ??????????????????????????? "%1"',UnknownCommand:'????????????????????????????????????????????? ??????????????????????????? "%1"',NotImplemented:"?????????????????????????????? ???????????????????????????????????????",UnknownToolbarSet:'??????????????????????????? "%1" ?????????????????? ???',NoActiveX:'??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ??? ???????????????????????????????????????????????????????????? "ActiveX ?????????????????????????????????????????????????????????????????? (plug-ins)" ????????????????????????????????? ??? ??????????????????????????????????????????????????????????????? ??????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ???',BrowseServerBlocked:"The resources browser could not be opened. Make sure that all popup blockers are disabled.",DialogBlocked:"???????????????????????????????????????????????????????????? ??? ?????????????????????????????????????????????????????????????????????????????? ??????????????????????????? (popup) ?????????????????????????????????????????????????????? ???",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"?????????????????????",DlgBtnCancel:"??????????????????????????????",DlgBtnClose:"?????????",DlgBtnBrowseServer:"?????????",DlgAdvancedTag:"??????????????????????????????",DlgOpOther:"???????????????????????>",DlgInfoTab:"??????????????????",DlgAlertUrl:"???????????????????????? URL",DlgGenNotSet:"?????????????????>",DlgGenId:"Id",DlgGenLangDir:"???????????????????????????",DlgGenLangDirLtr:"??????????????????????????????????????????(LTR)",DlgGenLangDirRtl:"??????????????????????????????????????????(RTL)",DlgGenLangCode:"??????????????????????????????",DlgGenAccessKey:"?????? ???????????????????????????",DlgGenName:"???????????????",DlgGenTabIndex:"????????? Tab",DlgGenLongDescr:"???????????????????????? URL ?????????",DlgGenClass:"Stylesheet Classes",DlgGenTitle:"????????????????????? ????????????????????????",DlgGenContType:"???????????????????????????????????? ????????????????????????",DlgGenLinkCharset:"???????????????????????????????????????????????????????????????",DlgGenStyle:"????????????",DlgImgTitle:"??????????????????????????????????????????",DlgImgInfoTab:"????????????????????????????????????????????????",DlgImgBtnUpload:"????????????????????????????????????????????????????????????????????????????????????",DlgImgURL:"URL",DlgImgUpload:"???????????????",DlgImgAlt:"?????????????????????????????????",DlgImgWidth:"????????????",DlgImgHeight:"???????????????",DlgImgLockRatio:"????????????????????????",DlgBtnResetSize:"?????????????????????????????????????????????",DlgImgBorder:"????????????",DlgImgHSpace:"???????????????????????????",DlgImgVSpace:"?????????????????????????????????",DlgImgAlign:"?????????????????????????????????",DlgImgAlignLeft:"?????????????????????",DlgImgAlignAbsBottom:"Abs Bottom",DlgImgAlignAbsMiddle:"Abs Middle",DlgImgAlignBaseline:"???????????????????????????????????????????????????",DlgImgAlignBottom:"????????????????????????",DlgImgAlignMiddle:"??????????????????",DlgImgAlignRight:"????????????????????????",DlgImgAlignTextTop:"????????????????????????",DlgImgAlignTop:"???????????????",DlgImgPreview:"??????????????????????????????",DlgImgAlertUrl:"????????????????????????????????????????????????????????????????????????????????????",DlgImgLinkTab:"??????????????????",DlgFlashTitle:"???????????????????????? Flash",DlgFlashChkPlay:"??????????????????????????????????????????????????????",DlgFlashChkLoop:"?????????????????????",DlgFlashChkMenu:"?????????????????? ??????????????????????????? Flash",DlgFlashScale:"????????????",DlgFlashScaleAll:"???????????????????????????????????????",DlgFlashScaleNoBorder:"???????????????????????????????????????",DlgFlashScaleFit:"???????????????????????????",DlgLnkWindowTitle:"??????????????????",DlgLnkInfoTab:"????????????????????????????????????????????????",DlgLnkTargetTab:"???????????????",DlgLnkType:"????????????????????????????????????",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"???????????????????????????????????????????????????????????????",DlgLnkTypeEMail:"??????????????????",DlgLnkProto:"???????????????????????????",DlgLnkProtoOther:"???????????????????????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"??????????????????????????????????????????",DlgLnkAnchorByName:"??????????????????????????????????????????????????????",DlgLnkAnchorById:"????????? Id",DlgLnkNoAnchors:"(No anchors available in the document)",DlgLnkEMail:"??????????????????",DlgLnkEMailSubject:"???????????????????????????????????????",DlgLnkEMailBody:"??????????????????",DlgLnkUpload:"???????????????",DlgLnkBtnUpload:"???????????????",DlgLnkTarget:"???????????????",DlgLnkTargetFrame:"????????????????????>",DlgLnkTargetPopup:"????????????????? ?????????>",DlgLnkTargetBlank:"?????????????????????????????? (_blank)",DlgLnkTargetParent:"???????????????????????? (_parent)",DlgLnkTargetSelf:"?????????????????????????????? (_self)",DlgLnkTargetTop:"????????????????????????????????????(_top)",DlgLnkTargetFrameName:"??????????????????????????????????????????????????????????????????",DlgLnkPopWinName:"??????????????????????????????????????????",DlgLnkPopWinFeat:"?????????????????????????????????????????????????????????",DlgLnkPopResize:"??????????????????????????????????????????????????????",DlgLnkPopLocation:"????????? ??????????????????",DlgLnkPopMenu:"????????? ???????????????",DlgLnkPopScroll:"????????? ?????????",DlgLnkPopStatus:"????????? ??????????????????",DlgLnkPopToolbar:"????????? ??????????????????",DlgLnkPopFullScrn:"??????????????????????????????(IE)",DlgLnkPopDependent:"??????????????????????????? (Netscape)",DlgLnkPopWidth:"????????????",DlgLnkPopHeight:"???????????????",DlgLnkPopLeft:"??????????????????????????????????????????",DlgLnkPopTop:"?????????????????????????????????",DlnLnkMsgNoUrl:"???????????????????????? ?????????????????????????????? URL",DlnLnkMsgNoEMail:"???????????????????????? ?????????????????????????????? ??????????????????",DlnLnkMsgNoAnchor:"????????????????????????????????? ??????????????????",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"???????????????????????? ?????????",DlgColorBtnClear:"?????????",DlgColorHighlight:"?????????????????????",DlgColorSelected:"?????????????????????????????????",DlgSmileyTitle:"????????????????????????????????????",DlgSpecialCharTitle:"????????????????????????????????????",DlgTableTitle:"???????????????????????? ???????????????",DlgTableRows:"????????????????????????",DlgTableColumns:"???????????????",DlgTableBorder:"????????????????????????",DlgTableAlign:"??????????????????????????????????????????",DlgTableAlignNotSet:"???????????????????????>",DlgTableAlignLeft:"????????????????????????",DlgTableAlignCenter:"??????????????????",DlgTableAlignRight:"????????????????????????",DlgTableWidth:"????????????",DlgTableWidthPx:"??????????????????",DlgTableWidthPc:"???????????????",DlgTableHeight:"???????????????",DlgTableCellSpace:"????????????????????????",DlgTableCellPad:"??????????????????",DlgTableCaption:"?????????????????????",DlgTableSummary:"???????????????????????????????????????",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"???????????????????????? ?????????",DlgCellWidth:"????????????",DlgCellWidthPx:"??????????????????",DlgCellWidthPc:"???????????????",DlgCellHeight:"???????????????",DlgCellWordWrap:"?????????????????????????????????????????????????????????",DlgCellWordWrapNotSet:"???????????????????????>",DlgCellWordWrapYes:"?????????(??????)",DlgCellWordWrapNo:"??????",DlgCellHorAlign:"??????????????????????????????",DlgCellHorAlignNotSet:"???????????????????????>",DlgCellHorAlignLeft:"????????????????????????",DlgCellHorAlignCenter:"??????????????????",DlgCellHorAlignRight:"Right",DlgCellVerAlign:"?????????????????????",DlgCellVerAlignNotSet:"????????????????????>",DlgCellVerAlignTop:"???????????????",DlgCellVerAlignMiddle:"??????????????????",DlgCellVerAlignBottom:"????????????????????????",DlgCellVerAlignBaseline:"???????????????????????????????????????????????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"??????????????????????????????????????????",DlgCellCollSpan:"?????????????????????????????????",DlgCellBackColor:"????????????????????????????????????????????????",DlgCellBorderColor:"?????????????????????",DlgCellBtnSelect:"????????????????????????...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"?????????????????????",DlgFindFindBtn:"?????????????????????",DlgFindNotFoundMsg:"???????????????????????? ?????????????????????????????? ???",DlgReplaceTitle:"???????????????",DlgReplaceFindLbl:"?????????????????????????????????:",DlgReplaceReplaceLbl:"??????????????????????????????:",DlgReplaceCaseChk:"?????????????????????????????????",DlgReplaceReplaceBtn:"???????????????",DlgReplaceReplAllBtn:"????????????????????????????????????",DlgReplaceWordChk:"???????????????????????????????????????????????????",PasteErrorCut:"??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????? ??? ?????????????????????????????????????????????????????? ???????????????????????? (Ctrl+X) ???",PasteErrorCopy:"??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????? ??? ?????????????????????????????????????????????????????? ???????????????????????? (Ctrl+C)???",PasteAsText:"????????????????????????????????????????????????????????????",PasteFromWord:"????????????????????????????????????????????????????????? Word",DlgPasteMsg2:"?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ?????? ???(Ctrl+V) ?????????????????? OK ???",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"??????????????????????????????????????????????????????????????????????????????",DlgPasteRemoveStyles:"?????????????????????",ColorAutomatic:"????????????????????????????????????",ColorMoreColors:"?????????????????????????????????..",DocProps:"???????????????????????? ???????????????",DlgAnchorTitle:"????????????????????????????????????????????????????????????????????????",DlgAnchorName:"??????????????????????????????????????????",DlgAnchorErrorName:"???????????????????????? ??????????????????????????????????????????",DlgSpellNotInDic:"????????????????????????????????????????????????????????????",DlgSpellChangeTo:"???????????????????????????????????????",DlgSpellBtnIgnore:"??????????????????????????????????????????",DlgSpellBtnIgnoreAll:"?????????????????????????????????????????? ?????????????????????",DlgSpellBtnReplace:"???????????????",DlgSpellBtnReplaceAll:"????????????????????????????????????",DlgSpellBtnUndo:"???????????????????????????",DlgSpellNoSuggestions:"- ?????????????????????????????? -",DlgSpellProgress:"???????????????????????????????????????????????????????????????????????????...",DlgSpellNoMispell:"???????????????????????????????????????????????????????????????????????????????????????: ??????????????????????????????",DlgSpellNoChanges:"???????????????????????????????????????????????????????????????????????????????????????: ???????????????????????????????????????????????????",DlgSpellOneChange:"???????????????????????????????????????????????????????????????????????????????????????: ?????????????????????????????????????????????????????????????????????????????????",DlgSpellManyChanges:"???????????????????????????????????????????????????????????????????????????????????????: %1 ?????????????????????????????????????????????????????????",IeSpellDownload:"?????????????????????????????????????????????????????????????????????????????????????????????????????? ??? ???????????????????????????????????????????",DlgButtonText:"??????????????????(????????????)",DlgButtonType:"??????????????????",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"???????????????",DlgCheckboxValue:"????????????",DlgCheckboxSelected:"?????????????????????????????????",DlgFormName:"???????????????",DlgFormAction:"????????????????????????",DlgFormMethod:"????????????",DlgSelectName:"???????????????",DlgSelectValue:"????????????",DlgSelectSize:"????????????",DlgSelectLines:"?????????????????????",DlgSelectChkMulti:"????????????????????????????????????????????????????????????????????????",DlgSelectOpAvail:"???????????????????????????????????????????????? ??????????????????????????????????????????",DlgSelectOpText:"???????????????",DlgSelectOpValue:"????????????",DlgSelectBtnAdd:"??????????????????",DlgSelectBtnModify:"?????????????????????????????????",DlgSelectBtnUp:"??????",DlgSelectBtnDown:"???????????????",DlgSelectBtnSetValue:"Set as selected value",DlgSelectBtnDelete:"?????????",DlgTextareaName:"???????????????",DlgTextareaCols:"???????????????",DlgTextareaRows:"????????????????????????",DlgTextName:"???????????????",DlgTextValue:"????????????",DlgTextCharWidth:"???????????? ???????????????",DlgTextMaxChars:"???????????????????????????????????????",DlgTextType:"??????????????????",DlgTextTypeText:"???????????????",DlgTextTypePass:"?????????????????????????????????",DlgHiddenName:"???????????????",DlgHiddenValue:"????????????",BulletedListProp:"????????????????????????????????????????????????",NumberedListProp:"??????????????????????????????????????????",DlgLstStart:"Start",DlgLstType:"??????????????????",DlgLstTypeCircle:"??????????????????",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"????????????",DlgLstTypeNumbers:"?????????(1, 2, 3)",DlgLstTypeLCase:"????????????????????????(a, b, c)",DlgLstTypeUCase:"?????????????????????(A, B, C)",DlgLstTypeSRoman:"??????????????????????????????????????????(i, ii, iii)",DlgLstTypeLRoman:"???????????????????????????????????????(I, II, III)",DlgDocGeneralTab:"????????????",DlgDocBackTab:"???????????????????????????????????????",DlgDocColorsTab:"??????????????????????????? ????????????",DlgDocMetaTab:"??????????????????????????????",DlgDocPageTitle:"????????????????????????????????????",DlgDocLangDir:"??????????????????????????????????????????",DlgDocLangDirLTR:"??????????????????????????????????????????(LTR)",DlgDocLangDirRTL:"??????????????????????????????????????????(RTL)",DlgDocLangCode:"??????????????????????????????",DlgDocCharSet:"?????????????????????????????????????????????",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"?????????????????????????????????????????????????????????????????????",DlgDocDocType:"????????????????????????????????????????????????",DlgDocDocTypeOther:"????????????????????????????????????????????????????????????????????????",DlgDocIncXHTML:"?????????????????? XHTML",DlgDocBgColor:"?????????????????????????????????",DlgDocBgImage:"URL ??????????????????????????????????????????????????????",DlgDocBgNoScroll:"??????????????????????????????????????????????????????",DlgDocCText:"??????????????????",DlgDocCLink:"??????????????????",DlgDocCVisited:"????????????????????????????????????",DlgDocCActive:"??????????????????????????????????????????",DlgDocMargins:"???????????????????????????",DlgDocMaTop:"??????",DlgDocMaLeft:"???????????????",DlgDocMaRight:"???????????????",DlgDocMaBottom:"???????????????",DlgDocMeIndex:"??????????????????????????????????????????????????? (????????????????????????????????????????????????????????????)",DlgDocMeDescr:"????????????????????????????????????????????????????????????????????????????????????",DlgDocMeAuthor:"??????????????????????????????",DlgDocMeCopy:"????????????????????????????????????",DlgDocPreview:"??????????????????????????????",Templates:"???????????????????????????",DlgTemplatesTitle:"??????????????????????????? ?????????????????????????????????",DlgTemplatesSelMsg:"???????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????? (????????????????????????????????????????????????):",DlgTemplatesLoading:"?????????????????????????????????????????????????????????????????? ??? ????????????????????????...",DlgTemplatesNoTpl:"(????????????????????????????????????????????????????????????????????????????????????)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"????????????",DlgAboutBrowserInfoTab:"?????????????????????????????????????????????????????????",DlgAboutLicenseTab:"License",DlgAboutVersion:"??????????????????",DlgAboutInfo:"???????????????????????????????????????????????????????????? ???????????????????????????",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/ko.js b/horde/services/editor/fckeditor/editor/lang/ko.js
deleted file mode 100644
index 068c628de..000000000
--- a/horde/services/editor/fckeditor/editor/lang/ko.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"?????? ?????????",ToolbarExpand:"?????? ?????????",Save:"????????????",NewPage:"??? ??????",Preview:"????????????",Cut:"????????????",Copy:"????????????",Paste:"????????????",PasteText:"???????????? ????????????",PasteWord:"MS Word ???????????? ????????????",Print:"????????????",SelectAll:"????????????",RemoveFormat:"?????? ?????????",InsertLinkLbl:"??????",InsertLink:"?????? ??????/??????",RemoveLink:"?????? ??????",VisitLink:"Open Link",Anchor:"????????? ??????/??????",AnchorDelete:"Remove Anchor",InsertImageLbl:"?????????",InsertImage:"????????? ??????/??????",InsertFlashLbl:"?????????",InsertFlash:"????????? ??????/??????",InsertTableLbl:"???",InsertTable:"??? ??????/??????",InsertLineLbl:"?????????",InsertLine:"????????? ??????",InsertSpecialCharLbl:"???????????? ??????",InsertSpecialChar:"???????????? ??????",InsertSmileyLbl:"?????????",InsertSmiley:"????????? ??????",About:"FCKeditor??? ?????????",Bold:"?????????",Italic:"?????????",Underline:"??????",StrikeThrough:"?????????",Subscript:"?????? ??????",Superscript:"??? ??????",LeftJustify:"?????? ??????",CenterJustify:"????????? ??????",RightJustify:"????????? ??????",BlockJustify:"?????? ??????",DecreaseIndent:"????????????",IncreaseIndent:"????????????",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"??????",Redo:"?????????",NumberedListLbl:"???????????? ??????",NumberedList:"???????????? ??????",BulletedListLbl:"???????????? ??????",BulletedList:"???????????? ??????",ShowTableBorders:"??? ????????? ??????",ShowDetails:"???????????? ??????",Style:"?????????",FontFormat:"??????",Font:"??????",FontSize:"?????? ??????",TextColor:"?????? ??????",BGColor:"?????? ??????",Source:"??????",Find:"??????",Replace:"?????????",SpellCheck:"????????????",UniversalKeyboard:"????????? ?????????",PageBreakLbl:"Page Break",PageBreak:"Insert Page Break",Form:"???",Checkbox:"????????????",RadioButton:"???????????????",TextField:"????????????",Textarea:"????????????",HiddenField:"????????????",Button:"??????",SelectionField:"????????????",ImageButton:"???????????????",FitWindow:"????????? ?????????",ShowBlocks:"Show Blocks",EditLink:"?????? ??????",CellCM:"???/???(Cell)",RowCM:"???(Row)",ColumnCM:"???(Column)",InsertRowAfter:"?????? ??? ??????",InsertRowBefore:"?????? ??? ??????",DeleteRows:"????????? ??????",InsertColumnAfter:"?????? ??? ??????",InsertColumnBefore:"?????? ??? ??????",DeleteColumns:"????????? ??????",InsertCellAfter:"?????? ???/??? ??????",InsertCellBefore:"?????? ???/??? ??????",DeleteCells:"??? ??????",MergeCells:"??? ?????????",MergeRight:"????????? ?????????",MergeDown:"?????? ?????????",HorizontalSplitCell:"?????? ?????????",VerticalSplitCell:"?????? ?????????",TableDelete:"??? ??????",CellProperties:"??? ??????",TableProperties:"??? ??????",ImageProperties:"????????? ??????",FlashProperties:"????????? ??????",AnchorProp:"????????? ??????",ButtonProp:"?????? ??????",CheckboxProp:"???????????? ??????",HiddenFieldProp:"???????????? ??????",RadioButtonProp:"??????????????? ??????",ImageButtonProp:"??????????????? ??????",TextFieldProp:"???????????? ??????",SelectionFieldProp:"???????????? ??????",TextareaProp:"???????????? ??????",FormProp:"??? ??????",FontFormats:"Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6",ProcessingXHTML:"XHTML ?????????. ????????? ?????????????????????.",Done:"??????",PasteWordConfirm:"???????????? ??? ???????????? MS Word?????? ????????? ????????????. ???????????? ?????? MS Word ????????? ?????????????????????????",NotCompatiblePaste:"??? ????????? ???????????????????????? 5.5 ?????? ??????????????? ???????????????. ????????? ???????????? ?????? ???????????? ???????????????????",UnknownToolbarItem:'???????????? ???????????????. : "%1"',UnknownCommand:'???????????? ???????????????. : "%1"',NotImplemented:"????????? ???????????? ???????????????.",UnknownToolbarSet:'?????? ????????? ????????????. : "%1"',NoActiveX:'??????????????? ?????? ???????????? ?????? ?????? ????????? ????????? ????????? ?????? ??? ????????????. "?????????-?????? ????????? ????????? ???" ????????? ???????????? ????????? ????????? ????????? ????????? ??? ????????????.',BrowseServerBlocked:"???????????? ????????? ????????? ????????????. ???????????? ????????? ??????????????? ???????????? ????????????.",DialogBlocked:"????????? ???????????? ??? ??? ????????????. ???????????? ????????? ??????????????? ???????????? ????????????.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"???",DlgBtnCancel:"?????????",DlgBtnClose:"??????",DlgBtnBrowseServer:"?????? ??????",DlgAdvancedTag:"?????????",DlgOpOther:"?????>",DlgInfoTab:"??????",DlgAlertUrl:"URL??? ??????????????????",DlgGenNotSet:"??????????? ??????>",DlgGenId:"ID",DlgGenLangDir:"?????? ??????",DlgGenLangDirLtr:"???????????? ????????? (LTR)",DlgGenLangDirRtl:"??????????????? ?????? (RTL)",DlgGenLangCode:"?????? ??????",DlgGenAccessKey:"????????? ???",DlgGenName:"Name",DlgGenTabIndex:"??? ??????",DlgGenLongDescr:"URL ??????",DlgGenClass:"Stylesheet Classes",DlgGenTitle:"Advisory Title",DlgGenContType:"Advisory Content Type",DlgGenLinkCharset:"Linked Resource Charset",DlgGenStyle:"Style",DlgImgTitle:"????????? ??????",DlgImgInfoTab:"????????? ??????",DlgImgBtnUpload:"????????? ??????",DlgImgURL:"URL",DlgImgUpload:"?????????",DlgImgAlt:"????????? ??????",DlgImgWidth:"??????",DlgImgHeight:"??????",DlgImgLockRatio:"?????? ??????",DlgBtnResetSize:"?????? ?????????",DlgImgBorder:"?????????",DlgImgHSpace:"????????????",DlgImgVSpace:"????????????",DlgImgAlign:"??????",DlgImgAlignLeft:"??????",DlgImgAlignAbsBottom:"?????????(Abs Bottom)",DlgImgAlignAbsMiddle:"?????????(Abs Middle)",DlgImgAlignBaseline:"?????????",DlgImgAlignBottom:"??????",DlgImgAlignMiddle:"??????",DlgImgAlignRight:"?????????",DlgImgAlignTextTop:"????????????",DlgImgAlignTop:"???",DlgImgPreview:"????????????",DlgImgAlertUrl:"????????? URL??? ??????????????????",DlgImgLinkTab:"??????",DlgFlashTitle:"????????? ????????????",DlgFlashChkPlay:"????????????",DlgFlashChkLoop:"??????",DlgFlashChkMenu:"??????????????? ??????",DlgFlashScale:"??????",DlgFlashScaleAll:"????????????",DlgFlashScaleNoBorder:"???????????????",DlgFlashScaleFit:"??????????????????",DlgLnkWindowTitle:"??????",DlgLnkInfoTab:"?????? ??????",DlgLnkTargetTab:"??????",DlgLnkType:"?????? ??????",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"?????????",DlgLnkTypeEMail:"?????????",DlgLnkProto:"????????????",DlgLnkProtoOther:"?????>",DlgLnkURL:"URL",DlgLnkAnchorSel:"????????? ??????",DlgLnkAnchorByName:"????????? ??????",DlgLnkAnchorById:"????????? ID",DlgLnkNoAnchors:"(????????? ???????????? ????????????.)",DlgLnkEMail:"????????? ??????",DlgLnkEMailSubject:"??????",DlgLnkEMailBody:"??????",DlgLnkUpload:"?????????",DlgLnkBtnUpload:"????????? ??????",DlgLnkTarget:"??????",DlgLnkTargetFrame:"????????>",DlgLnkTargetPopup:"????????>",DlgLnkTargetBlank:"??? ??? (_blank)",DlgLnkTargetParent:"?????? ??? (_parent)",DlgLnkTargetSelf:"?????? ??? (_self)",DlgLnkTargetTop:"??? ?????? ??? (_top)",DlgLnkTargetFrameName:"?????? ????????? ??????",DlgLnkPopWinName:"????????? ??????",DlgLnkPopWinFeat:"????????? ??????",DlgLnkPopResize:"????????????",DlgLnkPopLocation:"???????????????",DlgLnkPopMenu:"?????????",DlgLnkPopScroll:"????????????",DlgLnkPopStatus:"?????????",DlgLnkPopToolbar:"??????",DlgLnkPopFullScrn:"???????????? (IE)",DlgLnkPopDependent:"Dependent (Netscape)",DlgLnkPopWidth:"??????",DlgLnkPopHeight:"??????",DlgLnkPopLeft:"?????? ??????",DlgLnkPopTop:"?????? ??????",DlnLnkMsgNoUrl:"?????? URL??? ??????????????????.",DlnLnkMsgNoEMail:"?????????????????? ??????????????????.",DlnLnkMsgNoAnchor:"??????????????? ??????????????????.",DlnLnkMsgInvPopName:"???????????? ???????????? ????????? ???????????? ????????????.",DlgColorTitle:"?????? ??????",DlgColorBtnClear:"?????????",DlgColorHighlight:"??????",DlgColorSelected:"?????????",DlgSmileyTitle:"????????? ??????",DlgSpecialCharTitle:"???????????? ??????",DlgTableTitle:"??? ??????",DlgTableRows:"?????????",DlgTableColumns:"?????????",DlgTableBorder:"????????? ??????",DlgTableAlign:"??????",DlgTableAlignNotSet:"??????????? ??????>",DlgTableAlignLeft:"??????",DlgTableAlignCenter:"?????????",DlgTableAlignRight:"?????????",DlgTableWidth:"??????",DlgTableWidthPx:"??????",DlgTableWidthPc:"?????????",DlgTableHeight:"??????",DlgTableCellSpace:"??? ??????",DlgTableCellPad:"??? ??????",DlgTableCaption:"??????",DlgTableSummary:"Summary",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"??? ??????",DlgCellWidth:"??????",DlgCellWidthPx:"??????",DlgCellWidthPc:"?????????",DlgCellHeight:"??????",DlgCellWordWrap:"?????????",DlgCellWordWrapNotSet:"??????????? ??????>",DlgCellWordWrapYes:"???",DlgCellWordWrapNo:"?????????",DlgCellHorAlign:"?????? ??????",DlgCellHorAlignNotSet:"??????????? ??????>",DlgCellHorAlignLeft:"??????",DlgCellHorAlignCenter:"?????????",DlgCellHorAlignRight:"?????????",DlgCellVerAlign:"?????? ??????",DlgCellVerAlignNotSet:"??????????? ??????>",DlgCellVerAlignTop:"???",DlgCellVerAlignMiddle:"??????",DlgCellVerAlignBottom:"??????",DlgCellVerAlignBaseline:"?????????",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"?????? ?????????",DlgCellCollSpan:"?????? ?????????",DlgCellBackColor:"?????? ??????",DlgCellBorderColor:"????????? ??????",DlgCellBtnSelect:"??????",DlgFindAndReplaceTitle:"?????? & ?????????",DlgFindTitle:"??????",DlgFindFindBtn:"??????",DlgFindNotFoundMsg:"???????????? ?????? ??? ????????????.",DlgReplaceTitle:"?????????",DlgReplaceFindLbl:"?????? ?????????:",DlgReplaceReplaceLbl:"?????? ?????????:",DlgReplaceCaseChk:"???????????? ??????",DlgReplaceReplaceBtn:"?????????",DlgReplaceReplAllBtn:"?????? ?????????",DlgReplaceWordChk:"????????? ??????",PasteErrorCut:"??????????????? ????????????????????? ???????????? ????????? ????????? ??? ????????????. ????????? ????????? ??????????????????. (Ctrl+X).",PasteErrorCopy:"??????????????? ????????????????????? ???????????? ????????? ????????? ??? ????????????. ????????? ????????? ??????????????????. (Ctrl+C).",PasteAsText:"???????????? ????????????",PasteFromWord:"MS Word ???????????? ????????????",DlgPasteMsg2:"???????????? (Ctrl+V) ??? ???????????? ???????????? ???????????? OK ??? ????????????.",DlgPasteSec:"???????????? ?????? ???????????? ??????, ??????????????? ????????? ?????? ????????? ??? ????????????. ??? ?????? ?????? ???????????? ????????????.",DlgPasteIgnoreFont:"?????? ?????? ??????",DlgPasteRemoveStyles:"????????? ?????? ??????",ColorAutomatic:"????????????",ColorMoreColors:"????????????...",DocProps:"?????? ??????",DlgAnchorTitle:"????????? ??????",DlgAnchorName:"????????? ??????",DlgAnchorErrorName:"????????? ????????? ??????????????????.",DlgSpellNotInDic:"????????? ?????? ??????",DlgSpellChangeTo:"????????? ??????",DlgSpellBtnIgnore:"?????????",DlgSpellBtnIgnoreAll:"?????? ?????????",DlgSpellBtnReplace:"??????",DlgSpellBtnReplaceAll:"?????? ??????",DlgSpellBtnUndo:"??????",DlgSpellNoSuggestions:"- ???????????? ?????? -",DlgSpellProgress:"??????????????? ??????????????????...",DlgSpellNoMispell:"???????????? ??????: ????????? ????????? ????????????.",DlgSpellNoChanges:"???????????? ??????: ????????? ????????? ????????????.",DlgSpellOneChange:"???????????? ??????: ????????? ?????????????????????.",DlgSpellManyChanges:"???????????? ??????: %1 ????????? ?????????????????????.",IeSpellDownload:"?????? ???????????? ???????????? ???????????????. ?????? ???????????????????????????????",DlgButtonText:"????????????(???)",DlgButtonType:"????????????",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"??????",DlgCheckboxValue:"???",DlgCheckboxSelected:"?????????",DlgFormName:"?????????",DlgFormAction:"????????????(Action)",DlgFormMethod:"??????(Method)",DlgSelectName:"??????",DlgSelectValue:"???",DlgSelectSize:"????????????",DlgSelectLines:"???",DlgSelectChkMulti:"???????????? ?????? ??????",DlgSelectOpAvail:"????????????",DlgSelectOpText:"??????",DlgSelectOpValue:"???",DlgSelectBtnAdd:"??????",DlgSelectBtnModify:"??????",DlgSelectBtnUp:"??????",DlgSelectBtnDown:"?????????",DlgSelectBtnSetValue:"?????????????????? ??????",DlgSelectBtnDelete:"??????",DlgTextareaName:"??????",DlgTextareaCols:"??????",DlgTextareaRows:"??????",DlgTextName:"??????",DlgTextValue:"???",DlgTextCharWidth:"?????? ??????",DlgTextMaxChars:"?????? ?????????",DlgTextType:"??????",DlgTextTypeText:"?????????",DlgTextTypePass:"????????????",DlgHiddenName:"??????",DlgHiddenValue:"???",BulletedListProp:"???????????? ?????? ??????",NumberedListProp:"???????????? ?????? ??????",DlgLstStart:"Start",DlgLstType:"??????",DlgLstTypeCircle:"???(Circle)",DlgLstTypeDisc:"Disc",DlgLstTypeSquare:"?????????(Square)",DlgLstTypeNumbers:"?????? (1, 2, 3)",DlgLstTypeLCase:"????????? (a, b, c)",DlgLstTypeUCase:"????????? (A, B, C)",DlgLstTypeSRoman:"????????? ????????? (i, ii, iii)",DlgLstTypeLRoman:"????????? ????????? (I, II, III)",DlgDocGeneralTab:"??????",DlgDocBackTab:"??????",DlgDocColorsTab:"?????? ??? ??????",DlgDocMetaTab:"???????????????",DlgDocPageTitle:"????????????",DlgDocLangDir:"?????? ????????????",DlgDocLangDirLTR:"???????????? ????????? (LTR)",DlgDocLangDirRTL:"??????????????? ?????? (RTL)",DlgDocLangCode:"????????????",DlgDocCharSet:"???????????? ?????????",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"?????? ???????????? ?????????",DlgDocDocType:"?????? ??????",DlgDocDocTypeOther:"?????? ????????????",DlgDocIncXHTML:"XHTML ???????????? ??????",DlgDocBgColor:"????????????",DlgDocBgImage:"??????????????? URL",DlgDocBgNoScroll:"????????????????????? ??????",DlgDocCText:"?????????",DlgDocCLink:"??????",DlgDocCVisited:"????????? ??????(Visited)",DlgDocCActive:"???????????? ??????(Active)",DlgDocMargins:"????????? ??????",DlgDocMaTop:"???",DlgDocMaLeft:"??????",DlgDocMaRight:"?????????",DlgDocMaBottom:"??????",DlgDocMeIndex:"?????? ????????? (????????? ??????)",DlgDocMeDescr:"?????? ??????",DlgDocMeAuthor:"?????????",DlgDocMeCopy:"?????????",DlgDocPreview:"????????????",Templates:"?????????",DlgTemplatesTitle:"?????? ?????????",DlgTemplatesSelMsg:"??????????????? ????????? ???????????? ??????????????????. (???????????? ????????? ????????? ???????????????.):",DlgTemplatesLoading:"????????? ????????? ????????????????????????. ????????? ?????????????????????.",DlgTemplatesNoTpl:"(???????????? ????????????.)",DlgTemplatesReplace:"?????? ?????? ?????????",DlgAboutAboutTab:"About",DlgAboutBrowserInfoTab:"???????????? ??????",DlgAboutLicenseTab:"License",DlgAboutVersion:"??????",DlgAboutInfo:"??? ?????? ????????? ???????????? ?????? ???????????? ????????????.",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/lt.js b/horde/services/editor/fckeditor/editor/lang/lt.js
deleted file mode 100644
index 9f854cbfb..000000000
--- a/horde/services/editor/fckeditor/editor/lang/lt.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Sutraukti mygtuk?? juost??",ToolbarExpand:"I??pl??sti mygtuk?? juost??",Save:"I??saugoti",NewPage:"Naujas puslapis",Preview:"Per??i??ra",Cut:"I??kirpti",Copy:"Kopijuoti",Paste:"??d??ti",PasteText:"??d??ti kaip gryn?? tekst??",PasteWord:"??d??ti i?? Word",Print:"Spausdinti",SelectAll:"Pa??ym??ti visk??",RemoveFormat:"Panaikinti format??",InsertLinkLbl:"Nuoroda",InsertLink:"??terpti/taisyti nuorod??",RemoveLink:"Panaikinti nuorod??",VisitLink:"Open Link",Anchor:"??terpti/modifikuoti ??ym??",AnchorDelete:"Remove Anchor",InsertImageLbl:"Vaizdas",InsertImage:"??terpti/taisyti vaizd??",InsertFlashLbl:"Flash",InsertFlash:"??terpti/taisyti Flash",InsertTableLbl:"Lentel??",InsertTable:"??terpti/taisyti lentel??",InsertLineLbl:"Linija",InsertLine:"??terpti horizontali?? linij??",InsertSpecialCharLbl:"Spec. simbolis",InsertSpecialChar:"??terpti special?? simbol??",InsertSmileyLbl:"Veideliai",InsertSmiley:"??terpti veidel??",About:"Apie FCKeditor",Bold:"Pusjuodis",Italic:"Kursyvas",Underline:"Pabrauktas",StrikeThrough:"Perbrauktas",Subscript:"Apatinis indeksas",Superscript:"Vir??utinis indeksas",LeftJustify:"Lygiuoti kair??",CenterJustify:"Centruoti",RightJustify:"Lygiuoti de??in??",BlockJustify:"Lygiuoti abi puses",DecreaseIndent:"Suma??inti ??trauk??",IncreaseIndent:"Padidinti ??trauk??",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"At??aukti",Redo:"Atstatyti",NumberedListLbl:"Numeruotas s??ra??as",NumberedList:"??terpti/Panaikinti numeruot?? s??ra????",BulletedListLbl:"Su??enklintas s??ra??as",BulletedList:"??terpti/Panaikinti su??enklint?? s??ra????",ShowTableBorders:"Rodyti lentel??s r??mus",ShowDetails:"Rodyti detales",Style:"Stilius",FontFormat:"??rifto formatas",Font:"??riftas",FontSize:"??rifto dydis",TextColor:"Teksto spalva",BGColor:"Fono spalva",Source:"??altinis",Find:"Rasti",Replace:"Pakeisti",SpellCheck:"Ra??ybos tikrinimas",UniversalKeyboard:"Universali klaviat??ra",PageBreakLbl:"Puslapi?? skirtukas",PageBreak:"??terpti puslapi?? skirtuk??",Form:"Forma",Checkbox:"??ymimasis langelis",RadioButton:"??ymimoji akut??",TextField:"Teksto laukas",Textarea:"Teksto sritis",HiddenField:"Nerodomas laukas",Button:"Mygtukas",SelectionField:"Atrankos laukas",ImageButton:"Vaizdinis mygtukas",FitWindow:"Maximize the editor size",ShowBlocks:"Show Blocks",EditLink:"Taisyti nuorod??",CellCM:"Cell",RowCM:"Row",ColumnCM:"Column",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"??alinti eilutes",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"??alinti stulpelius",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"??alinti langelius",MergeCells:"Sujungti langelius",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"??alinti lentel??",CellProperties:"Langelio savyb??s",TableProperties:"Lentel??s savyb??s",ImageProperties:"Vaizdo savyb??s",FlashProperties:"Flash savyb??s",AnchorProp:"??ym??s savyb??s",ButtonProp:"Mygtuko savyb??s",CheckboxProp:"??ymimojo langelio savyb??s",HiddenFieldProp:"Nerodomo lauko savyb??s",RadioButtonProp:"??ymimosios akut??s savyb??s",ImageButtonProp:"Vaizdinio mygtuko savyb??s",TextFieldProp:"Teksto lauko savyb??s",SelectionFieldProp:"Atrankos lauko savyb??s",TextareaProp:"Teksto srities savyb??s",FormProp:"Formos savyb??s",FontFormats:"Normalus;Formuotas;Kreipinio;Antra??tinis 1;Antra??tinis 2;Antra??tinis 3;Antra??tinis 4;Antra??tinis 5;Antra??tinis 6",ProcessingXHTML:"Apdorojamas XHTML. Pra??ome palaukti...",Done:"Baigta",PasteWordConfirm:"??dedamas tekstas yra pana??us ?? kopij?? i?? Word. Ar J??s norite prie?? ??d??jim?? i??valyti j???",NotCompatiblePaste:"??i komanda yra prieinama tik per Internet Explorer 5.5 ar auk??tesn?? versij??. Ar J??s norite ??terpti be valymo?",UnknownToolbarItem:'Ne??inomas mygtuk?? juosta elementas "%1"',UnknownCommand:'Ne??inomas komandos vardas "%1"',NotImplemented:"Komanda n??ra ??gyvendinta",UnknownToolbarSet:'Mygtuk?? juostos rinkinys "%1" neegzistuoja',NoActiveX:'J??s?? nar??ykl??s saugumo nuostatos gali riboti kai kurias redaktoriaus savybes. J??s turite aktyvuoti opcij?? "Run ActiveX controls and plug-ins". Kitu atveju Jums bus prane??ama apie klaidas ir tr??kstamas savybes.',BrowseServerBlocked:"Ne??manoma atidaryti naujo nar??ykl??s lango. ??sitikinkite, kad i??kylan??i?? lang?? blokavimo programos neveiksnios.",DialogBlocked:"Ne??manoma atidaryti dialogo lango. ??sitikinkite, kad i??kylan??i?? lang?? blokavimo programos neveiksnios.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"OK",DlgBtnCancel:"Nutraukti",DlgBtnClose:"U??daryti",DlgBtnBrowseServer:"Nar??yti po server??",DlgAdvancedTag:"Papildomas",DlgOpOther:"",DlgInfoTab:"Informacija",DlgAlertUrl:"Pra??ome ??ra??yti URL",DlgGenNotSet:"",DlgGenId:"Id",DlgGenLangDir:"Teksto kryptis",DlgGenLangDirLtr:"I?? kair??s ?? de??in?? (LTR)",DlgGenLangDirRtl:"I?? de??in??s ?? kair?? (RTL)",DlgGenLangCode:"Kalbos kodas",DlgGenAccessKey:"Prieigos raktas",DlgGenName:"Vardas",DlgGenTabIndex:"Tabuliavimo indeksas",DlgGenLongDescr:"Ilgas apra??ymas URL",DlgGenClass:"Stili?? lentel??s klas??s",DlgGenTitle:"Konsultacin?? antra??t??",DlgGenContType:"Konsultacinio turinio tipas",DlgGenLinkCharset:"Susiet?? i??tekli?? simboli?? lentel??",DlgGenStyle:"Stilius",DlgImgTitle:"Vaizdo savyb??s",DlgImgInfoTab:"Vaizdo informacija",DlgImgBtnUpload:"Si??sti ?? server??",DlgImgURL:"URL",DlgImgUpload:"Nusi??sti",DlgImgAlt:"Alternatyvus Tekstas",DlgImgWidth:"Plotis",DlgImgHeight:"Auk??tis",DlgImgLockRatio:"I??laikyti proporcij??",DlgBtnResetSize:"Atstatyti dyd??",DlgImgBorder:"R??melis",DlgImgHSpace:"Hor.Erdv??",DlgImgVSpace:"Vert.Erdv??",DlgImgAlign:"Lygiuoti",DlgImgAlignLeft:"Kair??",DlgImgAlignAbsBottom:"Absoliu??i?? apa??i??",DlgImgAlignAbsMiddle:"Absoliut?? vidur??",DlgImgAlignBaseline:"Apatin?? linij??",DlgImgAlignBottom:"Apa??i??",DlgImgAlignMiddle:"Vidur??",DlgImgAlignRight:"De??in??",DlgImgAlignTextTop:"Teksto vir????n??",DlgImgAlignTop:"Vir????n??",DlgImgPreview:"Per??i??ra",DlgImgAlertUrl:"Pra??ome ??vesti vaizdo URL",DlgImgLinkTab:"Nuoroda",DlgFlashTitle:"Flash savyb??s",DlgFlashChkPlay:"Automatinis paleidimas",DlgFlashChkLoop:"Ciklas",DlgFlashChkMenu:"Leisti Flash meniu",DlgFlashScale:"Mastelis",DlgFlashScaleAll:"Rodyti vis??",DlgFlashScaleNoBorder:"Be r??melio",DlgFlashScaleFit:"Tikslus atitikimas",DlgLnkWindowTitle:"Nuoroda",DlgLnkInfoTab:"Nuorodos informacija",DlgLnkTargetTab:"Paskirtis",DlgLnkType:"Nuorodos tipas",DlgLnkTypeURL:"URL",DlgLnkTypeAnchor:"??ym?? ??iame puslapyje",DlgLnkTypeEMail:"El.pa??tas",DlgLnkProto:"Protokolas",DlgLnkProtoOther:"",DlgLnkURL:"URL",DlgLnkAnchorSel:"Pasirinkite ??ym??",DlgLnkAnchorByName:"Pagal ??ym??s vard??",DlgLnkAnchorById:"Pagal ??ym??s Id",DlgLnkNoAnchors:"(??iame dokumente ??ymi?? n??ra)",DlgLnkEMail:"El.pa??to adresas",DlgLnkEMailSubject:"??inut??s tema",DlgLnkEMailBody:"??inut??s turinys",DlgLnkUpload:"Si??sti",DlgLnkBtnUpload:"Si??sti ?? server??",DlgLnkTarget:"Paskirties vieta",DlgLnkTargetFrame:"",DlgLnkTargetPopup:"",DlgLnkTargetBlank:"Naujas langas (_blank)",DlgLnkTargetParent:"Pirminis langas (_parent)",DlgLnkTargetSelf:"Tas pats langas (_self)",DlgLnkTargetTop:"Svarbiausias langas (_top)",DlgLnkTargetFrameName:"Paskirties kadro vardas",DlgLnkPopWinName:"Paskirties lango vardas",DlgLnkPopWinFeat:"I??skleid??iamo lango savyb??s",DlgLnkPopResize:"Kei??iamas dydis",DlgLnkPopLocation:"Adreso juosta",DlgLnkPopMenu:"Meniu juosta",DlgLnkPopScroll:"Slinkties juostos",DlgLnkPopStatus:"B??senos juosta",DlgLnkPopToolbar:"Mygtuk?? juosta",DlgLnkPopFullScrn:"Visas ekranas (IE)",DlgLnkPopDependent:"Priklausomas (Netscape)",DlgLnkPopWidth:"Plotis",DlgLnkPopHeight:"Auk??tis",DlgLnkPopLeft:"Kair?? pozicija",DlgLnkPopTop:"Vir??utin?? pozicija",DlnLnkMsgNoUrl:"Pra??ome ??vesti nuorodos URL",DlnLnkMsgNoEMail:"Pra??ome ??vesti el.pa??to adres??",DlnLnkMsgNoAnchor:"Pra??ome pasirinkti ??ym??",DlnLnkMsgInvPopName:"The popup name must begin with an alphabetic character and must not contain spaces",DlgColorTitle:"Pasirinkite spalv??",DlgColorBtnClear:"Trinti",DlgColorHighlight:"Pary??kinta",DlgColorSelected:"Pa??ym??ta",DlgSmileyTitle:"??terpti veidel??",DlgSpecialCharTitle:"Pasirinkite special?? simbol??",DlgTableTitle:"Lentel??s savyb??s",DlgTableRows:"Eilut??s",DlgTableColumns:"Stulpeliai",DlgTableBorder:"R??melio dydis",DlgTableAlign:"Lygiuoti",DlgTableAlignNotSet:"",DlgTableAlignLeft:"Kair??",DlgTableAlignCenter:"Centr??",DlgTableAlignRight:"De??in??",DlgTableWidth:"Plotis",DlgTableWidthPx:"ta??kais",DlgTableWidthPc:"procentais",DlgTableHeight:"Auk??tis",DlgTableCellSpace:"Tarpas tarp langeli??",DlgTableCellPad:"Trapas nuo langelio r??mo iki teksto",DlgTableCaption:"Antra??t??",DlgTableSummary:"Santrauka",DlgTableHeaders:"Headers",DlgTableHeadersNone:"None",DlgTableHeadersColumn:"First column",DlgTableHeadersRow:"First Row",DlgTableHeadersBoth:"Both",DlgCellTitle:"Langelio savyb??s",DlgCellWidth:"Plotis",DlgCellWidthPx:"ta??kais",DlgCellWidthPc:"procentais",DlgCellHeight:"Auk??tis",DlgCellWordWrap:"Teksto lau??ymas",DlgCellWordWrapNotSet:"",DlgCellWordWrapYes:"Taip",DlgCellWordWrapNo:"Ne",DlgCellHorAlign:"Horizontaliai lygiuoti",DlgCellHorAlignNotSet:"",DlgCellHorAlignLeft:"Kair??",DlgCellHorAlignCenter:"Centr??",DlgCellHorAlignRight:"De??in??",DlgCellVerAlign:"Vertikaliai lygiuoti",DlgCellVerAlignNotSet:"",DlgCellVerAlignTop:"Vir????",DlgCellVerAlignMiddle:"Vidur??",DlgCellVerAlignBottom:"Apa??i??",DlgCellVerAlignBaseline:"Apatin?? linij??",DlgCellType:"Cell Type",DlgCellTypeData:"Data",DlgCellTypeHeader:"Header",DlgCellRowSpan:"Eilu??i?? apjungimas",DlgCellCollSpan:"Stulpeli?? apjungimas",DlgCellBackColor:"Fono spalva",DlgCellBorderColor:"R??melio spalva",DlgCellBtnSelect:"Pa??ym??ti...",DlgFindAndReplaceTitle:"Find and Replace",DlgFindTitle:"Paie??ka",DlgFindFindBtn:"Surasti",DlgFindNotFoundMsg:"Nurodytas tekstas nerastas.",DlgReplaceTitle:"Pakeisti",DlgReplaceFindLbl:"Surasti tekst??:",DlgReplaceReplaceLbl:"Pakeisti tekstu:",DlgReplaceCaseChk:"Skirti did??i??sias ir ma????sias raides",DlgReplaceReplaceBtn:"Pakeisti",DlgReplaceReplAllBtn:"Pakeisti visk??",DlgReplaceWordChk:"Atitikti piln?? ??od??",PasteErrorCut:"J??s?? nar??ykl??s saugumo nustatymai neleid??ia redaktoriui automati??kai ??vykdyti i??kirpimo operacij??. Tam pra??ome naudoti klaviat??r?? (Ctrl+X).",PasteErrorCopy:"J??s?? nar??ykl??s saugumo nustatymai neleid??ia redaktoriui automati??kai ??vykdyti kopijavimo operacij??. Tam pra??ome naudoti klaviat??r?? (Ctrl+C).",PasteAsText:"??d??ti kaip gryn?? tekst??",PasteFromWord:"??d??ti i?? Word",DlgPasteMsg2:"??emiau esan??iame ??vedimo lauke ??d??kite tekst??, naudodami klaviat??r?? (Ctrl+V) ir sp??stelkite mygtuk?? OK.",DlgPasteSec:"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",DlgPasteIgnoreFont:"Ignoruoti ??rift?? nustatymus",DlgPasteRemoveStyles:"Pa??alinti stili?? nustatymus",ColorAutomatic:"Automatinis",ColorMoreColors:"Daugiau spalv??...",DocProps:"Dokumento savyb??s",DlgAnchorTitle:"??ym??s savyb??s",DlgAnchorName:"??ym??s vardas",DlgAnchorErrorName:"Pra??ome ??vesti ??ym??s vard??",DlgSpellNotInDic:"??odyne nerastas",DlgSpellChangeTo:"Pakeisti ??",DlgSpellBtnIgnore:"Ignoruoti",DlgSpellBtnIgnoreAll:"Ignoruoti visus",DlgSpellBtnReplace:"Pakeisti",DlgSpellBtnReplaceAll:"Pakeisti visus",DlgSpellBtnUndo:"At??aukti",DlgSpellNoSuggestions:"- N??ra pasi??lym?? -",DlgSpellProgress:"Vyksta ra??ybos tikrinimas...",DlgSpellNoMispell:"Ra??ybos tikrinimas baigtas: Nerasta ra??ybos klaid??",DlgSpellNoChanges:"Ra??ybos tikrinimas baigtas: N??ra pakeist?? ??od??i??",DlgSpellOneChange:"Ra??ybos tikrinimas baigtas: Vienas ??odis pakeistas",DlgSpellManyChanges:"Ra??ybos tikrinimas baigtas: Pakeista %1 ??od??i??",IeSpellDownload:"Ra??ybos tikrinimas neinstaliuotas. Ar J??s norite j?? dabar atsisi??sti?",DlgButtonText:"Tekstas (Reik??m??)",DlgButtonType:"Tipas",DlgButtonTypeBtn:"Button",DlgButtonTypeSbm:"Submit",DlgButtonTypeRst:"Reset",DlgCheckboxName:"Vardas",DlgCheckboxValue:"Reik??m??",DlgCheckboxSelected:"Pa??ym??tas",DlgFormName:"Vardas",DlgFormAction:"Veiksmas",DlgFormMethod:"Metodas",DlgSelectName:"Vardas",DlgSelectValue:"Reik??m??",DlgSelectSize:"Dydis",DlgSelectLines:"eilu??i??",DlgSelectChkMulti:"Leisti daugeriop?? atrank??",DlgSelectOpAvail:"Galimos parinktys",DlgSelectOpText:"Tekstas",DlgSelectOpValue:"Reik??m??",DlgSelectBtnAdd:"??traukti",DlgSelectBtnModify:"Modifikuoti",DlgSelectBtnUp:"Auk??tyn",DlgSelectBtnDown:"??emyn",DlgSelectBtnSetValue:"Laikyti pa??ym??ta reik??me",DlgSelectBtnDelete:"Trinti",DlgTextareaName:"Vardas",DlgTextareaCols:"Ilgis",DlgTextareaRows:"Plotis",DlgTextName:"Vardas",DlgTextValue:"Reik??m??",DlgTextCharWidth:"Ilgis simboliais",DlgTextMaxChars:"Maksimalus simboli?? skai??ius",DlgTextType:"Tipas",DlgTextTypeText:"Tekstas",DlgTextTypePass:"Slapta??odis",DlgHiddenName:"Vardas",DlgHiddenValue:"Reik??m??",BulletedListProp:"Su??enklinto s??ra??o savyb??s",NumberedListProp:"Numeruoto s??ra??o savyb??s",DlgLstStart:"Start",DlgLstType:"Tipas",DlgLstTypeCircle:"Apskritimas",DlgLstTypeDisc:"Diskas",DlgLstTypeSquare:"Kvadratas",DlgLstTypeNumbers:"Skai??iai (1, 2, 3)",DlgLstTypeLCase:"Ma??osios raid??s (a, b, c)",DlgLstTypeUCase:"Did??iosios raid??s (A, B, C)",DlgLstTypeSRoman:"Rom??n?? ma??ieji skai??iai (i, ii, iii)",DlgLstTypeLRoman:"Rom??n?? didieji skai??iai (I, II, III)",DlgDocGeneralTab:"Bendros savyb??s",DlgDocBackTab:"Fonas",DlgDocColorsTab:"Spalvos ir kra??tin??s",DlgDocMetaTab:"Meta duomenys",DlgDocPageTitle:"Puslapio antra??t??",DlgDocLangDir:"Kalbos kryptis",DlgDocLangDirLTR:"I?? kair??s ?? de??in?? (LTR)",DlgDocLangDirRTL:"I?? de??in??s ?? kair?? (RTL)",DlgDocLangCode:"Kalbos kodas",DlgDocCharSet:"Simboli?? kodavimo lentel??",DlgDocCharSetCE:"Central European",DlgDocCharSetCT:"Chinese Traditional (Big5)",DlgDocCharSetCR:"Cyrillic",DlgDocCharSetGR:"Greek",DlgDocCharSetJP:"Japanese",DlgDocCharSetKR:"Korean",DlgDocCharSetTR:"Turkish",DlgDocCharSetUN:"Unicode (UTF-8)",DlgDocCharSetWE:"Western European",DlgDocCharSetOther:"Kita simboli?? kodavimo lentel??",DlgDocDocType:"Dokumento tipo antra??t??",DlgDocDocTypeOther:"Kita dokumento tipo antra??t??",DlgDocIncXHTML:"??traukti XHTML deklaracijas",DlgDocBgColor:"Fono spalva",DlgDocBgImage:"Fono paveiksl??lio nuoroda (URL)",DlgDocBgNoScroll:"Neslenkantis fonas",DlgDocCText:"Tekstas",DlgDocCLink:"Nuoroda",DlgDocCVisited:"Aplankyta nuoroda",DlgDocCActive:"Aktyvi nuoroda",DlgDocMargins:"Puslapio kra??tin??s",DlgDocMaTop:"Vir??uje",DlgDocMaLeft:"Kair??je",DlgDocMaRight:"De??in??je",DlgDocMaBottom:"Apa??ioje",DlgDocMeIndex:"Dokumento indeksavimo raktiniai ??od??iai (atskirti kableliais)",DlgDocMeDescr:"Dokumento apib??dinimas",DlgDocMeAuthor:"Autorius",DlgDocMeCopy:"Autorin??s teis??s",DlgDocPreview:"Per??i??ra",Templates:"??ablonai",DlgTemplatesTitle:"Turinio ??ablonai",DlgTemplatesSelMsg:"Pasirinkite norim?? ??ablon?? (D??mesio! esamas turinys bus prarastas):",DlgTemplatesLoading:"??keliamas ??ablon?? s??ra??as. Pra??ome palaukti...",DlgTemplatesNoTpl:"(??ablon?? s??ra??as tu????ias)",DlgTemplatesReplace:"Replace actual contents",DlgAboutAboutTab:"Apie",DlgAboutBrowserInfoTab:"Nar??ykl??s informacija",DlgAboutLicenseTab:"License",DlgAboutVersion:"versija",DlgAboutInfo:"Papildom?? informacij?? galima gauti",DlgDivGeneralTab:"General",DlgDivAdvancedTab:"Advanced",DlgDivStyle:"Style",DlgDivInlineStyle:"Inline Style"};
\ No newline at end of file
diff --git a/horde/services/editor/fckeditor/editor/lang/lv.js b/horde/services/editor/fckeditor/editor/lang/lv.js
deleted file mode 100644
index ba296479b..000000000
--- a/horde/services/editor/fckeditor/editor/lang/lv.js
+++ /dev/null
@@ -1 +0,0 @@
-var FCKLang={Dir:"ltr",ToolbarCollapse:"Samazin??t r??ku joslu",ToolbarExpand:"Papla??in??t r??ku joslu",Save:"Saglab??t",NewPage:"Jauna lapa",Preview:"P??rskat??t",Cut:"Izgriezt",Copy:"Kop??t",Paste:"Ievietot",PasteText:"Ievietot k?? vienk??r??u tekstu",PasteWord:"Ievietot no Worda",Print:"Druk??t",SelectAll:"Iez??m??t visu",RemoveFormat:"No??emt stilus",InsertLinkLbl:"Hipersaite",InsertLink:"Ievietot/Labot hipersaiti",RemoveLink:"No??emt hipersaiti",VisitLink:"Open Link",Anchor:"Ievietot/Labot iez??mi",AnchorDelete:"Remove Anchor",InsertImageLbl:"Att??ls",InsertImage:"Ievietot/Labot Att??lu",InsertFlashLbl:"Flash",InsertFlash:"Ievietot/Labot Flash",InsertTableLbl:"Tabula",InsertTable:"Ievietot/Labot Tabulu",InsertLineLbl:"Atdal??t??jsv??tra",InsertLine:"Ievietot horizont??lu Atdal??t??jsv??tru",InsertSpecialCharLbl:"??pa??s simbols",InsertSpecialChar:"Ievietot speci??lo simbolu",InsertSmileyLbl:"Smaidi??i",InsertSmiley:"Ievietot smaidi??u",About:"??sum?? par FCKeditor",Bold:"Treknu ??riftu",Italic:"Sl??prakst??",Underline:"Apak??sv??tra",StrikeThrough:"P??rsv??trots",Subscript:"Zemrakst??",Superscript:"Aug??rakst??",LeftJustify:"Izl??dzin??t pa kreisi",CenterJustify:"Izl??dzin??t pret centru",RightJustify:"Izl??dzin??t pa labi",BlockJustify:"Izl??dzin??t malas",DecreaseIndent:"Samazin??t atk??pi",IncreaseIndent:"Palielin??t atk??pi",Blockquote:"Blockquote",CreateDiv:"Create Div Container",EditDiv:"Edit Div Container",DeleteDiv:"Remove Div Container",Undo:"Atcelt",Redo:"Atk??rtot",NumberedListLbl:"Numur??ts saraksts",NumberedList:"Ievietot/No??emt numer??to sarakstu",BulletedListLbl:"Izcelts saraksts",BulletedList:"Ievietot/No??emt izceltu sarakstu",ShowTableBorders:"Par??d??t tabulas robe??as",ShowDetails:"Par??d??t s??k??ku inform??ciju",Style:"Stils",FontFormat:"Form??ts",Font:"??rifts",FontSize:"Izm??rs",TextColor:"Teksta kr??sa",BGColor:"Fona kr??sa",Source:"HTML kods",Find:"Mekl??t",Replace:"Nomain??t",SpellCheck:"Pareizrakst??bas p??rbaude",UniversalKeyboard:"Univers??la klaviat??ra",PageBreakLbl:"Lapas p??rtraukums",PageBreak:"Ievietot lapas p??rtraukumu",Form:"Forma",Checkbox:"Atz??m????anas kast??te",RadioButton:"Izv??les poga",TextField:"Teksta rinda",Textarea:"Teksta laukums",HiddenField:"Pasl??pta teksta rinda",Button:"Poga",SelectionField:"Iez??m????anas lauks",ImageButton:"Att??lpoga",FitWindow:"Maksimiz??t redaktora izm??ru",ShowBlocks:"Show Blocks",EditLink:"Labot hipersaiti",CellCM:"????na",RowCM:"Rinda",ColumnCM:"Kolonna",InsertRowAfter:"Insert Row After",InsertRowBefore:"Insert Row Before",DeleteRows:"Dz??st rindas",InsertColumnAfter:"Insert Column After",InsertColumnBefore:"Insert Column Before",DeleteColumns:"Dz??st kolonnas",InsertCellAfter:"Insert Cell After",InsertCellBefore:"Insert Cell Before",DeleteCells:"Dz??st r??ti??as",MergeCells:"Apvienot r??ti??as",MergeRight:"Merge Right",MergeDown:"Merge Down",HorizontalSplitCell:"Split Cell Horizontally",VerticalSplitCell:"Split Cell Vertically",TableDelete:"Dz??st tabulu",CellProperties:"R??ti??as ??pa????bas",TableProperties:"Tabulas ??pa????bas",ImageProperties:"Att??la ??pa????bas",FlashProperties:"Flash ??pa????bas",AnchorProp:"Iez??mes ??pa????bas",ButtonProp:"Pogas ??pa????bas",CheckboxProp:"Atz??m????anas kast??tes ??pa????bas",HiddenFieldProp:"Pasl??pt??s teksta rindas ??pa????bas",RadioButtonProp:"Izv??les poga ??pa????bas",ImageButtonProp:"Att??lpogas ??pa????bas",TextFieldProp:"Teksta rindas ??pa????bas",SelectionFieldProp:"Iez??m????anas lauka ??pa????bas",TextareaProp:"Teksta laukuma ??pa????bas",FormProp:"Formas ??pa????bas",FontFormats:"Norm??ls teksts;Format??ts teksts;Adrese;Virsraksts 1;Virsraksts 2;Virsraksts 3;Virsraksts 4;Virsraksts 5;Virsraksts 6;Rindkopa (DIV)",ProcessingXHTML:"Tiek apstr??d??ts XHTML. L??dzu uzgaidiet...",Done:"Dar??ts",PasteWordConfirm:"Teksta fragments, kas tiek ievietots, izskat??s, ka b??tu sagatavots Word'??. Vai v??laties to apstr??d??t pirms ievieto??anas?",NotCompatiblePaste:"???? darb??ba ir pieejama Internet Explorer'??, kas jaun??ks par 5.5 versiju. Vai v??laties ievietot bez apstr??des?",UnknownToolbarItem:'Nezin??ms r??ku joslas objekts "%1"',UnknownCommand:'Nezin??mas darb??bas nosaukums "%1"',NotImplemented:"Darb??ba netika paveikta",UnknownToolbarSet:'R??ku joslas komplekts "%1" neeksist??',NoActiveX:'Interneta p??rl??kprogrammas dro????bas uzst??d??jumi var??tu ietekm??t da??as no redaktora ??pa????b??m. J??b??t aktiviz??tai sada??ai "Run ActiveX controls and plug-ins". Sav??d??k ir iesp??jamas k????das darb??b?? un k????du pazi??ojumu par??d????an??s.',BrowseServerBlocked:"Resursu p??rl??ks nevar tikt atv??rts. P??rliecinieties, ka uznirsto??o logu blo????t??ji ir atsl??gti.",DialogBlocked:"Nav iesp??jams atv??rt dialoglogu. P??rliecinieties, ka uznirsto??o logu blo????t??ji ir atsl??gti.",VisitLinkBlocked:"It was not possible to open a new window. Make sure all popup blockers are disabled.",DlgBtnOK:"Dar??ts!",DlgBtnCancel:"Atcelt",DlgBtnClose:"Aizv??rt",DlgBtnBrowseServer:"Skat??t servera saturu",DlgAdvancedTag:"Izv??rstais",DlgOpOther:"",DlgInfoTab:"Inform??cija",DlgAlertUrl:"L??dzu, ievietojiet hipersaiti",DlgGenNotSet:"