wiki.techinc.nl/languages/messages/MessagesCrh_cyrl.php

102 lines
2.8 KiB
PHP
Raw Normal View History

<?php
/** Crimean Tatar (Cyrillic script) (къырымтатарджа (Кирилл))
*
* To improve a translation please visit https://translatewiki.net
*
* @ingroup Language
* @file
*
*/
$fallback = 'ru';
$fallback8bitEncoding = 'windows-1251';
$namespaceNames = [
NS_MEDIA => 'Медиа',
NS_SPECIAL => 'Махсус',
NS_TALK => 'Музакере',
NS_USER => 'Къулланыджы',
NS_USER_TALK => 'Къулланыджы_музакереси',
NS_PROJECT_TALK => '$1_музакереси',
NS_FILE => 'Файл',
NS_FILE_TALK => айл_музакереси',
NS_MEDIAWIKI => 'МедиаВики',
NS_MEDIAWIKI_TALK => 'МедиаВики_музакереси',
NS_TEMPLATE => 'Шаблон',
NS_TEMPLATE_TALK => аблон_музакереси',
NS_HELP => 'Ярдым',
NS_HELP_TALK => рдым_музакереси',
NS_CATEGORY => 'Категория',
NS_CATEGORY_TALK => 'Категория_музакереси',
];
$namespaceAliases = [
# Aliases of Latin (crh-latn) namespaces
"Media" => NS_MEDIA,
"Mahsus" => NS_SPECIAL,
"Muzakere" => NS_TALK,
"Qullanıcı" => NS_USER,
"Qullanıcı_muzakeresi" => NS_USER_TALK,
"$1_muzakeresi" => NS_PROJECT_TALK,
"Resim" => NS_FILE,
"Resim_muzakeresi" => NS_FILE_TALK,
"Ресим" => NS_FILE,
"Ресим_музакереси" => NS_FILE_TALK,
"MediaViki" => NS_MEDIAWIKI,
"MediaViki_muzakeresi" => NS_MEDIAWIKI_TALK,
'Şablon' => NS_TEMPLATE,
'Şablon_muzakeresi' => NS_TEMPLATE_TALK,
'Yardım' => NS_HELP,
'Yardım_muzakeresi' => NS_HELP_TALK,
'Kategoriya' => NS_CATEGORY,
'Kategoriya_muzakeresi' => NS_CATEGORY_TALK
];
// Remove Russian aliases
$namespaceGenderAliases = [];
$datePreferences = [
'default',
'mdy',
'dmy',
'ymd',
'yyyy-mm-dd',
'ISO 8601',
];
$defaultDateFormat = 'ymd';
$datePreferenceMigrationMap = [
'default',
'mdy',
'dmy',
'ymd'
];
$dateFormats = [
'mdy time' => 'H:i',
'mdy date' => 'F j Y "с."',
'mdy both' => 'H:i, F j Y "с."',
'dmy time' => 'H:i',
'dmy date' => 'j F Y "с."',
'dmy both' => 'H:i, j F Y "с."',
'ymd time' => 'H:i',
'ymd date' => 'Y "с." xg j',
'ymd both' => 'H:i, Y "с." xg j',
'yyyy-mm-dd time' => 'xnH:xni:xns',
'yyyy-mm-dd date' => 'xnY-xnm-xnd',
'yyyy-mm-dd both' => 'xnH:xni:xns, xnY-xnm-xnd',
'ISO 8601 time' => 'xnH:xni:xns',
'ISO 8601 date' => 'xnY.xnm.xnd',
'ISO 8601 both' => 'xnY.xnm.xnd"T"xnH:xni:xns',
];
$separatorTransformTable = [ ',' => '.', '.' => ',' ];
$linkTrail = '/^([a-zâçğıñöşüа-яё“»]+)(.*)$/sDu';
Remove linkprefix message, add $linkPrefixCharset The existing "linkprefix" message is unlikely to be accurately customized by message translators (as shown by the fact that, of the 10 distinct customizations prior to Iaa7eaa44 (which made them even more complicated), 3 were broken or entirely ineffective, 1 was half ineffective, and 2 more seem to have included the Latin-1 Supplement by accident) or by local wiki admins. So, like linktrail before it, let's move it out of the system messages and into a separate language variable. At the same time, let's make it a simple character set (like $wgLegalTitleChars) rather than a complicated regular expression. The complicated regex now lives in the parser. This also adjusts the output of the API's action=query&meta=siteinfo and adds an accessor parallel to the linkTrail accessor to Language. Note the following changes that are not simply extracting the existing charset from the linkprefix message for $linkPrefixCharset: * The En message matched all non-ASCII UTF-8 characters by matching the component bytes (\\x80-\\xff). The new character set is equivalent. * Various languages were identical to En and so have no $linkPrefixCharset set. These are: Ary Az Ce Ga Id Ka Kiu Km Ltg Mk Ms Ne Nn Ro Roa_tara Sc Si Sr_ec Sr_el Tl Tt_cyrl Tt_latn Ug_arab War * Cu, Uk, and Udm are changed to match any number of „ or « in the prefix. * Cv tried to include "«" that was redundant to the range \\x80-\\xff (see En comment). This was removed. * Diq was entirely bogus, and so was removed. * Gu included many additional UTF-8 characters that are redundant to the range \\x80-\\xff (see En comment). These were removed, and the resulting character set is equivalent to En. * Mt has been broken since it was introduced in r37242. The charset used is equivalent to the broken regex. Bug: 56031 Change-Id: I3369851b33113fc118a1bace38f3ac310cdd9725
2013-10-23 18:06:19 +00:00
$linkPrefixCharset = 'a-zâçğıñöşüA-ZÂÇĞİÑÖŞÜa-яёА-ЯЁ«„';