mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge PR #785 branch 'Senky/ticket/10835' into develop-olympus
* Senky/ticket/10835: [ticket/10835] changing "e-mail" to "email" [ticket/10835] changing CURRENT_CHANGE_PASSWORD_EXPLAIN language entry [ticket/10835] fixing misleading message in UCP
This commit is contained in:
commit
1fcb269616
3 changed files with 5 additions and 4 deletions
|
@ -137,7 +137,8 @@ $lang = array_merge($lang, array(
|
||||||
'CREATE_FOLDER' => 'Add folder…',
|
'CREATE_FOLDER' => 'Add folder…',
|
||||||
'CURRENT_IMAGE' => 'Current image',
|
'CURRENT_IMAGE' => 'Current image',
|
||||||
'CURRENT_PASSWORD' => 'Current password',
|
'CURRENT_PASSWORD' => 'Current password',
|
||||||
'CURRENT_PASSWORD_EXPLAIN' => 'You must confirm your current password if you wish to change it, alter your e-mail address or username.',
|
'CURRENT_PASSWORD_EXPLAIN' => 'You must enter your current password if you wish to alter your email address or username.',
|
||||||
|
'CURRENT_CHANGE_PASSWORD_EXPLAIN' => 'To change your password, your email address, or your username, you must enter your current password.',
|
||||||
'CUR_PASSWORD_EMPTY' => 'You did not enter your current password.',
|
'CUR_PASSWORD_EMPTY' => 'You did not enter your current password.',
|
||||||
'CUR_PASSWORD_ERROR' => 'The current password you entered is incorrect.',
|
'CUR_PASSWORD_ERROR' => 'The current password you entered is incorrect.',
|
||||||
'CUSTOM_DATEFORMAT' => 'Custom…',
|
'CUSTOM_DATEFORMAT' => 'Custom…',
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label for="cur_password">{L_CURRENT_PASSWORD}:</label><br /><span>{L_CURRENT_PASSWORD_EXPLAIN}</span></dt>
|
<dt><label for="cur_password">{L_CURRENT_PASSWORD}:</label><br /><span><!-- IF S_CHANGE_PASSWORD -->{L_CURRENT_CHANGE_PASSWORD_EXPLAIN}<!-- ELSE -->{L_CURRENT_PASSWORD_EXPLAIN}<!-- ENDIF --></span></dt>
|
||||||
<dd><input type="password" name="cur_password" id="cur_password" maxlength="255" value="{CUR_PASSWORD}" class="inputbox" title="{L_CURRENT_PASSWORD}" /></dd>
|
<dd><input type="password" name="cur_password" id="cur_password" maxlength="255" value="{CUR_PASSWORD}" class="inputbox" title="{L_CURRENT_PASSWORD}" /></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
<th colspan="2">{L_CONFIRM_CHANGES}</th>
|
<th colspan="2">{L_CONFIRM_CHANGES}</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1" width="35%"><b class="genmed">{L_CURRENT_PASSWORD}: </b><br /><span class="gensmall">{L_CURRENT_PASSWORD_EXPLAIN}</span></td>
|
<td class="row1" width="35%"><b class="genmed">{L_CURRENT_PASSWORD}: </b><br /><span class="gensmall"><!-- IF S_CHANGE_PASSWORD -->{L_CURRENT_CHANGE_PASSWORD_EXPLAIN}<!-- ELSE -->{L_CURRENT_PASSWORD_EXPLAIN}<!-- ENDIF --></span></td>
|
||||||
<td class="row2"><input type="password" class="post" name="cur_password" size="30" maxlength="255" value="{CUR_PASSWORD}" /></td>
|
<td class="row2"><input type="password" class="post" name="cur_password" size="30" maxlength="255" value="{CUR_PASSWORD}" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Add table
Reference in a new issue