Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1225,6 +1225,7 @@ |
1226 | 1226 | 'rc_categories', |
1227 | 1227 | 'rc_categories_any', |
1228 | 1228 | 'rc-change-size', |
| 1229 | + 'rc-change-size-new', |
1229 | 1230 | 'newsectionsummary', |
1230 | 1231 | 'rc-enhanced-expand', |
1231 | 1232 | 'rc-enhanced-hide', |
Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -217,7 +217,7 @@ |
218 | 218 | $formattedSizeClass = 'mw-plusminus-neg'; |
219 | 219 | } |
220 | 220 | |
221 | | - $formattedTotalSize = wfMsgExt( 'nbytes', 'parsemag', $wgLang->formatNum( $new ) ); |
| 221 | + $formattedTotalSize = wfMsgExt( 'rc-change-size-new', 'parsemag', $wgLang->formatNum( $new ) ); |
222 | 222 | |
223 | 223 | return Html::element( $tag, |
224 | 224 | array( 'dir' => 'ltr', 'class' => $formattedSizeClass, 'title' => $formattedTotalSize ), |
Index: trunk/phase3/languages/messages/MessagesQqq.php |
— | — | @@ -1780,6 +1780,7 @@ |
1781 | 1781 | 'rc-change-size' => '{{optional}} |
1782 | 1782 | |
1783 | 1783 | Does not work under $wgMiserMode ([[mwr:48986|r48986]]).', |
| 1784 | +'rc-change-size-new' => 'Tooltip when overing a change list diff size. The tooltip show the resulting new size in bytes.', |
1784 | 1785 | 'newsectionsummary' => 'Default summary when adding a new section to a page.', |
1785 | 1786 | |
1786 | 1787 | # Recent changes linked |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2061,6 +2061,8 @@ |
2062 | 2062 | 'rc_categories' => 'Limit to categories (separate with "|")', |
2063 | 2063 | 'rc_categories_any' => 'Any', |
2064 | 2064 | 'rc-change-size' => '$1', # only translate this message to other languages if you have to change it |
| 2065 | +'rc-change-size-new' => '$1 {{PLURAL:$1|byte|bytes}} after change', |
| 2066 | + |
2065 | 2067 | 'newsectionsummary' => '/* $1 */ new section', |
2066 | 2068 | 'rc-enhanced-expand' => 'Show details (requires JavaScript)', |
2067 | 2069 | 'rc-enhanced-hide' => 'Hide details', |