2004-10-16 16:25:46 +00:00
|
|
|
<? /*
|
|
|
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
|
|
|
|
|
|
|
This file is part of CAcert.
|
|
|
|
|
|
|
|
CAcert has been released under the CAcert Source License
|
|
|
|
which can be found included with these source files or can
|
|
|
|
be downloaded from the internet from the following address:
|
|
|
|
http://www.cacert.org/src-lic.php
|
|
|
|
|
|
|
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the License for more details.
|
|
|
|
*/ ?>
|
|
|
|
<form method="post" action="account.php">
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="400">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" class="title"><?=_("My Language Settings")?></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("My prefered language")?>:</td>
|
|
|
|
<td class="DataTD"><select name="lang">
|
|
|
|
<?
|
2006-08-15 23:00:25 +00:00
|
|
|
echo $_SESSION['_config']['language'];
|
2004-10-16 16:25:46 +00:00
|
|
|
foreach($_SESSION['_config']['translations'] as $key => $val)
|
|
|
|
{
|
|
|
|
echo "<option value='$key'";
|
|
|
|
if($key == $_SESSION['_config']['language'])
|
|
|
|
echo " selected";
|
|
|
|
echo ">$val</option>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update")?>"></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="oldid" value="<?=$id?>">
|
2006-08-15 22:12:25 +00:00
|
|
|
<input type="hidden" name="action" value="default">
|
|
|
|
</form>
|
|
|
|
<form method="post" action="account.php">
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="400">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" class="title"><?=_("Additional Language Preferences")?></td>
|
|
|
|
</tr>
|
2006-08-15 23:00:25 +00:00
|
|
|
<?
|
|
|
|
$query = "select * from `addlang` where `userid`='".$_SESSION['profile']['id']."'";
|
|
|
|
$res = mysql_query($query);
|
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
|
|
|
$lang = mysql_fetch_assoc(mysql_query("select * from `languages` where `locale`='${row['lang']}'"));
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Additional Language")?>:</td>
|
|
|
|
<td class="DataTD" align="left"><? echo "${lang['lang']} - ${lang['country']}"; ?>
|
|
|
|
<a href="account.php?oldid=41&action=dellang&remove=<?=$row['lang']?>"><?=_("Delete")?></a></td>
|
|
|
|
</tr>
|
|
|
|
<? } ?>
|
2006-08-15 22:12:25 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Secondary languages")?>:</td>
|
|
|
|
<td class="DataTD"><select name="addlang">
|
|
|
|
<?
|
|
|
|
$query = "select * from `languages` order by `locale`";
|
|
|
|
$res = mysql_query($query);
|
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
|
|
|
echo "<option value='${row['locale']}'";
|
|
|
|
echo ">${row['country']} - ${row['lang']}</option>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Add")?>"></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="oldid" value="<?=$id?>">
|
|
|
|
<input type="hidden" name="action" value="addsec">
|
2004-10-16 16:25:46 +00:00
|
|
|
</form>
|