Using a new function, Language::getArrow, to check the direction, instead of hard...
[lhc/web/wiklou.git] / languages / LanguageTr.php
1 <?php
2 /**
3 * Turkish (Türkçe)
4 *
5 * @package MediaWiki
6 * @subpackage Language
7 */
8 class LanguageTr extends Language {
9 function ucfirst ( $string ) {
10 if ( $string[0] == 'i' ) {
11 return 'İ' . substr( $string, 1 );
12 } else {
13 return parent::ucfirst( $string );
14 }
15 }
16
17 }
18 ?>