2008-02-02 15:43:57 +00:00
|
|
|
<?php
|
|
|
|
|
/** Maithili (मैथिली)
|
|
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @file
|
2022-06-22 22:37:31 +00:00
|
|
|
* @ingroup Languages
|
2008-02-02 15:43:57 +00:00
|
|
|
*
|
2013-02-13 20:06:22 +00:00
|
|
|
* @author Amire80
|
2011-05-08 19:45:53 +00:00
|
|
|
* @author Ashishanchinhar
|
2011-06-17 19:27:16 +00:00
|
|
|
* @author Dhirendra.maithili
|
2008-02-02 15:43:57 +00:00
|
|
|
* @author Ggajendra
|
2012-01-27 20:44:55 +00:00
|
|
|
* @author Kaganer
|
2011-06-17 19:27:16 +00:00
|
|
|
* @author Kapileshwar.raut
|
2011-05-20 20:22:23 +00:00
|
|
|
* @author Kumariprity
|
2011-05-07 21:26:26 +00:00
|
|
|
* @author Manojberma77
|
2008-10-19 10:30:24 +00:00
|
|
|
* @author Meno25
|
2012-09-05 19:13:48 +00:00
|
|
|
* @author Nemo bis
|
2011-05-16 20:57:27 +00:00
|
|
|
* @author Priyanka.rachna.jha
|
2011-05-09 21:32:46 +00:00
|
|
|
* @author Rajesh
|
2012-05-16 18:38:16 +00:00
|
|
|
* @author Reedy
|
2013-06-10 07:13:06 +00:00
|
|
|
* @author Rillke
|
2011-05-07 21:26:26 +00:00
|
|
|
* @author Umeshberma
|
2011-05-21 20:30:39 +00:00
|
|
|
* @author Vinitutpal
|
2008-02-02 15:43:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$fallback = 'hi';
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceNames = [
|
2014-10-26 17:56:17 +00:00
|
|
|
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 => 'श्रेणी_वार्ता',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|