wiki.techinc.nl/languages/messages/MessagesLzz.php
Timo Tijhof 939700e8ff language: Continue doc Languages subgroup for msg files and subclasses
Follows-up I301f471f86ba2.

For ease of navigation, move Converter subclasses to a group called
"Languages", which for documentation purposes is a subgroup of
"Language". The next commit does the same for Messages* files,
and Language subclasses (done separately for ease of review).

Change-Id: If1cef9aa15f536ebaedd4477ad7453426e7f3b85
2022-06-29 00:13:45 +00:00

57 lines
1.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/** Lazuri (Lazuri)
*
* To improve a translation please visit https://translatewiki.net
*
* @file
* @ingroup Languages
*
* @author Bombola
* @author Ceas08
* @author Dato deutschland
* @author Dawid Deutschland
* @author Erdemaslancan
* @author Ibero-kolxi
* @author Reedy
* @author The Evil IP address
*/
$fallback = 'tr';
$namespaceNames = [
NS_MEDIA => 'Medya',
NS_SPECIAL => 'Doxmeli',
NS_TALK => 'Ğarğala',
NS_USER => 'Maxmare',
NS_USER_TALK => 'Maxmare_mesaji',
NS_PROJECT_TALK => '$1_ğarğala',
NS_FILE => 'Dosya',
NS_FILE_TALK => 'Dosya_ğarğala',
NS_MEDIAWIKI => 'MediaWiki',
NS_MEDIAWIKI_TALK => 'MediaWiki_ğarğala',
NS_TEMPLATE => 'Şabloni',
NS_TEMPLATE_TALK => 'Şabloni_ğarğala',
NS_HELP => 'Meşvela',
NS_HELP_TALK => 'Meşvela_ğarğala',
NS_CATEGORY => 'Kʼatʼegori',
NS_CATEGORY_TALK => 'Kʼatʼegori_ğarğala',
];
$namespaceAliases = [
// Turkish namespace names.
'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_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,
];