Index: trunk/phase3/skins/CologneBlue.php |
— | — | @@ -156,7 +156,7 @@ |
157 | 157 | Title::newFromText( wfMsgForContent( 'faqpage' ) ), |
158 | 158 | wfMsg( 'faq' ) |
159 | 159 | ), |
160 | | - $this->specialLink( 'specialpages' ) |
| 160 | + $this->specialLink( 'Specialpages' ) |
161 | 161 | ); |
162 | 162 | |
163 | 163 | /* show links to different language variants */ |
— | — | @@ -288,7 +288,7 @@ |
289 | 289 | array(), |
290 | 290 | array(), |
291 | 291 | array( 'known', 'noclasses' ) |
292 | | - ) . $sep . $tl . $sep . $this->specialLink( 'watchlist' ) |
| 292 | + ) . $sep . $tl . $sep . $this->specialLink( 'Watchlist' ) |
293 | 293 | . $sep . |
294 | 294 | $this->link( |
295 | 295 | SpecialPage::getSafeTitleFor( 'Contributions', $wgUser->getName() ), |
— | — | @@ -296,16 +296,16 @@ |
297 | 297 | array(), |
298 | 298 | array(), |
299 | 299 | array( 'known', 'noclasses' ) |
300 | | - ) . $sep . $this->specialLink( 'preferences' ) |
301 | | - . $sep . $this->specialLink( 'userlogout' ); |
| 300 | + ) . $sep . $this->specialLink( 'Preferences' ) |
| 301 | + . $sep . $this->specialLink( 'Userlogout' ); |
302 | 302 | } else { |
303 | | - $s .= $this->specialLink( 'userlogin' ); |
| 303 | + $s .= $this->specialLink( 'Userlogin' ); |
304 | 304 | } |
305 | 305 | |
306 | 306 | $s .= $this->menuHead( 'qbspecialpages' ) |
307 | | - . $this->specialLink( 'newpages' ) |
308 | | - . $sep . $this->specialLink( 'listfiles' ) |
309 | | - . $sep . $this->specialLink( 'statistics' ); |
| 307 | + . $this->specialLink( 'Newpages' ) |
| 308 | + . $sep . $this->specialLink( 'Listfiles' ) |
| 309 | + . $sep . $this->specialLink( 'Statistics' ); |
310 | 310 | if( UploadBase::isEnabled() && UploadBase::isAllowed( $wgUser ) === true ) { |
311 | 311 | $s .= $sep . $this->getUploadLink(); |
312 | 312 | } |
Index: trunk/phase3/skins/Standard.php |
— | — | @@ -81,7 +81,7 @@ |
82 | 82 | $s .= "\n<br />" . $wgLang->pipeList( array( |
83 | 83 | $this->mainPageLink(), |
84 | 84 | $this->aboutLink(), |
85 | | - $this->specialLink( 'recentchanges' ), |
| 85 | + $this->specialLink( 'Recentchanges' ), |
86 | 86 | $this->searchForm() ) ) |
87 | 87 | . '<br /><span id="pagestats">' . $this->pageStats() . '</span>'; |
88 | 88 | |
— | — | @@ -130,7 +130,7 @@ |
131 | 131 | } |
132 | 132 | |
133 | 133 | if( $wgUser->isLoggedIn() ) { |
134 | | - $s.= $this->specialLink( 'watchlist' ) ; |
| 134 | + $s.= $this->specialLink( 'Watchlist' ) ; |
135 | 135 | $s .= $sep . $this->linkKnown( |
136 | 136 | SpecialPage::getTitleFor( 'Contributions' ), |
137 | 137 | wfMsg( 'mycontris' ), |
— | — | @@ -267,7 +267,7 @@ |
268 | 268 | $s .= $this->getUploadLink() . $sep; |
269 | 269 | } |
270 | 270 | |
271 | | - $s .= $this->specialLink( 'specialpages' ); |
| 271 | + $s .= $this->specialLink( 'Specialpages' ); |
272 | 272 | |
273 | 273 | global $wgSiteSupportPage; |
274 | 274 | if( $wgSiteSupportPage ) { |
Index: trunk/phase3/skins/Nostalgia.php |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | $sep = " |\n"; |
63 | 63 | |
64 | 64 | $s = $this->mainPageLink() . $sep |
65 | | - . $this->specialLink( 'recentchanges' ); |
| 65 | + . $this->specialLink( 'Recentchanges' ); |
66 | 66 | |
67 | 67 | if ( $wgOut->isArticle() ) { |
68 | 68 | $s .= $sep . '<strong>' . $this->editThisPage() . '</strong>' . $sep . $this->historyLink(); |
— | — | @@ -71,7 +71,7 @@ |
72 | 72 | $s .= $this->variantLinks(); |
73 | 73 | $s .= $this->extensionTabLinks(); |
74 | 74 | if ( $wgUser->isAnon() ) { |
75 | | - $s .= $sep . $this->specialLink( 'userlogin' ); |
| 75 | + $s .= $sep . $this->specialLink( 'Watchlist' ); |
76 | 76 | } else { |
77 | 77 | /* show user page and user talk links */ |
78 | 78 | $s .= $sep . $this->link( $wgUser->getUserPage(), wfMsgHtml( 'mypage' ) ); |
— | — | @@ -80,20 +80,20 @@ |
81 | 81 | $s .= ' *'; |
82 | 82 | } |
83 | 83 | /* show watchlist link */ |
84 | | - $s .= $sep . $this->specialLink( 'watchlist' ); |
| 84 | + $s .= $sep . $this->specialLink( 'Watchlist' ); |
85 | 85 | /* show my contributions link */ |
86 | 86 | $s .= $sep . $this->link( |
87 | 87 | SpecialPage::getSafeTitleFor( 'Contributions', $wgUser->getName() ), |
88 | 88 | wfMsgHtml( 'mycontris' ) ); |
89 | 89 | /* show my preferences link */ |
90 | | - $s .= $sep . $this->specialLink( 'preferences' ); |
| 90 | + $s .= $sep . $this->specialLink( 'Preferences' ); |
91 | 91 | /* show upload file link */ |
92 | 92 | if( UploadBase::isEnabled() && UploadBase::isAllowed( $wgUser ) === true ) { |
93 | 93 | $s .= $sep . $this->getUploadLink(); |
94 | 94 | } |
95 | 95 | |
96 | 96 | /* show log out link */ |
97 | | - $s .= $sep . $this->specialLink( 'userlogout' ); |
| 97 | + $s .= $sep . $this->specialLink( 'Userlogout' ); |
98 | 98 | } |
99 | 99 | |
100 | 100 | $s .= $sep . $this->specialPagesList(); |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1160,7 +1160,7 @@ |
1161 | 1161 | SpecialPage::getTitleFor( 'Userlogout' ), wfMsg( 'logout' ), |
1162 | 1162 | array(), array( 'returnto' => $returnTo ) |
1163 | 1163 | ), |
1164 | | - $this->specialLink( 'preferences' ), |
| 1164 | + $this->specialLink( 'Preferences' ), |
1165 | 1165 | ) ); |
1166 | 1166 | } |
1167 | 1167 | |
— | — | @@ -1214,7 +1214,7 @@ |
1215 | 1215 | |
1216 | 1216 | $s = array( |
1217 | 1217 | $this->mainPageLink(), |
1218 | | - $this->specialLink( 'recentchanges' ) |
| 1218 | + $this->specialLink( 'Recentchanges' ) |
1219 | 1219 | ); |
1220 | 1220 | |
1221 | 1221 | if ( $wgOut->isArticleRelated() ) { |