Index: trunk/extensions/Translate/scripts/groupStatistics.php |
— | — | @@ -314,8 +314,11 @@ |
315 | 315 | if( $mostSpokenLanguages[$code][4] == 'multiple' ) { |
316 | 316 | $continent = ''; |
317 | 317 | } else { |
318 | | - $continent = "{{int:timezoneregion-" . $mostSpokenLanguages[$code][4] . "}}"; |
| 318 | + $continent = isset( $options['nol10n'] ) ? |
| 319 | + ucfirst ( $mostSpokenLanguages[$code][4] ) : |
| 320 | + "{{int:timezoneregion-" . $mostSpokenLanguages[$code][4] . "}}"; |
319 | 321 | } |
| 322 | + |
320 | 323 | $out->element( $continent ); |
321 | 324 | } |
322 | 325 | |