wiki.techinc.nl/languages/messages/MessagesBho.php
Kunal Mehta 6e9b4f0e9c Convert all array() syntax to []
Per wikitech-l consensus:
 https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html

Notes:
* Disabled CallTimePassByReference due to false positives (T127163)

Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
2016-02-17 01:33:00 -08:00

65 lines
2.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/** Bhojpuri (भोजपुरी)
*
* To improve a translation please visit https://translatewiki.net
*
* @ingroup Language
* @file
*
*/
$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 => 'श्रेणी_वार्ता',
];
$specialPageAliases = [
'Activeusers' => [ 'सक्रिय_सदस्य' ],
'Allmessages' => [ 'सारा_संदेस' ],
'Allpages' => [ 'सारा_पन्ना' ],
'Ancientpages' => [ 'पुरान_पन्ना' ],
'Badtitle' => [ 'खराब_टाइटिल' ],
'Blankpage' => [ 'खाली_पन्ना' ],
'Categories' => [ 'श्रेणी_सब' ],
'Contributions' => [ 'योगदान' ],
'Export' => [ 'निर्यात' ],
'Import' => [ 'आयात' ],
'Log' => [ 'लॉग' ],
'Lonelypages' => [ 'असंयुक्त' ],
'Longpages' => [ 'लम्बा_पन्ना' ],
'Mypage' => [ 'हमार_पन्ना' ],
'Mytalk' => [ 'हमार_बात' ],
'Newpages' => [ 'नया_पन्ना' ],
'Recentchangeslinked' => [ 'तुरंत_भइल_परिवर्तन' ],
'Shortpages' => [ 'छोटा_पन्ना' ],
'Specialpages' => [ 'ख़ाश_पन्ना' ],
'TrackingCategories' => [ 'बिनावर्गीकृत_श्रेणी' ],
'Uncategorizedpages' => [ 'बिनावर्गीकृत' ],
];
$digitTransformTable = [
'0' => '', # &#x0966;
'1' => '१', # &#x0967;
'2' => '२', # &#x0968;
'3' => '३', # &#x0969;
'4' => '४', # &#x096a;
'5' => '५', # &#x096b;
'6' => '६', # &#x096c;
'7' => '७', # &#x096d;
'8' => '८', # &#x096e;
'9' => '९', # &#x096f;
];