mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Some minor alterations to template/language
git-svn-id: file:///svn/phpbb/trunk@992 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
8a37c2bd5e
commit
1587ff6b0f
3 changed files with 139 additions and 144 deletions
|
@ -127,6 +127,9 @@ if ( isset($HTTP_GET_VARS['submit']) ) {
|
||||||
);
|
);
|
||||||
|
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
|
"L_USER_TITLE" => $lang['User'] . " " . $lang['User_admin'],
|
||||||
|
"L_USER_EXPLAIN" => $lang['User_admin_explain'],
|
||||||
|
|
||||||
"USERNAME" => stripslashes($username),
|
"USERNAME" => stripslashes($username),
|
||||||
"EMAIL" => stripslashes($email),
|
"EMAIL" => stripslashes($email),
|
||||||
"YIM" => stripslashes($yim),
|
"YIM" => stripslashes($yim),
|
||||||
|
|
|
@ -837,13 +837,13 @@ $lang['Emotion'] = "Emotion";
|
||||||
|
|
||||||
// User Management
|
// User Management
|
||||||
$lang['User_admin'] = "Administration";
|
$lang['User_admin'] = "Administration";
|
||||||
$lang['User_admin_explain'] = "Here you can change your user's information. Do not abuse this power. Changing admin status is not provided here. Use the user permission pages for this.";
|
$lang['User_admin_explain'] = "Here you can change your user's information and certain specific options. To modify the users permissions please use the user and group permissions system.";
|
||||||
$lang['User_delete'] = "Delete this user";
|
$lang['User_delete'] = "Delete this user";
|
||||||
$lang['User_delete_explain'] = "Click here to delete this user. This cannot be undone.";
|
$lang['User_delete_explain'] = "Click here to delete this user, this cannot be undone.";
|
||||||
$lang['User_deleted'] = "User was successfully deleted.";
|
$lang['User_deleted'] = "User was successfully deleted.";
|
||||||
$lang['User_status'] = "User active";
|
$lang['User_status'] = "User is active";
|
||||||
$lang['User_allowpm'] = "Allow PM";
|
$lang['User_allowpm'] = "Can send Private Messages";
|
||||||
$lang['User_allowavatar'] = "Allow Avatar";
|
$lang['User_allowavatar'] = "Can display avatar";
|
||||||
$lang['Admin_avatar_explain'] = "Here you can see and delete the user's current avatar.";
|
$lang['Admin_avatar_explain'] = "Here you can see and delete the user's current avatar.";
|
||||||
$lang['User_special'] = "Special admin-only fields";
|
$lang['User_special'] = "Special admin-only fields";
|
||||||
$lang['User_special_explain'] = "These fields are not able to be modified by the users. Here you can set their status and other options that are not given to users.";
|
$lang['User_special_explain'] = "These fields are not able to be modified by the users. Here you can set their status and other options that are not given to users.";
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
|
|
||||||
<form action="{S_PROFILE_ACTION}" enctype="multipart/form-data" method="post"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
|
<br clear="all" />
|
||||||
<tr>
|
|
||||||
<td align="left"><span class="gensmall"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a></span></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
|
<h1>{L_USER_TITLE}</h1>
|
||||||
<tr>
|
|
||||||
<td class="tablebg"><table border="0" cellpadding="3" cellspacing="1" width="100%">
|
<p>{L_USER_EXPLAIN}</p>
|
||||||
|
|
||||||
|
<form action="{S_PROFILE_ACTION}" method="post"><table width="98%" cellspacing="1" cellpadding="4" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="cat" colspan="2"><span class="cattitle"><b>{L_REGISTRATION_INFO}</b></span><br /><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
|
<td class="cat" colspan="2"><span class="cattitle"><b>{L_REGISTRATION_INFO}</b></span><br /><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -117,12 +115,7 @@
|
||||||
</table></td>
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="cat" colspan="2"><span class="cattitle"><B>{L_SPECIAL}</b></span></td>
|
<td class="cat" colspan="2"><span class="cattitle"><B>{L_SPECIAL}</b></span><br /><span class="gensmall">{L_SPECIAL_EXPLAIN}</span></td>
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="row1" colspan="2" align="center">
|
|
||||||
<span class="gensmall">{L_SPECIAL_EXPLAIN}</span>
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1"><span class="gen">{L_STATUS}:</span></td>
|
<td class="row1"><span class="gen">{L_STATUS}:</span></td>
|
||||||
|
@ -143,6 +136,5 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" /> <input type="reset" value="{L_RESET}" /></td>
|
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" /> <input type="reset" value="{L_RESET}" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
</table></form>
|
</table></form>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue