blob: ea5fa1bf712fc500756462fbd9b3f6a5cdbc0ca6 (
plain)
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
|
<?php
/**
* @package MediaWiki
* @subpackage Language
*/
# Stub for Pashto
require_once( "LanguageUtf8.php" );
class LanguagePs extends LanguageUtf8 {
function getDefaultUserOptions() {
$opt = Language::getDefaultUserOptions();
$opt["quickbar"] = 2; # Right-to-left
$opt["underline"] = 0; # Underline is hard to read in Arabic script
return $opt;
}
# For right-to-left language support
function isRTL() {
return true;
}
}
?>
|