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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

456 lines
46 KiB
PHP
Raw Normal View History

<?php
/** Serbian (Cyrillic script) (српски (ћирилица))
*
* @file
* @ingroup Languages
*
* @author Aca
* @author Bjankuloski06
* @author CERminator
* @author Charmed94
* @author FriedrickMILBarbarossa
* @author Geitost
* @author Helios13
* @author Kaganer
* @author Kale
* @author Meno25
* @author Milicevic01
* @author Millosh
* @author Nikola Smolenski
* @author Rancher
* @author Red Baron
* @author Reedy
* @author Sasa Stefanovic
* @author Slaven Kosanovic
* @author Srđan
* @author TheStefan12345
* @author Zoranzoki21
* @author Јованвб
* @author Жељко Тодоровић
* @author Милан Јелисавчић
* @author Михајло Анђелковић
* @author לערי ריינהארט
*/
$fallback = 'sr-cyrl, sr';
$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 => 'Разговор_о_Медијавикију',
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
NS_TEMPLATE => 'Шаблон',
NS_TEMPLATE_TALK => 'Разговор_оаблону',
NS_HELP => 'Помоћ',
NS_HELP_TALK => 'Разговор_о_помоћи',
NS_CATEGORY => 'Категорија',
NS_CATEGORY_TALK => 'Разговор_оатегорији',
];
$namespaceAliases = [
'Медија' => NS_MEDIA,
'Специјално' => NS_SPECIAL,
'Сарадник' => NS_USER,
'Сурадник' => NS_USER,
'Разговор_саорисником' => NS_USER_TALK,
'Разговор_са_сарадником' => NS_USER_TALK,
'Разговор_с_сарадником' => NS_USER_TALK,
'Разговор_са_сурадником' => NS_USER_TALK,
'Разговор_с_сурадником' => NS_USER_TALK,
'Фотографија' => NS_FILE,
'Слика' => NS_FILE,
'Разговор_оотографији' => NS_FILE_TALK,
'Разговор_о_слици' => NS_FILE_TALK,
'МедијаВики' => NS_MEDIAWIKI,
'Разговор_о_МедијаВикију' => NS_MEDIAWIKI_TALK,
'Разговор_о_MediaWiki-ју' => NS_MEDIAWIKI_TALK,
'Предложак' => NS_TEMPLATE,
'Разговор_о_предлошку' => NS_TEMPLATE_TALK,
];
$datePreferenceMigrationMap = [
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
'default',
'hh:mm d. month y.',
'hh:mm d month y',
'hh:mm dd.mm.yyyy',
'hh:mm d.m.yyyy',
'hh:mm d. mon y.',
'hh:mm d mon y',
'h:mm d. month y.',
'h:mm d month y',
'h:mm dd.mm.yyyy',
'h:mm d.m.yyyy',
'h:mm d. mon y.',
'h:mm d mon y',
];
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
/** @phpcs-require-sorted-array */
$specialPageAliases = [
'Activeusers' => [ 'Активни_корисници', 'АктивниКорисници' ],
'Allmessages' => [ 'Све_поруке', 'СвеПоруке' ],
'AllMyUploads' => [ 'Сваоја_отпремања', 'СваМојаОтпремања', 'СвеМојеДатотеке' ],
'Allpages' => [ 'Све_странице', 'СвеСтранице' ],
'Ancientpages' => [ 'Најстарије_странице', 'НајстаријеСтранице', 'НајстаријиЧланци' ],
'ApiHelp' => [ омоћ_око_API-ја', 'API_помоћ' ],
'ApiSandbox' => [ есак_API-ја', 'Пијесак_API-ја', 'API_песак', 'API_пијесак', 'АПИ_песак', 'АПИ_пијесак' ],
'AutoblockList' => [ 'Списак_аутоблокада', 'СписакАутоблокова', 'Аутоблокаде', 'Аутоблокови' ],
'Badtitle' => [ 'Неисправан_наслов', ош_наслов', 'ЛошНаслов' ],
'Blankpage' => [ разна_страница', 'ПразнаСтраница' ],
'Block' => [ 'Блокирај', 'БлокирајИП', 'БлокирајКорисника' ],
'BlockList' => [ 'Списак_блокада', 'СписакБлокада', 'СписакБлокираних', 'ПописБлокираних' ],
'Booksources' => [ 'Штампани_извори', 'ШтампаниИзвори', 'КњижевниИзвори' ],
'BotPasswords' => [ озинке_ботова', 'ЛозинкеБотова' ],
'BrokenRedirects' => [ окварена_преусмерења', окварена_преусмјерења', 'Неисправна_преусмерења', 'Неисправна_преусмјерења', 'ПокваренаПреусмерења', 'ПокваренаПреусмјерења' ],
'Categories' => [ 'Категорије' ],
'ChangeContentModel' => [ ромени_садржински_модел', ромијени_садржински_модел', 'ПромениМоделСадржаја', 'ПромијениМоделСадржаја', 'ИзмениМоделСадржаја', 'ИзмијениМоделСадржаја' ],
'ChangeCredentials' => [ ромени_акредитиве', ромијени_акредитиве', 'ПромениАкредитиве', 'ПромијениАкредитиве' ],
'ChangeEmail' => [ ромени_имејл', ромијени_имејл', 'ПромениИмејл', 'ПромијениИмејл', 'ПромениИмејлАдресу', 'ПромијениИмејлАдресу' ],
'ChangePassword' => [ ромени_лозинку', ромијени_лозинку', 'ПромениЛозинку', 'ПромијениЛозинку' ],
'ComparePages' => [ 'Упореди_странице', 'УпоредиСтранице' ],
'Confirmemail' => [ отврди_имејл', 'ПотврдиИмејл', 'ПотврдиЕ-пошту', отврда_е-поште' ],
'Contributions' => [ 'Доприноси', 'Прилози' ],
'CreateAccount' => [ 'Отвори_налог', 'ОтвориНалог' ],
'Deadendpages' => [ 'Ћорсокаци', 'СтраницеКојеНеВодеНикуда', 'СлепеСтранице' ],
'DeletedContributions' => [ 'Избрисани_доприноси', 'ОбрисаниДоприноси' ],
'Diff' => [ 'Разлике' ],
'DoubleRedirects' => [ 'Двострука_преусмерења', 'Двострука_преусмјерења', 'ДвострукаПреусмерења', 'ДвострукаПреусмјерења' ],
'EditPage' => [ 'Уреди_страницу', 'УредиСтраницу', 'Уреди' ],
'EditTags' => [ 'Уреди_ознаке', 'УредиОзнаке' ],
'EditWatchlist' => [ 'Уреди_списак_надгледања', 'УредиСписакНадгледања' ],
'Emailuser' => [ ошаљи_имејл_кориснику', 'ПошаљиИмејлКориснику' ],
'ExpandTemplates' => [ рошири_шаблоне', 'ПрошириШаблоне' ],
'Export' => [ 'Извези' ],
'Fewestrevisions' => [ 'Најмање_измена', 'Најмање_измјена', 'НајмањеИзмена', 'НајмањеИзмјена', 'ЧланциСаНајмањеРевизија' ],
'FileDuplicateSearch' => [ ретрагаупликатаатотека', 'ПретрагаДупликатаДатотека' ],
'Filepath' => [ утањаоатотеке', утањаатотеке', 'ПутањаДатотеке' ],
'GoToInterwiki' => [ осети_међувики', осјети_међувики', 'ПосетиМеђувики', 'ПосјетиМеђувики' ],
'Import' => [ 'Увези' ],
'Invalidateemail' => [ 'Откажи_потврду_имејла', 'ПоништиИмејл' ],
'JavaScriptTest' => [ 'Тестирање_JavaScript-а', 'ТестирањеЈаваскрипта' ],
'LinkAccounts' => [ овежи_налоге', 'ПовежиНалоге' ],
'LinkSearch' => [ ретрагаеза', 'ПретрагаВеза' ],
'Listadmins' => [ 'Списак_администратора', 'СписакАдминистратора', 'ПописАдминистратора' ],
'Listbots' => [ 'Списак_ботова', 'СписакБотова', 'ПописБотова' ],
'ListDuplicatedFiles' => [ 'Списак_дуплиранихатотека', 'СписакДупликата' ],
'Listfiles' => [ 'Списак_датотека', 'СписакДатотека', 'СписакСлика' ],
'Listgrants' => [ 'Списак_дозвола', 'СписакДозвола' ],
'Listgrouprights' => [ 'Списак_праваорисничких_група', 'Списак_корисничких_права', 'СписакКорисничкихПрава' ],
'Listredirects' => [ 'Списак_преусмерења', 'Списак_преусмјерења', 'СписакПреусмерења', 'СписакПреусмјерења' ],
'Listusers' => [ 'Списак_корисника', 'СписакКорисника', 'Кориснички_списак', 'КорисничкиСписак' ],
'Lockdb' => [ 'Закључај_базу_података', 'ЗакључајБазуПодатака', 'Закључај_базу', 'ЗакључајБазу' ],
'Log' => [ 'Дневник', 'Извештај', 'Извјештај', 'Извештаји', 'Извјештаји' ],
'Lonelypages' => [ 'Сирочићи' ],
'Longpages' => [ уге_странице', 'ДугачкеСтранице', 'ДугачкеСтране' ],
'MediaStatistics' => [ 'Статистикаатотека', 'СтатистикеМедија' ],
'MergeHistory' => [ 'Обједини_историју', 'Споји_историју', 'СпојиИсторију' ],
'MIMEsearch' => [ ретрага_по_MIME-у', 'MIME_претрага' ],
'Mostcategories' => [ 'Највишеатегорија', 'НајвишеКатегорија', 'ЧланциСаНајвишеКатегорија' ],
'Mostimages' => [ 'Најповезанијеатотеке', 'НајповезанијеДатотеке', 'НајповезанијеСлике' ],
'Mostinterwikis' => [ 'Највишееђувикија', 'НајвишеМеђувикија' ],
'Mostlinked' => [ 'Најповезаније_странице', 'НајповезанијеСтранице', 'НајповезанијеСтране' ],
'Mostlinkedcategories' => [ 'Најповезанијеатегорије', 'НајповезанијеКатегорије' ],
'Mostlinkedtemplates' => [ 'Најповезанији_шаблони', 'НајповезанијиШаблони' ],
'Mostrevisions' => [ 'Највише_измена', 'Највише_измјена', 'НајвишеИзмена', 'НајвишеИзмјена', 'НајвишеРевизија', 'ЧланциСаНајвишеРевизија' ],
'Movepage' => [ ремести_страницу', ремјести_страницу', 'ПреместиСтраницу', 'ПремјестиСтраницу', 'Премести', 'Премјести', 'Преусмери', 'Преусмјери' ],
'Mycontributions' => [ 'Моји_доприноси', 'МојиДоприноси', 'Моји_прилози' ],
'MyLanguage' => [ 'Мој_језик', 'МојЈезик' ],
'Mypage' => [ 'Моја_страница', 'МојаСтраница' ],
'Mytalk' => [ 'Мој_разговор', 'МојРазговор' ],
'Myuploads' => [ 'Моја_отпремања', 'МојаОтпремања', 'Моја_слања' ],
'Newimages' => [ 'Новеатотеке', 'НовеДатотеке', 'НовиФајлови', 'НовеСлике' ],
'Newpages' => [ 'Нове_странице', 'НовеСтранице', 'НовеСтране' ],
'NewSection' => [ 'Нови_одељак', 'Нови_одјељак', 'НовиОдељак', 'НовиОдјељак' ],
'PageData' => [ одаци_странице', 'ПодациСтранице' ],
'PageHistory' => [ сторија_странице', 'ИсторијаСтранице', 'Историја' ],
'PageLanguage' => [ 'Језик_странице', 'ЈезикСтранице' ],
'PagesWithProp' => [ 'Странице_са_својством', 'СтраницеСаСвојством' ],
'PasswordPolicies' => [ равила_оозинкама', 'ПравилаЗаЛозинке' ],
'PasswordReset' => [ 'Ресетовањеозинке', 'РесетовањеЛозинке' ],
'PermanentLink' => [ 'Трајнаеза', 'ТрајнаВеза', ривременаеза' ],
'Preferences' => [ 'Подешавања', 'Поставке' ],
'Prefixindex' => [ 'Странице_с_префиксом', 'СтраницеСаПрефиксом' ],
'Protectedpages' => [ 'Заштићене_странице', 'ЗаштићенеСтранице' ],
'Protectedtitles' => [ 'Заштићени_наслови', 'ЗаштићениНаслови' ],
'Purge' => [ 'Освежи', 'Освјежи' ],
'RandomInCategory' => [ 'Насумична_страница_уатегорији', 'Случајна_страница_уатегорији', 'Случајна_страна_уатегорији' ],
'Randompage' => [ 'Насумична_страница', 'СлучајнаСтраница', 'СлучајнаСтрана' ],
'Randomredirect' => [ 'Насумично_преусмерење', 'Насумично_преусмјерење', 'СлучајноПреусмерење', 'СлучајноПреусмјерење' ],
'Randomrootpage' => [ 'Насумичнаоренска_страница', 'Насумичнаоријенска_страница', 'СлучајнаОсновнаСтраница', 'СлучајнаОсновнаСтрана' ],
'Recentchanges' => [ 'Скорашње_измене', 'Скорашње_измјене', 'СкорашњеИзмене', 'СкорашњеИзмјене' ],
'Recentchangeslinked' => [ овезане_измене', овезане_измјене', 'СроднеИзмене', 'СроднеИзмјене' ],
'Redirect' => [ 'Преусмерење', 'Преусмјерење' ],
'RemoveCredentials' => [ 'Уклони_акредитиве', 'УклониАкредитиве' ],
'Renameuser' => [ 'ПреименујКорисника', реименујорисника' ],
'ResetTokens' => [ 'Ресетујокене', 'РесетујЖетоне' ],
'Revisiondelete' => [ рисање_измене', рисање_измјене', 'БрисањеИзмене', 'БрисањеИзмјене', 'УклањањеИзмене', 'УклањањеИзмјене' ],
'RunJobs' => [ 'Изврши_послове', 'ИзвршиПослове' ],
'Search' => [ 'Претражи' ],
'Shortpages' => [ 'Кратке_странице', 'КраткеСтранице', 'КраткиЧланци' ],
'Specialpages' => [ осебне_странице', 'ПосебнеСтранице', 'ПосебнеСтране', 'Специјалне_странице', 'СпецијалнеСтране' ],
'Statistics' => [ 'Статистика', 'Статистике' ],
'Tags' => [ 'Ознаке' ],
'TrackingCategories' => [ 'Категоријеа_праћење', 'КатегоријеЗаПраћење' ],
'Unblock' => [ 'Деблокирај' ],
'Uncategorizedcategories' => [ 'Некатегорисанеатегорије', 'НекатегорисанеКатегорије', 'КатегоријеБезКатегорија' ],
'Uncategorizedimages' => [ 'Некатегорисанеатотеке', 'НекатегорисанеДатотеке', 'СликеБезКатегорија' ],
'Uncategorizedpages' => [ 'Некатегорисане_странице', 'НекатегорисанеСтранице', 'Чланци_без_категорија', 'ЧланциБезКатегорија' ],
'Uncategorizedtemplates' => [ 'Некатегорисани_шаблони', 'НекатегорисаниШаблони', 'ШаблониБезКатегорија' ],
'Undelete' => [ 'Врати' ],
'UnlinkAccounts' => [ 'Одвежи_налоге', 'ОдвежиНалоге', 'УклониПовезивањеНалога' ],
'Unlockdb' => [ 'Откључај_базу_података', 'ОткључајБазуПодатака', 'Откључај_базу', 'ОткључајБазу' ],
'Unusedcategories' => [ 'Неупотребљенеатегорије', 'НеискоришћенеКатегорије' ],
'Unusedimages' => [ 'Неупотребљенеатотеке', 'НеискоришћенеДатотеке', 'НеискоришћенеСлике' ],
'Unusedtemplates' => [ 'Неупотребљени_шаблони', 'НеискоришћениШаблони' ],
'Unwatchedpages' => [ 'Ненадгледане_странице', 'НенадгледанеСтранице' ],
'Upload' => [ 'Отпреми', 'Пошаљи' ],
'UploadStash' => [ 'Складиште' ],
'Userlogin' => [ 'Корисничка_пријава', 'КорисничкаПријава' ],
'Userlogout' => [ 'Корисничка_одјава', 'КорисничкаОдјава' ],
'Userrights' => [ 'Корисничка_права', 'КорисничкаПрава' ],
'Version' => [ 'Верзија', 'Издање' ],
'Wantedcategories' => [ 'Траженеатегорије', 'ТраженеКатегорије' ],
'Wantedfiles' => [ 'Траженеатотеке', 'ТраженеДатотеке', 'ТраженеСлике' ],
'Wantedpages' => [ 'Тражене_странице', 'ТраженеСтранице', 'ТраженеСтране' ],
'Wantedtemplates' => [ 'Тражени_шаблони', 'ТражениШаблони' ],
'Watchlist' => [ 'Списак_надгледања', 'СписакНадгледања' ],
'Whatlinkshere' => [ 'Штаоди_овамо', 'Штаоди_довде', 'ШтаВодиОвде', 'ШтаВодиОвдје', 'Шта_је_повезано_овде', 'Шта_је_повезано_овдје' ],
'Withoutinterwiki' => [ ез_међувикија', 'БезМеђувикија' ],
];
$datePreferences = [
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
'default',
'hh:mm d. month y.',
'hh:mm d month y',
'hh:mm dd.mm.yyyy',
'hh:mm d.m.yyyy',
'hh:mm d. mon y.',
'hh:mm d mon y',
'h:mm d. month y.',
'h:mm d month y',
'h:mm dd.mm.yyyy',
'h:mm d.m.yyyy',
'h:mm d. mon y.',
'h:mm d mon y',
];
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
$defaultDateFormat = 'hh:mm d. month y.';
$dateFormats = [
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
/*
'Није битно',
'06:12, 5. јануар 2001.',
'06:12, 5 јануар 2001',
'06:12, 05.01.2001.',
'06:12, 5.1.2001.',
'06:12, 5. јан 2001.',
'06:12, 5 јан 2001',
'6:12, 5. јануар 2001.',
'6:12, 5 јануар 2001',
'6:12, 05.01.2001.',
'6:12, 5.1.2001.',
'6:12, 5. јан 2001.',
'6:12, 5 јан 2001',
*/
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
'hh:mm d. month y. time' => 'H:i',
'hh:mm d month y time' => 'H:i',
'hh:mm dd.mm.yyyy time' => 'H:i',
'hh:mm d.m.yyyy time' => 'H:i',
'hh:mm d. mon y. time' => 'H:i',
'hh:mm d mon y time' => 'H:i',
'h:mm d. month y. time' => 'G:i',
'h:mm d month y time' => 'G:i',
'h:mm dd.mm.yyyy time' => 'G:i',
'h:mm d.m.yyyy time' => 'G:i',
'h:mm d. mon y. time' => 'G:i',
'h:mm d mon y time' => 'G:i',
'hh:mm d. month y. date' => 'j. F Y.',
'hh:mm d month y date' => 'j F Y',
'hh:mm dd.mm.yyyy date' => 'd.m.Y',
'hh:mm d.m.yyyy date' => 'j.n.Y',
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
'hh:mm d. mon y. date' => 'j. M Y.',
'hh:mm d mon y date' => 'j M Y',
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
'h:mm d. month y. date' => 'j. F Y.',
'h:mm d month y date' => 'j F Y',
'h:mm dd.mm.yyyy date' => 'd.m.Y',
'h:mm d.m.yyyy date' => 'j.n.Y',
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
'h:mm d. mon y. date' => 'j. M Y.',
'h:mm d mon y date' => 'j M Y',
'hh:mm d. month y. both' => 'H:i, j. F Y.',
'hh:mm d month y both' => 'H:i, j F Y',
'hh:mm dd.mm.yyyy both' => 'H:i, d.m.Y',
'hh:mm d.m.yyyy both' => 'H:i, j.n.Y',
'hh:mm d. mon y. both' => 'H:i, j. M Y.',
'hh:mm d mon y both' => 'H:i, j M Y',
'h:mm d. month y. both' => 'G:i, j. F Y.',
'h:mm d month y both' => 'G:i, j F Y',
'h:mm dd.mm.yyyy both' => 'G:i, d.m.Y',
'h:mm d.m.yyyy both' => 'G:i, j.n.Y',
'h:mm d. mon y. both' => 'G:i, j. M Y.',
'h:mm d mon y both' => 'G:i, j M Y',
];
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
/* NOT USED IN STABLE VERSION */
/** @phpcs-require-sorted-array */
$magicWords = [
'anchorencode' => [ '0', 'КОДИРАЊЕСИДРА', 'КОДИРАЊЕВЕЗЕ', 'КОДИРАЊЕ_ВЕЗЕ', 'ANCHORENCODE' ],
'articlepath' => [ '0', 'ПУТАЊАДОЧЛАНКА', 'ПУТАЊАЧЛАНКА', УТАЊА_ЧЛАНКА', 'ARTICLEPATH' ],
'basepagename' => [ '1', 'НАЗИВОСНОВНЕСТРАНИЦЕ', 'ИМЕОСНОВЕ', МЕ_ОСНОВЕ', 'BASEPAGENAME' ],
'basepagenamee' => [ '1', 'НАЗИВОСНОВНЕСТРАНИЦЕК', 'ИМЕНАОСНОВА', МЕНА_ОСНОВА', 'BASEPAGENAMEE' ],
'contentlanguage' => [ '1', 'ЈЕЗИКСАДРЖИНЕ', 'ЈЕЗИКСАДРЖАЈА', 'ЈЕЗИК_САДРЖАЈА', 'CONTENTLANGUAGE', 'CONTENTLANG' ],
'currentday' => [ '1', 'ТРЕНУТНИДАН', 'ТЕКУЋИДАН', 'ТЕКУЋИ_ДАН', 'CURRENTDAY' ],
'currentday2' => [ '1', 'ТРЕНУТНИДАН2', 'ТЕКУЋИДАН2', 'ТЕКУЋИ_ДАН_2', 'CURRENTDAY2' ],
'currentdayname' => [ '1', 'НАЗИВТРЕНУТНОГДАНА', 'ТРЕНУТНИДАНИМЕ', 'ИМЕТЕКУЋЕГДАНА', МЕ_ТЕКУЋЕГ_ДАНА', 'CURRENTDAYNAME' ],
'currentdow' => [ '1', 'ТРЕНУТНИДУН', 'ТРЕНУТНИДОВ', 'ТЕКУЋИДУН', 'CURRENTDOW' ],
'currenthour' => [ '1', 'ТРЕНУТНИСАТ', 'ТРЕНУТНИЧАС', 'ТЕКУЋИСАТ', 'ТЕКУЋИЧАС', 'ТЕКУЋИ_САТ', 'ТЕКУЋИ_ЧАС', 'CURRENTHOUR' ],
'currentmonth' => [ '1', 'ТРЕНУТНИМЕСЕЦ', 'ТРЕНУТНИМЈЕСЕЦ', 'ТРЕНУТНИ_МЕСЕЦ', 'ТРЕНУТНИ_МЈЕСЕЦ', 'ТЕКУЋИМЕСЕЦ', 'ТЕКУЋИМЈЕСЕЦ', 'ТЕКУЋИ_МЕСЕЦ', 'ТЕКУЋИ_МЈЕСЕЦ', 'CURRENTMONTH', 'CURRENTMONTH2' ],
'currentmonth1' => [ '1', 'ТРЕНУТНИМЕСЕЦ1', 'ТРЕНУТНИМЈЕСЕЦ1', 'ТРЕНУТНИ_МЕСЕЦ1', 'ТРЕНУТНИ_МЈЕСЕЦ1', 'ТЕКУЋИМЕСЕЦ1', 'ТЕКУЋИМЈЕСЕЦ1', 'ТЕКУЋИ_МЕСЕЦ1', 'ТЕКУЋИ_МЈЕСЕЦ1', 'CURRENTMONTH1' ],
'currentmonthabbrev' => [ '1', 'ТРЕНУТНИМЕСЕЦСКР', 'ТРЕНУТНИМЈЕСЕЦСКР', 'ТЕКУЋИМЕСЕЦСКР', 'ТЕКУЋИМЈЕСЕЦСКР', 'ТЕКУЋИ_МЕСЕЦ_СКР', 'ТЕКУЋИ_МЈЕСЕЦ_СКР', 'CURRENTMONTHABBREV' ],
'currentmonthname' => [ '1', 'НАЗИВТРЕНУТНОГМЕСЕЦА', 'НАЗИВТРЕНУТНОГМЈЕСЕЦА', 'ТРЕНУТНИМЕСЕЦИМЕ', 'ТРЕНУТНИМЈЕСЕЦИМЕ', 'ИМЕТЕКУЋЕГМЕСЕЦА', 'ИМЕТЕКУЋЕГМЈЕСЕЦА', МЕ_ТЕКУЋЕГ_МЕСЕЦА', МЕ_ТЕКУЋЕГ_МЈЕСЕЦА', 'CURRENTMONTHNAME' ],
'currentmonthnamegen' => [ '1', 'ТРЕНУТНИМЕСЕЦГЕН', 'ТРЕНУТНИМЈЕСЕЦГЕН', 'ТЕКУЋИМЕСЕЦГЕН', 'ТЕКУЋИМЈЕСЕЦГЕН', 'ТЕКУЋИ_МЕСЕЦ_ГЕН', 'ТЕКУЋИ_МЈЕСЕЦ_ГЕН', 'CURRENTMONTHNAMEGEN' ],
'currenttime' => [ '1', 'ТРЕНУТНОВРЕМЕ', 'ТРЕНУТНОВРИЈЕМЕ', 'ТЕКУЋЕВРЕМЕ', 'ТЕКУЋЕВРИЈЕМЕ', 'ТЕКУЋЕ_ВРЕМЕ', 'ТЕКУЋЕ_ВРИЈЕМЕ', 'CURRENTTIME' ],
'currenttimestamp' => [ '1', 'ТРЕНУТНАВРЕМЕНСКАОЗНАКА', 'ТРЕНУТНИВРЕМЕНСКИПЕЧАТ', 'ТЕКУЋИОТИСАКВРЕМЕНА', 'ТЕКУЋИ_ОТИСАК_ВРЕМЕНА', 'CURRENTTIMESTAMP' ],
'currentversion' => [ '1', 'ТРЕНУТНАВЕРЗИЈА', 'ТРЕНУТНОИЗДАЊЕ', 'ТЕКУЋАВЕРЗИЈА', 'ТЕКУЋЕИЗДАЊЕ', 'ТЕКУЋЕЗДАЊЕ', 'CURRENTVERSION' ],
'currentweek' => [ '1', 'ТРЕНУТНАСЕДМИЦА', 'ТРЕНУТНАНЕДЕЉА', 'ТРЕНУТНАНЕДЈЕЉА', 'ТРЕНУТНА_НЕДЕЉА', 'ТРЕНУТНА_НЕДЈЕЉА', 'ТЕКУЋАНЕДЕЉА', 'ТЕКУЋАНЕДЈЕЉА', 'ТЕКУЋА_НЕДЕЉА', 'ТЕКУЋА_НЕДЈЕЉА', 'CURRENTWEEK' ],
'currentyear' => [ '1', 'ТРЕНУТНАГОДИНА', 'ТЕКУЋАГОДИНА', 'ТЕКУЋАОДИНА', 'CURRENTYEAR' ],
'defaultsort' => [ '1', 'ПОДРАЗУМЕВАНОСОРТИРАЊЕ:', 'ПОДРАЗУМИЈЕВАНОСОРТИРАЊЕ:', 'ПОДРАЗУМЕВАНИКЉУЧЗАСОРТИРАЊЕ:', 'ПОДРАЗУМИЈЕВАНИКЉУЧЗАСОРТИРАЊЕ:', 'ПОДРАЗУМЕВАНОСОРТИРАЊЕКАТЕГОРИЈЕ:', 'ПОДРАЗУМИЈЕВАНОСОРТИРАЊЕКАТЕГОРИЈЕ:', 'ПОДРАЗМЕВАНОСОРТИРАЊЕКАТЕГОРИЈЕ:', 'ПОДРАЗМИЈЕВАНОСОРТИРАЊЕКАТЕГОРИЈЕ:', 'DEFAULTSORT:', 'СОРТИРАЊЕ:' ],
'defaultsort_noerror' => [ '0', 'безгрешке', 'без_грешке', 'noerror' ],
'defaultsort_noreplace' => [ '0', 'беззамене', 'беззамјене', 'без_замене', 'без_замјене', 'noreplace' ],
'directionmark' => [ '1', 'ОЗНАКАЗАСМЕР', 'ОЗНАКАЗАСМЈЕР', 'СМЕРОЗНАКЕ', 'СМЈЕРОЗНАКЕ', 'СМЕР _ОЗНАКЕ', 'СМЈЕР _ОЗНАКЕ', 'СМЕР_ОЗНАКЕ', 'СМЈЕР_ОЗНАКЕ', 'DIRECTIONMARK', 'DIRMARK' ],
'displaytitle' => [ '1', 'НАСЛОВЗАПРИКАЗ', 'НАЗИВЗАПРИКАЗ', 'НАЗИВПРИКАЗА', 'НАЗИВРИКАЗА', 'DISPLAYTITLE' ],
'filepath' => [ '0', 'ПУТАЊАДОДАТОТЕКЕ', 'ПУТАЊАДАТОТЕКЕ', УТАЊААТОТЕКЕ', 'FILEPATH:' ],
'forcetoc' => [ '0', '__ФОРСИРАЈСАДРЖАЈ__', '__ФОРСИРАНИСАДРЖАЈ__', '__ФОРСИРАНИ_САДРЖАЈ__', '__ПРИМОРАНИСАДРЖАЈ__', '__ПРИМОРАНИ_САДРЖАЈ__', '__FORCETOC__' ],
'formatdate' => [ '0', 'форматдатума', ормат_датума', 'formatdate', 'dateformat' ],
'fullpagename' => [ '1', 'ЦЕОНАЗИВСТРАНИЦЕ', 'ЦИОНАЗИВСТРАНИЦЕ', 'ЦЕЛИНАЗИВСТРАНИЦЕ', 'ЦИЈЕЛИНАЗИВСТРАНИЦЕ', 'ПУНОИМЕСТРАНИЦЕ', 'ПУНОИМЕСТРАНЕ', УНОМЕ_СТРАНИЦЕ', УНОМЕ_СТРАНЕ', 'FULLPAGENAME' ],
'fullpagenamee' => [ '1', 'ЦЕОНАЗИВСТРАНИЦЕК', 'ЦИОНАЗИВСТРАНИЦЕК', 'ЦЕЛИНАЗИВСТРАНИЦЕК', 'ЦИЈЕЛИНАЗИВСТРАНИЦЕК', 'ПУНАИМЕНАСТРАНИЦА', 'ПУНАИМЕНАСТРАНА', УНАМЕНА_СТРАНИЦА', УНАМЕНА_СТРАНА', 'FULLPAGENAMEE' ],
'fullurl' => [ '0', 'ЦЕЛААДРЕСА:', 'ЦИЈЕЛААДРЕСА:', 'ЦЕОУРЛ:', 'ЦИОУРЛ:', 'ЦЕЛИУРЛ:', 'ЦИЈЕЛИУРЛ:', ЕОURL:', 'ЦИОURL:', ЕЛИURL:', 'ЦИЈЕЛИURL:', 'ПУНУРЛ:', 'ЦЕЛААДРЕСА', 'ЦИЈЕЛААДРЕСА', ЕЛА_АДРЕСА', 'ЦИЈЕЛА_АДРЕСА', 'FULLURL:' ],
'fullurle' => [ '0', 'ЦЕЛААДРЕСАК:', 'ЦИЈЕЛААДРЕСАК:', 'ЦЕОУРЛК:', 'ЦИОУРЛК:', 'ЦЕЛИУРЛК:', 'ЦИЈЕЛИУРЛК:', ЕОURLК:', 'ЦИОURLК:', ЕЛИURLК:', 'ЦИЈЕЛИURLК:', 'ПУНУРЛЕ:', 'ЦЕЛЕАДРЕСЕ', 'ЦИЈЕЛЕАДРЕСЕ', ЕЛЕ_АДРЕСЕ', 'ЦИЈЕЛЕ_АДРЕСЕ', 'FULLURLE:' ],
'gender' => [ '0', 'РОД:', 'ЛИЦЕ:', 'GENDER:' ],
'grammar' => [ '0', 'ГРАМАТИКА:', 'GRAMMAR:' ],
'hiddencat' => [ '1', '__САКРИВЕНАКАТ__', '__САКРИВЕНАКАТЕГОРИЈА__', '__СКРИВЕНАКАТ__', '__СКРИВЕНАКАТЕГОРИЈА__', '__HIDDENCAT__' ],
'img_alt' => [ '1', 'алт=$1', 'alt=$1' ],
'img_baseline' => [ '1', 'основа', 'baseline' ],
'img_border' => [ '1', 'ивица', 'оивичено', 'border' ],
'img_bottom' => [ '1', 'дно', 'bottom' ],
'img_center' => [ '1', 'центар', 'ц', 'c', 'center', 'centre' ],
'img_framed' => [ '1', 'оквир', 'рам', 'framed', 'enframed', 'frame' ],
'img_frameless' => [ '1', 'безоквира', 'без_оквира', 'безрама', 'без_рама', 'frameless' ],
'img_left' => [ '1', 'лево', 'лијево', 'л', 'left' ],
'img_link' => [ '1', 'веза=$1', 'линк=$1', 'link=$1' ],
'img_manualthumb' => [ '1', 'мини=$1', 'умањено=$1', 'thumbnail=$1', 'thumb=$1' ],
'img_middle' => [ '1', 'средина', 'middle' ],
'img_none' => [ '1', 'без', 'н', 'none' ],
'img_page' => [ '1', 'страница=$1', 'страна=$1', 'страница_$1', 'страна_$1', 'page=$1', 'page $1' ],
'img_right' => [ '1', 'десно', 'д', 'right' ],
'img_sub' => [ '1', 'под', 'sub' ],
'img_super' => [ '1', 'супер', 'super', 'sup' ],
'img_text_bottom' => [ '1', 'срединатекста', 'срединаекста', 'text-bottom' ],
'img_text_top' => [ '1', 'врхтекста', рхекста', 'text-top' ],
'img_thumbnail' => [ '1', 'мини', 'умањено', 'thumbnail', 'thumb' ],
'img_top' => [ '1', 'врх', 'top' ],
'img_upright' => [ '1', 'усправно', 'усправно=$1', 'усправно_$1', 'upright', 'upright=$1', 'upright $1' ],
'img_width' => [ '1', '$1п', '$1пиксел', '$1p', '$1px' ],
'index' => [ '1', '__ИНДЕКСИРАЈ__', '__ИНДЕКСИРАЊЕ__', '__ИНДЕКС__', '__INDEX__' ],
'int' => [ '0', 'ИНТ:', 'INT:' ],
'language' => [ '0', '#ЈЕЗИК', '#LANGUAGE' ],
'lc' => [ '0', 'ЛЦ:', 'LC:' ],
'lcfirst' => [ '0', 'ЛЦПРВИ:', 'LCFIRST:' ],
'localday' => [ '1', 'ЛОКАЛНИДАН', ОКАЛНИ_ДАН', 'LOCALDAY' ],
'localday2' => [ '1', ОКАЛНИДАН2', ОКАЛНИ_ДАН2', 'LOCALDAY2' ],
'localdayname' => [ '1', 'НАЗИВЛОКАЛНОГДАНА', 'ИМЕЛОКАЛНОГДАНА', МЕОКАЛНОГ_ДАНА', 'LOCALDAYNAME' ],
'localdow' => [ '1', 'ЛОКАЛНИДУН', 'LOCALDOW' ],
'localhour' => [ '1', 'ЛОКАЛНИСАТ', 'ЛОКАЛНИЧАС', ОКАЛНИ_САТ', ОКАЛНИ_ЧАС', 'LOCALHOUR' ],
'localmonth' => [ '1', 'ЛОКАЛНИМЕСЕЦ', 'ЛОКАЛНИМЈЕСЕЦ', ОКАЛНИ_МЕСЕЦ', ОКАЛНИ_МЈЕСЕЦ', 'LOCALMONTH', 'LOCALMONTH2' ],
'localmonth1' => [ '1', ОКАЛНИМЕСЕЦ2', ОКАЛНИМЈЕСЕЦ2', ОКАЛНИ_МЕСЕЦ2', ОКАЛНИ_МЈЕСЕЦ2', 'LOCALMONTH1' ],
'localmonthabbrev' => [ '1', 'ЛОКАЛНИМЕСЕЦСКР', 'ЛОКАЛНИМЈЕСЕЦСКР', ОКАЛНИ_МЕСЕЦ_СКР', ОКАЛНИ_МЈЕСЕЦ_СКР', 'LOCALMONTHABBREV' ],
'localmonthname' => [ '1', 'НАЗИВЛОКАЛНОГМЕСЕЦА', 'НАЗИВЛОКАЛНОГМЈЕСЕЦА', 'ИМЕЛОКАЛНОГМЕСЕЦА', 'ИМЕЛОКАЛНОГМЈЕСЕЦА', МЕОКАЛНОГ_МЕСЕЦА', МЕОКАЛНОГ_МЈЕСЕЦА', 'LOCALMONTHNAME' ],
'localmonthnamegen' => [ '1', 'ЛОКАЛНИМЕСЕЦГЕН', 'ЛОКАЛНИМЈЕСЕЦГЕН', ОКАЛНИ_МЕСЕЦ_ГЕН', ОКАЛНИ_МЈЕСЕЦ_ГЕН', 'LOCALMONTHNAMEGEN' ],
'localtime' => [ '1', 'ЛОКАЛНОВРЕМЕ', 'ЛОКАЛНОВРИЈЕМЕ', ОКАЛНО_ВРЕМЕ', ОКАЛНО_ВРИЈЕМЕ', 'LOCALTIME' ],
'localtimestamp' => [ '1', 'ЛОКАЛНАВРЕМЕНСКАОЗНАКА', 'ЛОКАЛНИВРЕМЕНСКИПЕЧАТ', 'ОТИСАКВРЕМЕНА', 'ОТИСАК_ВРЕМЕНА', 'LOCALTIMESTAMP' ],
'localurl' => [ '0', 'ЛОКАЛНААДРЕСА:', 'ЛОКАЛНИУРЛ:', ОКАЛНИURL:', ОКАЛНА_АДРЕСА:', 'LOCALURL:' ],
'localurle' => [ '0', 'ЛОКАЛНААДРЕСАК:', 'ЛОКАЛНИУРЛК:', ОКАЛНИURLК:', 'ЛОКАЛНЕАДРЕСЕ:', ОКАЛНЕ_АДРЕСЕ:', 'LOCALURLE:' ],
'localweek' => [ '1', 'ЛОКАЛНАСЕДМИЦА', 'ЛОКАЛНАНЕДЕЉА', 'ЛОКАЛНАНЕДЈЕЉА', ОКАЛНА_НЕДЕЉА', ОКАЛНА_НЕДЈЕЉА', 'LOCALWEEK' ],
'localyear' => [ '1', 'ЛОКАЛНАГОДИНА', ОКАЛНАОДИНА', 'LOCALYEAR' ],
'msg' => [ '0', 'ПОР:', 'MSG:' ],
'msgnw' => [ '0', 'НВПОР:', 'MSGNW:' ],
'namespace' => [ '1', 'ИМЕНСКИПРОСТОР', МЕНСКИ_ПРОСТОР', 'NAMESPACE' ],
'namespacee' => [ '1', 'ИМЕНСКИПРОСТОРК', 'ИМЕНСКИПРОСТОРИ', МЕНСКИ_ПРОСТОРИ', 'NAMESPACEE' ],
'namespacenumber' => [ '1', 'БРОЈИМЕНСКОГПРОСТОРА', 'NAMESPACENUMBER' ],
'newsectionlink' => [ '1', '__ЛИНКЗАНОВИОДЕЉАК__', '__ЛИНКЗАНОВИОДЈЕЉАК__', '__ВЕЗАЗАНОВИОДЕЉАК__', '__ВЕЗАЗАНОВИОДЈЕЉАК__', '__НОВАВЕЗАОДЕЉКА__', '__НОВАВЕЗАОДЈЕЉКА__', '__НОВА_ВЕЗА_ОДЕЉКА__', '__НОВА_ВЕЗА_ОДЈЕЉКА__', '__NEWSECTIONLINK__' ],
'nocontentconvert' => [ '0', '__БЕЗКС__', '__БЕЗЦЦ__', '__NOCONTENTCONVERT__', '__NOCC__' ],
'noeditsection' => [ '0', '__БЕЗИЗМЕНА__', '__БЕЗЗМЕНА__', '__БЕЗИЗМЈЕНА__', '__БЕЗЗМЈЕНА__', '__NOEDITSECTION__' ],
'nogallery' => [ '0', '__БЕЗГАЛЕРИЈЕ__', '__БЕЗАЛЕРИЈЕ__', '__NOGALLERY__' ],
'noindex' => [ '1', '__НЕИНДЕКСИРАЈ__', '__БЕЗИНДЕКСИРАЊА__', '__БЕЗИНДЕКСА__', '__БЕЗНДЕКСА__', '__NOINDEX__' ],
'nonewsectionlink' => [ '1', '__БЕЗЛИНКАЗАНОВИОДЕЉАК__', '__БЕЗЛИНКАЗАНОВИОДЈЕЉАК__', '__БЕЗВЕЗЕЗАНОВИОДЕЉАК__', '__БЕЗВЕЗЕЗАНОВИОДЈЕЉАК__', '__БЕЗНОВЕВЕЗЕОДЕЉКА__', '__БЕЗНОВЕВЕЗЕОДЈЕЉКА__', '__БЕЗ_НОВЕ_ВЕЗЕ_ОДЕЉКА__', '__БЕЗ_НОВЕ_ВЕЗЕ_ОДЈЕЉКА__', '__NONEWSECTIONLINK__' ],
'notitleconvert' => [ '0', '__БЕЗКН__', '__NOTITLECONVERT__', '__NOTC__' ],
'notoc' => [ '0', '__БЕЗСАДРЖАЈА__', '__БЕЗ_САДРЖАЈА__', '__NOTOC__' ],
'ns' => [ '0', 'ИП:', 'NS:' ],
'numberingroup' => [ '1', 'БРОЈУГРУПИ', РОЈ_УРУПИ', 'NUMBERINGROUP', 'NUMINGROUP' ],
'numberofactiveusers' => [ '1', 'БРОЈАКТИВНИХКОРИСНИКА', РОЈ_АКТИВНИХ_КОРИСНИКА', 'NUMBEROFACTIVEUSERS' ],
'numberofadmins' => [ '1', 'БРОЈАДМИНА', 'БРОЈАДМИНИСТРАТОРА', РОЈ_АДМИНА', 'NUMBEROFADMINS' ],
'numberofarticles' => [ '1', 'БРОЈЧЛАНАКА', РОЈ_ЧЛАНАКА', 'NUMBEROFARTICLES' ],
'numberofedits' => [ '1', 'БРОЈИЗМЕНА', 'БРОЈИЗМЈЕНА', РОЈЗМЕНА', РОЈЗМЈЕНА', 'NUMBEROFEDITS' ],
'numberoffiles' => [ '1', 'БРОЈДАТОТЕКА', РОЈАТОТЕКА', 'БРОЈФАЈЛОВА', РОЈАЈЛОВА', 'NUMBEROFFILES' ],
'numberofpages' => [ '1', 'БРОЈСТРАНИЦА', РОЈ_СТРАНИЦА', 'NUMBEROFPAGES' ],
'numberofusers' => [ '1', 'БРОЈКОРИСНИКА', РОЈ_КОРИСНИКА', 'NUMBEROFUSERS' ],
'padleft' => [ '0', 'ПОПУНИЛЕВО', 'ПОПУНИЛИЈЕВО', 'ПОПУНАЛЕВО', 'ПОПУНАЛИЈЕВО', 'ПОРАВНАЈЛЕВО', 'ПОРАВНАЈЛИЈЕВО', ОРАВНАЈЕВО', ОРАВНАЈ_ЛИЈЕВО', 'ПОРАВНАЈУЛЕВО', ОРАВНАЈ_УЛЕВО', 'ПОРАВНАЈУЛИЈЕВО', ОРАВНАЈ_УЛИЈЕВО', 'PADLEFT' ],
'padright' => [ '0', 'ПОПУНИДЕСНО', 'ПОПУНАДЕСНО', 'ПОРАВНАЈДЕСНО', ОРАВНАЈЕСНО', 'ПОРАВНАЈУДЕСНО', ОРАВНАЈ_УДЕСНО', 'PADRIGHT' ],
'pageid' => [ '0', 'ИДСТРАНИЦЕ', 'IDСТРАНИЦЕ', 'БРОЈСТРАНИЦЕ', 'PAGEID' ],
'pagename' => [ '1', 'НАЗИВСТРАНИЦЕ', 'ИМЕСТРАНИЦЕ', МЕ_СТРАНИЦЕ', 'СТРАНИЦА', 'PAGENAME' ],
'pagenamee' => [ '1', 'НАЗИВСТРАНИЦЕК', 'ИМЕНАСТРАНИЦА', МЕНА_СТРАНИЦА', 'СТРАНИЦЕ', 'PAGENAMEE' ],
'pagesincategory' => [ '1', 'СТРАНИЦАУКАТЕГОРИЈИ', 'СТРАНАУКАТЕГОРИЈИ', 'СТРАНИЦА_У_КАТЕГОРИЈИ', 'СТРАНА_У_КАТЕГОРИЈИ', 'PAGESINCATEGORY', 'PAGESINCAT' ],
'pagesincategory_all' => [ '0', 'све', 'all' ],
'pagesincategory_files' => [ '0', 'датотеке', 'files' ],
'pagesinnamespace' => [ '1', 'СТРАНИЦАУИМЕНСКОМПРОСТОРУ', 'СТРАНАУИМЕНСКОМПРОСТОРУ', 'СТРАНИЦА_УМЕНСКОМРОСТОРУ', 'СТРАНА_УМЕНСКОМРОСТОРУ', 'PAGESINNAMESPACE:', 'PAGESINNS:' ],
'pagesize' => [ '1', 'ВЕЛИЧИНАСТРАНИЦЕ', 'ВЕЛИЧИНАСТРАНЕ', 'ВЕЛИЧИНА_СТРАНИЦЕ', 'ВЕЛИЧИНА_СТРАНЕ', 'PAGESIZE' ],
'plural' => [ '0', 'МНОЖИНА:', 'PLURAL:' ],
'protectionlevel' => [ '1', 'СТЕПЕНЗАШТИТЕ', 'НИВОЗАШТИТЕ', 'НИВО_ЗАШТИТЕ', 'PROTECTIONLEVEL' ],
'raw' => [ '0', 'ЧИСТ:', 'RAW:' ],
'rawsuffix' => [ '1', 'Р', 'R' ],
'redirect' => [ '0', '#Преусмери', '#преусмери', '#ПРЕУСМЕРИ', '#Преусмјери', '#преусмјери', '#ПРЕУСМЈЕРИ', '#redirect', '#REDIRECT' ],
'revisionday' => [ '1', 'ДАНИЗМЕНЕ', 'ДАНИЗМЈЕНЕ', АНЗМЕНЕ', АНЗМЈЕНЕ', 'REVISIONDAY' ],
'revisionday2' => [ '1', АНИЗМЕНЕ2', АНИЗМЈЕНЕ2', АНЗМЕНЕ2', АНЗМЈЕНЕ2', 'REVISIONDAY2' ],
'revisionid' => [ '1', 'ИДИЗМЕНЕ', 'ИДИЗМЈЕНЕ', 'IDИЗМЕНЕ', 'IDИЗМЈЕНЕ', 'ИДРЕВИЗИЈЕ', 'ИД_РЕВИЗИЈЕ', 'ИБ_ИЗМЕНЕ', 'ИБ_ИЗМЈЕНЕ', 'REVISIONID' ],
'revisionmonth' => [ '1', 'МЕСЕЦИЗМЕНЕ', 'МЈЕСЕЦИЗМЈЕНЕ', 'МЕСЕЦ_ИЗМЕНЕ', 'МЈЕСЕЦ_ИЗМЈЕНЕ', 'REVISIONMONTH' ],
'revisionmonth1' => [ '1', 'МЕСЕЦИЗМЕНЕ1', 'МЈЕСЕЦИЗМЈЕНЕ1', 'МЕСЕЦ_ИЗМЕНЕ1', 'МЈЕСЕЦ_ИЗМЈЕНЕ1', 'REVISIONMONTH1' ],
'revisiontimestamp' => [ '1', 'ВРЕМЕНСКАОЗНАКАИЗМЕНЕ', 'ВРЕМЕНСКАОЗНАКАИЗМЈЕНЕ', 'ВРЕМЕНСКИПЕЧАТИЗМЕНЕ', 'ВРЕМЕНСКИПЕЧАТИЗМЈЕНЕ', 'ВРЕМЕИЗМЕНЕ', 'ВРИЈЕМЕИЗМЈЕНЕ', 'ВРЕМЕЗМЕНЕ', 'ВРИЈЕМЕЗМЈЕНЕ', 'REVISIONTIMESTAMP' ],
'revisionuser' => [ '1', 'КОРИСНИКИЗМЕНЕ', 'КОРИСНИКИЗМЈЕНЕ', 'КОРИСНИКЗМЕНЕ', 'КОРИСНИКЗМЈЕНЕ', 'REVISIONUSER' ],
'revisionyear' => [ '1', 'ГОДИНАИЗМЕНЕ', 'ГОДИНАИЗМЈЕНЕ', ОДИНАЗМЕНЕ', ОДИНАЗМЈЕНЕ', 'REVISIONYEAR' ],
'safesubst' => [ '0', 'БЕЗБЕДНАЗАМЕНА', 'БЕЗБЈЕДНАЗАМЈЕНА', ЕЗБЕДНА_ЗАМЕНА', ЕЗБЈЕДНА_ЗАМЈЕНА', 'SAFESUBST:' ],
'scriptpath' => [ '0', 'СКРИПТНАПУТАЊА', 'СКРИПТА', 'СКРИПТ', 'SCRIPTPATH' ],
'server' => [ '0', 'СЕРВЕР', 'SERVER' ],
'servername' => [ '0', 'НАЗИВСЕРВЕРА', 'ИМЕСЕРВЕРА', МЕ_СЕРВЕРА', 'SERVERNAME' ],
'sitename' => [ '1', 'НАЗИВСАЈТА', 'ИМЕСАЈТА', 'SITENAME' ],
'special' => [ '0', 'посебно', 'special' ],
'staticredirect' => [ '1', '__СТАТИЧНОПРЕУСМЕРЕЊЕ__', '__СТАТИЧНОПРЕУСМЈЕРЕЊЕ__', '__СТАТИЧКОПРЕУСМЕРЕЊЕ__', '__СТАТИЧКОПРЕУСМЈЕРЕЊЕ__', 'СТАТИЧКОРЕУСМЕРЕЊЕ', 'СТАТИЧКОРЕУСМЈЕРЕЊЕ', '__STATICREDIRECT__' ],
'stylepath' => [ '0', 'СТИЛСКАПУТАЊА', 'ПУТАЊАСТИЛА', УТАЊА_СТИЛА', 'STYLEPATH' ],
'subjectpagename' => [ '1', 'НАЗИВЧЛАНКА', 'ИМЕЧЛАНКА', МЕ_ЧЛАНКА', 'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ],
'subjectpagenamee' => [ '1', 'НАЗИВЧЛАНКАК', 'ИМЕНАЧЛАНАКА', МЕНА_ЧЛАНАКА', 'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ],
'subjectspace' => [ '1', 'ПРОСТОРЧЛАНАКА', 'ИМЕНСКИПРОСТОРЧЛАНКА', МЕНСКИ_ПРОСТОР_ЧЛАНКА', 'SUBJECTSPACE', 'ARTICLESPACE' ],
'subjectspacee' => [ '1', 'ПРОСТОРЧЛАНАКАК', 'ИМЕНСКИПРОСТОРЧЛАНАКА', МЕНСКИ_ПРОСТОР_ЧЛАНАКА', 'SUBJECTSPACEE', 'ARTICLESPACEE' ],
'subpagename' => [ '1', 'НАЗИВПОДСТРАНИЦЕ', 'ИМЕПОДСТРАНИЦЕ', 'ИМЕПОДСТРАНЕ', МЕОДСТРАНИЦЕ', МЕОДСТРАНЕ', 'SUBPAGENAME' ],
'subpagenamee' => [ '1', 'НАЗИВПОДСТРАНИЦЕК', 'ИМЕНАПОДСТРАНИЦА', 'ИМЕНАПОДСТРАНА', МЕНАОДСТРАНИЦА', МЕНАОДСТРАНА', 'SUBPAGENAMEE' ],
'subst' => [ '0', 'ЗАМЕНИ:', 'ЗАМИЈЕНИ:', 'ЗАМЕНА:', 'ЗАМЈЕНА:', 'СУБСТ', 'SUBST:' ],
'tag' => [ '0', 'ознака', 'tag' ],
'talkpagename' => [ '1', 'НАЗИВСТРАНИЦЕЗАРАЗГОВОР', 'ИМЕРАЗГОВОРА', МЕ_РАЗГОВОРА', 'TALKPAGENAME' ],
'talkpagenamee' => [ '1', 'НАЗИВСТРАНИЦЕЗАРАЗГОВОРК', 'ИМЕНАРАЗГОВОРА', МЕНА_РАЗГОВОРА', 'TALKPAGENAMEE' ],
'talkspace' => [ '1', 'ПРОСТОРРАЗГОВОРА', 'РАЗГОВОР', 'TALKSPACE' ],
'talkspacee' => [ '1', 'ПРОСТОРРАЗГОВОРАК', 'РАЗГОВОРК', 'РАЗГОВОРИ', 'TALKSPACEE' ],
'toc' => [ '0', '__САДРЖАЈ__', '__TOC__' ],
'uc' => [ '0', 'УЦ:', 'UC:' ],
'ucfirst' => [ '0', 'УЦПРВИ:', 'UCFIRST:' ],
'urlencode' => [ '0', 'КОДИРАЊЕАДРЕСЕ', 'КОДИРАЊЕУРЛА', 'КОДИРАЊЕУРЛ-А', 'КОДИРАЊЕURLА', 'КОДИРАЊЕURL-А', 'КОДИРАЊЕ_АДРЕСЕ', 'URLENCODE:' ],
'url_path' => [ '0', 'ПУТАЊА', 'PATH' ],
'url_query' => [ '0', 'УПИТ', 'РЕДОСЛЕД', 'РЕДОСЛИЈЕД', 'РЕДОСЉЕД', 'QUERY' ],
'url_wiki' => [ '0', 'ВИКИ', 'WIKI' ],
];
$separatorTransformTable = [ ',' => '.', '.' => ',' ];