Index: trunk/extensions/Push/Push.i18n.php |
— | — | @@ -46,7 +46,7 @@ |
47 | 47 | 'push-tab-not-created' => 'This page does not exist yet.', |
48 | 48 | 'push-tab-push-options' => 'Push options:', |
49 | 49 | 'push-tab-inc-templates' => 'Include templates', |
50 | | - 'push-tab-used-templates' => '(Used templates: $1)', |
| 50 | + 'push-tab-used-templates' => '(Used {{PLURAL:$2|template|templates}}: $1)', |
51 | 51 | 'push-tab-no-used-templates' => '(No templates are used on this page.)', |
52 | 52 | |
53 | 53 | // Special page |
Index: trunk/extensions/Push/includes/Push_Tab.php |
— | — | @@ -306,7 +306,7 @@ |
307 | 307 | 'div', |
308 | 308 | array( 'style' => 'display:inline; opacity:0', 'id' => 'txtTemplateList' ), |
309 | 309 | count( $usedTemplates ) > 0 ? |
310 | | - wfMsgExt( 'push-tab-used-templates', 'parseinline', $wgLang->listToText( $usedTemplates ) ) : |
| 310 | + wfMsgExt( 'push-tab-used-templates', 'parseinline', $wgLang->listToText( $usedTemplates ), count( $usedTemplates ) ) : |
311 | 311 | htmlspecialchars( wfMsg( 'push-tab-no-used-templates' ) ) |
312 | 312 | ) |
313 | 313 | ) |