1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
<?php
/** Yiddish (ייִדיש)
*
* @package MediaWiki
* @subpackage Language
*/
require_once("LanguageHe.php");
if (!$wgCachedMessageArrays) {
require_once('MessagesYi.php');
}
class LanguageYi extends LanguageHe {
private $mMessagesYi, $mNamespaceNamesYi = null;
function __construct() {
parent::__construct();
global $wgAllMessagesYi;
$this->mMessagesYi =& $wgAllMessagesYi;
global $wgMetaNamespace;
$this->mNamespaceNamesYi = array(
NS_MEDIA => 'מעדיע',
NS_SPECIAL => 'באַזונדער',
NS_MAIN => '',
NS_TALK => 'רעדן',
NS_USER => 'באַניצער',
NS_USER_TALK => 'באַניצער_רעדן',
NS_PROJECT => $wgMetaNamespace,
NS_PROJECT_TALK => $wgMetaNamespace . '_רעדן',
NS_IMAGE => 'בילד',
NS_IMAGE_TALK => 'בילד_רעדן',
NS_MEDIAWIKI => 'מעדיעװיקי',
NS_MEDIAWIKI_TALK => 'מעדיעװיקי_רעדן',
NS_TEMPLATE => 'מוסטער',
NS_TEMPLATE_TALK => 'מוסטער_רעדן',
NS_HELP => 'הילף',
NS_HELP_TALK => 'הילף_רעדן',
NS_CATEGORY => 'קאַטעגאָריע',
NS_CATEGORY_TALK => 'קאַטעגאָריע_רעדן'
);
}
function getNamespaces() {
return $this->mNamespaceNamesYi + parent::getNamespaces();
}
function getMessage( $key ) {
if( isset( $this->mMessagesYi[$key] ) ) {
return $this->mMessagesYi[$key];
} else {
return parent::getMessage( $key );
}
}
function getAllMessages() {
return $this->mMessagesYi;
}
function getDefaultUserOptions() {
$opt = parent::getDefaultUserOptions();
$opt['quickbar'] = 2; # Right-to-left
return $opt;
}
# For right-to-left language support
function isRTL() {
return true;
}
function getNsIndex( $text ) {
global $wgSitename;
foreach ( $this->mNamespaceNamesYi as $i => $n ) {
if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
}
if( $wgSitename == 'װיקיפּעדיע' ) {
if( 0 == strcasecmp( 'וויקיפעדיע', $text ) ) return NS_PROJECT;
if( 0 == strcasecmp( 'וויקיפעדיע_רעדן', $text ) ) return NS_PROJECT_TALK;
}
if( $wgSitename == 'װיקיביבליאָטעק' ) {
if( 0 == strcasecmp( 'וויקיביבליאטעק', $text ) ) return NS_PROJECT;
if( 0 == strcasecmp( 'וויקיביבליאטעק_רעדן', $text ) ) return NS_PROJECT_TALK;
}
if( $wgSitename == 'װיקיװערטערבוך' ) {
if( 0 == strcasecmp( 'וויקיווערטערבוך', $text ) ) return NS_PROJECT;
if( 0 == strcasecmp( 'וויקיווערטערבוך_רעדן', $text ) ) return NS_PROJECT_TALK;
}
if( $wgSitename == 'װיקינײַעס' ) {
if( 0 == strcasecmp( 'וויקינייעס', $text ) ) return NS_PROJECT;
if( 0 == strcasecmp( 'וויקינייעס_רעדן', $text ) ) return NS_PROJECT_TALK;
}
if( 0 == strcasecmp( 'באזונדער', $text ) ) return NS_SPECIAL;
if( 0 == strcasecmp( 'באנוצער', $text ) ) return NS_USER;
if( 0 == strcasecmp( 'באנוצער_רעדן', $text ) ) return NS_USER_TALK;
if( 0 == strcasecmp( 'מעדיעוויקי', $text ) ) return NS_MEDIAWIKI;
if( 0 == strcasecmp( 'מעדיעוויקי_רעדן', $text ) ) return NS_MEDIAWIKI_TALK;
if( 0 == strcasecmp( 'קאטעגאריע', $text ) ) return NS_CATEGORY;
if( 0 == strcasecmp( 'קאטעגאריע_רעדן', $text ) ) return NS_CATEGORY_TALK;
return false;
}
}
?>
|