From: Niklas Laxström Date: Sat, 3 Jun 2006 20:51:41 +0000 (+0000) Subject: * Updates to Wallon localization (wa) X-Git-Tag: 1.31.0-rc.0~56913 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=83a546856dafcdf3ca3cbcb8ce12e452f3e75969;p=lhc%2Fweb%2Fwiklou.git * Updates to Wallon localization (wa) --- diff --git a/languages/LanguageWa.php b/languages/LanguageWa.php index a1727a845e..422897f0fe 100644 --- a/languages/LanguageWa.php +++ b/languages/LanguageWa.php @@ -1,82 +1,130 @@ "Media", /* Media */ - NS_SPECIAL => "SipeciÃ¥s", /* Special */ - NS_MAIN => "", - NS_TALK => "Copene", /* Talk */ - NS_USER => "Uzeu", /* User */ - NS_USER_TALK => "Uzeu_copene", /* User_talk */ - NS_PROJECT => $wgMetaNamespace, - NS_PROJECT_TALK => $wgMetaNamespace . "_copene", - NS_IMAGE => "ImÃ¥dje", /* Image */ - NS_IMAGE_TALK => "ImÃ¥dje_copene", /* Image_talk */ - NS_MEDIAWIKI => "MediaWiki", /* MediaWiki */ - NS_MEDIAWIKI_TALK => "MediaWiki_copene", /* MediaWiki_talk */ - NS_TEMPLATE => "Modele", - NS_TEMPLATE_TALK => "Modele_copene", - NS_HELP => "Aidance", - NS_HELP_TALK => "Aidance_copene", - NS_CATEGORY => "Categoreye", - NS_CATEGORY_TALK => "Categoreye_copene", -) + $wgNamespaceNamesEn; - -/* private */ $wgQuickbarSettingsWa = array( - "Nole bÃ¥r", "Aclawêye a hintche", "Aclawêye a droete", "Flotante a hintche", "Flotante a droete" -); - -/* private */ $wgDateFormatsWa = array( /* cwè fé chal ??? */ -# "Nole preferince", -); - if (!$wgCachedMessageArrays) { require_once('MessagesWa.php'); } +# NOTE: cweri après "NOTE:" po des racsegnes so des ratournaedjes +# k' i gn a. -#-------------------------------------------------------------------------- -# Internationalisation code -#-------------------------------------------------------------------------- +define( 'MW_DATE_WLN_LONG', MW_DATE_DMY ); +define( 'MW_DATE_WLN_SHORT', '4' ); class LanguageWa extends LanguageUtf8 { + private $mMessagesWa, $mNamespaceNamesWa = null; + + private $mQuickbarSettingsWa = array( + "Nole bÃ¥r", "Aclawêye a hintche", "Aclawêye a droete", "Flotante a hintche", "Flotante a droete" + ); + + # lists "no preferences", normall (long) walloon date, + # short walloon date, and ISO format + # MW_DATE_DMY is alias for long format, as it is dd mmmmm yyyy. + # "4" is chosen as value for short format, as it is used in LanguageVi.php + private $mDateFormatsWa = array( + MW_DATE_DEFAULT => 'Nole preferince', + #MW_DATE_DMY => '16:12, 15 January 2001', + #MW_DATE_MDY => '16:12, January 15, 2001', + #MW_DATE_YMD => '16:12, 2001 January 15', + MW_DATE_WLN_LONG => '15 di djanvî 2001 a 16:12', + MW_DATE_WLN_SHORT => '15/01/2001 a 16:12', + MW_DATE_ISO => '2001-01-15 16:12:34', + ); + + + + function LanguageWa() { + LanguageUtf8::LanguageUtf8(); + + global $wgAllMessagesWa; + $this->mMessagesWa =& $wgAllMessagesWa; + + global $wgMetaNamespace; + $this->mNamespaceNamesWa = array( + NS_MEDIA => "Media", /* Media */ + NS_SPECIAL => "SipeciÃ¥s", /* Special */ + NS_MAIN => "", + NS_TALK => "Copene", /* Talk */ + NS_USER => "Uzeu", /* User */ + NS_USER_TALK => "Uzeu_copene", /* User_talk */ + NS_PROJECT => $wgMetaNamespace, + NS_PROJECT_TALK => $wgMetaNamespace . "_copene", + NS_IMAGE => "ImÃ¥dje", /* Image */ + NS_IMAGE_TALK => "ImÃ¥dje_copene", /* Image_talk */ + NS_MEDIAWIKI => "MediaWiki", /* MediaWiki */ + NS_MEDIAWIKI_TALK => "MediaWiki_copene", /* MediaWiki_talk */ + NS_TEMPLATE => "Modele", + NS_TEMPLATE_TALK => "Modele_copene", + NS_HELP => "Aidance", + NS_HELP_TALK => "Aidance_copene", + NS_CATEGORY => "Categoreye", + NS_CATEGORY_TALK => "Categoreye_copene", + ); + } function getNamespaces() { - global $wgNamespaceNamesWa; - return $wgNamespaceNamesWa; + return $this->mNamespaceNamesWa + parent::getNamespaces(); } function getQuickbarSettings() { - global $wgQuickbarSettingsWa; - return $wgQuickbarSettingsWa; + return $this->mQuickbarSettingsWa; } function getDateFormats() { - global $wgDateFormatsWa; - return $wgDateFormatsWa; + return $this->mDateFormatsWa; } + function getMessage( $key ) { + if( isset( $this->mMessagesWa[$key] ) ) { + return $this->mMessagesWa[$key]; + } else { + return parent::getMessage( $key ); + } + } + + function getAllMessages() { + return $this->mMessagesWa; + } ### ### Dates in Walloon are "1î d' " for 1st of the month, ### " di " for months starting by a consoun, and ### " d' " for months starting with a vowel ### - function date( $ts, $adj = false ) { - - if ( $adj ) { $ts = $this->userAdjust( $ts ); } - + function date( $ts, $adj = false, $format = true, $tc = false ) { + global $wgUser; + + if ( $adj ) { $ts = $this->userAdjust( $ts, $tc ); } + $datePreference = $this->dateFormat( $format ); + + # ISO (YYYY-mm-dd) format + # + # we also output this format for YMD (eg: 2001 January 15) + if ( $datePreference == MW_DATE_ISO || + $datePreference == MW_DATE_YMD ) { + $d = substr($ts, 0, 4). '-' . substr($ts, 4, 2). '-' .substr($ts, 6, 2); + return $d; + } + + # dd/mm/YYYY format + if ( $datePreference == MW_DATE_WLN_SHORT ) { + $d = substr($ts, 6, 2). '/' . substr($ts, 4, 2). '/' .substr($ts, 0, 4); + return $d; + } + + # Walloon format + # + # we output this in all other cases $m = substr( $ts, 4, 2 ); $n = substr( $ts, 6, 2 ); - if ($n == 1) { $d = "1î d' " . $this->getMonthName( $m ) . " " . substr( $ts, 0, 4 ); @@ -90,34 +138,26 @@ class LanguageWa extends LanguageUtf8 { $d = (0 + $n) . " di " . $this->getMonthName( $m ) . " " . substr( $ts, 0, 4 ); } - return $d; } - function time( $ts, $adj = false ) { - if ( $adj ) { $ts = $this->userAdjust( $ts ); } - - $t = substr( $ts, 8, 2 ) . ":" . substr( $ts, 10, 2 ); - return $t; + function timeBeforeDate( ) { + return false; } - function timeanddate( $ts, $adj = false ) { - #return $this->time( $ts, $adj ) . " " . $this->date( $ts, $adj ); - return $this->date( $ts, $adj ) . " a " . $this->time( $ts, $adj ); + function timeDateSeparator( $format ) { + return " a "; } - function getMessage( $key ) { - global $wgAllMessagesWa; - - if(array_key_exists($key, $wgAllMessagesWa)) - return $wgAllMessagesWa[$key]; - else - return parent::getMessage($key); + # definixha del cogne po les limeros + # (number format definition) + # en: 12,345.67 -> wa: 12 345,67 + function separatorTransformTable() { + return array(',' => "\xc2\xa0", '.' => ',' ); } - function getAllMessages() { - global $wgAllMessagesWa; - return $wgAllMessagesWa; + function linkTrail() { + return '/^([a-zåâêîôûçéè]+)(.*)$/sDu'; } }