Small mistake in the title length check: I meant $r, not
[lhc/web/wiklou.git] / languages / LanguageUr.php
1 <?php
2
3 # Stub for Urdu
4
5 require_once( "LanguageUtf8.php" );
6
7 class LanguageUr extends LanguageUtf8 {
8
9 function getDefaultUserOptions() {
10 $opt = Language::getDefaultUserOptions();
11 $opt["quickbar"] = 2; # Right-to-left
12 $opt["underline"] = 0; # Underline is hard to read in Arabic script
13 return $opt;
14 }
15
16 # For right-to-left language support
17 function isRTL() {
18 return true;
19 }
20 }
21
22 ?>