Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -2460,10 +2460,10 @@ |
2461 | 2461 | 'print.css', |
2462 | 2462 | 'handheld.css', |
2463 | 2463 | 'noscript.css', |
2464 | | - 'autoconfirmed.css', |
2465 | | - 'bot.css', |
2466 | | - 'sysop.css', |
2467 | | - 'bureaucrat.css', |
| 2464 | + 'group-autoconfirmed.css', |
| 2465 | + 'group-bot.css', |
| 2466 | + 'group-sysop.css', |
| 2467 | + 'group-bureaucrat.css', |
2468 | 2468 | ), |
2469 | 2469 | 'scripts' => array( |
2470 | 2470 | 'common.js', |
— | — | @@ -2476,10 +2476,10 @@ |
2477 | 2477 | 'simple.js', |
2478 | 2478 | 'modern.js', |
2479 | 2479 | 'vector.js', |
2480 | | - 'autoconfirmed.js', |
2481 | | - 'bot.js', |
2482 | | - 'sysop.js', |
2483 | | - 'bureaucrat.js', |
| 2480 | + 'group-autoconfirmed.js', |
| 2481 | + 'group-bot.js', |
| 2482 | + 'group-sysop.js', |
| 2483 | + 'group-bureaucrat.js', |
2484 | 2484 | ), |
2485 | 2485 | 'metadata_cc' => array( |
2486 | 2486 | 'nodublincore', |
Index: trunk/phase3/includes/resourceloader/ResourceLoaderUserGroupsModule.php |
— | — | @@ -16,8 +16,6 @@ |
17 | 17 | * http://www.gnu.org/copyleft/gpl.html |
18 | 18 | * |
19 | 19 | * @file |
20 | | - * @author Trevor Parscal |
21 | | - * @author Roan Kattouw |
22 | 20 | */ |
23 | 21 | |
24 | 22 | /** |
— | — | @@ -38,8 +36,8 @@ |
39 | 37 | continue; |
40 | 38 | } |
41 | 39 | $g = ucfirst( $group ); |
42 | | - $pages["MediaWiki:$g.js"] = array( 'type' => 'script' ); |
43 | | - $pages["MediaWiki:$g.css"] = array( 'type' => 'style' ); |
| 40 | + $pages["MediaWiki:Group-$g.js"] = array( 'type' => 'script' ); |
| 41 | + $pages["MediaWiki:Group-$g.css"] = array( 'type' => 'style' ); |
44 | 42 | } |
45 | 43 | return $pages; |
46 | 44 | } |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3512,10 +3512,10 @@ |
3513 | 3513 | 'print.css' => '/* CSS placed here will affect the print output */', # only translate this message to other languages if you have to change it |
3514 | 3514 | 'handheld.css' => '/* CSS placed here will affect handheld devices based on the skin configured in $wgHandheldStyle */', # only translate this message to other languages if you have to change it |
3515 | 3515 | 'noscript.css' => '/* CSS placed here will affect users with JavaScript disabled */', # only translate this message to other languages if you have to change it |
3516 | | -'autoconfirmed.css' => '/* CSS placed here will affect autoconfirmed users only */', # only translate this message to other languages if you have to change it |
3517 | | -'bot.css' => '/* CSS placed here will affect bots only */', # only translate this message to other languages if you have to change it |
3518 | | -'sysop.css' => '/* CSS placed here will affect sysops only */', # only translate this message to other languages if you have to change it |
3519 | | -'bureaucrat.css' => '/* CSS placed here will affect bureaucrats only */', # only translate this message to other languages if you have to change it |
| 3516 | +'group-autoconfirmed.css' => '/* CSS placed here will affect autoconfirmed users only */', # only translate this message to other languages if you have to change it |
| 3517 | +'group-bot.css' => '/* CSS placed here will affect bots only */', # only translate this message to other languages if you have to change it |
| 3518 | +'group-sysop.css' => '/* CSS placed here will affect sysops only */', # only translate this message to other languages if you have to change it |
| 3519 | +'group-bureaucrat.css' => '/* CSS placed here will affect bureaucrats only */', # only translate this message to other languages if you have to change it |
3520 | 3520 | |
3521 | 3521 | # Scripts |
3522 | 3522 | 'common.js' => '/* Any JavaScript here will be loaded for all users on every page load. */', # only translate this message to other languages if you have to change it |
— | — | @@ -3528,10 +3528,10 @@ |
3529 | 3529 | 'simple.js' => '/* Any JavaScript here will be loaded for users using the Simple skin */', # only translate this message to other languages if you have to change it |
3530 | 3530 | 'modern.js' => '/* Any JavaScript here will be loaded for users using the Modern skin */', # only translate this message to other languages if you have to change it |
3531 | 3531 | 'vector.js' => '/* Any JavaScript here will be loaded for users using the Vector skin */', # only translate this message to other languages if you have to change it |
3532 | | -'autoconfirmed.js' => '/* Any JavaScript here will be loaded for autoconfirmed users only */', # only translate this message to other languages if you have to change it |
3533 | | -'bot.js' => '/* Any JavaScript here will be loaded for bots only */', # only translate this message to other languages if you have to change it |
3534 | | -'sysop.js' => '/* Any JavaScript here will be loaded for sysops only */', # only translate this message to other languages if you have to change it |
3535 | | -'bureaucrat.js' => '/* Any JavaScript here will be loaded for bureaucrats only */', # only translate this message to other languages if you have to change it |
| 3532 | +'group-autoconfirmed.js' => '/* Any JavaScript here will be loaded for autoconfirmed users only */', # only translate this message to other languages if you have to change it |
| 3533 | +'group-bot.js' => '/* Any JavaScript here will be loaded for bots only */', # only translate this message to other languages if you have to change it |
| 3534 | +'group-sysop.js' => '/* Any JavaScript here will be loaded for sysops only */', # only translate this message to other languages if you have to change it |
| 3535 | +'group-bureaucrat.js' => '/* Any JavaScript here will be loaded for bureaucrats only */', # only translate this message to other languages if you have to change it |
3536 | 3536 | |
3537 | 3537 | # Metadata |
3538 | 3538 | 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.', |