MediaWiki  REL1_22
LanguageAz.php
Go to the documentation of this file.
00001 <?php
00029 class LanguageAz extends Language {
00030 
00035     function ucfirst( $string ) {
00036         if ( $string[0] == 'i' ) {
00037             return 'İ' . substr( $string, 1 );
00038         } else {
00039             return parent::ucfirst( $string );
00040         }
00041     }
00042 }