Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -788,17 +788,6 @@ |
789 | 789 | 'vector-action-protect' => 'Protect', |
790 | 790 | 'vector-action-undelete' => 'Undelete', |
791 | 791 | 'vector-action-unprotect' => 'Unprotect', |
792 | | -'vector-namespace-category' => 'Category', |
793 | | -'vector-namespace-help' => 'Help page', |
794 | | -'vector-namespace-image' => 'File', |
795 | | -'vector-namespace-main' => 'Page', |
796 | | -'vector-namespace-media' => 'Media page', |
797 | | -'vector-namespace-mediawiki' => 'Message', |
798 | | -'vector-namespace-project' => 'Project page', |
799 | | -'vector-namespace-special' => 'Special page', |
800 | | -'vector-namespace-talk' => 'Discussion', |
801 | | -'vector-namespace-template' => 'Template', |
802 | | -'vector-namespace-user' => 'User page', |
803 | 792 | 'vector-simplesearch-preference' => 'Enable enhanced search suggestions (Vector skin only)', |
804 | 793 | 'vector-view-create' => 'Create', |
805 | 794 | 'vector-view-edit' => 'Edit', |
Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -179,17 +179,6 @@ |
180 | 180 | 'vector-action-protect', |
181 | 181 | 'vector-action-undelete', |
182 | 182 | 'vector-action-unprotect', |
183 | | - 'vector-namespace-category', |
184 | | - 'vector-namespace-help', |
185 | | - 'vector-namespace-image', |
186 | | - 'vector-namespace-main', |
187 | | - 'vector-namespace-media', |
188 | | - 'vector-namespace-mediawiki', |
189 | | - 'vector-namespace-project', |
190 | | - 'vector-namespace-special', |
191 | | - 'vector-namespace-talk', |
192 | | - 'vector-namespace-template', |
193 | | - 'vector-namespace-user', |
194 | 183 | 'vector-simplesearch-preference', |
195 | 184 | 'vector-view-create', |
196 | 185 | 'vector-view-edit', |
Index: trunk/phase3/skins/Vector.php |
— | — | @@ -106,11 +106,11 @@ |
107 | 107 | |
108 | 108 | // Adds namespace links |
109 | 109 | $links['namespaces'][$subjectId] = $this->tabAction( |
110 | | - $subjectPage, 'vector-namespace-' . $subjectId, !$isTalk, '', true |
| 110 | + $subjectPage, 'nstab-' . $subjectId, !$isTalk, '', true |
111 | 111 | ); |
112 | 112 | $links['namespaces'][$subjectId]['context'] = 'subject'; |
113 | 113 | $links['namespaces'][$talkId] = $this->tabAction( |
114 | | - $talkPage, 'vector-namespace-talk', $isTalk, '', true |
| 114 | + $talkPage, 'nstab-talk', $isTalk, '', true |
115 | 115 | ); |
116 | 116 | $links['namespaces'][$talkId]['context'] = 'talk'; |
117 | 117 | |
— | — | @@ -312,7 +312,7 @@ |
313 | 313 | } else { |
314 | 314 | $links['namespaces']['special'] = array( |
315 | 315 | 'class' => 'selected', |
316 | | - 'text' => wfMsg( 'vector-namespace-special' ), |
| 316 | + 'text' => wfMsg( 'nstab-special' ), |
317 | 317 | 'href' => $wgRequest->getRequestURL() |
318 | 318 | ); |
319 | 319 | } |