wiki.techinc.nl/languages/messages/MessagesLzz.php
Fomafix ce6f7faadd Remove trailing empty lines in PHP
Performed using
find . -name \*.php -exec sed -i -e :a -e '/./,$!d;/^\n*$/{$d;N;};/\n$/ba' {} \;

Change-Id: I5d0627f94c73690cf3a8a453539c22c760c2aa60
2017-01-16 22:06:43 +01: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
*
* @ingroup Language
* @file
*
* @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,
];