MediaWiki master
LanguageAz.php
Go to the documentation of this file.
1<?php
26class LanguageAz extends Language {
27
28 public function ucfirst( $str ) {
29 if ( substr( $str, 0, 1 ) === 'i' ) {
30 return 'İ' . substr( $str, 1 );
31 }
32 return parent::ucfirst( $str );
33 }
34}
Azerbaijani (Azərbaycan) specific code.
ucfirst( $str)
Base class for language-specific code.
Definition Language.php:63