2004-10-16 16:25:46 +00:00
|
|
|
<? /*
|
2008-04-06 19:45:09 +00:00
|
|
|
LibreSSL - CAcert web application
|
|
|
|
Copyright (C) 2004-2008 CAcert Inc.
|
2004-10-16 16:25:46 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; version 2 of the License.
|
2004-10-16 16:25:46 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2004-10-16 16:25:46 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-10-16 16:25:46 +00:00
|
|
|
*/ ?>
|
|
|
|
<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">
|
2008-09-07 02:45:49 +00:00
|
|
|
<input type="hidden" name="csrf" value="<?=make_csrf('mainlang')?>" />
|
2006-08-15 22:12:25 +00:00
|
|
|
</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
|
|
|
<?
|
2008-09-03 17:43:31 +00:00
|
|
|
$query = "select * from `addlang` where `userid`='".intval($_SESSION['profile']['id'])."'";
|
2006-08-15 23:00:25 +00:00
|
|
|
$res = mysql_query($query);
|
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
2008-09-03 17:43:31 +00:00
|
|
|
$lang = mysql_fetch_assoc(mysql_query("select * from `languages` where `locale`='".mysql_escape_string($row['lang'])."'"));
|
2006-08-15 23:00:25 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Additional Language")?>:</td>
|
|
|
|
<td class="DataTD" align="left"><? echo "${lang['lang']} - ${lang['country']}"; ?>
|
2008-09-21 03:35:58 +00:00
|
|
|
<a href="account.php?oldid=41&action=dellang&remove=<?=$row['lang']?>&csrf=<?=make_csrf('seclang')?>"><?=_("Delete")?></a></td>
|
2006-08-15 23:00:25 +00:00
|
|
|
</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))
|
|
|
|
{
|
2008-09-03 17:43:31 +00:00
|
|
|
echo "<option value='".sanitizeHTML($row['locale'])."'";
|
2008-09-03 17:50:38 +00:00
|
|
|
echo ">".$row['country']." - ".$row['lang']."</option>\n";
|
2006-08-15 22:12:25 +00:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</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">
|
2008-09-07 02:45:49 +00:00
|
|
|
<input type="hidden" name="csrf" value="<?=make_csrf('seclang')?>" />
|
2004-10-16 16:25:46 +00:00
|
|
|
</form>
|