Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1895,6 +1895,7 @@ |
1896 | 1896 | ), |
1897 | 1897 | 'block' => array( |
1898 | 1898 | 'blockip', |
| 1899 | + 'blockip-title', |
1899 | 1900 | 'blockip-legend', |
1900 | 1901 | 'blockiptext', |
1901 | 1902 | 'ipaddress', |
Index: trunk/phase3/includes/specials/SpecialBlockip.php |
— | — | @@ -82,7 +82,7 @@ |
83 | 83 | public function showForm( $err ) { |
84 | 84 | global $wgOut, $wgUser, $wgSysopUserBans; |
85 | 85 | |
86 | | - $wgOut->setPageTitle( wfMsg( 'blockip' ) ); |
| 86 | + $wgOut->setPageTitle( wfMsg( 'blockip-title' ) ); |
87 | 87 | $wgOut->addWikiMsg( 'blockiptext' ); |
88 | 88 | |
89 | 89 | if( $wgSysopUserBans ) { |
— | — | @@ -609,7 +609,7 @@ |
610 | 610 | public function showSuccess() { |
611 | 611 | global $wgOut; |
612 | 612 | |
613 | | - $wgOut->setPageTitle( wfMsg( 'blockip' ) ); |
| 613 | + $wgOut->setPageTitle( wfMsg( 'blockip-title' ) ); |
614 | 614 | $wgOut->setSubtitle( wfMsg( 'blockipsuccesssub' ) ); |
615 | 615 | $text = wfMsgExt( 'blockipsuccesstext', array( 'parse' ), $this->BlockAddress ); |
616 | 616 | $wgOut->addHTML( $text ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2849,6 +2849,7 @@ |
2850 | 2850 | |
2851 | 2851 | # Block/unblock |
2852 | 2852 | 'blockip' => 'Block user', |
| 2853 | +'blockip-title' => 'Block user', |
2853 | 2854 | 'blockip-legend' => 'Block user', |
2854 | 2855 | 'blockiptext' => 'Use the form below to block write access from a specific IP address or username. |
2855 | 2856 | This should be done only to prevent vandalism, and in accordance with [[{{MediaWiki:Policy-url}}|policy]]. |