(bug 961) Treat languages without names more cleanly
[mediawiki.git] / languages / LanguageUr.php
bloba2db1d8aaafe3920a094190a2e49305117b6cae1
1 <?php
3 # Stub for Urdu
5 require_once( "LanguageUtf8.php" );
7 class LanguageUr extends LanguageUtf8 {
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;
16 # For right-to-left language support
17 function isRTL() {
18 return true;