2008-03-20 22:12:11 +00:00
|
|
|
|
<?php
|
2012-06-23 20:09:38 +00:00
|
|
|
|
/** Tatar (Latin script) (tatarça)
|
2009-04-16 10:17:40 +00:00
|
|
|
|
*
|
2014-06-05 14:06:25 +00:00
|
|
|
|
* To improve a translation please visit https://translatewiki.net
|
2008-03-20 22:12:11 +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
|
|
|
|
* @ingroup Language
|
|
|
|
|
|
* @file
|
2008-03-20 22:12:11 +00:00
|
|
|
|
*
|
2008-03-30 23:35:20 +00:00
|
|
|
|
* @author Albert Fazlî
|
2009-10-19 19:34:51 +00:00
|
|
|
|
* @author Don Alessandro
|
2009-09-14 21:42:16 +00:00
|
|
|
|
* @author KhayR
|
2011-01-02 21:18:06 +00:00
|
|
|
|
* @author Reedy
|
2008-10-19 10:30:24 +00:00
|
|
|
|
* @author Urhixidur
|
2008-08-06 22:00:53 +00:00
|
|
|
|
* @author לערי ריינהארט
|
2008-03-20 22:12:11 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceNames = [
|
2009-05-31 17:31:21 +00:00
|
|
|
|
NS_MEDIA => 'Media',
|
|
|
|
|
|
NS_SPECIAL => 'Maxsus',
|
|
|
|
|
|
NS_TALK => 'Bäxäs',
|
2009-11-17 00:01:16 +00:00
|
|
|
|
NS_USER => 'Qullanuçı',
|
|
|
|
|
|
NS_USER_TALK => 'Qullanuçı_bäxäse',
|
2009-05-31 17:31:21 +00:00
|
|
|
|
NS_PROJECT_TALK => '$1_bäxäse',
|
2009-11-17 00:01:16 +00:00
|
|
|
|
NS_FILE => 'Fayl',
|
|
|
|
|
|
NS_FILE_TALK => 'Fayl_bäxäse',
|
2009-05-31 17:31:21 +00:00
|
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'MediaWiki_bäxäse',
|
|
|
|
|
|
NS_TEMPLATE => 'Ürnäk',
|
|
|
|
|
|
NS_TEMPLATE_TALK => 'Ürnäk_bäxäse',
|
|
|
|
|
|
NS_HELP => 'Yärdäm',
|
|
|
|
|
|
NS_HELP_TALK => 'Yärdäm_bäxäse',
|
|
|
|
|
|
NS_CATEGORY => 'Törkem',
|
|
|
|
|
|
NS_CATEGORY_TALK => 'Törkem_bäxäse',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2008-03-20 22:12:11 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceAliases = [
|
2009-11-17 00:01:16 +00:00
|
|
|
|
'Äğzä' => NS_USER,
|
2009-11-17 00:08:54 +00:00
|
|
|
|
'Äğzä_bäxäse' => NS_USER_TALK,
|
2009-11-17 00:01:16 +00:00
|
|
|
|
'Räsem' => NS_FILE,
|
|
|
|
|
|
'Räsem_bäxäse' => NS_FILE_TALK,
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2009-11-17 00:01:16 +00:00
|
|
|
|
|
2008-03-20 22:12:11 +00:00
|
|
|
|
$datePreferences = false;
|
|
|
|
|
|
|
|
|
|
|
|
$defaultDateFormat = 'dmy';
|
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$dateFormats = [
|
2014-07-20 19:41:41 +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' => 'j M Y, H:i',
|
|
|
|
|
|
'ymd time' => 'H:i',
|
|
|
|
|
|
'ymd date' => 'Y M j',
|
|
|
|
|
|
'ymd both' => 'H:i, Y M j',
|
|
|
|
|
|
'ISO 8601 time' => 'xnH:xni:xns',
|
|
|
|
|
|
'ISO 8601 date' => 'xnY-xnm-xnd',
|
|
|
|
|
|
'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2008-03-20 22:12:11 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$magicWords = [
|
|
|
|
|
|
'redirect' => [ '0', '#YÜNÄLTÜ', '#REDIRECT' ],
|
|
|
|
|
|
'notoc' => [ '0', '__ETYUQ__', '__NOTOC__' ],
|
|
|
|
|
|
'forcetoc' => [ '0', '__ETTIQ__', '__FORCETOC__' ],
|
|
|
|
|
|
'toc' => [ '0', '__ET__', '__TOC__' ],
|
|
|
|
|
|
'noeditsection' => [ '0', '__BÜLEMTÖZÄTÜYUQ__', '__NOEDITSECTION__' ],
|
|
|
|
|
|
'currentmonth' => [ '1', 'AĞIMDAĞI_AY', 'CURRENTMONTH', 'CURRENTMONTH2' ],
|
|
|
|
|
|
'currentmonthname' => [ '1', 'AĞIMDAĞI_AY_İSEME', 'CURRENTMONTHNAME' ],
|
|
|
|
|
|
'currentmonthnamegen' => [ '1', 'AĞIMDAĞI_AY_İSEME_GEN', 'CURRENTMONTHNAMEGEN' ],
|
|
|
|
|
|
'currentday' => [ '1', 'AĞIMDAĞI_KÖN', 'CURRENTDAY' ],
|
|
|
|
|
|
'currentdayname' => [ '1', 'AĞIMDAĞI_KÖN_İSEME', 'CURRENTDAYNAME' ],
|
|
|
|
|
|
'currentyear' => [ '1', 'AĞIMDAĞI_YIL', 'CURRENTYEAR' ],
|
|
|
|
|
|
'currenttime' => [ '1', 'AĞIMDAĞI_WAQIT', 'CURRENTTIME' ],
|
|
|
|
|
|
'numberofarticles' => [ '1', 'MÄQÄLÄ_SANI', 'NUMBEROFARTICLES' ],
|
|
|
|
|
|
'pagename' => [ '1', 'BİTİSEME', 'PAGENAME' ],
|
|
|
|
|
|
'namespace' => [ '1', 'İSEMARA', 'NAMESPACE' ],
|
|
|
|
|
|
'subst' => [ '0', 'TÖPÇEK:', 'SUBST:' ],
|
|
|
|
|
|
'img_right' => [ '1', 'uñda', 'right' ],
|
|
|
|
|
|
'img_left' => [ '1', 'sulda', 'left' ],
|
|
|
|
|
|
'img_none' => [ '1', 'yuq', 'none' ],
|
|
|
|
|
|
'int' => [ '0', 'EÇKE:', 'INT:' ],
|
|
|
|
|
|
'sitename' => [ '1', 'SÄXİFÄİSEME', 'SITENAME' ],
|
|
|
|
|
|
'ns' => [ '0', 'İA:', 'NS:' ],
|
|
|
|
|
|
'localurl' => [ '0', 'URINLIURL:', 'LOCALURL:' ],
|
|
|
|
|
|
'localurle' => [ '0', 'URINLIURLE:', 'LOCALURLE:' ],
|
|
|
|
|
|
];
|
2008-03-20 22:12:11 +00:00
|
|
|
|
|
|
|
|
|
|
$fallback8bitEncoding = "windows-1254";
|
|
|
|
|
|
|
|
|
|
|
|
$linkTrail = '/^([a-zäçğıñöşü“»]+)(.*)$/sDu';
|