2006-03-30 00:39:18 +00:00
|
|
|
<?php
|
2012-06-05 20:13:22 +00:00
|
|
|
/**
|
|
|
|
|
* Azerbaijani (Azərbaycan) specific code.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Language
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Azerbaijani (Azərbaycan)
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Language
|
|
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
class LanguageAz extends Language {
|
2011-05-29 15:20:43 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $string string
|
|
|
|
|
* @return mixed|string
|
|
|
|
|
*/
|
2006-03-30 00:39:18 +00:00
|
|
|
function ucfirst ( $string ) {
|
|
|
|
|
if ( $string[0] == 'i' ) {
|
|
|
|
|
return 'İ' . substr( $string, 1 );
|
|
|
|
|
} else {
|
|
|
|
|
return parent::ucfirst( $string );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|