Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1113,6 +1113,7 @@ |
1114 | 1114 | 'right-override-export-depth', |
1115 | 1115 | 'right-sendemail', |
1116 | 1116 | 'right-revisionmove', |
| 1117 | + 'right-disableaccount', |
1117 | 1118 | ), |
1118 | 1119 | 'rightslog' => array( |
1119 | 1120 | 'rightslog', |
— | — | @@ -3227,6 +3228,16 @@ |
3228 | 3229 | 'sqlite-has-fts', |
3229 | 3230 | 'sqlite-no-fts', |
3230 | 3231 | ), |
| 3232 | + 'disableaccount' => array( |
| 3233 | + 'disableaccount', |
| 3234 | + 'disableaccount-user', |
| 3235 | + 'disableaccount-confirm', |
| 3236 | + 'disableaccount-mustconfirm', |
| 3237 | + 'disableaccount-confirm', |
| 3238 | + 'disableaccount-nosuchuser', |
| 3239 | + 'disableaccount-success', |
| 3240 | + 'disableaccount-logentry', |
| 3241 | + ), |
3231 | 3242 | ); |
3232 | 3243 | |
3233 | 3244 | /** Comments for each block */ |
— | — | @@ -3439,4 +3450,5 @@ |
3440 | 3451 | 'db-error-messages' => 'Database error messages', |
3441 | 3452 | 'html-forms' => 'HTML forms', |
3442 | 3453 | 'sqlite' => 'SQLite database support', |
| 3454 | + 'disableaccount' => 'Special:DisableAccount', |
3443 | 3455 | ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1950,6 +1950,7 @@ |
1951 | 1951 | 'right-override-export-depth' => 'Export pages including linked pages up to a depth of 5', |
1952 | 1952 | 'right-sendemail' => 'Send e-mail to other users', |
1953 | 1953 | 'right-revisionmove' => 'Move revisions', |
| 1954 | +'right-disableaccount' => 'Disable accounts', |
1954 | 1955 | |
1955 | 1956 | # User rights log |
1956 | 1957 | 'rightslog' => 'User rights log', |
— | — | @@ -4360,17 +4361,16 @@ |
4361 | 4362 | 'sqlite-has-fts' => '$1 with full-text search support', |
4362 | 4363 | 'sqlite-no-fts' => '$1 without full-text search support', |
4363 | 4364 | |
4364 | | -## Special:DisableAccount |
4365 | | -'disableaccount-desc' => 'Allows administrators to disable individual accounts.', |
4366 | | -'right-disableaccount' => 'Disable accounts', |
4367 | | -'disableaccount' => 'Disable a user account', |
4368 | | -'disableaccount-user' => 'User name:', |
| 4365 | +# Special:DisableAccount |
| 4366 | +'disableaccount' => 'Disable an user account', |
| 4367 | +'disableaccount-user' => 'Username:', |
4369 | 4368 | 'disableaccount-confirm' => "Disable this user account. |
4370 | | -The user will not be able to log in, reset their password, or receive email notifications. |
| 4369 | +The user will not be able to log in, reset their password, or receive e-mail notifications. |
4371 | 4370 | If the user is currently logged in anywhere, they will be immediately logged out. |
4372 | 4371 | ''Note that disabling an account is not reversible without system administrator intervention.''", |
4373 | 4372 | 'disableaccount-mustconfirm' => 'You must confirm that you wish to disable this account.', |
4374 | 4373 | 'disableaccount-nosuchuser' => 'The user account "$1" does not exist.', |
4375 | 4374 | 'disableaccount-success' => 'The user account "$1" has been permanently disabled.', |
4376 | | -'disableaccount-logentry' => 'permanently disabled the user account [[$1]].', |
| 4375 | +'disableaccount-logentry' => 'permanently disabled the user account [[$1]]', |
4377 | 4376 | ); |
| 4377 | + |