MediaWiki  REL1_22
LanguageUk.php
Go to the documentation of this file.
00001 <?php
00029 class LanguageUk extends Language {
00030 
00039     function convertGrammar( $word, $case ) {
00040         global $wgGrammarForms;
00041         if ( isset( $wgGrammarForms['uk'][$case][$word] ) ) {
00042             return $wgGrammarForms['uk'][$case][$word];
00043         }
00044 
00045         # These rules are not perfect, but they are currently only used for site names so it doesn't
00046         # matter if they are wrong sometimes. Just add a special case for your site name if necessary.
00047 
00048         # join and array_slice instead mb_substr
00049         $ar = array();
00050         preg_match_all( '/./us', $word, $ar );
00051         if ( !preg_match( "/[a-zA-Z_]/us", $word ) ) {
00052             switch ( $case ) {
00053                 case 'genitive': # родовий відмінок
00054                     if ( ( join( '', array_slice( $ar[0], -4 ) ) == 'вікі' ) || ( join( '', array_slice( $ar[0], -4 ) ) == 'Вікі' ) ) {
00055                     } elseif ( join( '', array_slice( $ar[0], -1 ) ) == 'ь' ) {
00056                         $word = join( '', array_slice( $ar[0], 0, -1 ) ) . 'я';
00057                     } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ія' ) {
00058                         $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ії';
00059                     } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ка' ) {
00060                         $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ки';
00061                     } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ти' ) {
00062                         $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'тей';
00063                     } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ди' ) {
00064                         $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'дів';
00065                     } elseif ( join( '', array_slice( $ar[0], -3 ) ) == 'ник' ) {
00066                         $word = join( '', array_slice( $ar[0], 0, -3 ) ) . 'ника';
00067                     }
00068                     break;
00069                 case 'dative':  # давальний відмінок
00070                     # stub
00071                     break;
00072                 case 'accusative': # знахідний відмінок
00073                     if ( ( join( '', array_slice( $ar[0], -4 ) ) == 'вікі' ) || ( join( '', array_slice( $ar[0], -4 ) ) == 'Вікі' ) ) {
00074                     } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ія' ) {
00075                         $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ію';
00076                     }
00077                     break;
00078                 case 'instrumental':  # орудний відмінок
00079                     # stub
00080                     break;
00081                 case 'prepositional': # місцевий відмінок
00082                     # stub
00083                     break;
00084             }
00085         }
00086         return $word;
00087     }
00088 
00096     function commafy( $_ ) {
00097         if ( !preg_match( '/^\-?\d{1,4}(\.\d+)?$/', $_ ) ) {
00098             return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
00099         } else {
00100             return $_;
00101         }
00102     }
00103 }