Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -2714,7 +2714,7 @@ |
2715 | 2715 | function limitationWarn( $limitationType, $current=null, $max=null) { |
2716 | 2716 | $msgName = $limitationType . '-warning'; |
2717 | 2717 | //does no harm if $current and $max are present but are unnecessary for the message |
2718 | | - $warning = wfMsg( $msgName, $current, $max); |
| 2718 | + $warning = wfMsgExt( $msgName, array( 'parsemag', 'escape' ), $current, $max ); |
2719 | 2719 | $this->mOutput->addWarning( $warning ); |
2720 | 2720 | $cat = Title::makeTitleSafe( NS_CATEGORY, wfMsgForContent( $limitationType . '-category' ) ); |
2721 | 2721 | if ( $cat ) { |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1170,7 +1170,7 @@ |
1171 | 1171 | # Parser/template warnings |
1172 | 1172 | 'expensive-parserfunction-warning' => 'Warning: This page contains too many expensive parser function calls. |
1173 | 1173 | |
1174 | | -It should have less than $2, there are now $1.', |
| 1174 | +It should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.', |
1175 | 1175 | 'expensive-parserfunction-category' => 'Pages with too many expensive parser function calls', |
1176 | 1176 | 'post-expand-template-inclusion-warning' => 'Warning: Template include size is too large. |
1177 | 1177 | Some templates will not be included.', |
— | — | @@ -1515,7 +1515,7 @@ |
1516 | 1516 | 'right-reupload-shared' => 'Override files on the shared media repository locally', |
1517 | 1517 | 'right-upload_by_url' => 'Upload a file from a URL address', |
1518 | 1518 | 'right-purge' => 'Purge the site cache for a page without confirmation', |
1519 | | -'right-autoconfirmed' => 'Edit semi-protected pages', |
| 1519 | +'right-autoconfirmed' => 'Edit [[semi]]-protected pages', |
1520 | 1520 | 'right-bot' => 'Be treated as an automated process', |
1521 | 1521 | 'right-nominornewtalk' => 'Not have minor edits to discussion pages trigger the new messages prompt', |
1522 | 1522 | 'right-apihighlimits' => 'Use higher limits in API queries', |
— | — | @@ -2026,7 +2026,7 @@ |
2027 | 2027 | 'listgrouprights-helppage' => 'Help:Group rights', |
2028 | 2028 | 'listgrouprights-members' => '(list of members)', |
2029 | 2029 | 'listgrouprights-right-display' => '$1 ($2)', # only translate this message to other languages if you have to change it |
2030 | | -'listgrouprights-addgroup' => 'Can add {{PLURAL:$2|group|groups}}: $1', |
| 2030 | +'listgrouprights-addgroup' => 'Can [[add]] {{PLURAL:$2|group|groups}}: $1', |
2031 | 2031 | 'listgrouprights-removegroup' => 'Can remove {{PLURAL:$2|group|groups}}: $1', |
2032 | 2032 | 'listgrouprights-addgroup-all' => 'Can add all groups', |
2033 | 2033 | 'listgrouprights-removegroup-all' => 'Can remove all groups', |