mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[feature/delete-auto-logins] fix language keys and styling
introduction of language variables instead of hardcoded language. PHPBB3-9647
This commit is contained in:
parent
124068b0b1
commit
9db1ed6e80
3 changed files with 12 additions and 10 deletions
|
@ -256,6 +256,8 @@ $lang = array_merge($lang, array(
|
||||||
'LINK_REMOTE_SIZE' => 'Avatar dimensions',
|
'LINK_REMOTE_SIZE' => 'Avatar dimensions',
|
||||||
'LINK_REMOTE_SIZE_EXPLAIN' => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.',
|
'LINK_REMOTE_SIZE_EXPLAIN' => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.',
|
||||||
'LOGIN_EXPLAIN_UCP' => 'Please login in order to access the User Control Panel.',
|
'LOGIN_EXPLAIN_UCP' => 'Please login in order to access the User Control Panel.',
|
||||||
|
'LOGIN_KEY' => 'Login Key',
|
||||||
|
'LOGIN_TIME' => 'Login Time',
|
||||||
'LOGIN_REDIRECT' => 'You have been successfully logged in.',
|
'LOGIN_REDIRECT' => 'You have been successfully logged in.',
|
||||||
'LOGOUT_FAILED' => 'You were not logged out, as the request did not match your session. Please contact the board administrator if you continue to experience problems.',
|
'LOGOUT_FAILED' => 'You were not logged out, as the request did not match your session. Please contact the board administrator if you continue to experience problems.',
|
||||||
'LOGOUT_REDIRECT' => 'You have been successfully logged out.',
|
'LOGOUT_REDIRECT' => 'You have been successfully logged out.',
|
||||||
|
@ -377,7 +379,7 @@ $lang = array_merge($lang, array(
|
||||||
'PREFERENCES_UPDATED' => 'Your preferences have been updated.',
|
'PREFERENCES_UPDATED' => 'Your preferences have been updated.',
|
||||||
'PROFILE_INFO_NOTICE' => 'Please note that this information may be viewable to other members. Be careful when including any personal details. Any fields marked with a * must be completed.',
|
'PROFILE_INFO_NOTICE' => 'Please note that this information may be viewable to other members. Be careful when including any personal details. Any fields marked with a * must be completed.',
|
||||||
'PROFILE_UPDATED' => 'Your profile has been updated.',
|
'PROFILE_UPDATED' => 'Your profile has been updated.',
|
||||||
'PROFILE_AUTOLOGIN_KEYS' => 'The persistent login keys keeps the user logged in till the user signs out. Logout does only delete the persistent key on the current machine. The persistent login keys for all machines can be viewed/deleted by the user.',
|
'PROFILE_AUTOLOGIN_KEYS' => 'The persistent login keys logins the user automatically on each visit until logout. Logout does only delete the persistent key on the current machine. The persistent login keys for all machines can be viewed/deleted by the user here.',
|
||||||
'PROFILE_NO_AUTOLOGIN_KEYS' => 'There are no saved persistent login keys.',
|
'PROFILE_NO_AUTOLOGIN_KEYS' => 'There are no saved persistent login keys.',
|
||||||
|
|
||||||
'RECIPIENT' => 'Recipient',
|
'RECIPIENT' => 'Recipient',
|
||||||
|
|
|
@ -15,14 +15,14 @@
|
||||||
</p>
|
</p>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
<!-- IF .sessions -->
|
<!-- IF .sessions -->
|
||||||
<p>{L_PROFILE_AUTOLOGIN_KEYS}</p>
|
<p>{L_PROFILE_AUTOLOGIN_KEYS}</p><br />
|
||||||
<table cellspacing="1" class="table1">
|
<table cellspacing="1" class="table1">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Mark</th>
|
<th>{L_MARK}</th>
|
||||||
<th>Key</th>
|
<th>{L_LOGIN_KEY}</th>
|
||||||
<th>IP</th>
|
<th>{L_IP}</th>
|
||||||
<th>Login-Time</th>
|
<th>{L_LOGIN_TIME}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
<td colspan="4" class="row1">{L_PROFILE_AUTOLOGIN_KEYS}</td>
|
<td colspan="4" class="row1">{L_PROFILE_AUTOLOGIN_KEYS}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Mark</th>
|
<th>{L_MARK}</th>
|
||||||
<th>Key</th>
|
<th>{L_LOGIN_KEY}</th>
|
||||||
<th>IP</th>
|
<th>{L_IP}</th>
|
||||||
<th>Login-Time</th>
|
<th>{L_LOGIN_TIME}</th>
|
||||||
</tr>
|
</tr>
|
||||||
<!-- BEGIN sessions -->
|
<!-- BEGIN sessions -->
|
||||||
<!-- IF sessions.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
<!-- IF sessions.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue