WARNING: HUGE COMMIT
[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 function ucfirst ( $string ) {
24 if ( $string[0] == 'i' ) {
25 return 'İ' . substr( $string, 1 );
26 } else {
27 return parent::ucfirst( $string );
28 }
29 }
30
31 /**
32 * Avoid grouping whole numbers between 0 to 9999
33 */
34 function commafy( $_ ) {
35 if ( !preg_match( '/^\d{1,4}$/', $_ ) ) {
36 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev($_) ) );
37 } else {
38 return $_;
39 }
40 }
41
42 }