From 183851b06bd6c52f3cae5375f433da720d410447 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 11 Oct 2006 18:12:39 +0000 Subject: MediaWiki 1.7.1 wiederhergestellt --- languages/LanguageSv.php | 114 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 languages/LanguageSv.php (limited to 'languages/LanguageSv.php') diff --git a/languages/LanguageSv.php b/languages/LanguageSv.php new file mode 100644 index 00000000..4abb1e03 --- /dev/null +++ b/languages/LanguageSv.php @@ -0,0 +1,114 @@ + "Standard", + 'nostalgia' => "Nostalgi", + 'cologneblue' => "Cologne Blå", + ); + + function __construct() { + parent::__construct(); + + global $wgAllMessagesSv; + $this->mMessagesSv =& $wgAllMessagesSv; + + global $wgMetaNamespace; + $this->mNamespaceNamesSv = array( + NS_MEDIA => "Media", + NS_SPECIAL => "Special", + NS_MAIN => "", + NS_TALK => "Diskussion", + NS_USER => "Användare", + NS_USER_TALK => "Användardiskussion", + NS_PROJECT => $wgMetaNamespace, + NS_PROJECT_TALK => $wgMetaNamespace . "diskussion", + NS_IMAGE => "Bild", + NS_IMAGE_TALK => "Bilddiskussion", + NS_MEDIAWIKI => "MediaWiki", + NS_MEDIAWIKI_TALK => "MediaWiki_diskussion", + NS_TEMPLATE => "Mall", + NS_TEMPLATE_TALK => "Malldiskussion", + NS_HELP => "Hjälp", + NS_HELP_TALK => "Hjälp_diskussion", + NS_CATEGORY => "Kategori", + NS_CATEGORY_TALK => "Kategoridiskussion" + ); + } + + function getNamespaces() { + return $this->mNamespaceNamesSv + parent::getNamespaces(); + } + + function getQuickbarSettings() { + return $this->mQuickbarSettingsSv; + } + + function getSkinNames() { + return $this->mSkinNamesSv + parent::getSkinNames(); + } + + function getMessage( $key ) { + if( isset( $this->mMessagesSv[$key] ) ) { + return $this->mMessagesSv[$key]; + } else { + return parent::getMessage( $key ); + } + } + + function getAllMessages() { + return $this->mMessagesSv; + } + + function linkTrail() { + return '/^([a-zåäöéÅÄÖÉ]+)(.*)$/sDu'; + } + + + function separatorTransformTable() { + return array( + ',' => "\xc2\xa0", // @bug 2749 + '.' => ',' + ); + } + + // "." is used as the character to separate the + // hours from the minutes in the date output + function timeSeparator( $format ) { + return '.'; + } + + function timeanddate( $ts, $adj = false, $format = false, $timecorrection = false ) { + $format = $this->dateFormat( $format ); + if( $format == MW_DATE_ISO ) { + return parent::timeanddate( $ts, $adj, $format, $timecorrection ); + } else { + return $this->date( $ts, $adj, $format, $timecorrection ) . + " kl." . + $this->time( $ts, $adj, $format, $timecorrection ); + } + } + +} +?> -- cgit v1.2.3-54-g00ecf