* (bug 1130) Reorder old title checks; use title null instead of empty
[lhc/web/wiklou.git] / languages / LanguageYi.php
1 <?php
2 /** Yiddish (ייִדיש)
3 *
4 * @package MediaWiki
5 * @subpackage Language
6 */
7
8 require_once( 'LanguageUtf8.php' );
9
10 class LanguageYi extends LanguageUtf8 {
11
12 function getDefaultUserOptions() {
13 $opt = parent::getDefaultUserOptions();
14 $opt['quickbar'] = 2; # Right-to-left
15 return $opt;
16 }
17
18 # For right-to-left language support
19 function isRTL() {
20 return true;
21 }
22 }
23
24 ?>