2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2005-04-09 15:16:34 +00:00
|
|
|
/** Finnish (Suomi)
|
|
|
|
|
*
|
|
|
|
|
* @package MediaWiki
|
|
|
|
|
* @subpackage Language
|
2006-06-11 21:45:19 +00:00
|
|
|
*
|
|
|
|
|
* @author Niklas Laxström
|
2005-04-09 15:16:34 +00:00
|
|
|
*/
|
2003-11-28 10:00:23 +00:00
|
|
|
|
2005-04-09 15:16:34 +00:00
|
|
|
require_once( 'LanguageUtf8.php' );
|
2003-11-28 10:00:23 +00:00
|
|
|
|
2006-01-22 00:40:23 +00:00
|
|
|
if (!$wgCachedMessageArrays) {
|
|
|
|
|
require_once('MessagesFi.php');
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-28 10:00:23 +00:00
|
|
|
class LanguageFi extends LanguageUtf8 {
|
2006-06-11 21:45:19 +00:00
|
|
|
private $mMessagesFi, $mNamespaceNamesFi = null;
|
|
|
|
|
|
|
|
|
|
private $mSkinNamesFi = array(
|
|
|
|
|
'standard' => 'Perus',
|
|
|
|
|
'cologneblue' => 'Kölnin sininen',
|
|
|
|
|
'myskin' => 'Oma tyylisivu'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
private $mQuickbarSettingsFi = array(
|
|
|
|
|
'Ei mitään', 'Tekstin mukana, vasen', 'Tekstin mukana, oikea', 'Pysyen vasemmalla', 'Pysyen oikealla'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
private $mDateFormatsFi = array(
|
|
|
|
|
MW_DATE_DEFAULT => 'Ei valintaa',
|
|
|
|
|
1 => '15. tammikuuta 2001 kello 16.12',
|
|
|
|
|
2 => '15. tammikuuta 2001 kello 16:12:34',
|
|
|
|
|
3 => '15.1.2001 16.12',
|
|
|
|
|
MW_DATE_ISO => '2001-01-15 16:12:34'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
private $mBookstoreListFi = array(
|
|
|
|
|
'Bookplus' => 'http://www.bookplus.fi/product.php?isbn=$1',
|
|
|
|
|
'Helsingin yliopiston kirjasto' => 'http://pandora.lib.hel.fi/cgi-bin/mhask/monihask.py?volname=&author=&keyword=&ident=$1&submit=Hae&engine_helka=ON',
|
|
|
|
|
'Pääkaupunkiseudun kirjastot' => 'http://www.helmet.fi/search*fin/i?SEARCH=$1',
|
|
|
|
|
'Tampereen seudun kirjastot' => 'http://kirjasto.tampere.fi/Piki?formid=fullt&typ0=6&dat0=$1'
|
|
|
|
|
);
|
|
|
|
|
|
2006-06-24 18:48:58 +00:00
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct();
|
2006-06-11 21:45:19 +00:00
|
|
|
|
|
|
|
|
global $wgAllMessagesFi;
|
|
|
|
|
$this->mMessagesFi =& $wgAllMessagesFi;
|
|
|
|
|
|
|
|
|
|
global $wgMetaNamespace;
|
|
|
|
|
$this->mNamespaceNamesFi = array(
|
|
|
|
|
NS_MEDIA => 'Media',
|
|
|
|
|
NS_SPECIAL => 'Toiminnot',
|
|
|
|
|
NS_MAIN => '',
|
|
|
|
|
NS_TALK => 'Keskustelu',
|
|
|
|
|
NS_USER => 'Käyttäjä',
|
|
|
|
|
NS_USER_TALK => 'Keskustelu_käyttäjästä',
|
|
|
|
|
NS_PROJECT => $wgMetaNamespace,
|
|
|
|
|
NS_PROJECT_TALK => 'Keskustelu_' . $this->convertGrammar( $wgMetaNamespace, 'elative' ),
|
|
|
|
|
NS_IMAGE => 'Kuva',
|
|
|
|
|
NS_IMAGE_TALK => 'Keskustelu_kuvasta',
|
|
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
|
|
|
|
|
NS_TEMPLATE => 'Malline',
|
|
|
|
|
NS_TEMPLATE_TALK => 'Keskustelu_mallineesta',
|
|
|
|
|
NS_HELP => 'Ohje',
|
|
|
|
|
NS_HELP_TALK => 'Keskustelu_ohjeesta',
|
|
|
|
|
NS_CATEGORY => 'Luokka',
|
|
|
|
|
NS_CATEGORY_TALK => 'Keskustelu_luokasta'
|
|
|
|
|
);
|
|
|
|
|
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getBookstoreList () {
|
2006-06-11 21:45:19 +00:00
|
|
|
return $this->mBookstoreListFi;
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNamespaces() {
|
2006-06-11 21:45:19 +00:00
|
|
|
return $this->mNamespaceNamesFi + parent::getNamespaces();
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getQuickbarSettings() {
|
2006-06-11 21:45:19 +00:00
|
|
|
return $this->mQuickbarSettingsFi;
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getSkinNames() {
|
2006-06-11 21:45:19 +00:00
|
|
|
return $this->mSkinNamesFi + parent::getSkinNames();
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-17 22:31:01 +00:00
|
|
|
function getDateFormats() {
|
2006-06-11 21:45:19 +00:00
|
|
|
return $this->mDateFormatsFi;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getMessage( $key ) {
|
|
|
|
|
if( isset( $this->mMessagesFi[$key] ) ) {
|
|
|
|
|
return $this->mMessagesFi[$key];
|
|
|
|
|
} else {
|
|
|
|
|
return parent::getMessage( $key );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getAllMessages() {
|
|
|
|
|
return $this->mMessagesFi;
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-17 22:31:01 +00:00
|
|
|
/**
|
2005-09-13 07:51:11 +00:00
|
|
|
* See Language.php for documentation
|
2005-08-17 22:31:01 +00:00
|
|
|
*/
|
|
|
|
|
function date( $ts, $adj = false, $format = true, $timecorrection = false ) {
|
|
|
|
|
if ( $adj ) { $ts = $this->userAdjust( $ts, $timecorrection ); }
|
|
|
|
|
|
|
|
|
|
$yyyy = substr( $ts, 0, 4 );
|
|
|
|
|
$mm = substr( $ts, 4, 2 );
|
|
|
|
|
$m = 0 + $mm;
|
|
|
|
|
$mmmm = $this->getMonthName( $mm ) . 'ta';
|
|
|
|
|
$dd = substr( $ts, 6, 2 );
|
|
|
|
|
$d = 0 + $dd;
|
|
|
|
|
|
|
|
|
|
$datePreference = $this->dateFormat($format);
|
|
|
|
|
switch( $datePreference ) {
|
|
|
|
|
case '3': return "$d.$m.$yyyy";
|
2005-09-13 07:51:11 +00:00
|
|
|
case MW_DATE_ISO: return "$yyyy-$mm-$dd";
|
2005-08-17 22:31:01 +00:00
|
|
|
default: return "$d. $mmmm $yyyy";
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-15 19:27:58 +00:00
|
|
|
|
2005-08-17 22:31:01 +00:00
|
|
|
/**
|
2005-09-13 07:51:11 +00:00
|
|
|
* See Language.php for documentation
|
|
|
|
|
*/
|
2005-08-17 22:31:01 +00:00
|
|
|
function time( $ts, $adj = false, $format = true, $timecorrection = false ) {
|
|
|
|
|
if ( $adj ) { $ts = $this->userAdjust( $ts, $timecorrection ); }
|
|
|
|
|
|
|
|
|
|
$hh = substr( $ts, 8, 2 );
|
|
|
|
|
$mm = substr( $ts, 10, 2 );
|
|
|
|
|
$ss = substr( $ts, 12, 2 );
|
|
|
|
|
|
|
|
|
|
$datePreference = $this->dateFormat($format);
|
|
|
|
|
switch( $datePreference ) {
|
|
|
|
|
case '2':
|
2005-09-13 07:51:11 +00:00
|
|
|
case MW_DATE_ISO: return "$hh:$mm:$ss";
|
2005-08-17 22:31:01 +00:00
|
|
|
default: return "$hh.$mm";
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-17 22:31:01 +00:00
|
|
|
/**
|
2005-09-13 07:51:11 +00:00
|
|
|
* See Language.php for documentation
|
|
|
|
|
*/
|
2005-08-17 22:31:01 +00:00
|
|
|
function timeanddate( $ts, $adj = false, $format = true, $timecorrection = false) {
|
|
|
|
|
$date = $this->date( $ts, $adj, $format, $timecorrection );
|
|
|
|
|
$time = $this->time( $ts, $adj, $format, $timecorrection );
|
|
|
|
|
|
|
|
|
|
$datePreference = $this->dateFormat($format);
|
|
|
|
|
switch( $datePreference ) {
|
|
|
|
|
case '3':
|
2005-09-13 07:51:11 +00:00
|
|
|
case MW_DATE_ISO: return "$date $time";
|
2005-08-17 22:31:01 +00:00
|
|
|
default: return "$date kello $time";
|
|
|
|
|
}
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Finnish numeric formatting is 123 456,78.
|
|
|
|
|
*/
|
2006-04-29 20:07:14 +00:00
|
|
|
function separatorTransformTable() {
|
|
|
|
|
return array(',' => "\xc2\xa0", '.' => ',' );
|
2005-08-15 19:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Avoid grouping whole numbers between 0 to 9999
|
|
|
|
|
*/
|
|
|
|
|
function commafy($_) {
|
|
|
|
|
if (!preg_match('/^\d{1,4}$/',$_)) {
|
|
|
|
|
return strrev((string)preg_replace('/(\d{3})(?=\d)(?!\d*\.)/','$1,',strrev($_)));
|
|
|
|
|
} else {
|
|
|
|
|
return $_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-05-22 10:50:12 +00:00
|
|
|
function linkTrail() {
|
|
|
|
|
return '/^([a-zäö]+)(.*)$/sDu';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-08-15 19:27:58 +00:00
|
|
|
# Convert from the nominative form of a noun to some other case
|
|
|
|
|
# Invoked with {{GRAMMAR:case|word}}
|
|
|
|
|
function convertGrammar( $word, $case ) {
|
2006-05-25 14:31:28 +00:00
|
|
|
global $wgGrammarForms;
|
2006-05-25 20:52:45 +00:00
|
|
|
if ( isset($wgGrammarForms['fi'][$case][$word]) ) {
|
|
|
|
|
return $wgGrammarForms['fi'][$case][$word];
|
2006-05-25 14:31:28 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-15 19:27:58 +00:00
|
|
|
# These rules are not perfect, but they are currently only used for site names so it doesn't
|
|
|
|
|
# matter if they are wrong sometimes. Just add a special case for your site name if necessary.
|
|
|
|
|
switch ( $case ) {
|
|
|
|
|
case 'genitive':
|
|
|
|
|
if ( $word == 'Wikisitaatit' ) {
|
|
|
|
|
$word = 'Wikisitaattien';
|
|
|
|
|
} else {
|
|
|
|
|
$word .= 'n';
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'elative':
|
|
|
|
|
if ( $word == 'Wikisitaatit' ) {
|
|
|
|
|
$word = 'Wikisitaateista';
|
|
|
|
|
} else {
|
|
|
|
|
if ( mb_substr($word, -1) == 'y' ) {
|
|
|
|
|
$word .= 'stä';
|
|
|
|
|
} else {
|
|
|
|
|
$word .= 'sta';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'partitive':
|
|
|
|
|
if ( $word == 'Wikisitaatit' ) {
|
|
|
|
|
$word = 'Wikisitaatteja';
|
|
|
|
|
} else {
|
|
|
|
|
if ( mb_substr($word, -1) == 'y' ) {
|
|
|
|
|
$word .= 'ä';
|
|
|
|
|
} else {
|
|
|
|
|
$word .= 'a';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'illative':
|
|
|
|
|
# Double the last letter and add 'n'
|
|
|
|
|
# mb_substr has a compatibility function in GlobalFunctions.php
|
|
|
|
|
if ( $word == 'Wikisitaatit' ) {
|
|
|
|
|
$word = 'Wikisitaatteihin';
|
|
|
|
|
} else {
|
|
|
|
|
$word = $word . mb_substr($word,-1) . 'n';
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'inessive':
|
|
|
|
|
if ( $word == 'Wikisitaatit' ) {
|
|
|
|
|
$word = 'Wikisitaateissa';
|
|
|
|
|
} else {
|
|
|
|
|
if ( mb_substr($word, -1) == 'y' ) {
|
|
|
|
|
$word .= 'ssä';
|
|
|
|
|
} else {
|
|
|
|
|
$word .= 'ssa';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return $word;
|
|
|
|
|
}
|
2005-08-12 17:18:53 +00:00
|
|
|
|
2005-08-27 16:35:10 +00:00
|
|
|
function translateBlockExpiry( $str ) {
|
2005-09-09 17:46:21 +00:00
|
|
|
/*
|
|
|
|
|
'ago', 'now', 'today', 'this', 'next',
|
|
|
|
|
'first', 'third', 'fourth', 'fifth', 'sixth', 'seventh', 'eighth', 'ninth', 'tenth', 'eleventh', 'twelfth',
|
|
|
|
|
'tomorrow', 'yesterday'
|
|
|
|
|
|
|
|
|
|
$months = 'january:tammikuu,february:helmikuu,march:maaliskuu,april:huhtikuu,may:toukokuu,june:kesäkuu,' .
|
|
|
|
|
'july:heinäkuu,august:elokuu,september:syyskuu,october:lokakuu,november:marraskuu,december:joulukuu,' .
|
|
|
|
|
'jan:tammikuu,feb:helmikuu,mar:maaliskuu,apr:huhtikuu,jun:kesäkuu,jul:heinäkuu,aug:elokuu,sep:syyskuu,'.
|
|
|
|
|
'oct:lokakuu,nov:marraskuu,dec:joulukuu,sept:syyskuu';
|
2005-08-27 16:35:10 +00:00
|
|
|
*/
|
2005-09-09 17:46:21 +00:00
|
|
|
$weekds = array(
|
|
|
|
|
'monday' => 'maanantai',
|
|
|
|
|
'tuesday' => 'tiistai',
|
|
|
|
|
'wednesday' => 'keskiviikko',
|
|
|
|
|
'thursay' => 'torstai',
|
|
|
|
|
'friday' => 'perjantai',
|
|
|
|
|
'saturday' => 'lauantai',
|
|
|
|
|
'sunday' => 'sunnuntai',
|
|
|
|
|
'mon' => 'ma',
|
|
|
|
|
'tue' => 'ti',
|
|
|
|
|
'tues' => 'ti',
|
|
|
|
|
'wed' => 'ke',
|
|
|
|
|
'wednes' => 'ke',
|
|
|
|
|
'thu' => 'to',
|
|
|
|
|
'thur' => 'to',
|
|
|
|
|
'thurs' => 'to',
|
|
|
|
|
'fri' => 'pe',
|
|
|
|
|
'sat' => 'la',
|
|
|
|
|
'sun' => 'su',
|
|
|
|
|
'next' => 'seuraava',
|
|
|
|
|
'tomorrow' => 'huomenna',
|
|
|
|
|
'ago' => 'sitten',
|
|
|
|
|
'seconds' => 'sekuntia',
|
|
|
|
|
'second' => 'sekunti',
|
|
|
|
|
'secs' => 's',
|
|
|
|
|
'sec' => 's',
|
|
|
|
|
'minutes' => 'minuuttia',
|
|
|
|
|
'minute' => 'minuutti',
|
|
|
|
|
'mins' => 'min',
|
|
|
|
|
'min' => 'min',
|
|
|
|
|
'days' => 'päivää',
|
|
|
|
|
'day' => 'päivä',
|
|
|
|
|
'hours' => 'tuntia',
|
|
|
|
|
'hour' => 'tunti',
|
|
|
|
|
'weeks' => 'viikkoa',
|
|
|
|
|
'week' => 'viikko',
|
|
|
|
|
'fortnights' => 'tuplaviikkoa',
|
|
|
|
|
'fortnight' => 'tuplaviikko',
|
|
|
|
|
'months' => 'kuukautta',
|
|
|
|
|
'month' => 'kuukausi',
|
|
|
|
|
'years' => 'vuotta',
|
|
|
|
|
'year' => 'vuosi',
|
|
|
|
|
'infinite' => 'ikuisesti',
|
|
|
|
|
'indefinite' => 'ikuisesti'
|
|
|
|
|
);
|
|
|
|
|
|
2005-08-27 16:35:10 +00:00
|
|
|
$final = '';
|
2005-09-09 17:46:21 +00:00
|
|
|
$tokens = explode ( ' ', $str);
|
|
|
|
|
foreach( $tokens as $item ) {
|
2005-08-27 16:35:10 +00:00
|
|
|
if ( !is_numeric($item) ) {
|
2005-09-09 17:46:21 +00:00
|
|
|
if ( count ( explode( '-', $item ) ) == 3 && strlen($item) == 10 ) {
|
2005-08-27 16:35:10 +00:00
|
|
|
list( $yyyy, $mm, $dd ) = explode( '-', $item );
|
|
|
|
|
$final .= ' ' . $this->date( "{$yyyy}{$mm}{$dd}00000000");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2005-09-09 17:46:21 +00:00
|
|
|
if( isset( $weekds[$item] ) ) {
|
|
|
|
|
$final .= ' ' . $weekds[$item];
|
|
|
|
|
continue;
|
2005-08-27 16:35:10 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-09 17:46:21 +00:00
|
|
|
$final .= ' ' . $item;
|
2005-08-27 16:35:10 +00:00
|
|
|
}
|
|
|
|
|
return '<span class="blockexpiry" title="' . htmlspecialchars($str). '">”' . trim( $final ) . '”</span>';
|
|
|
|
|
}
|
2006-05-22 10:50:12 +00:00
|
|
|
|
2003-11-28 10:00:23 +00:00
|
|
|
}
|
2005-04-09 15:16:34 +00:00
|
|
|
|
2003-11-28 10:00:23 +00:00
|
|
|
?>
|