Index: trunk/phase3/includes/specials/SpecialCategories.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | $cap->doQuery(); |
18 | 18 | $wgOut->addHTML( |
19 | 19 | XML::openElement( 'div', array('class' => 'mw-spcontent') ) . |
20 | | - wfMsgExt( 'categoriespagetext', array( 'parse' ) ) . |
| 20 | + wfMsgExt( 'categoriespagetext', array( 'parse' ), $cap->getNumRows() ) . |
21 | 21 | $cap->getStartForm( $from ) . |
22 | 22 | $cap->getNavigationBar() . |
23 | 23 | '<ul>' . $cap->getBody() . '</ul>' . |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2241,7 +2241,7 @@ |
2242 | 2242 | # Special:Categories |
2243 | 2243 | 'categories' => 'Categories', |
2244 | 2244 | 'categories-summary' => '', # do not translate or duplicate this message to other languages |
2245 | | -'categoriespagetext' => 'The following categories contain pages or media. |
| 2245 | +'categoriespagetext' => 'The following {{PLURAL:$1|category contains|categories contain}} pages or media. |
2246 | 2246 | [[Special:UnusedCategories|Unused categories]] are not shown here. |
2247 | 2247 | Also see [[Special:WantedCategories|wanted categories]].', |
2248 | 2248 | 'categoriesfrom' => 'Display categories starting at:', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -65,6 +65,7 @@ |
66 | 66 | * (bug 18849) Implement Japanese and North Korean calendars |
67 | 67 | * (bug 5755) Introduce {{CURRENTMONTH1}} and {{LOCALMONTH1}} to display the |
68 | 68 | month number without the leading zero |
| 69 | +* (bug 13456) categoriespagetext supports PLURAL |
69 | 70 | |
70 | 71 | === Bug fixes in 1.16 === |
71 | 72 | |