2007-08-07 08:17:23 +00:00
|
|
|
|
<?php
|
2012-06-05 22:58:54 +00:00
|
|
|
|
/** Mongolian (монгол)
|
2007-08-07 08:17:23 +00:00
|
|
|
|
*
|
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
|
2007-08-07 08:17:23 +00:00
|
|
|
|
*
|
2014-03-11 20:43:01 +00:00
|
|
|
|
* @author Boldbdd
|
2008-03-14 17:44:23 +00:00
|
|
|
|
* @author Chinneeb
|
2008-12-15 09:07:25 +00:00
|
|
|
|
* @author E.shijir
|
2012-01-27 20:44:55 +00:00
|
|
|
|
* @author Kaganer
|
2010-01-05 20:31:26 +00:00
|
|
|
|
* @author Meno25
|
2014-03-10 21:21:57 +00:00
|
|
|
|
* @author Mongol
|
2013-11-30 19:49:29 +00:00
|
|
|
|
* @author MongolWiki
|
2012-02-11 21:23:46 +00:00
|
|
|
|
* @author Wisdom
|
2013-12-03 20:53:40 +00:00
|
|
|
|
* @author Zorigt
|
2008-06-10 09:50:22 +00:00
|
|
|
|
* @author לערי ריינהארט
|
2007-08-07 08:17:23 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceNames = [
|
2008-11-18 22:18:31 +00:00
|
|
|
|
NS_MEDIA => 'Медиа',
|
|
|
|
|
|
NS_SPECIAL => 'Тусгай',
|
|
|
|
|
|
NS_TALK => 'Хэлэлцүүлэг',
|
|
|
|
|
|
NS_USER => 'Хэрэглэгч',
|
|
|
|
|
|
NS_USER_TALK => 'Хэрэглэгчийн_яриа',
|
2024-08-08 16:56:20 +00:00
|
|
|
|
NS_PROJECT_TALK => '{{GRAMMAR:genitive|$1}}_хэлэлцүүлэг',
|
2010-04-07 19:18:31 +00:00
|
|
|
|
NS_FILE => 'Файл',
|
|
|
|
|
|
NS_FILE_TALK => 'Файлын_хэлэлцүүлэг',
|
2008-11-18 22:18:31 +00:00
|
|
|
|
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
|
|
|
|
];
|
2008-11-18 22:18:31 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceAliases = [
|
2010-04-07 19:18:31 +00:00
|
|
|
|
'Зураг' => NS_FILE,
|
|
|
|
|
|
'Зургийн_хэлэлцүүлэг' => NS_FILE_TALK,
|
2024-08-08 16:56:20 +00:00
|
|
|
|
'$1-н_хэлэлцүүлэг' => NS_PROJECT_TALK,
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2010-04-07 19:18:31 +00:00
|
|
|
|
|
2021-03-03 17:33:55 +00:00
|
|
|
|
/** @phpcs-require-sorted-array */
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$magicWords = [
|
|
|
|
|
|
'redirect' => [ '0', '#ЧИГЛҮҮЛЭГ', '#REDIRECT' ],
|
|
|
|
|
|
];
|
2015-01-29 19:39:32 +00:00
|
|
|
|
|
2007-08-07 08:17:23 +00:00
|
|
|
|
$linkTrail = '/^([a-zабвгдеёжзийклмнопрстуфхцчшщъыьэюя“»]+)(.*)$/sDu';
|