summaryrefslogtreecommitdiff
path: root/languages/LanguageUg.php
blob: bd860547cf2c996480ad27a624c33437c8c99b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/** Uyghur (Oyghurque)
  *
  * @package MediaWiki
  * @subpackage Language
  */

require_once( 'LanguageUtf8.php' );

class LanguageUg extends LanguageUtf8 {

	function isRTL() {
		return true;
	}

	function getAllMessages() {
		return null;
	}

}

?>