Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -653,7 +653,7 @@ |
654 | 654 | * @private |
655 | 655 | */ |
656 | 656 | function buildContentActionUrls () { |
657 | | - global $wgContLang, $wgOut; |
| 657 | + global $wgContLang, $wgLang, $wgOut; |
658 | 658 | $fname = 'SkinTemplate::buildContentActionUrls'; |
659 | 659 | wfProfileIn( $fname ); |
660 | 660 | |
— | — | @@ -756,7 +756,7 @@ |
757 | 757 | $undelTitle = SpecialPage::getTitleFor( 'Undelete' ); |
758 | 758 | $content_actions['undelete'] = array( |
759 | 759 | 'class' => false, |
760 | | - 'text' => wfMsgExt( 'undelete_short', array( 'parsemag' ), $n ), |
| 760 | + 'text' => wfMsgExt( 'undelete_short', array( 'parsemag' ), $wgLang->formatNum($n) ), |
761 | 761 | 'href' => $undelTitle->getLocalUrl( 'target=' . urlencode( $this->thispage ) ) |
762 | 762 | #'href' => self::makeSpecialUrl( "Undelete/$this->thispage" ) |
763 | 763 | ); |
— | — | @@ -1203,3 +1203,4 @@ |
1204 | 1204 | |
1205 | 1205 | |
1206 | 1206 | |
| 1207 | + |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -232,6 +232,7 @@ |
233 | 233 | * Escape page names in the move successful page (e.g. for pages with two |
234 | 234 | apostrophes). |
235 | 235 | * (bug 12145) Add localized names of kk-variants |
| 236 | +* (bug 12259) Localize the numbers in deleted pages on the sysop view |
236 | 237 | |
237 | 238 | == Parser changes in 1.12 == |
238 | 239 | |