]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - languages/classes/LanguageFi.php
MediaWiki 1.30.2-scripts2
[autoinstalls/mediawiki.git] / languages / classes / LanguageFi.php
1 <?php
2 /**
3  * Finnish (Suomi) 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  * @author Niklas Laxström
22  * @ingroup Language
23  */
24
25 /**
26  * Finnish (Suomi)
27  *
28  * @ingroup Language
29  */
30 class LanguageFi extends Language {
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['fi'][$case][$word] ) ) {
42                         return $wgGrammarForms['fi'][$case][$word];
43                 }
44
45                 # These rules don't cover the whole language.
46                 # They are used only for site names.
47
48                 # wovel harmony flag
49                 $aou = preg_match( '/[aou][^äöy]*$/i', $word );
50
51                 # The flag should be false for compounds where the last word has only neutral vowels (e/i).
52                 # The general case cannot be handled without a dictionary, but there's at least one notable
53                 # special case we should check for:
54
55                 if ( preg_match( '/wiki$/i', $word ) ) {
56                         $aou = false;
57                 }
58
59                 # append i after final consonant
60                 if ( preg_match( '/[bcdfghjklmnpqrstvwxz]$/i', $word ) ) {
61                         $word .= 'i';
62                 }
63
64                 switch ( $case ) {
65                         case 'genitive':
66                                 $word .= 'n';
67                                 break;
68                         case 'elative':
69                                 $word .= ( $aou ? 'sta' : 'stä' );
70                                 break;
71                         case 'partitive':
72                                 $word .= ( $aou ? 'a' : 'ä' );
73                                 break;
74                         case 'illative':
75                                 # Double the last letter and add 'n'
76                                 $word = $word . mb_substr( $word, -1 ) . 'n';
77                                 break;
78                         case 'inessive':
79                                 $word .= ( $aou ? 'ssa' : 'ssä' );
80                                 break;
81                 }
82                 return $word;
83         }
84
85         /**
86          * @param string $str
87          * @param User $user User object to use timezone from or null for $wgUser
88          * @param int $now Current timestamp, for formatting relative block durations
89          * @return string
90          */
91         function translateBlockExpiry( $str, User $user = null, $now = 0 ) {
92                 /*
93                         'ago', 'now', 'today', 'this', 'next',
94                         'first', 'third', 'fourth', 'fifth', 'sixth', 'seventh', 'eighth', 'ninth',
95                                 'tenth', 'eleventh', 'twelfth',
96                         'tomorrow', 'yesterday'
97
98                         $months = 'january:tammikuu,february:helmikuu,march:maaliskuu,april:huhtikuu,' .
99                                 'may:toukokuu,june:kesäkuu,july:heinäkuu,august:elokuu,september:syyskuu,' .
100                                 'october:lokakuu,november:marraskuu,december:joulukuu,' .
101                                 'jan:tammikuu,feb:helmikuu,mar:maaliskuu,apr:huhtikuu,jun:kesäkuu,' .
102                                 'jul:heinäkuu,aug:elokuu,sep:syyskuu,oct:lokakuu,nov:marraskuu,' .
103                                 dec:joulukuu,sept:syyskuu';
104                 */
105                 $weekds = [
106                         'monday' => 'maanantai',
107                         'tuesday' => 'tiistai',
108                         'wednesday' => 'keskiviikko',
109                         'thursday' => 'torstai',
110                         'friday' => 'perjantai',
111                         'saturday' => 'lauantai',
112                         'sunday' => 'sunnuntai',
113                         'mon' => 'ma',
114                         'tue' => 'ti',
115                         'tues' => 'ti',
116                         'wed' => 'ke',
117                         'wednes' => 'ke',
118                         'thu' => 'to',
119                         'thur' => 'to',
120                         'thurs' => 'to',
121                         'fri' => 'pe',
122                         'sat' => 'la',
123                         'sun' => 'su',
124                         'next' => 'seuraava',
125                         'tomorrow' => 'huomenna',
126                         'ago' => 'sitten',
127                         'seconds' => 'sekuntia',
128                         'second' => 'sekunti',
129                         'secs' => 's',
130                         'sec' => 's',
131                         'minutes' => 'minuuttia',
132                         'minute' => 'minuutti',
133                         'mins' => 'min',
134                         'min' => 'min',
135                         'days' => 'päivää',
136                         'day' => 'päivä',
137                         'hours' => 'tuntia',
138                         'hour' => 'tunti',
139                         'weeks' => 'viikkoa',
140                         'week' => 'viikko',
141                         'fortnights' => 'tuplaviikkoa',
142                         'fortnight' => 'tuplaviikko',
143                         'months' => 'kuukautta',
144                         'month' => 'kuukausi',
145                         'years' => 'vuotta',
146                         'year' => 'vuosi',
147                         'infinite' => 'ikuisesti',
148                         'indefinite' => 'ikuisesti'
149                 ];
150
151                 $final = '';
152                 $tokens = explode( ' ', $str );
153                 foreach ( $tokens as $item ) {
154                         if ( !is_numeric( $item ) ) {
155                                 if ( count( explode( '-', $item ) ) == 3 && strlen( $item ) == 10 ) {
156                                         list( $yyyy, $mm, $dd ) = explode( '-', $item );
157                                         $final .= ' ' . $this->date( "{$yyyy}{$mm}{$dd}000000" );
158                                         continue;
159                                 }
160                                 if ( isset( $weekds[$item] ) ) {
161                                         $final .= ' ' . $weekds[$item];
162                                         continue;
163                                 }
164                         }
165
166                         $final .= ' ' . $item;
167                 }
168
169                 return htmlspecialchars( trim( $final ) );
170         }
171 }