Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -342,6 +342,9 @@ |
343 | 343 | |
344 | 344 | Global Usage |
345 | 345 | |
| 346 | +Global User Rights |
| 347 | +desc = gur-desc |
| 348 | + |
346 | 349 | Gnuplot |
347 | 350 | |
348 | 351 | Google AdSense |
Index: trunk/extensions/Translate/aliases.txt |
— | — | @@ -118,6 +118,9 @@ |
119 | 119 | Global usage |
120 | 120 | file = GlobalUsage/GlobalUsage.alias.php |
121 | 121 | |
| 122 | +Global user rights |
| 123 | +file = GlobalUserrights/GlobalUserrights.alias.php |
| 124 | + |
122 | 125 | Group permissions manager |
123 | 126 | file = GroupPermissionsManager/GroupPermissionsManager.alias.php |
124 | 127 | |
Index: trunk/extensions/GlobalUserrights/GlobalUserrights.i18n.php |
— | — | @@ -13,12 +13,15 @@ |
14 | 14 | */ |
15 | 15 | $messages['en'] = array( |
16 | 16 | 'globaluserrights' => 'Global User Rights Management', |
| 17 | + 'gur-desc' => 'Easy [[Special:GlobalUserRights|global user rights]] administration', |
17 | 18 | 'gur-rightslog-name' => 'Global rights log', |
18 | 19 | 'gur-rightslog-header' => 'This is a log of changes to global rights.', |
19 | | - 'gur-rightslog-entry' => 'changed global group membership for $1 from $2 to $3' |
20 | | -); |
| 20 | + 'gur-rightslog-entry' => 'changed global group membership for $1 from $2 to $3', |
| 21 | + 'rights-userrights-global' => 'Manage global user rights', |
21 | 22 | |
| 23 | + ); |
| 24 | + |
22 | 25 | /** German (Deutsch) */ |
23 | 26 | $messages['de'] = array( |
24 | | - 'globaluserrights' => 'Globale Benutzerrechtewaltung' |
| 27 | + 'globaluserrights' => 'Globale Benutzerrechteverwaltung' |
25 | 28 | ); |
Index: trunk/extensions/GlobalUserrights/GlobalUserrights.php |
— | — | @@ -14,11 +14,14 @@ |
15 | 15 | |
16 | 16 | // Extension credits |
17 | 17 | $wgExtensionCredits['specialpage'][] = array( |
18 | | - 'name' => 'GlobalUserrights', |
19 | | - 'url' => 'http://www.mediawiki.org/wiki/Extension:GlobalUserrights', |
20 | | - 'version' => '1.0', |
21 | | - 'author' => 'Nathaniel Herman', |
22 | | - 'description' => 'Easy [[Special:GlobalUserRights|global user rights]] administration' |
| 18 | + 'name' => 'GlobalUserrights', |
| 19 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:GlobalUserrights', |
| 20 | + 'version' => '1.0', |
| 21 | + 'author' => 'Nathaniel Herman', |
| 22 | + 'svn-date' => '$LastChangedDate$', |
| 23 | + 'svn-revision' => '$LastChangedRevision$', |
| 24 | + 'description' => 'Easy [[Special:GlobalUserRights|global user rights]] administration', |
| 25 | + 'descriptionmsg' => 'gur-desc', |
23 | 26 | ); |
24 | 27 | |
25 | 28 | // Set up the new special page |
— | — | @@ -27,6 +30,7 @@ |
28 | 31 | $wgExtensionAliasesFiles['GlobalUserrights'] = $dir . 'GlobalUserrights.alias.php'; |
29 | 32 | $wgAutoloadClasses['GlobalUserrights'] = $dir . 'GlobalUserrights_body.php'; |
30 | 33 | $wgSpecialPages['GlobalUserrights'] = 'GlobalUserrights'; |
| 34 | +$wgSpecialPageGroups['GlobalUserrights'] = 'users'; |
31 | 35 | |
32 | 36 | // New user right, required to use Special:GlobalUserrights |
33 | 37 | $wgAvailableRights[] = 'userrights-global'; |
Property changes on: trunk/extensions/GlobalUserrights/GlobalUserrights.php |
___________________________________________________________________ |
Added: svn:keywords |
34 | 38 | + LastChangedDate LastChangedRevision |
Index: trunk/extensions/GlobalUserrights/GlobalUserrights.alias.php |
— | — | @@ -15,5 +15,5 @@ |
16 | 16 | |
17 | 17 | /** German (Deutsch) */ |
18 | 18 | $aliases['de'] = array( |
19 | | - 'GlobalUserrights' => array( 'Globalebenutzerrechte' ) |
| 19 | + 'GlobalUserrights' => array( 'Globale Benutzerrechte' ) |
20 | 20 | ); |