Index: trunk/extensions/Deployment/specials/SpecialExtensions.php |
— | — | @@ -44,6 +44,13 @@ |
45 | 45 | public function __construct() { |
46 | 46 | parent::__construct( 'Extensions' ); |
47 | 47 | } |
| 48 | + |
| 49 | + /** |
| 50 | + * @see SpecialPage::getDescription |
| 51 | + */ |
| 52 | + public function getDescription() { |
| 53 | + return wfMsg( 'special-' . strtolower( $this->mName ) ); |
| 54 | + } |
48 | 55 | |
49 | 56 | /** |
50 | 57 | * Main method. |
Index: trunk/extensions/Deployment/specials/SpecialUpdate.php |
— | — | @@ -29,6 +29,13 @@ |
30 | 30 | public function __construct() { |
31 | 31 | parent::__construct( 'Update', 'siteadmin' ); |
32 | 32 | } |
| 33 | + |
| 34 | + /** |
| 35 | + * @see SpecialPage::getDescription |
| 36 | + */ |
| 37 | + public function getDescription() { |
| 38 | + return wfMsg( 'special-' . strtolower( $this->mName ) ); |
| 39 | + } |
33 | 40 | |
34 | 41 | /** |
35 | 42 | * Main method. |
Index: trunk/extensions/Deployment/specials/SpecialInstall.php |
— | — | @@ -29,6 +29,13 @@ |
30 | 30 | public function __construct() { |
31 | 31 | parent::__construct( 'Install', 'siteadmin' ); |
32 | 32 | } |
| 33 | + |
| 34 | + /** |
| 35 | + * @see SpecialPage::getDescription |
| 36 | + */ |
| 37 | + public function getDescription() { |
| 38 | + return wfMsg( 'special-' . strtolower( $this->mName ) ); |
| 39 | + } |
33 | 40 | |
34 | 41 | /** |
35 | 42 | * Main method. |
Index: trunk/extensions/Deployment/specials/SpecialDashboard.php |
— | — | @@ -29,6 +29,13 @@ |
30 | 30 | public function __construct() { |
31 | 31 | parent::__construct( 'Dashboard', 'siteadmin' ); |
32 | 32 | } |
| 33 | + |
| 34 | + /** |
| 35 | + * @see SpecialPage::getDescription |
| 36 | + */ |
| 37 | + public function getDescription() { |
| 38 | + return wfMsg( 'special-' . strtolower( $this->mName ) ); |
| 39 | + } |
33 | 40 | |
34 | 41 | /** |
35 | 42 | * Main method. |
Index: trunk/extensions/Deployment/Deployment.i18n.php |
— | — | @@ -24,10 +24,10 @@ |
25 | 25 | // Special pages |
26 | 26 | 'specialpages-group-administration' => 'Wiki administration', |
27 | 27 | |
28 | | - 'dashboard' => 'Administration dashboard', |
29 | | - 'extensions' => 'Manage extensions', |
30 | | - 'update' => 'Update wiki and extensions', |
31 | | - 'install' => 'Install extensions', |
| 28 | + 'special-dashboard' => 'Administration dashboard', |
| 29 | + 'special-extensions' => 'Manage extensions', |
| 30 | + 'special-update' => 'Update wiki and extensions', |
| 31 | + 'special-install' => 'Install extensions', |
32 | 32 | |
33 | 33 | 'dashboard-title' => 'Dashboard', |
34 | 34 | 'extensions-title' => 'Extensions', |