2007-11-12 22:56:17 +00:00
|
|
|
<?php
|
2007-12-24 01:09:55 +00:00
|
|
|
/** Wu (吴语)
|
2007-11-12 22:56:17 +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-11-12 22:56:17 +00:00
|
|
|
*
|
2013-09-30 20:08:57 +00:00
|
|
|
* @author Benojan
|
2009-01-14 21:24:41 +00:00
|
|
|
* @author Hercule
|
2007-11-12 22:56:17 +00:00
|
|
|
* @author O
|
2011-01-02 21:18:06 +00:00
|
|
|
* @author Reedy
|
2021-07-07 15:33:53 +00:00
|
|
|
* @author Winston Sung
|
2010-07-02 19:30:05 +00:00
|
|
|
* @author Wu-chinese.com
|
2013-11-07 20:17:17 +00:00
|
|
|
* @author Xiaomingyan
|
2013-04-07 19:26:28 +00:00
|
|
|
* @author Yfdyh000
|
2013-11-17 20:28:06 +00:00
|
|
|
* @author 乌拉跨氪
|
2013-09-20 19:28:49 +00:00
|
|
|
* @author 十弌
|
2007-11-12 22:56:17 +00:00
|
|
|
*/
|
|
|
|
|
|
2014-07-26 14:55:14 +00:00
|
|
|
$fallback = 'wuu-hans, wuu-hant, zh-hans, zh, zh-hant';
|
2007-12-19 07:37:19 +00:00
|
|
|
|
2016-12-09 10:21:34 +00:00
|
|
|
$datePreferences = [
|
|
|
|
|
'default',
|
|
|
|
|
'wuu',
|
|
|
|
|
'ISO 8601',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$defaultDateFormat = 'wuu';
|
|
|
|
|
|
|
|
|
|
$dateFormats = [
|
|
|
|
|
'wuu time' => 'H:i',
|
|
|
|
|
'wuu date' => 'Y年n月j号 (D)',
|
|
|
|
|
'wuu both' => 'Y年n月j号 (D) H:i',
|
|
|
|
|
];
|