[ Index ]

PHP Cross Reference of MediaWiki-1.24.0

title

Body

[close]

/languages/classes/ -> LanguageUk.php (source)

   1  <?php
   2  /**
   3   * Ukrainian (українська мова) specific code.
   4   *
   5   * This program is free software; you can redistribute it and/or modify
   6   * it under the terms of the GNU General Public License as published by
   7   * the Free Software Foundation; either version 2 of the License, or
   8   * (at your option) any later version.
   9   *
  10   * This program is distributed in the hope that it will be useful,
  11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13   * GNU General Public License for more details.
  14   *
  15   * You should have received a copy of the GNU General Public License along
  16   * with this program; if not, write to the Free Software Foundation, Inc.,
  17   * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18   * http://www.gnu.org/copyleft/gpl.html
  19   *
  20   * @file
  21   * @ingroup Language
  22   */
  23  
  24  /**
  25   * Ukrainian (українська мова)
  26   *
  27   * @ingroup Language
  28   */
  29  class LanguageUk extends Language {
  30  
  31      /**
  32       * Convert from the nominative form of a noun to some other case
  33       * Invoked with {{grammar:case|word}}
  34       *
  35       * @param string $word
  36       * @param string $case
  37       * @return string
  38       */
  39  	function convertGrammar( $word, $case ) {
  40          global $wgGrammarForms;
  41          if ( isset( $wgGrammarForms['uk'][$case][$word] ) ) {
  42              return $wgGrammarForms['uk'][$case][$word];
  43          }
  44  
  45          # These rules are not perfect, but they are currently only used for site names so it doesn't
  46          # matter if they are wrong sometimes. Just add a special case for your site name if necessary.
  47  
  48          # join and array_slice instead mb_substr
  49          $ar = array();
  50          preg_match_all( '/./us', $word, $ar );
  51          if ( !preg_match( "/[a-zA-Z_]/us", $word ) ) {
  52              switch ( $case ) {
  53                  case 'genitive': # родовий відмінок
  54                      if ( ( join( '', array_slice( $ar[0], -4 ) ) == 'вікі' )
  55                          || ( join( '', array_slice( $ar[0], -4 ) ) == 'Вікі' )
  56                      ) {
  57                      } elseif ( join( '', array_slice( $ar[0], -1 ) ) == 'ь' ) {
  58                          $word = join( '', array_slice( $ar[0], 0, -1 ) ) . 'я';
  59                      } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ія' ) {
  60                          $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ії';
  61                      } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ка' ) {
  62                          $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ки';
  63                      } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ти' ) {
  64                          $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'тей';
  65                      } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ди' ) {
  66                          $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'дів';
  67                      } elseif ( join( '', array_slice( $ar[0], -3 ) ) == 'ник' ) {
  68                          $word = join( '', array_slice( $ar[0], 0, -3 ) ) . 'ника';
  69                      }
  70                      break;
  71                  case 'dative':  # давальний відмінок
  72                      # stub
  73                      break;
  74                  case 'accusative': # знахідний відмінок
  75                      if ( ( join( '', array_slice( $ar[0], -4 ) ) == 'вікі' )
  76                          || ( join( '', array_slice( $ar[0], -4 ) ) == 'Вікі' )
  77                      ) {
  78                      } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ія' ) {
  79                          $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ію';
  80                      }
  81                      break;
  82                  case 'instrumental':  # орудний відмінок
  83                      # stub
  84                      break;
  85                  case 'prepositional': # місцевий відмінок
  86                      # stub
  87                      break;
  88              }
  89          }
  90          return $word;
  91      }
  92  
  93      /**
  94       * Ukrainian numeric format is "12 345,67" but "1234,56"
  95       *
  96       * @param string $_
  97       *
  98       * @return string
  99       */
 100  	function commafy( $_ ) {
 101          if ( !preg_match( '/^\-?\d{1,4}(\.\d+)?$/', $_ ) ) {
 102              return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
 103          } else {
 104              return $_;
 105          }
 106      }
 107  }


Generated: Fri Nov 28 14:03:12 2014 Cross-referenced by PHPXref 0.7.1