aboutsummaryrefslogtreecommitdiffstats
path: root/languages/LanguageYi.php
blob: 59123202e45ecf7edec4727515a3f8ea6b570fe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/** Yiddish (ייִדיש)
  *
  * @package MediaWiki
  * @subpackage Language
  */

require_once( 'LanguageUtf8.php' );

class LanguageYi extends LanguageUtf8 {

	function getDefaultUserOptions() {
		$opt = parent::getDefaultUserOptions();
		$opt['quickbar'] = 2; # Right-to-left
		return $opt;
	}

	# For right-to-left language support
	function isRTL() {
		return true;
	}
}

?>