* 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
30 lines
1 KiB
PHP
30 lines
1 KiB
PHP
<?php
|
|
/** Doteli (डोटेली)
|
|
*
|
|
* To improve a translation please visit https://translatewiki.net
|
|
*
|
|
* @ingroup Language
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
$fallback = 'ne';
|
|
|
|
$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 => 'श्रेणी_कुरणि',
|
|
];
|