Replacing tabs with spaces, trimming white space at EOL and newline at EOF
[squirrelmail.git] / plugins / squirrelspell / modules / lang_change.mod
index 909b0441b9878a96d13e15db5c23ae6972e065bc..01839d86f6a60bfe277ddfadae499818dcac5c33 100644 (file)
@@ -4,16 +4,16 @@
  * ----------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module changes the international dictionaries selection
- * for the user. Called after LANG_SETUP module.                
+ * for the user. Called after LANG_SETUP module.
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 global $SQSPELL_APP_DEFAULT;
@@ -40,19 +40,19 @@ if (sizeof($use_langs)){
        * to make the default dictionary first in line.
        */
       if (in_array($lang_default, $use_langs)){
-       /**
-        * See if the user was dumb and chose a default dictionary
-        * to be something other than the ones he selected.
-        */
-       $hold = array_shift($use_langs);
-       $lang_string = join(", ", $use_langs);
-       $lang_string = str_replace("$lang_default", "$hold", $lang_string);
-       $lang_string = $lang_default . ", " . $lang_string;
+          /**
+           * See if the user was dumb and chose a default dictionary
+           * to be something other than the ones he selected.
+           */
+          $hold = array_shift($use_langs);
+          $lang_string = join(", ", $use_langs);
+          $lang_string = str_replace("$lang_default", "$hold", $lang_string);
+          $lang_string = $lang_default . ", " . $lang_string;
       } else {
-       /** 
-        * Yes, he is dumb.
-        */
-       $lang_string = join(', ', $use_langs);
+          /**
+           * Yes, he is dumb.
+           */
+          $lang_string = join(', ', $use_langs);
       }
     } else {
       /**
@@ -73,26 +73,26 @@ if (sizeof($use_langs)){
   }
   $dsp_string = substr( $dsp_string, 0, -2 );
   $msg = '<p>'
-    . sprintf(_("Settings adjusted to: <strong>%s</strong> with <strong>%s</strong> as default dictionary."), $dsp_string, _($lang_default))
+    . sprintf(_("Settings adjusted to: %s with %s as default dictionary."), '<strong>'.$dsp_string.'</strong>', '<strong>'._($lang_default).'</strong>')
     . '</p>';
 } else {
   /**
    * No dictionaries selected. Use system default.
    */
   $msg = '<p>'
-    . sprintf(_("Using <strong>%s</strong> dictionary (system default) for spellcheck." ), $SQSPELL_APP_DEFAULT)
+    . sprintf(_("Using %s dictionary (system default) for spellcheck." ), '<strong>'.$SQSPELL_APP_DEFAULT.'</strong>')
     . '</p>';
   $lang_string = $SQSPELL_APP_DEFAULT;
 }
 $old_lang_string = join(", ", $langs);
-$words = str_replace("# LANG: $old_lang_string", "# LANG: $lang_string", 
-                    $words);
+$words = str_replace("# LANG: $old_lang_string", "# LANG: $lang_string",
+     $words);
 /**
  * Write it down where the sun don't shine.
  */
 sqspell_writeWords($words);
-sqspell_makePage(_("International Dictionaries Preferences Updated"), 
-                null, $msg);
+sqspell_makePage(_("International Dictionaries Preferences Updated"),
+    null, $msg);
 
 /**
  * For Emacs weenies:
@@ -101,4 +101,4 @@ sqspell_makePage(_("International Dictionaries Preferences Updated"),
  * End:
  * vim: syntax=php
  */
-?>
+?>
\ No newline at end of file