Index: trunk/extensions/Translate/SpecialLanguageStats.php |
— | — | @@ -146,17 +146,20 @@ |
147 | 147 | $out = wfMsgExt( 'languagestats-stats-for', array( 'parse', 'replaceafter' ), $languageName, $rcInLangLink ); |
148 | 148 | |
149 | 149 | # Create table header |
150 | | - $out .= Xml::openElement( 'table', array( |
151 | | - 'class' => "sortable wikitable", |
152 | | - 'border' => '2', |
153 | | - 'cellpadding' => '4', |
154 | | - 'cellspacing' => '0', |
155 | | - 'style' => "background-color: #F9F9F9; border: 1px #AAAAAA solid; border-collapse: collapse; clear:both;", |
156 | | - 'width' => "100%" |
| 150 | + $out .= Xml::openElement( |
| 151 | + 'table', |
| 152 | + array( |
| 153 | + 'class' => "sortable wikitable", |
| 154 | + 'border' => '2', |
| 155 | + 'cellpadding' => '4', |
| 156 | + 'cellspacing' => '0', |
| 157 | + 'style' => "background-color: #F9F9F9; border: 1px #AAAAAA solid; border-collapse: collapse; clear:both;", |
| 158 | + 'width' => "100%" |
| 159 | + ) |
157 | 160 | ); |
158 | 161 | $out .= Xml::openElement( 'tr' ); |
159 | 162 | $out .= Xml::element( 'th', null, wfMsg( 'translate-page-group' ) ); |
160 | | - $out .= Xml::element( 'th' null, wfMsg( 'translate-total' ) ); |
| 163 | + $out .= Xml::element( 'th', null, wfMsg( 'translate-total' ) ); |
161 | 164 | $out .= Xml::element( 'th', null, wfMsg( 'translate-untranslated' ) ); |
162 | 165 | $out .= Xml::element( 'th', null, wfMsg( 'translate-percentage-complete' ) ); |
163 | 166 | $out .= Xml::element( 'th', null, wfMsg( 'translate-percentage-fuzzy' ) ); |
— | — | @@ -235,7 +238,7 @@ |
236 | 239 | ); |
237 | 240 | |
238 | 241 | if( $translated == $total ) { |
239 | | - $queryParameters['task'] = 'reviewall'; |
| 242 | + $queryParameters['task'] = 'reviewall'; |
240 | 243 | } |
241 | 244 | |
242 | 245 | $groupLabel = $g->getLabel(); |