Index: trunk/extensions/Translate/Translate.php |
— | — | @@ -82,6 +82,7 @@ |
83 | 83 | // Unlisted special page; does not need $wgSpecialPageGroups. |
84 | 84 | $wgSpecialPages['MyLanguage'] = 'SpecialMyLanguage'; |
85 | 85 | $wgSpecialPages['AggregateGroups'] = 'SpecialAggregateGroups'; |
| 86 | +$wgSpecialPageGroups['AggregateGroups'] = 'wiki'; |
86 | 87 | |
87 | 88 | // API |
88 | 89 | $wgAPIListModules['messagecollection'] = 'ApiQueryMessageCollection'; |
Index: trunk/extensions/Translate/PageTranslation.i18n.php |
— | — | @@ -111,8 +111,7 @@ |
112 | 112 | 'tpt-render-summary' => 'Updating to match new version of source page', |
113 | 113 | |
114 | 114 | 'tpt-download-page' => 'Export page with translations', |
115 | | - |
116 | | - 'tpt-aggregategroups' => 'Aggregate Groups', |
| 115 | + 'aggregategroups' => 'Aggregate Groups', |
117 | 116 | 'tpt-aggregategroup-add' => 'Add', |
118 | 117 | 'tpt-aggregategroup-save' => 'Save', |
119 | 118 | 'tpt-aggregategroup-add-new' => 'Add a new aggregate group', |
— | — | @@ -276,7 +275,7 @@ |
277 | 276 | 'tpt-discouraged-language-force' => 'Warning shown along with group description if the language is prevented from translation for the selected language', |
278 | 277 | 'tpt-discouraged-language' => 'Warning shown along with group description if the language is discouraged from translation for the selected language', |
279 | 278 | 'tpt-priority-languages' => 'Message to be shown before the messagestats table. $1 is a comma-separated list of language codes.', |
280 | | - 'tpt-aggregategroups' => 'The title of the special page [[Special:AggregateGroups]]', |
| 279 | + 'aggregategroups' => 'Title of [[Special:AggregateGroups]] and its name in [[Special:AggregateGroups]].', |
281 | 280 | 'tpt-aggregategroup-add' => 'Label for the button to add a new page to aggregate group in [[Special:AggregateGroups]]', |
282 | 281 | 'tpt-aggregategroup-save' => 'Label for the button to save a new aggregate group in [[Special:AggregateGroups]]', |
283 | 282 | 'tpt-aggregategroup-add-new' => 'Label for the link that gives a form to enter new group details in [[Special:AggregateGroups]]', |
Index: trunk/extensions/Translate/specials/SpecialAggregateGroups.php |
— | — | @@ -38,7 +38,6 @@ |
39 | 39 | $wgOut->permissionRequired( 'translate-manage' ); |
40 | 40 | return; |
41 | 41 | } |
42 | | - $wgOut->setPageTitle( wfMsg( 'tpt-aggregategroups' ) ); |
43 | 42 | $this->showAggregateGroups(); |
44 | 43 | |
45 | 44 | } |