1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
<?php
/**
* lang_setup.mod
* ---------------
* Squirrelspell module
*
* Copyright (c) 1999-2002 The SquirrelMail development team
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
* This module displays available dictionaries to the user and lets
* him/her choose which ones s/he wants to check messages with.
*
* $Id: lang_setup.mod,v 1.2 2002/01/31 03:00:55 graf25 Exp $
*
* @author Konstantin Riabitsev <icon@duke.edu> ($Author: graf25 $)
* @version $Date: 2002/01/31 03:00:55 $
*/
global $SQSPELL_APP;
$msg = '<p>'
. _("Please check any available international dictionaries which you would like to use when spellchecking:")
. '</p>'
. '<form method="post">'
. '<input type="hidden" name="MOD" value="lang_change">'
. '<blockquote><p>';
/**
* Present a nice listing.
*/
$langs = sqspell_getSettings(null);
$add = '<p>'
. _("Make this dictionary my default selection:")
. " <select name=\"lang_default\">\n";
while (list($avail_lang, $junk) = each($SQSPELL_APP)){
$msg .= "<input type=\"checkbox\" name=\"use_langs[]\" "
. "value=\"$avail_lang\"";
if (in_array($avail_lang, $langs)) {
$msg .= ' checked';
}
$msg .= '> ' . _($avail_lang) . "<br>\n";
$add .= "<option";
if ($avail_lang==$langs[0]) {
$add .= ' selected';
}
$add .= " value=\"$avail_lang\" >" . _($avail_lang) . "</option>\n";
}
$msg .= "</p>\n" . $add . "</select>\n";
$msg .= "</p></blockquote><p><input type=\"submit\" value=\" "
. _("Make these changes") . " \"></p>";
sqspell_makePage(_("Add International Dictionaries"), null, $msg);
/**
* For Emacs weenies:
* Local variables:
* mode: php
* End:
*/
?>
|