summaryrefslogtreecommitdiff
path: root/pages/account/41.php
blob: d61d8db9750efa0d80a172c5859a60168d64bb62 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<? /*
    LibreSSL - CAcert web application
    Copyright (C) 2004-2008  CAcert Inc.

    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.

    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.

    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
*/

require_once($_SESSION['_config']['filepath'].'/includes/lib/l10n.php');
?>

<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 preferred language")?>:</td>
    <td class="DataTD"><select name="lang">
<?
	foreach(L10n::$translations as $key => $val)
	{
		echo "<option value='$key'";
		if($key == L10n::get_translation())
			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?>">
<input type="hidden" name="action" value="default">
<input type="hidden" name="csrf" value="<?=make_csrf('mainlang')?>" />
</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>
<?
	$query = "select * from `addlang` where `userid`='".intval($_SESSION['profile']['id'])."'";
	$res = mysql_query($query);
	while($row = mysql_fetch_assoc($res))
	{
		$lang = mysql_fetch_assoc(mysql_query("select * from `languages` where `locale`='".mysql_escape_string($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&amp;action=dellang&amp;remove=<?=$row['lang']?>&amp;csrf=<?=make_csrf('seclang')?>"><?=_("Delete")?></a></td>
  </tr>
<? } ?>
  <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))
	{
		printf("<option value=\"%s\">[%s] %s (%s)</option>\n",
			sanitizeHTML($row['locale']),
			sanitizeHTML($row['locale']),
			$row['lang'],
			$row['country']
			);
	}
?>
	</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">
<input type="hidden" name="csrf" value="<?=make_csrf('seclang')?>" />
</form>