Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1645,6 +1645,7 @@ |
1646 | 1646 | 'mostrevisions', |
1647 | 1647 | 'mostrevisions-summary', |
1648 | 1648 | 'prefixindex', |
| 1649 | + 'prefixindex-namespace', |
1649 | 1650 | 'prefixindex-summary', |
1650 | 1651 | 'shortpages', |
1651 | 1652 | 'shortpages-summary', |
Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -187,6 +187,8 @@ |
188 | 188 | with .xxx causes Internal error |
189 | 189 | * Warning about undefined index in certain situations when $wgLogRestrictions |
190 | 190 | causes the first log type requested to be removed but not the others |
| 191 | +* Use separate message ('prefixindex-namespace') for title of |
| 192 | + Special:PrefixIndex rather then re-using Special:AllPages's allinnamespace |
191 | 193 | |
192 | 194 | === API changes in 1.19 === |
193 | 195 | * (bug 19838) siprop=interwikimap can now use the interwiki cache. |
Index: trunk/phase3/includes/specials/SpecialPrefixindex.php |
— | — | @@ -56,7 +56,7 @@ |
57 | 57 | $namespaces = $wgContLang->getNamespaces(); |
58 | 58 | $out->setPageTitle( |
59 | 59 | ( $namespace > 0 && in_array( $namespace, array_keys( $namespaces ) ) ) |
60 | | - ? $this->msg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) |
| 60 | + ? $this->msg( 'prefixindex-namespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) |
61 | 61 | : $this->msg( 'prefixindex' ) |
62 | 62 | ); |
63 | 63 | |
Index: trunk/phase3/languages/messages/MessagesQqq.php |
— | — | @@ -2177,6 +2177,7 @@ |
2178 | 2178 | 'mostimages' => 'Name of special page displayed in [[Special:SpecialPages]]', |
2179 | 2179 | 'mostrevisions' => 'Name of special page displayed in [[Special:SpecialPages]]', |
2180 | 2180 | 'prefixindex' => 'The page title of [[Special:PrefixIndex]]. When the user limits the list to a certain namespace, {{msg-mw|allinnamespace}} is used instead.', |
| 2181 | +'prefixindex-namespace' => 'The page title of [[Special:PrefixIndex]] limited to a specific namespace. Similar to {{msg-mw|allinnamespace}}. $1 is the name of the namespace', |
2181 | 2182 | 'shortpages' => 'Name of special page displayed in [[Special:SpecialPages]]', |
2182 | 2183 | 'longpages' => 'Name of special page displayed in [[Special:SpecialPages]]', |
2183 | 2184 | 'deadendpages' => 'Name of special page displayed in [[Special:SpecialPages]]', |
— | — | @@ -2250,7 +2251,7 @@ |
2251 | 2252 | 'allarticles' => 'The page title of [[Special:Allpages]]. When the user limit the list to a certain namespace, {{msg-mw|allinnamespace}} is used instead. |
2252 | 2253 | |
2253 | 2254 | {{Identical|All pages}}', |
2254 | | -'allinnamespace' => 'The page title of [[Special:Allpages]] and [[Special:PrefixIndex]], when the user limits the display to a certain namespace. When not limited, {{msg-mw|allarticles}} and {{msg-mw|prefixindex}} is used respectively. |
| 2255 | +'allinnamespace' => 'The page title of [[Special:Allpages]], when the user limits the display to a certain namespace. When not limited, {{msg-mw|allarticles}} is used respectively. |
2255 | 2256 | |
2256 | 2257 | {{Identical|All pages}}', |
2257 | 2258 | 'allnotinnamespace' => 'Presumably intended to be used as a page title of [[Special:Allpages]] and probably also in [[Special:PrefixIndex]] when the user limit the display to other than a certain namespace. |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2545,6 +2545,7 @@ |
2546 | 2546 | 'mostrevisions' => 'Pages with the most revisions', |
2547 | 2547 | 'mostrevisions-summary' => '', # do not translate or duplicate this message to other languages |
2548 | 2548 | 'prefixindex' => 'All pages with prefix', |
| 2549 | +'prefixindex-namespace' => 'All pages with prefix ($1 namespace)', |
2549 | 2550 | 'prefixindex-summary' => '', # do not translate or duplicate this message to other languages |
2550 | 2551 | 'shortpages' => 'Short pages', |
2551 | 2552 | 'shortpages-summary' => '', # do not translate or duplicate this message to other languages |