Index: trunk/extensions/Deployment/specials/SpecialExtensions.php |
— | — | @@ -53,7 +53,7 @@ |
54 | 54 | public function execute( $arg ) { |
55 | 55 | global $wgOut, $wgUser; |
56 | 56 | |
57 | | - //$wgOut->setPageTitle( wfMsg( 'extensions' ) ); |
| 57 | + $wgOut->setPageTitle( wfMsg( 'extensions-title' ) ); |
58 | 58 | |
59 | 59 | // If the user is authorized, display the page, if not, show an error. |
60 | 60 | if ( $this->userCanExecute( $wgUser ) ) { |
Index: trunk/extensions/Deployment/specials/SpecialUpdate.php |
— | — | @@ -40,6 +40,8 @@ |
41 | 41 | public function execute( $arg ) { |
42 | 42 | global $wgOut, $wgUser; |
43 | 43 | |
| 44 | + $wgOut->setPageTitle( wfMsg( 'update-title' ) ); |
| 45 | + |
44 | 46 | // If the user is authorized, display the page, if not, show an error. |
45 | 47 | if ( $this->userCanExecute( $wgUser ) ) { |
46 | 48 | |
Index: trunk/extensions/Deployment/specials/SpecialInstall.php |
— | — | @@ -40,6 +40,8 @@ |
41 | 41 | public function execute( $arg ) { |
42 | 42 | global $wgOut, $wgUser; |
43 | 43 | |
| 44 | + $wgOut->setPageTitle( wfMsg( 'install-title' ) ); |
| 45 | + |
44 | 46 | // If the user is authorized, display the page, if not, show an error. |
45 | 47 | if ( $this->userCanExecute( $wgUser ) ) { |
46 | 48 | |
Index: trunk/extensions/Deployment/specials/SpecialDashboard.php |
— | — | @@ -40,6 +40,8 @@ |
41 | 41 | public function execute( $arg ) { |
42 | 42 | global $wgOut, $wgUser; |
43 | 43 | |
| 44 | + $wgOut->setPageTitle( wfMsg( 'dashboard-title' ) ); |
| 45 | + |
44 | 46 | // If the user is authorized, display the page, if not, show an error. |
45 | 47 | if ( $this->userCanExecute( $wgUser ) ) { |
46 | 48 | |
Index: trunk/extensions/Deployment/Deployment.i18n.php |
— | — | @@ -20,11 +20,17 @@ |
21 | 21 | |
22 | 22 | // Special pages |
23 | 23 | 'specialpages-group-administration' => 'Wiki administration', |
| 24 | + |
24 | 25 | 'dashboard' => 'Administration dashboard', |
25 | 26 | 'extensions' => 'Manage extensions', |
26 | 27 | 'update' => 'Update wiki and extensions', |
27 | 28 | 'install' => 'Install extensions', |
28 | 29 | |
| 30 | + 'dashboard-title' => 'Dashboard', |
| 31 | + 'extensions-title' => 'Extensions', |
| 32 | + 'update-title' => 'MediaWiki updates', |
| 33 | + 'install-title' => 'Install extensions', |
| 34 | + |
29 | 35 | // Filesystem: FTP |
30 | 36 | 'deploy-ftp-not-loaded' => 'The FTP PHP extension is not available', |
31 | 37 | 'deploy-ftp-ssl-not-loaded' => 'The loaded FTP PHP extension does not support SSL', |