2008-01-16 16:10:48 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
/** Gagauz (Gagauz)
|
|
|
|
|
|
*
|
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-01-16 16:10:48 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
$fallback = 'tr';
|
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceNames = [
|
2011-05-07 15:27:28 +00:00
|
|
|
|
NS_MEDIA => 'Mediya',
|
|
|
|
|
|
NS_SPECIAL => 'Maasus',
|
|
|
|
|
|
NS_TALK => 'Dartışma',
|
|
|
|
|
|
NS_USER => 'Kullanıcı',
|
|
|
|
|
|
NS_USER_TALK => 'Kullanıcı_dartışma',
|
|
|
|
|
|
NS_PROJECT_TALK => '$1_dartışma',
|
|
|
|
|
|
NS_FILE => 'Dosye',
|
|
|
|
|
|
NS_FILE_TALK => 'Dosye_dartışma',
|
|
|
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'MediaWiki_dartışma',
|
|
|
|
|
|
NS_TEMPLATE => 'Şablon',
|
|
|
|
|
|
NS_TEMPLATE_TALK => 'Şablon_dartışma',
|
|
|
|
|
|
NS_HELP => 'Yardım',
|
|
|
|
|
|
NS_HELP_TALK => 'Yardım_dartışma',
|
|
|
|
|
|
NS_CATEGORY => 'Kategoriya',
|
|
|
|
|
|
NS_CATEGORY_TALK => 'Kategoriya_dartışma',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2011-05-07 15:27:28 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceAliases = [
|
2011-05-07 15:27:28 +00:00
|
|
|
|
# Turkish namespaces
|
|
|
|
|
|
'Medya' => NS_MEDIA,
|
|
|
|
|
|
'Özel' => NS_SPECIAL,
|
|
|
|
|
|
'Tartışma' => NS_TALK,
|
|
|
|
|
|
'Kullanıcı' => NS_USER,
|
|
|
|
|
|
'Kullanıcı_mesaj' => NS_USER_TALK,
|
|
|
|
|
|
'$1_tartışma' => NS_PROJECT_TALK,
|
|
|
|
|
|
'Dosya' => NS_FILE,
|
|
|
|
|
|
'Dosya_tartışma' => NS_FILE_TALK,
|
|
|
|
|
|
'MediaWiki' => NS_MEDIAWIKI,
|
|
|
|
|
|
'MediaWiki_tartışma' => NS_MEDIAWIKI_TALK,
|
|
|
|
|
|
'Şablon' => NS_TEMPLATE,
|
|
|
|
|
|
'Şablon_tartışma' => NS_TEMPLATE_TALK,
|
|
|
|
|
|
'Yardım' => NS_HELP,
|
|
|
|
|
|
'Yardım_tartışma' => NS_HELP_TALK,
|
|
|
|
|
|
'Kategori' => NS_CATEGORY,
|
|
|
|
|
|
'Kategori_tartışma' => NS_CATEGORY_TALK,
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2011-05-07 15:27:28 +00:00
|
|
|
|
|
2020-10-30 08:59:17 +00:00
|
|
|
|
/** @phpcs-require-sorted-array */
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$specialPageAliases = [
|
|
|
|
|
|
'Allpages' => [ 'HepsiYazılar', 'HepsiSayfalar', 'HepsiYapraklar' ],
|
|
|
|
|
|
'Ancientpages' => [ 'EskiYazılar', 'EskiSayfalar', 'EskiYapraklar' ],
|
|
|
|
|
|
'Categories' => [ 'Kategoriyalar' ],
|
|
|
|
|
|
'Contributions' => [ 'Katılmaklar' ],
|
|
|
|
|
|
'CreateAccount' => [ 'EsapYarat', 'EsapAç' ],
|
|
|
|
|
|
'Deadendpages' => [ 'BaalantısızYazılar', 'BaalantısızSayfalar', 'BaalantısızYapraklar' ],
|
|
|
|
|
|
'DoubleRedirects' => [ 'İkiKeräYönnendirmäler', 'İkiKeräYönnendirmeler' ],
|
|
|
|
|
|
'Listadmins' => [ 'İzmetliListası' ],
|
|
|
|
|
|
'Listbots' => [ 'BotListası' ],
|
|
|
|
|
|
'Listfiles' => [ 'DosyeListası', 'PätretListası' ],
|
|
|
|
|
|
'Listredirects' => [ 'YönnedirmeListası', 'YönndermäListası' ],
|
|
|
|
|
|
'Listusers' => [ 'KullanıcıListası' ],
|
|
|
|
|
|
'Mycontributions' => [ 'Katılmaklarım' ],
|
|
|
|
|
|
'Mytalk' => [ 'SözleşmäkSayfam', 'SözleşmäkYapraım' ],
|
|
|
|
|
|
'Newimages' => [ 'EniDosyeler', 'EniPätretler' ],
|
|
|
|
|
|
'Newpages' => [ 'EniYazılar', 'EniSayfalar', 'EniYapraklar' ],
|
|
|
|
|
|
'Preferences' => [ 'Seçimner' ],
|
|
|
|
|
|
'Prefixindex' => [ 'Prefiksİndeksi' ],
|
|
|
|
|
|
'Randompage' => [ 'Razgele', 'RazgeleYazı', 'RazgeleSayfa', 'RazgeleYaprak' ],
|
|
|
|
|
|
'Randomredirect' => [ 'RazgeleYönnendirme', 'RazgeleYönndermä' ],
|
|
|
|
|
|
'Recentchanges' => [ 'BitkiDiişikmäklär' ],
|
|
|
|
|
|
'Search' => [ 'Ara' ],
|
|
|
|
|
|
'Specialpages' => [ 'MaasusSayfalar', 'MaasusYazılar', 'MaasusYapraklar' ],
|
|
|
|
|
|
'Statistics' => [ 'İstatistikalar' ],
|
|
|
|
|
|
'Uncategorizedcategories' => [ 'KategorizațiyasızKategoriyalar' ],
|
|
|
|
|
|
'Uncategorizedimages' => [ 'KategorizațiyasızDosyeler', 'KategorizațiyasızPätretler' ],
|
|
|
|
|
|
'Uncategorizedpages' => [ 'KategorizațiyasızYazılar', 'KategorizațiyasızSayfalar', 'KategorizațiyasızYapraklar' ],
|
|
|
|
|
|
'Uncategorizedtemplates' => [ 'KategorizațiyasızŞablonnar' ],
|
|
|
|
|
|
'Unusedcategories' => [ 'KullanılmayanKategoriyalar' ],
|
|
|
|
|
|
'Unusedimages' => [ 'KullanılmayanDosyeler', 'KullanılmayanPätretler' ],
|
|
|
|
|
|
'Upload' => [ 'Ükle' ],
|
|
|
|
|
|
'Watchlist' => [ 'SiirListası', 'BakmaaListası' ],
|
|
|
|
|
|
'Withoutinterwiki' => [ 'İntervikisiz' ],
|
|
|
|
|
|
];
|
2011-05-07 14:19:48 +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', '#YÖNNENDİRMÄKLER', '#YÖNNENDİR', '#YÖNNENDİRMÄ', '#YÖNLENDİRME', '#YÖNLENDİR', '#REDIRECT' ],
|
|
|
|
|
|
];
|