2007-04-02 20:57:19 +00:00
|
|
|
|
<?php
|
2012-06-10 18:55:19 +00:00
|
|
|
|
/** Belarusian (беларуская)
|
Localisation updates from Betawiki.
* an, ast, be, cs, fo, fr, hsb, kaa, nl, pl, qu, sco, sdc, ss, tyv
2007-11-20 22:26:51 +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
|
|
|
|
* @file
|
2022-06-22 22:37:31 +00:00
|
|
|
|
* @ingroup Languages
|
Localisation updates from Betawiki.
* an, ast, be, cs, fo, fr, hsb, kaa, nl, pl, qu, sco, sdc, ss, tyv
2007-11-20 22:26:51 +00:00
|
|
|
|
*/
|
2007-04-02 20:57:19 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceNames = [
|
2009-05-31 17:31:21 +00:00
|
|
|
|
NS_MEDIA => 'Мультымедыя',
|
|
|
|
|
|
NS_SPECIAL => 'Адмысловае',
|
|
|
|
|
|
NS_TALK => 'Размовы',
|
|
|
|
|
|
NS_USER => 'Удзельнік',
|
|
|
|
|
|
NS_USER_TALK => 'Размовы_з_удзельнікам',
|
2012-05-22 21:02:21 +00:00
|
|
|
|
NS_PROJECT_TALK => 'Размовы_пра_{{GRAMMAR:вінавальны|$1}}',
|
2013-01-31 09:15:57 +00:00
|
|
|
|
NS_FILE => 'Файл',
|
|
|
|
|
|
NS_FILE_TALK => 'Размовы_пра_файл',
|
2009-05-31 17:31:21 +00:00
|
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'Размовы_пра_MediaWiki',
|
|
|
|
|
|
NS_TEMPLATE => 'Шаблон',
|
|
|
|
|
|
NS_TEMPLATE_TALK => 'Размовы_пра_шаблон',
|
|
|
|
|
|
NS_HELP => 'Даведка',
|
|
|
|
|
|
NS_HELP_TALK => 'Размовы_пра_даведку',
|
|
|
|
|
|
NS_CATEGORY => 'Катэгорыя',
|
|
|
|
|
|
NS_CATEGORY_TALK => 'Размовы_пра_катэгорыю',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2007-04-02 20:57:19 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceAliases = [
|
2012-05-22 21:02:21 +00:00
|
|
|
|
'$1_размовы' => NS_PROJECT_TALK,
|
2013-01-31 09:15:57 +00:00
|
|
|
|
'Выява' => NS_FILE,
|
|
|
|
|
|
'Размовы_пра_выяву' => NS_FILE_TALK,
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2012-05-22 21:02:21 +00:00
|
|
|
|
|
2021-03-03 17:33:55 +00:00
|
|
|
|
/** @phpcs-require-sorted-array */
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$magicWords = [
|
2021-03-03 17:33:55 +00:00
|
|
|
|
'img_center' => [ '1', 'цэнтр', 'center', 'centre' ],
|
|
|
|
|
|
'img_framed' => [ '1', 'безрамкі', 'frame', 'framed', 'enframed' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
|
'img_left' => [ '1', 'злева', 'left' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
|
'img_manualthumb' => [ '1', 'міні=$1', 'мініяцюра=$1', 'thumbnail=$1', 'thumb=$1' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
|
'img_none' => [ '1', 'няма', 'none' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
|
'img_right' => [ '1', 'справа', 'right' ],
|
|
|
|
|
|
'img_thumbnail' => [ '1', 'міні', 'мініяцюра', 'thumb', 'thumbnail' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
|
'img_width' => [ '1', '$1пкс', '$1px' ],
|
|
|
|
|
|
];
|
2011-12-26 00:21:52 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$bookstoreList = [
|
2012-10-31 21:51:46 +00:00
|
|
|
|
'OZ.by' => 'http://oz.by/search.phtml?what=books&isbn=$1',
|
2017-01-19 13:24:48 +00:00
|
|
|
|
'Amazon.com' => 'https://www.amazon.com/exec/obidos/ISBN=$1'
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2012-10-31 21:51:46 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$datePreferences = [
|
2012-10-31 21:51:46 +00:00
|
|
|
|
'default',
|
|
|
|
|
|
'dmy',
|
|
|
|
|
|
'ISO 8601',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2012-10-31 21:51:46 +00:00
|
|
|
|
|
|
|
|
|
|
$defaultDateFormat = 'dmy';
|
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$dateFormats = [
|
2012-10-31 21:51:46 +00:00
|
|
|
|
'dmy time' => 'H:i',
|
|
|
|
|
|
'dmy date' => 'j xg Y',
|
|
|
|
|
|
'dmy both' => 'H:i, j xg Y',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2012-10-31 21:51:46 +00:00
|
|
|
|
|
2014-06-05 14:06:25 +00:00
|
|
|
|
# Per discussion on https://translatewiki.net/wiki/Thread:Support/Customization_of number format
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$separatorTransformTable = [
|
2017-10-07 00:26:23 +00:00
|
|
|
|
',' => "\u{00A0}", # nbsp
|
2011-02-06 11:19:04 +00:00
|
|
|
|
'.' => ','
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2007-04-02 20:57:19 +00:00
|
|
|
|
|
|
|
|
|
|
$linkTrail = '/^([абвгґджзеёжзійклмнопрстуўфхцчшыьэюяćčłńśšŭźža-z]+)(.*)$/sDu';
|