MediaWiki
REL1_24
|
00001 <?php 00015 $fallback = 'fr'; 00016 00017 # lists "no preferences", normall (long) walloon date, 00018 # short walloon date, and ISO format 00019 # MW_DATE_DMY is alias for long format, as it is dd mmmmm yyyy. 00020 $datePreferences = array( 00021 'default', 00022 'dmy', 00023 'walloon short', 00024 'ISO 8601' 00025 ); 00026 00027 $datePreferenceMigrationMap = array( 00028 0 => 'default', 00029 2 => 'dmy', 00030 4 => 'walloon short', 00031 ); 00032 $defaultDateFormat = 'dmy'; 00033 00034 $dateFormats = array( 00035 'walloon short time' => 'H:i' 00036 ); 00037 00038 $namespaceNames = array( 00039 NS_MEDIA => 'Media', 00040 NS_SPECIAL => 'Sipeciås', 00041 NS_TALK => 'Copene', 00042 NS_USER => 'Uzeu', 00043 NS_USER_TALK => 'Uzeu_copene', 00044 NS_PROJECT_TALK => '$1_copene', 00045 NS_FILE => 'Imådje', 00046 NS_FILE_TALK => 'Imådje_copene', 00047 NS_MEDIAWIKI => 'MediaWiki', 00048 NS_MEDIAWIKI_TALK => 'MediaWiki_copene', 00049 NS_TEMPLATE => 'Modele', 00050 NS_TEMPLATE_TALK => 'Modele_copene', 00051 NS_HELP => 'Aidance', 00052 NS_HELP_TALK => 'Aidance_copene', 00053 NS_CATEGORY => 'Categoreye', 00054 NS_CATEGORY_TALK => 'Categoreye_copene', 00055 ); 00056 00057 // Remove French aliases 00058 $namespaceGenderAliases = array(); 00059 00060 $specialPageAliases = array( 00061 'Allpages' => array( 'Totes_les_pådjes' ), 00062 'Block' => array( 'Bloker', 'Blocaedje' ), 00063 'Categories' => array( 'Categoreyes' ), 00064 'Listusers' => array( 'Djivêye_des_uzeus' ), 00065 'Log' => array( 'Djournå', 'Djournås' ), 00066 'Preferences' => array( 'Preferinces' ), 00067 'Prefixindex' => array( 'Indecse_pa_betchete' ), 00068 'Search' => array( 'Cweri' ), 00069 'Specialpages' => array( 'Pådjes_sipeciåles' ), 00070 'Statistics' => array( 'Sitatistikes' ), 00071 'Undelete' => array( 'Rapexhî' ), 00072 'Upload' => array( 'Eberweter', 'Eberwetaedje' ), 00073 'Userlogin' => array( 'Elodjaedje' ), 00074 'Userlogout' => array( 'Dislodjaedje' ), 00075 'Version' => array( 'Modêye' ), 00076 'Watchlist' => array( 'Pådjes_shuvowes' ), 00077 ); 00078 00079 # definixha del cogne po les limeros 00080 # (number format definition) 00081 # en: 12,345.67 -> wa: 12 345,67 00082 $separatorTransformTable = array( ',' => "\xc2\xa0", '.' => ',' ); 00083 00084 # $linkTrail = '/^([a-zåâêîôûçéèA-ZÅÂÊÎÔÛÇÉÈ]+)(.*)$/sDu'; 00085 $linkTrail = '/^([a-zåâêîôûçéè]+)(.*)$/sDu'; 00086