* Put $fallback and $rtl at the top, as they are in most files. In some files they were at the bottom or at the middle, which made them hard to find. * Add empty lines consistently next to them. * Add $rtl = true to Arq. It apparently worked without it, but it should be explicit for consistency. Change-Id: I6c74b1501375bcc31db36193da24d4d95a8c3fef
33 lines
976 B
PHP
33 lines
976 B
PHP
<?php
|
||
/** Khowar (کھوار)
|
||
*
|
||
* To improve a translation please visit https://translatewiki.net
|
||
*
|
||
* @ingroup Language
|
||
* @file
|
||
*
|
||
* @author Rachitrali
|
||
*/
|
||
|
||
$fallback = 'ur';
|
||
|
||
$rtl = true;
|
||
|
||
$namespaceNames = [
|
||
NS_MEDIA => 'میڈیا',
|
||
NS_SPECIAL => 'خاص',
|
||
NS_TALK => 'تبادلۂ_خیال',
|
||
NS_USER => 'صارف',
|
||
NS_USER_TALK => 'تبادلۂ_خیال_صارف',
|
||
NS_PROJECT_TALK => 'تبادلۂ_خیال_$1',
|
||
NS_FILE => 'فائل',
|
||
NS_FILE_TALK => 'تبادلۂ_خیال_فائل',
|
||
NS_MEDIAWIKI => 'میڈیاویکی',
|
||
NS_MEDIAWIKI_TALK => 'تبادلۂ_خیال_میڈیاویکی',
|
||
NS_TEMPLATE => 'سانچہ',
|
||
NS_TEMPLATE_TALK => 'تبادلۂ_خیال_سانچہ',
|
||
NS_HELP => 'مدد',
|
||
NS_HELP_TALK => 'تبادلۂ_خیال_مدد',
|
||
NS_CATEGORY => 'زمرہ',
|
||
NS_CATEGORY_TALK => 'تبادلۂ_خیال_زمرہ',
|
||
];
|