Index: trunk/extensions/SimpleSecurity/SimpleSecurity_body.php |
— | — | @@ -259,8 +259,10 @@ |
260 | 260 | private function groupText( &$groups ) { |
261 | 261 | $gl = $groups; |
262 | 262 | $gt = array_pop( $gl ); |
| 263 | + // FIXME: use $wgLang->commaList() |
| 264 | + // FIXME: hard coded bold. Not all scripts use this. Needs i18n support. |
263 | 265 | if ( count( $groups ) > 1 ) $gt = wfMsg( 'security-manygroups', "<b>" . join( "</b>, <b>", $gl ) . "</b>", "<b>$gt</b>" ); |
264 | | - else $gt = "the <b>$gt</b> group"; |
| 266 | + else $gt = "the <b>$gt</b> group"; // FIXME: hard coded text. Needs i18n support. |
265 | 267 | return $gt; |
266 | 268 | } |
267 | 269 | |