2006-02-08 23:47:17 +00:00
|
|
|
<?php
|
2012-06-05 22:58:54 +00:00
|
|
|
/** Slovenian (slovenščina)
|
2006-07-26 07:15:39 +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
|
2006-07-26 07:15:39 +00:00
|
|
|
*
|
2010-03-22 22:16:08 +00:00
|
|
|
* @author Dbc334
|
2012-09-25 19:39:42 +00:00
|
|
|
* @author Eleassar
|
2010-02-11 19:52:38 +00:00
|
|
|
* @author Freakolowsky
|
2012-03-16 20:39:04 +00:00
|
|
|
* @author Irena Plahuta
|
2013-07-25 19:25:15 +00:00
|
|
|
* @author Matej1234
|
2010-03-14 19:52:57 +00:00
|
|
|
* @author McDutchie
|
2013-06-03 11:49:40 +00:00
|
|
|
* @author Nemo bis
|
2009-01-14 21:24:41 +00:00
|
|
|
* @author Smihael
|
2013-03-08 21:47:00 +00:00
|
|
|
* @author Vadgt
|
2007-11-28 09:50:01 +00:00
|
|
|
* @author XJamRastafire
|
2009-02-24 19:47:09 +00:00
|
|
|
* @author Yerpo
|
2007-11-28 09:50:01 +00:00
|
|
|
* @author romanm
|
2009-01-04 11:56:14 +00:00
|
|
|
* @author sl.wikipedia.org administrators
|
2006-07-26 07:15:39 +00:00
|
|
|
*/
|
2006-02-08 23:47:17 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceNames = [
|
2009-03-26 08:41:01 +00:00
|
|
|
NS_MEDIA => 'Datoteka',
|
|
|
|
|
NS_SPECIAL => 'Posebno',
|
|
|
|
|
NS_TALK => 'Pogovor',
|
|
|
|
|
NS_USER => 'Uporabnik',
|
|
|
|
|
NS_USER_TALK => 'Uporabniški_pogovor',
|
|
|
|
|
NS_PROJECT_TALK => 'Pogovor_{{grammar:mestnik|$1}}',
|
|
|
|
|
NS_FILE => 'Slika',
|
|
|
|
|
NS_FILE_TALK => 'Pogovor_o_sliki',
|
|
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'Pogovor_o_MediaWiki',
|
|
|
|
|
NS_TEMPLATE => 'Predloga',
|
|
|
|
|
NS_TEMPLATE_TALK => 'Pogovor_o_predlogi',
|
|
|
|
|
NS_HELP => 'Pomoč',
|
|
|
|
|
NS_HELP_TALK => 'Pogovor_o_pomoči',
|
|
|
|
|
NS_CATEGORY => 'Kategorija',
|
|
|
|
|
NS_CATEGORY_TALK => 'Pogovor_o_kategoriji',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2006-07-26 07:15:39 +00:00
|
|
|
|
2020-10-30 08:59:17 +00:00
|
|
|
/** @phpcs-require-sorted-array */
|
2016-02-17 09:09:32 +00:00
|
|
|
$specialPageAliases = [
|
|
|
|
|
'Activeusers' => [ 'AktivniUporabniki' ],
|
|
|
|
|
'Allmessages' => [ 'VsaSporočila' ],
|
|
|
|
|
'Allpages' => [ 'VseStrani' ],
|
|
|
|
|
'Ancientpages' => [ 'StarodavneStrani' ],
|
|
|
|
|
'Blankpage' => [ 'PraznaStran' ],
|
|
|
|
|
'Block' => [ 'Blokiraj', 'BlokirajIP', 'BlokirajUporabnika' ],
|
|
|
|
|
'Booksources' => [ 'ViriKnjig' ],
|
|
|
|
|
'BrokenRedirects' => [ 'PretrganePreusmeritve' ],
|
|
|
|
|
'Categories' => [ 'Kategorije' ],
|
|
|
|
|
'ChangePassword' => [ 'SpremeniGeslo', 'PonastaviGeslo' ],
|
|
|
|
|
'Contributions' => [ 'Prispevki' ],
|
|
|
|
|
'CreateAccount' => [ 'Registracija' ],
|
|
|
|
|
'DeletedContributions' => [ 'IzbrisaniPrispevki' ],
|
|
|
|
|
'DoubleRedirects' => [ 'DvojnePreusmeritve' ],
|
|
|
|
|
'Export' => [ 'Izvozi' ],
|
|
|
|
|
'Fewestrevisions' => [ 'NajmanjRedakcij' ],
|
|
|
|
|
'Filepath' => [ 'PotDatoteke' ],
|
|
|
|
|
'Import' => [ 'Uvoz' ],
|
|
|
|
|
'Listadmins' => [ 'SeznamAdministratorjev' ],
|
|
|
|
|
'Listbots' => [ 'SeznamBotov' ],
|
|
|
|
|
'Listfiles' => [ 'SeznamDatotek', 'SeznamSlik' ],
|
|
|
|
|
'Listgrouprights' => [ 'SeznamPravicSkupin' ],
|
|
|
|
|
'Listusers' => [ 'SeznamUporabnikov' ],
|
|
|
|
|
'Log' => [ 'Dnevnik', 'Dnevniki' ],
|
|
|
|
|
'Lonelypages' => [ 'OsiroteleStrani' ],
|
|
|
|
|
'Longpages' => [ 'DolgeStrani' ],
|
|
|
|
|
'MergeHistory' => [ 'ZdružiZgodovino' ],
|
|
|
|
|
'MIMEsearch' => [ 'IskanjeMIME' ],
|
|
|
|
|
'Mostcategories' => [ 'NajvečKategorij' ],
|
|
|
|
|
'Mostimages' => [ 'NajboljPovezaneDatoteke' ],
|
|
|
|
|
'Mostlinked' => [ 'NajboljPovezaneStrani' ],
|
|
|
|
|
'Mostlinkedcategories' => [ 'NajboljPovezaneKategorije' ],
|
|
|
|
|
'Mostlinkedtemplates' => [ 'NajboljPovezanePredloge' ],
|
|
|
|
|
'Mostrevisions' => [ 'NajvečRedakcij' ],
|
|
|
|
|
'Movepage' => [ 'PrestaviStran', 'PremakniStran' ],
|
|
|
|
|
'Mycontributions' => [ 'MojiPrispevki' ],
|
|
|
|
|
'Mypage' => [ 'MojaStran' ],
|
|
|
|
|
'Mytalk' => [ 'MojPogovor' ],
|
|
|
|
|
'Newimages' => [ 'NoveDatoteke', 'NoveSlike' ],
|
|
|
|
|
'Newpages' => [ 'NoveStrani' ],
|
|
|
|
|
'Preferences' => [ 'Nastavitve' ],
|
|
|
|
|
'Protectedpages' => [ 'ZaščiteneStrani' ],
|
|
|
|
|
'Protectedtitles' => [ 'ZaščiteniNaslovi' ],
|
|
|
|
|
'Randompage' => [ 'Naključno', 'NaključnaStran' ],
|
|
|
|
|
'Recentchanges' => [ 'ZadnjeSpremembe' ],
|
|
|
|
|
'Search' => [ 'Iskanje' ],
|
|
|
|
|
'Shortpages' => [ 'KratkeStrani' ],
|
|
|
|
|
'Specialpages' => [ 'PosebneStrani' ],
|
|
|
|
|
'Statistics' => [ 'Statistika' ],
|
|
|
|
|
'Unblock' => [ 'Odblokiraj' ],
|
|
|
|
|
'Uncategorizedcategories' => [ 'NekategoriziraneKategorije' ],
|
|
|
|
|
'Uncategorizedimages' => [ 'NekategoriziraneDatoteke', 'NekategoriziraneSlike' ],
|
|
|
|
|
'Uncategorizedpages' => [ 'NekategoriziraneStrani' ],
|
|
|
|
|
'Uncategorizedtemplates' => [ 'NekategoriziranePredloge' ],
|
|
|
|
|
'Undelete' => [ 'Obnovi' ],
|
|
|
|
|
'Unusedcategories' => [ 'NeuporabljeneKategorije' ],
|
|
|
|
|
'Unusedimages' => [ 'NeuporabljeneDatoteke', 'NeuporabljeneSlike' ],
|
|
|
|
|
'Unwatchedpages' => [ 'NespremljaneStrani' ],
|
|
|
|
|
'Upload' => [ 'Nalaganje' ],
|
|
|
|
|
'Userlogin' => [ 'Prijava' ],
|
|
|
|
|
'Userlogout' => [ 'Odjava' ],
|
|
|
|
|
'Version' => [ 'Različica', 'Verzija' ],
|
|
|
|
|
'Wantedcategories' => [ 'ŽeleneKategorije' ],
|
|
|
|
|
'Wantedfiles' => [ 'ŽeleneDatoteke' ],
|
|
|
|
|
'Wantedpages' => [ 'ŽeleneStrani' ],
|
|
|
|
|
'Wantedtemplates' => [ 'ŽelenePredloge' ],
|
|
|
|
|
'Watchlist' => [ 'SpisekNadzorov' ],
|
|
|
|
|
'Whatlinkshere' => [ 'KajSePovezujeSem' ],
|
|
|
|
|
'Withoutinterwiki' => [ 'BrezInterwikijev' ],
|
|
|
|
|
];
|
2009-03-26 08:41:01 +00:00
|
|
|
|
2021-03-03 17:33:55 +00:00
|
|
|
/** @phpcs-require-sorted-array */
|
2016-02-17 09:09:32 +00:00
|
|
|
$magicWords = [
|
|
|
|
|
'forcetoc' => [ '0', '__VSILIKAZALOVSEBINE__', '__FORCETOC__' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'gender' => [ '0', 'SPOL:', 'GENDER:' ],
|
|
|
|
|
'grammar' => [ '0', 'SKLON:', 'GRAMMAR:' ],
|
|
|
|
|
'hiddencat' => [ '1', '__SKRITAKATEGORIJA__', '__HIDDENCAT__' ],
|
|
|
|
|
'img_border' => [ '1', 'obroba', 'border' ],
|
|
|
|
|
'img_bottom' => [ '1', 'dno', 'bottom' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'img_center' => [ '1', 'sredina', 'sredinsko', 'center', 'centre' ],
|
2015-10-21 20:15:04 +00:00
|
|
|
'img_framed' => [ '1', 'okvir', 'okvirjeno', 'frame', 'framed', 'enframed' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'img_frameless' => [ '1', 'brezokvirja', 'frameless' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'img_left' => [ '1', 'levo', 'left' ],
|
|
|
|
|
'img_manualthumb' => [ '1', 'sličica=$1', 'thumbnail=$1', 'thumb=$1' ],
|
|
|
|
|
'img_none' => [ '1', 'brez', 'none' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'img_page' => [ '1', 'stran=$1', 'm_stran $1', 'page=$1', 'page $1' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'img_right' => [ '1', 'desno', 'right' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'img_sub' => [ '1', 'pod', 'podpisano', 'sub' ],
|
|
|
|
|
'img_super' => [ '1', 'nad', 'nadpisano', 'super', 'sup' ],
|
|
|
|
|
'img_text_bottom' => [ '1', 'dno-besedila', 'text-bottom' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'img_text_top' => [ '1', 'vrh-besedila', 'text-top' ],
|
|
|
|
|
'img_thumbnail' => [ '1', 'sličica', 'thumb', 'thumbnail' ],
|
|
|
|
|
'img_top' => [ '1', 'vrh', 'top' ],
|
|
|
|
|
'img_upright' => [ '1', 'zgorajdesno', 'zgorajdesno=$1', 'zgorajdesno $1', 'upright', 'upright=$1', 'upright $1' ],
|
|
|
|
|
'img_width' => [ '1', '$1_pik', '$1px' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'index' => [ '1', '__KAZALO__', '__INDEX__' ],
|
2024-06-04 17:55:10 +00:00
|
|
|
'language' => [ '0', '#JEZIK', '#LANGUAGE' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'noeditsection' => [ '0', '__BREZUREJANJARAZDELKOV__', '__NOEDITSECTION__' ],
|
|
|
|
|
'nogallery' => [ '0', '__BREZGALERIJE__', '__NOGALLERY__' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'noindex' => [ '1', '__BREZKAZALA__', '__NOINDEX__' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'notoc' => [ '0', '__BREZKAZALAVSEBINE__', '__NOTOC__' ],
|
|
|
|
|
'plural' => [ '0', 'MNOZINA:', 'PLURAL:' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'protectionlevel' => [ '1', 'STOPNJAZASCITE', 'PROTECTIONLEVEL' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'redirect' => [ '0', '#PREUSMERITEV', '#REDIRECT' ],
|
|
|
|
|
'server' => [ '0', 'STREZNIK', 'SERVER' ],
|
|
|
|
|
'sitename' => [ '1', 'IMESTRANI', 'SITENAME' ],
|
|
|
|
|
'staticredirect' => [ '1', '__STATICNAPREUSMERITEV__', '__STATICREDIRECT__' ],
|
|
|
|
|
'tag' => [ '0', 'oznaka', 'tag' ],
|
|
|
|
|
'toc' => [ '0', '__POGLAVJE__', '__TOC__' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'url_path' => [ '0', 'POT', 'PATH' ],
|
|
|
|
|
'url_query' => [ '0', 'POIZVEDBA', 'QUERY' ],
|
|
|
|
|
];
|
2009-01-01 23:59:46 +00:00
|
|
|
|
2011-02-21 19:02:55 +00:00
|
|
|
$linkTrail = '/^([a-zčćđžš]+)(.*)$/sDu';
|
2011-02-21 13:33:10 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$datePreferences = [
|
2007-06-25 19:24:40 +00:00
|
|
|
'default',
|
|
|
|
|
'dmy short',
|
|
|
|
|
'dmy full',
|
|
|
|
|
'ISO 8601',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2007-06-25 19:24:40 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The date format to use for generated dates in the user interface.
|
|
|
|
|
* This may be one of the above date preferences, or the special value
|
|
|
|
|
* "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
|
|
|
|
|
* if $wgAmericanDates is false.
|
|
|
|
|
*/
|
|
|
|
|
$defaultDateFormat = 'dmy full';
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$dateFormats = [
|
2007-06-25 19:24:40 +00:00
|
|
|
'dmy short time' => 'H:i',
|
|
|
|
|
'dmy short date' => 'j. F Y',
|
|
|
|
|
'dmy short both' => 'H:i, j. M Y',
|
|
|
|
|
|
|
|
|
|
'dmy full time' => 'H:i',
|
|
|
|
|
'dmy full date' => 'j. F Y',
|
|
|
|
|
'dmy full both' => 'H:i, j. F Y',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2007-06-25 19:24:40 +00:00
|
|
|
|
2006-07-26 07:15:39 +00:00
|
|
|
$fallback8bitEncoding = "iso-8859-2";
|
2016-02-17 09:09:32 +00:00
|
|
|
$separatorTransformTable = [ ',' => '.', '.' => ',' ];
|