Live hack: Skip some work on empty category/link sets
[lhc/web/wiklou.git] / languages / LanguagePs.php
1 <?php
2 /**
3 * @package MediaWiki
4 * @subpackage Language
5 */
6
7 # Stub for Pashto
8
9 require_once( "LanguageUtf8.php" );
10
11 class LanguagePs extends LanguageUtf8 {
12
13 function getDefaultUserOptions() {
14 $opt = Language::getDefaultUserOptions();
15 $opt["quickbar"] = 2; # Right-to-left
16 $opt["underline"] = 0; # Underline is hard to read in Arabic script
17 return $opt;
18 }
19
20 # For right-to-left language support
21 function isRTL() {
22 return true;
23 }
24 }
25
26 ?>