MediaWiki  REL1_19
LanguageFi.php
Go to the documentation of this file.
00001 <?php
00002 
00009 class LanguageFi extends Language {
00010 
00019         function convertGrammar( $word, $case ) {
00020                 global $wgGrammarForms;
00021                 if ( isset( $wgGrammarForms['fi'][$case][$word] ) ) {
00022                         return $wgGrammarForms['fi'][$case][$word];
00023                 }
00024 
00025                 # These rules are not perfect, but they are currently only used for site names so it doesn't
00026                 # matter if they are wrong sometimes. Just add a special case for your site name if necessary.
00027 
00028                 # wovel harmony flag
00029                 $aou = preg_match( '/[aou][^äöy]*$/i', $word );
00030 
00031                 # The flag should be false for compounds where the last word has only neutral vowels (e/i).
00032                 # The general case cannot be handled without a dictionary, but there's at least one notable
00033                 # special case we should check for:
00034 
00035                 if ( preg_match( '/wiki$/i', $word ) )
00036                         $aou = false;
00037 
00038                 # append i after final consonant
00039                 if ( preg_match( '/[bcdfghjklmnpqrstvwxz]$/i', $word ) )
00040                         $word .= 'i';
00041 
00042                 switch ( $case ) {
00043                         case 'genitive':
00044                                 $word .= 'n';
00045                                 break;
00046                         case 'elative':
00047                                 $word .= ( $aou ? 'sta' : 'stä' );
00048                                 break;
00049                         case 'partitive':
00050                                 $word .= ( $aou ? 'a' : 'ä' );
00051                                 break;
00052                         case 'illative':
00053                                 # Double the last letter and add 'n'
00054                                 # mb_substr has a compatibility function in GlobalFunctions.php
00055                                 $word = $word . mb_substr( $word, -1 ) . 'n';
00056                                 break;
00057                         case 'inessive':
00058                                 $word .= ( $aou ? 'ssa' : 'ssä' );
00059                                 break;
00060                 }
00061                 return $word;
00062         }
00063 
00069         function translateBlockExpiry( $str, $forContent = false ) {
00070                 /*
00071                         'ago', 'now', 'today', 'this', 'next',
00072                         'first', 'third', 'fourth', 'fifth', 'sixth', 'seventh', 'eighth', 'ninth', 'tenth', 'eleventh', 'twelfth',
00073                         'tomorrow', 'yesterday'
00074 
00075                         $months = 'january:tammikuu,february:helmikuu,march:maaliskuu,april:huhtikuu,may:toukokuu,june:kesäkuu,' .
00076                                 'july:heinäkuu,august:elokuu,september:syyskuu,october:lokakuu,november:marraskuu,december:joulukuu,' .
00077                                 'jan:tammikuu,feb:helmikuu,mar:maaliskuu,apr:huhtikuu,jun:kesäkuu,jul:heinäkuu,aug:elokuu,sep:syyskuu,'.
00078                                 'oct:lokakuu,nov:marraskuu,dec:joulukuu,sept:syyskuu';
00079                 */
00080                 $weekds = array(
00081                         'monday' => 'maanantai',
00082                         'tuesday' => 'tiistai',
00083                         'wednesday' => 'keskiviikko',
00084                         'thursay' => 'torstai',
00085                         'friday' => 'perjantai',
00086                         'saturday' => 'lauantai',
00087                         'sunday' => 'sunnuntai',
00088                         'mon' => 'ma',
00089                         'tue' => 'ti',
00090                         'tues' => 'ti',
00091                         'wed' => 'ke',
00092                         'wednes' => 'ke',
00093                         'thu' => 'to',
00094                         'thur' => 'to',
00095                         'thurs' => 'to',
00096                         'fri' => 'pe',
00097                         'sat' => 'la',
00098                         'sun' => 'su',
00099                         'next' => 'seuraava',
00100                         'tomorrow' => 'huomenna',
00101                         'ago' => 'sitten',
00102                         'seconds' => 'sekuntia',
00103                         'second' => 'sekunti',
00104                         'secs' => 's',
00105                         'sec' => 's',
00106                         'minutes' => 'minuuttia',
00107                         'minute' => 'minuutti',
00108                         'mins' => 'min',
00109                         'min' => 'min',
00110                         'days' => 'päivää',
00111                         'day' => 'päivä',
00112                         'hours' => 'tuntia',
00113                         'hour' => 'tunti',
00114                         'weeks' => 'viikkoa',
00115                         'week' => 'viikko',
00116                         'fortnights' => 'tuplaviikkoa',
00117                         'fortnight' => 'tuplaviikko',
00118                         'months' => 'kuukautta',
00119                         'month' => 'kuukausi',
00120                         'years' => 'vuotta',
00121                         'year' => 'vuosi',
00122                         'infinite' => 'ikuisesti',
00123                         'indefinite' => 'ikuisesti'
00124                 );
00125 
00126                 $final = '';
00127                 $tokens = explode ( ' ', $str );
00128                 foreach ( $tokens as $item ) {
00129                         if ( !is_numeric( $item ) ) {
00130                                 if ( count ( explode( '-', $item ) ) == 3 && strlen( $item ) == 10 ) {
00131                                         list( $yyyy, $mm, $dd ) = explode( '-', $item );
00132                                         $final .= ' ' . $this->date( "{$yyyy}{$mm}{$dd}000000" );
00133                                         continue;
00134                                 }
00135                                 if ( isset( $weekds[$item] ) ) {
00136                                         $final .= ' ' . $weekds[$item];
00137                                         continue;
00138                                 }
00139                         }
00140 
00141                         $final .= ' ' . $item;
00142                 }
00143 
00144                 return htmlspecialchars( trim( $final ) );
00145         }
00146 }