2006-07-26 07:15:39 +00:00
|
|
|
<?php
|
2012-06-23 20:09:38 +00:00
|
|
|
/** Samogitian (žemaitėška)
|
2008-03-18 21:33:47 +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
|
2008-03-18 21:33:47 +00:00
|
|
|
*
|
|
|
|
|
* @author Hugo.arg
|
2012-01-27 20:44:55 +00:00
|
|
|
* @author Kaganer
|
2011-01-02 21:18:06 +00:00
|
|
|
* @author Reedy
|
2008-10-19 10:30:24 +00:00
|
|
|
* @author Urhixidur
|
2008-03-18 21:33:47 +00:00
|
|
|
* @author Zordsdavini
|
2008-04-14 16:41:44 +00:00
|
|
|
* @author לערי ריינהארט
|
2008-03-18 21:33:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$fallback = 'lt';
|
2006-07-26 07:15:39 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceNames = [
|
2008-11-18 22:18:31 +00:00
|
|
|
NS_MEDIA => 'Medėjė',
|
2007-10-08 13:43:36 +00:00
|
|
|
NS_SPECIAL => 'Specēlos',
|
|
|
|
|
NS_TALK => 'Aptarėms',
|
|
|
|
|
NS_USER => 'Nauduotuos',
|
|
|
|
|
NS_USER_TALK => 'Nauduotuojė_aptarėms',
|
|
|
|
|
NS_PROJECT_TALK => '$1_aptarėms',
|
2008-12-01 17:14:30 +00:00
|
|
|
NS_FILE => 'Abruozdielis',
|
|
|
|
|
NS_FILE_TALK => 'Abruozdielė_aptarėms',
|
2007-10-08 13:43:36 +00:00
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'MediaWiki_aptarėms',
|
|
|
|
|
NS_TEMPLATE => 'Šabluons',
|
|
|
|
|
NS_TEMPLATE_TALK => 'Šabluona_aptarėms',
|
|
|
|
|
NS_HELP => 'Pagelba',
|
|
|
|
|
NS_HELP_TALK => 'Pagelbas_aptarėms',
|
|
|
|
|
NS_CATEGORY => 'Kateguorėjė',
|
2008-11-18 22:18:31 +00:00
|
|
|
NS_CATEGORY_TALK => 'Kateguorėjės_aptarėms',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2007-10-08 13:43:36 +00:00
|
|
|
|
2008-03-27 18:18:32 +00:00
|
|
|
/**
|
2012-07-31 22:03:54 +00:00
|
|
|
* Aliases from the fallback language 'lt' to avoid breakage of links
|
|
|
|
|
*/
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceAliases = [
|
2007-10-08 13:43:36 +00:00
|
|
|
'Specialus' => NS_SPECIAL,
|
|
|
|
|
'Aptarimas' => NS_TALK,
|
|
|
|
|
'Naudotojas' => NS_USER,
|
|
|
|
|
'Naudotojo_aptarimas' => NS_USER_TALK,
|
|
|
|
|
'$1_aptarimas' => NS_PROJECT_TALK,
|
2008-12-01 17:14:30 +00:00
|
|
|
'Vaizdas' => NS_FILE,
|
|
|
|
|
'Vaizdo_aptarimas' => NS_FILE_TALK,
|
2007-10-08 13:43:36 +00:00
|
|
|
'MediaWiki_aptarimas' => NS_MEDIAWIKI_TALK,
|
|
|
|
|
'Šablonas' => NS_TEMPLATE,
|
|
|
|
|
'Šablono_aptarimas' => NS_TEMPLATE_TALK,
|
|
|
|
|
'Pagalba' => NS_HELP,
|
|
|
|
|
'Pagalbos_aptarimas' => NS_HELP_TALK,
|
|
|
|
|
'Kategorija' => NS_CATEGORY,
|
|
|
|
|
'Kategorijos_aptarimas' => NS_CATEGORY_TALK,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2007-10-08 13:43:36 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceGenderAliases = [];
|