2006-01-22 00:40:23 +00:00
|
|
|
<?php
|
2012-06-23 20:09:38 +00:00
|
|
|
/** Sardinian (sardu)
|
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
|
|
|
*
|
2009-05-02 21:37:45 +00:00
|
|
|
* @author Andria
|
2014-03-03 20:52:13 +00:00
|
|
|
* @author L2212
|
2009-03-20 09:34:47 +00:00
|
|
|
* @author Marzedu
|
2010-12-02 21:36:31 +00:00
|
|
|
* @author Node ue
|
2008-04-12 11:13:16 +00:00
|
|
|
* @author לערי ריינהארט
|
2007-11-12 22:56:17 +00:00
|
|
|
*/
|
2006-01-22 00:40:23 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceNames = [
|
2009-05-17 10:23:04 +00:00
|
|
|
NS_SPECIAL => 'Ispetziale',
|
|
|
|
|
NS_TALK => 'Cuntierra',
|
|
|
|
|
NS_USER => 'Usuàriu',
|
|
|
|
|
NS_USER_TALK => 'Cuntierra_usuàriu',
|
|
|
|
|
NS_PROJECT_TALK => 'Cuntierra_$1',
|
|
|
|
|
NS_FILE => 'File',
|
|
|
|
|
NS_FILE_TALK => 'Cuntierra_file',
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'Cuntierra_MediaWiki',
|
|
|
|
|
NS_TEMPLATE_TALK => 'Cuntierra_template',
|
|
|
|
|
NS_HELP => 'Agiudu',
|
|
|
|
|
NS_HELP_TALK => 'Cuntierra_agiudu',
|
|
|
|
|
NS_CATEGORY => 'Categoria',
|
|
|
|
|
NS_CATEGORY_TALK => 'Cuntierra_categoria',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2009-05-17 10:23:04 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceAliases = [
|
2009-05-17 10:23:04 +00:00
|
|
|
'Speciale' => NS_SPECIAL,
|
|
|
|
|
'Contièndha' => NS_TALK,
|
|
|
|
|
'Utente' => NS_USER,
|
|
|
|
|
'Utente_discussioni' => NS_USER_TALK,
|
|
|
|
|
'$1_discussioni' => NS_PROJECT_TALK,
|
|
|
|
|
'Immàgini' => NS_FILE,
|
|
|
|
|
'Immàgini_contièndha' => NS_FILE_TALK
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2006-01-22 00:40:23 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$dateFormats = [
|
2006-07-26 07:15:39 +00:00
|
|
|
'mdy time' => 'H:i',
|
|
|
|
|
'mdy date' => 'M j, Y',
|
|
|
|
|
'mdy both' => 'H:i, M j, Y',
|
|
|
|
|
|
|
|
|
|
'dmy time' => 'H:i',
|
|
|
|
|
'dmy date' => 'j M Y',
|
|
|
|
|
'dmy both' => 'H:i, j M Y',
|
|
|
|
|
|
|
|
|
|
'ymd time' => 'H:i',
|
|
|
|
|
'ymd date' => 'Y M j',
|
|
|
|
|
'ymd both' => 'H:i, Y M j',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2006-07-26 07:15:39 +00:00
|
|
|
|
2011-02-21 19:12:13 +00:00
|
|
|
$linkTrail = "/^([a-z]+)(.*)$/sD";
|