Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -495,6 +495,8 @@ |
496 | 496 | |
497 | 497 | File Page Masking |
498 | 498 | |
| 499 | +Filter List Users |
| 500 | + |
499 | 501 | Find Spam |
500 | 502 | aliasfile = FindSpam/FindSpam.alias.php |
501 | 503 | |
Index: trunk/extensions/FilterListUsers/FilterListUsers.i18n.php |
— | — | @@ -12,6 +12,7 @@ |
13 | 13 | * @author Jack Phoenix <jack@countervandalism.net> |
14 | 14 | */ |
15 | 15 | $messages['en'] = array( |
| 16 | + 'filterlistusers-desc' => 'Filters out users that have not edited from [[Special:ListUsers|users list]]', |
16 | 17 | 'listusers-showall' => 'Show all users, including those with less than 5 edits', |
17 | 18 | 'right-viewallusers' => 'View all users in [[Special:ListUsers|the user list]]' |
18 | 19 | ); |
— | — | @@ -30,4 +31,4 @@ |
31 | 32 | $messages['nl'] = array( |
32 | 33 | 'listusers-showall' => 'Geef alle gebruikers weer, ook gebruikers met minder dan 5 bewerkingen', |
33 | 34 | 'right-viewallusers' => 'Bekijk alle gebruikers in de [[Special:ListUsers|gebruikers lijst]]' |
34 | | -); |
\ No newline at end of file |
| 35 | +); |
Index: trunk/extensions/FilterListUsers/FilterListUsers.php |
— | — | @@ -16,10 +16,11 @@ |
17 | 17 | |
18 | 18 | // Extension credits that will show up on Special:Version |
19 | 19 | $wgExtensionCredits['other'][] = array( |
| 20 | + 'path' => __FILE__, |
20 | 21 | 'name' => 'FilterListUsers', |
21 | | - 'version' => '1.0', |
| 22 | + 'version' => '1.0.1', |
22 | 23 | 'author' => 'Jack Phoenix', |
23 | | - 'description' => "Filters out users that haven't edited from [[Special:ListUsers]]", |
| 24 | + 'descriptionmsg' => 'filterlistusers-desc', |
24 | 25 | 'url' => 'http://www.mediawiki.org/wiki/Extension:FilterListUsers', |
25 | 26 | ); |
26 | 27 | |