MediaWiki  REL1_19
LanguageAz.php
Go to the documentation of this file.
00001 <?php
00006 class LanguageAz extends Language {
00007 
00012         function ucfirst ( $string ) {
00013                 if ( $string[0] == 'i' ) {
00014                         return 'İ' . substr( $string, 1 );
00015                 } else {
00016                         return parent::ucfirst( $string );
00017                 }
00018         }
00019 }