* fixed js2 fileexist checking related to rewrite of special upload page in r57868
[lhc/web/wiklou.git] / languages / classes / LanguageKaa.php
1 <?php
2
3 /** Karakalpak (Qaraqalpaqsha)
4 *
5 * @ingroup Language
6 */
7 class LanguageKaa extends Language {
8
9 # Convert from the nominative form of a noun to some other case
10 # Invoked with {{GRAMMAR:case|word}}
11 /**
12 * Cases: genitive, dative, accusative, locative, ablative, comitative + possessive forms
13 */
14 function convertGrammar( $word, $case ) {
15 global $wgGrammarForms;
16 if ( isset( $wgGrammarForms['kaa'][$case][$word] ) ) {
17 return $wgGrammarForms['kaa'][$case][$word];
18 }
19 /* Full code of function convertGrammar() is in development. Updates coming soon. */
20 return $word;
21 }
22 /*
23 * It fixes issue with ucfirst for transforming 'i' to 'İ'
24 *
25 */
26 function ucfirst ( $string ) {
27 if ( $string[0] == 'i' ) {
28 $string = 'İ' . substr( $string, 1 );
29 } else {
30 $string = parent::ucfirst( $string );
31 }
32 return $string;
33
34 }
35
36 /*
37 * It fixes issue with lcfirst for transforming 'I' to 'ı'
38 *
39 */
40 function lcfirst ( $string ) {
41 if ( $string[0] == 'I' ) {
42 $string = 'ı' . substr( $string, 1 );
43 } else {
44 $string = parent::lcfirst( $string );
45 }
46 return $string;
47 }
48
49 /**
50 * Avoid grouping whole numbers between 0 to 9999
51 */
52 function commafy( $_ ) {
53 if ( !preg_match( '/^\d{1,4}$/', $_ ) ) {
54 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev($_) ) );
55 } else {
56 return $_;
57 }
58 }
59
60 }