Keep on going... rg=0
[squirrelmail.git] / plugins / squirrelspell / setup.php
index ff760f6c8b01a16d01e6a77eb38ba91e39620505..9e562463b5ef78cbf08cb0cd202987b3324a7e57 100644 (file)
@@ -48,9 +48,7 @@ function squirrelspell_optpage_register_block() {
        array(
             'name' => _("SpellChecker Options"),
             'url'  => '../plugins/squirrelspell/sqspell_options.php',
-            'desc' => _("Here you may set up how your personal dictionary "
-                        . "is stored, edit it, or choose which languages "
-                        . "should be available to you when spell-checking."),
+            'desc' => _("Here you may set up how your personal dictionary is stored, edit it, or choose which languages should be available to you when spell-checking."),
             'js'   => TRUE);
   }
 }
@@ -73,16 +71,15 @@ function squirrelspell_setup() {
      * use document.write() so the "Check Spelling" button is not
      * displayed if js is off in the browser.
      */
-    echo '<script type="text/javascript">\n'
-      . '<!--\n'
+    echo "<script type=\"text/javascript\">\n"
+      . "<!--\n"
       . 'document.write("<input type=\"button\" value=\"'
       . _("Check Spelling") 
       . '\" onclick=\"window.open(\'../plugins/squirrelspell/sqspell_'
       . 'interface.php\', \'sqspell\', \'status=yes,width=550,height=370,'
-      . 'resizable=yes\')\">");\n'
-      . '//-->\n'
+      . 'resizable=yes\')\">");' . "\n"
+      . "//-->\n"
       . "</script>\n";
   }
 }
-
 ?>