Small mistake in the title length check: I meant $r, not
[lhc/web/wiklou.git] / languages / LanguageSk.php
1 <?php
2
3 require_once("LanguageUtf8.php");
4
5 # Tu môžete meniť názvy "namespaces" (no proste, rôznych častí encyklopédie),
6 # ale čísla nechajte tak, ako sú! Program to tak vyžaduje...
7 #
8 /* private */ $wgNamespaceNamesSk = array(
9 -2 => "Media",
10 -1 => "Špeciálne",
11 0 => "",
12 1 => "Komentár",
13 2 => "Redaktor",
14 3 => "Komentár_k_redaktorovi",
15 4 => "Wikipédia",
16 5 => "Komentár_k_Wikipédii",
17 6 => "Obrázok",
18 7 => "Komentár_k_obrázku",
19 8 => "MediaWiki",
20 9 => "Komentár_k_MediaWiki",
21 10 => "Template",
22 11 => "Template_talk"
23
24 ) + $wgNamespaceNamesEn;
25
26 /* private */ $wgQuickbarSettingsSk = array(
27 "None", "Fixed left", "Fixed right", "Floating left"
28 );
29
30 /* private */ $wgSkinNamesSk = array(
31 'standard' => "Standard",
32 'nostalgia' => "Nostalgia",
33 'cologneblue' => "Cologne Blue",
34 'smarty' => "Paddington",
35 'montparnasse' => "Montparnasse",
36 'davinci' => "DaVinci",
37 'mono' => "Mono",
38 'monobook' => "MonoBook",
39 "myskin" => "MySkin"
40 );
41
42
43
44
45
46 # All special pages have to be listed here: a description of ""
47 # will make them not show up on the "Special Pages" page, which
48 # is the right thing for some of them (such as the "targeted" ones).
49 #
50 /* private */ $wgValidSpecialPagesSk = array(
51 "Userlogin" => "",
52 "Userlogout" => "",
53 "Preferences" => "Užívateľské nastavenia",
54 "Watchlist" => "Sledované stránky",
55 "Recentchanges" => "Ostatné úpravy",
56 "Upload" => "Ulož obrázky",
57 "Imagelist" => "Zoznam obrázkov",
58 "Listusers" => "Registrovaní užívatelia",
59 "Statistics" => "Štatistika",
60 "Randompage" => "Náhodný článok",
61
62 "Lonelypages" => "Nezaradené články",
63 "Unusedimages" => "Nezaradené obrázky",
64 "Popularpages" => "Obľúbené články",
65 "Wantedpages" => "Najčítanejšie články",
66 "Shortpages" => "Krátke články",
67 "Longpages" => "Dlhé články",
68 "Newpages" => "Nové články",
69 # "Intl" => "Interlanguage Links",
70 "Allpages" => "Všetky články podľa nadpisu",
71
72 "Ipblocklist" => "Zablokované IP adresy",
73 "Maintenance" => "Údržba",
74 "Specialpages" => "",
75 "Contributions" => "",
76 "Emailuser" => "",
77 "Whatlinkshere" => "",
78 "Recentchangeslinked" => "",
79 "Movepage" => "",
80 "Booksources" => "Eksterné stránky s knihami",
81 # "Categories" => "Page categories",
82 "Export" => "Export XML",
83 "Version" => "Version",
84 );
85
86 /* private */ $wgSysopSpecialPagesSk = array(
87 "Blockip" => "Zablokuj IP adresu",
88 "Asksql" => "Dotaz do databázy",
89 "Undelete" => "Zobraz a obnov vymazané stránky"
90 );
91
92 /* private */ $wgDeveloperSpecialPagesSk = array(
93 "Lockdb" => "Zamkni databázu na zápis",
94 "Unlockdb" => "Odomkni databázu na zápis",
95 );
96
97 /* private */ $wgAllMessagesSk = array(
98 'special_version_prefix' => '',
99 'special_version_postfix' => '',
100
101 # User Toggles
102
103 "tog-hover" => "Zobrazuj text nad linkami do wiki",
104 "tog-underline" => "Podčiarkuj linky",
105 "tog-highlightbroken" => "Neexistujúce linky zobrazuj červenou.",
106 "tog-justify" => "Zarovnávaj odstavce",
107 "tog-hideminor" => "V posledných úpravách neukazuj drobné úpravy",
108 "tog-usenewrc" => "Špeciálne zobrazenie posledných úprav (vyžaduje JavaScript)",
109 "tog-numberheadings" => "Automaticky čísluj odstavce",
110 "tog-showtoolbar" => "Show edit toolbar",
111 "tog-rememberpassword" => "Pamätaj si heslo aj nabudúce",
112 "tog-editwidth" => "Maximálna šírka editovacieho okna",
113 "tog-editondblclick" => "Edituj stránky po dvojkliku (JavaScript)",
114 "tog-watchdefault" => "Upozorňuj na nové a novu upravené stránky",
115 "tog-minordefault" => "Označ všetky zmeny ako drobné",
116 "tog-previewontop" => "Zobrazuj ukážku pred editovacím oknom, a nie až za ním",
117
118 # Dates
119 #
120
121 'sunday' => 'Nedeľa',
122 'monday' => 'Pondelok',
123 'tuesday' => 'Utorok',
124 'wednesday' => 'Streda',
125 'thursday' => "Štvrtok",
126 'friday' => 'Piatok',
127 'saturday' => 'Sobota',
128 'january' => 'Január',
129 'february' => 'Február',
130 'march' => 'Marec',
131 'april' => 'Apríl',
132 'may_long' => 'Máj',
133 'june' => 'Jún',
134 'july' => 'Júl',
135 'august' => 'August',
136 'september' => 'September',
137 'october' => 'Október',
138 'november' => 'November',
139 'december' => 'December',
140 'jan' => 'Jan',
141 'feb' => 'Feb',
142 'mar' => 'Mar',
143 'apr' => 'Apr',
144 'may' => 'Máj',
145 'jun' => 'Jún',
146 'jul' => 'Júl',
147 'aug' => 'Aug',
148 'sep' => 'Sep',
149 'oct' => 'Okt',
150 'nov' => 'Nov',
151 'dec' => 'Dec',
152
153 # Bits of text used by many pages:
154 #
155 "linktrail" => "/^([a-z]+)(.*)\$/sD",
156 "mainpage" => "Hlavná stránka",
157 "about" => "Úvod",
158 "aboutsite" => "O Wikipédii",
159 "aboutpage" => "Wikipédia:Úvod",
160 "help" => "Pomoc",
161 "helppage" => "Wikipédia:Pomoc",
162 "wikititlesuffix" => "Wikipédia",
163 "bugreports" => "Známe_chyby",
164 "bugreportspage" => "Wikipédia:Známe_chyby",
165 "faq" => "FAQ",
166 "faqpage" => "Wikipédia:FAQ",
167 "edithelp" => "Informácie pre redaktorov",
168 "edithelppage" => "Wikipédia:Ako_editovať_stránku",
169 "cancel" => "Storno",
170 "qbfind" => "Nájdi",
171 "qbbrowse" => "Listuj",
172 "qbedit" => "Edituj",
173 "qbpageoptions" => "Možnosti stránky",
174 "qbpageinfo" => "Informácie o stránke",
175 "qbmyoptions" => "Moje nastavenia",
176 "mypage" => "Moja stránka",
177 "mytalk" => "Moje komentáre",
178 "currentevents" => "Aktuality",
179 "errorpagetitle" => "Chyba",
180 "returnto" => "Späť na $1.",
181 "tagline" => "Z Wikipédie, slobodnej encyklopédie.",
182 "whatlinkshere" => "Sem ukazujú stránky",
183 "help" => "Pomoc",
184 "search" => "Hľadaj",
185 "go" => "Choď",
186 "history" => "Staršie verzie",
187 "printableversion" => "Veria na tlač",
188 "editthispage" => "Edituj stránku",
189 "deletethispage" => "Vymaž stránku",
190 "protectthispage" => "Zamkni stránku",
191 "unprotectthispage" => "Odomkni stránku",
192 "newpage" => "Nová stránka",
193 "talkpage" => "Komentuj stránku",
194 "articlepage" => "Zobraz článok",
195 "subjectpage" => "Zobraz tému", # For compatibility
196 "userpage" => "Zobraz užívateľovu stránku",
197 "wikipediapage" => "Zobraz metastránku",
198 "imagepage" => "Zobraz stránku s obrázkom",
199 "viewtalkpage" => "Zobraz komentáre",
200 "otherlanguages" => "Iné jazyky",
201 "redirectedfrom" => "(Presmerované z $1)",
202 "lastmodified" => "Posledné úpravy $1.",
203 "viewcount" => "Táto stránka bola zobrazená $1-krát.",
204 "gnunote" => "Celý text je dostupný pod podmienkami <a class=internal href='/wiki/GNU_FDL'>GNU Free Documentation License</a>.",
205 "printsubtitle" => "(Zdroj: http://www.wikipedia.org)",
206 "protectedpage" => "Zamknutá stránka",
207 "administrators" => "Wikipédia:Správcovia",
208 "sysoptitle" => "Potrebné oprávnenie: sysop",
209 "sysoptext" => "Požadovanú akciu môžu vykonať iba užívatelia s oprávnením \"sysop\".
210 Viď $1.",
211 "developertitle" => "Potrebné oprávnenie: vývojár",
212 "developertext" => "Požadovanú akciu môžu vykonať iba užívatelia s oprávnením \"developer\".
213 Viď $1.",
214 "nbytes" => "$1 bajtov",
215 "go" => "Choď",
216 "ok" => "OK",
217 "sitetitle" => "Wikipédia",
218 "sitesubtitle" => "The Free Encyclopedia",
219 "retrievedfrom" => "Zdroj: \"$1\"",
220 "newmessages" => "Máš $1.",
221 "newmessageslink" => "nových správ",
222
223
224 # Main script and global functions
225 #
226 "nosuchaction" => "Neznáma akcia",
227 "nosuchactiontext" => "Softvér Wikipédie nepozná akciu, ktorú vyžadujete URL",
228 "nosuchspecialpage" => "Neznáma špeciálna stránka",
229 "nospecialpagetext" => "Softvér Wikipédie nepozná takúto špeciálnu stránku.",
230
231 # General errors
232 #
233 "error" => "Chyba",
234 "databaseerror" => "Chyba v databáze",
235 "dberrortext" => "Nastala syntaktická chyba v dotaze do databázy.
236 Posledný pokus o dotaz bol:
237 <blockquote><tt>$1</tt></blockquote>
238 z funkcie \"<tt>$2</tt>\".
239 MySQL vrátil chybu \"<tt>$3: $4</tt>\".",
240 "noconnect" => "Neviem sa pripojiť k databáze na $1",
241 "nodb" => "Neviem otvoriť databázu $1",
242 "readonly" => "Databáza je zamknutá",
243 "enterlockreason" => "Zadajte dôvod zamknutia vrátane odhadu, kedy očakávate odomknutie",
244 "readonlytext" => "Databáza Wikipédie je momentálne zamknutá, nové články a úpravy sú zablokované, pravdepodobne kvôli údržbe databázy. Po skončení tejto údržby bude Wikipédia opäť fungovať normálne.
245 Správca, ktorý nariadil uazmknutie, uvádza tento dôvod:
246 <p>$1",
247 "missingarticle" => "Databáza nenašla text stránky, ktorú by mala nájsť, menovite \"$1\".
248 Toto najskôr nie je chyba v databáze, ale v softvéri.
249 Prosím ohláste túto chybu správcovi, uveďte aj linku (URL).",
250 "internalerror" => "Vnútorná chyba",
251 "filecopyerror" => "Neviem skopírovať súbor \"$1\" na \"$2\".",
252 "filerenameerror" => "Neviem premenovať súbor \"$1\" na \"$2\".",
253 "filedeleteerror" => "Neviem vymazať súbor \"$1\".",
254 "filenotfound" => "Neviem nájsť súbor \"$1\".",
255 "unexpected" => "Nečakaná hodnota: \"$1\"=\"$2\".",
256 "formerror" => "Chyba: neviem odoslať formulár",
257 "badarticleerror" => "Na tejto stránke túto akciu vykonať nemožno.",
258 "cannotdelete" => "Neviem vymazať danú stránku alebo obrázok. (Možno to už vymazal niekto iný.)",
259 "badtitle" => "Zlý nadpis",
260 "badtitletext" => "Požadovaný nadpis bol neplatný, nezadaný, alebo nesprávne linkovaný.",
261 "perfdisabled" => "Prepáčte! Táto funkcia je počas špičky dočasne vypnutá kvôli veľkej záťaži; prosím vráťte sa medzi 02:00 a 14:00 UTC.",
262
263 # Login and logout pages
264 #
265 "logouttitle" => "Odhlásiť užívateľa",
266 "logouttext" => "Práve ste sa odhlásili.
267 Môžete naďalej používať Wikipédiu anonymne,
268 alebo sa môžete opäť prihlásiť pod rovnakým alebo odlišným užívateľským menom.\n",
269
270 "welcomecreation" => "<h2>Vitaj, $1!</h2><p>Vaše konto je vytvorené.
271 Nezabudnite si nastaviť užívateľské nastavenia.",
272
273 "loginpagetitle" => "Prihlásiť užívateľa",
274 "yourname" => "Vaše užívateľské meno",
275 "yourpassword" => "Vaše heslo",
276 "yourpasswordagain" => "Zopakujte heslo",
277 "newusersonly" => " (iba noví užívatelia)",
278 "remembermypassword" => "Pamätať si heslo aj po vypnutí počítača.",
279 "loginproblem" => "<b>Nastal problém pri prihlasovaní.</b><br>Skúste znova!",
280 "alreadyloggedin" => "<font color=red><b>Užívateľ $1, vy už ste prihlásený!</b></font><br>\n",
281
282 "login" => "Log in",
283 "userlogin" => "Log in",
284 "logout" => "Log out",
285 "userlogout" => "Log out",
286 "createaccount" => "Create new account",
287 "badretype" => "The passwords you entered do not match.",
288 "userexists" => "The user name you entered is already in use. Please choosea different name.",
289 "youremail" => "Your e-mail",
290 "yournick" => "Your nickname (for signatures)",
291 "emailforlost" => "If you forget your password, you can have a new one mailed to your e-mail address.",
292 "loginerror" => "Login error",
293 "noname" => "You have not specified a valid user name.",
294 "loginsuccesstitle" => "Login successful",
295 "loginsuccess" => "You are now logged in to Wikipedia as \"$1\".",
296 "nosuchuser" => "There is no user by the name \"$1\".
297 Check your spelling, or use the form below to create a new user account.",
298 "wrongpassword" => "The password you entered is incorrect. Please try again.",
299 "mailmypassword" => "Mail me a new password",
300 "passwordremindertitle" => "Password reminder from Wikipedia",
301 "passwordremindertext" => "Someone (probably you, from IP address $1)
302 requested that we send you a new Wikipedia login password.
303 The password for user \"$2\" is now \"$3\".
304 You should log in and change your password now.",
305 "noemail" => "There is no e-mail address recorded for user \"$1\".",
306 "passwordsent" => "A new password has been sent to the e-mail address
307 registered for \"$1\".
308 Please log in again after you receive it.",
309
310 # Edit pages
311 #
312 "summary" => "Summary",
313 "minoredit" => "This is a minor edit",
314 "watchthis" => "Watch this article",
315 "savearticle" => "Save page",
316 "preview" => "Preview",
317 "showpreview" => "Show preview",
318 "blockedtitle" => "User is blocked",
319 "blockedtext" => "Your user name or IP address has been blocked by $1.
320 The reason given is this:<br>''$2''<p>You may contact $1 or one of the other
321 [[Wikipedia:administrators|administrators]] to discuss the block.",
322 "newarticle" => "(New)",
323 "newarticletext" =>
324 "You've followed a link to a page that doesn't exist yet.
325 To create the page, start typing in the box below
326 (see the [[Wikipedia:Help|help page]] for more info).
327 If you are here by mistake, just click your browser's '''back''' button.",
328 "anontalkpagetext" => "---- ''This is the discussion page for an anonymous user who has not created an account yet or who does not use it. We therefore have to use the numerical [[IP address]] to identify him/her. Such an IP address can be shared by several users. If you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:Userlogin|create an account or log in]] to avoid future confusion with other anonymous users.'' ",
329 "noarticletext" => "(There is currently no text in this page)",
330 "updated" => "(Updated)",
331 "note" => "<strong>Note:</strong> ",
332 "previewnote" => "Remember that this is only a preview, and has not yet been saved!",
333 "previewconflict" => "This preview reflects the text in the upper
334 text editing area as it will appear if you choose to save.",
335 "editing" => "Editing $1",
336 "editconflict" => "Edit conflict: $1",
337 "explainconflict" => "Someone else has changed this page since you
338 started editing it.
339 The upper text area contains the page text as it currently exists.
340 Your changes are shown in the lower text area.
341 You will have to merge your changes into the existing text.
342 <b>Only</b> the text in the upper text area will be saved when you
343 press \"Save page\".\n<p>",
344 "yourtext" => "Your text",
345 "storedversion" => "Stored version",
346 "editingold" => "<strong>WARNING: You are editing an out-of-date
347 revision of this page.
348 If you save it, any changes made since this revision will be lost.</strong>\n",
349 "yourdiff" => "Differences",
350 "copyrightwarning" => "Please note that all contributions to Wikipedia are
351 considered to be released under the GNU Free Documentation License
352 (see $1 for details).
353 If you don't want your writing to be edited mercilessly and redistributed
354 at will, then don't submit it here.<br>
355 You are also promising us that you wrote this yourself, or copied it from a
356 public domain or similar free resource.
357 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
358 "longpagewarning" => "WARNING: This page is $1 kilobytes long; some
359 browsers may have problems editing pages approaching or longer than 32kb.
360 Please consider breaking the page into smaller sections.",
361
362 # History pages
363 #
364 "revhistory" => "Revision history",
365 "nohistory" => "There is no edit history for this page.",
366 "revnotfound" => "Revision not found",
367 "revnotfoundtext" => "The old revision of the page you asked for could not be found.
368 Please check the URL you used to access this page.\n",
369 "loadhist" => "Loading page history",
370 "currentrev" => "Current revision",
371 "revisionasof" => "Revision as of $1",
372 "cur" => "cur",
373 "next" => "next",
374 "last" => "last",
375 "orig" => "orig",
376 "histlegend" => "Legend: (cur) = difference with current version,
377 (last) = difference with preceding version, M = minor edit",
378
379 # Diffs
380 #
381 "difference" => "(Difference between revisions)",
382 "loadingrev" => "loading revision for diff",
383 "lineno" => "Line $1:",
384 "editcurrent" => "Edit the current version of this page",
385
386 # Search results
387 #
388 "searchresults" => "Search results",
389 "searchresulttext" => "For more information about searching {{SITENAME}}, see [[Project:Searching|Searching {{SITENAME}}]].",
390 "searchquery" => "For query \"$1\"",
391 "badquery" => "Badly formed search query",
392 "badquerytext" => "We could not process your query.
393 This is probably because you have attempted to search for a
394 word fewer than three letters long, which is not yet supported.
395 It could also be that you have mistyped the expression, for
396 example \"fish and and scales\".
397 Please try another query.",
398 "matchtotals" => "The query \"$1\" matched $2 article titles
399 and the text of $3 articles.",
400 "nogomatch" => "No page with this exact title exists, trying full text search. ",
401 "titlematches" => "Article title matches",
402 "notitlematches" => "No article title matches",
403 "textmatches" => "Article text matches",
404 "notextmatches" => "No article text matches",
405 "prevn" => "previous $1",
406 "nextn" => "next $1",
407 "viewprevnext" => "View ($1) ($2) ($3).",
408 "showingresults" => "Showing below <b>$1</b> results starting with #<b>$2</b>.",
409 "nonefound" => "<strong>Note</strong>: unsuccessful searches are
410 often caused by searching for common words like \"have\" and \"from\",
411 which are not indexed, or by specifying more than one search term (only pages
412 containing all of the search terms will appear in the result).",
413 "powersearch" => "Search",
414 "powersearchtext" => "
415 Search in namespaces :<br>
416 $1<br>
417 $2 List redirects &nbsp; Search for $3 $9",
418
419
420 # Preferences page
421 #
422 "preferences" => "Preferences",
423 "prefsnologin" => "Not logged in",
424 "prefsnologintext" => "You must be <a href=\"" .
425 "{{localurle:Special:Userlogin}}\">logged in</a>
426 to set user preferences.",
427 "prefslogintext" => "You are logged in as \"$1\".
428 Your internal ID number is $2.",
429 "prefsreset" => "Preferences have been reset from storage.",
430 "qbsettings" => "Quickbar settings",
431 "changepassword" => "Change password",
432 "skin" => "Skin",
433 "math" => "Rendering math",
434 "math_failure" => "Failed to parse",
435 "math_unknown_error" => "unknown error",
436 "math_unknown_function" => "unknown function ",
437 "math_lexing_error" => "lexing error",
438 "math_syntax_error" => "syntax error",
439 "saveprefs" => "Save preferences",
440 "resetprefs" => "Reset preferences",
441 "oldpassword" => "Old password",
442 "newpassword" => "New password",
443 "retypenew" => "Retype new password",
444 "textboxsize" => "Editing",
445 "rows" => "Rows",
446 "columns" => "Columns",
447 "searchresultshead" => "Search result settings",
448 "resultsperpage" => "Hits to show per page",
449 "contextlines" => "Lines to show per hit",
450 "contextchars" => "Characters of context per line",
451 "stubthreshold" => "Threshold for stub display",
452 "recentchangescount" => "Number of titles in recent changes",
453 "savedprefs" => "Your preferences have been saved.",
454 "timezonetext" => "Enter number of hours your local time differs
455 from server time (UTC).",
456 "localtime" => "Local time",
457 "timezoneoffset" => "Offset",
458 "emailflag" => "Disable e-mail from other users",
459
460 # Recent changes
461 #
462 "changes" => "changes",
463 "recentchanges" => "Recent changes",
464 "recentchangestext" => "Track the most recent changes to Wikipedia on this page.
465 [[Wikipedia:Welcome,_newcomers|Welcome, newcomers]]!
466 Please have a look at these pages: [[wikipedia:FAQ|Wikipedia FAQ]],
467 [[Wikipedia:Policies and guidelines|Wikipedia policy]]
468 (especially [[wikipedia:Naming conventions|naming conventions]],
469 [[wikipedia:Neutral point of view|neutral point of view]]),
470 and [[wikipedia:Most common Wikipedia faux pas|most common Wikipedia faux pas]].
471
472 If you want to see Wikipedia succeed, it's very important that you don't add
473 material restricted by others' [[wikipedia:Copyrights|copyrights]].
474 The legal liability could really hurt the project, so please don't do it.
475 See also the [http://meta.wikipedia.org/wiki/Special:Recentchanges recent meta discussion].",
476 "rcloaderr" => "Loading recent changes",
477 "rcnote" => "Below are the last <strong>$1</strong> changes in last <strong>$2</strong> days.",
478 "rcnotefrom" => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
479 "rclistfrom" => "Show new changes starting from $1",
480 # "rclinks" => "Show last $1 changes in last $2 hours / last $3 days",
481 "rclinks" => "Show last $1 changes in last $2 days.",
482 "rchide" => "in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits.",
483 "diff" => "diff",
484 "hist" => "hist",
485 "hide" => "hide",
486 "show" => "show",
487 "tableform" => "table",
488 "listform" => "list",
489 "nchanges" => "$1 changes",
490 "minoreditletter" => "M",
491 "newpageletter" => "N",
492
493 # Upload
494 #
495 "upload" => "Upload file",
496 "uploadbtn" => "Upload file",
497 "uploadlink" => "Upload images",
498 "reupload" => "Re-upload",
499 "reuploaddesc" => "Return to the upload form.",
500 "uploadnologin" => "Not logged in",
501 "uploadnologintext" => "You must be <a href=\"" .
502 "{{localurle:Special:Userlogin}}\">logged in</a>
503 to upload files.",
504 "uploadfile" => "Upload file",
505 "uploaderror" => "Upload error",
506 "uploadlog" => "upload log",
507 "uploadlogpage" => "Upload_log",
508 "uploadlogpagetext" => "Below is a list of the most recent file uploads.
509 All times shown are server time (UTC).
510 <ul>
511 </ul>
512 ",
513 "filename" => "Filename",
514 "filedesc" => "Summary",
515 "affirmation" => "I affirm that the copyright holder of this file
516 agrees to license it under the terms of the $1.",
517 "copyrightpage" => "Wikipedia:Copyrights",
518 "copyrightpagename" => "Wikipedia copyright",
519 "uploadedfiles" => "Uploaded files",
520 "noaffirmation" => "You must affirm that your upload does not violate
521 any copyrights.",
522 "ignorewarning" => "Ignore warning and save file anyway.",
523 "minlength" => "Image names must be at least three letters.",
524 "badfilename" => "Image name has been changed to \"$1\".",
525 "badfiletype" => "\".$1\" is not a recommended image file format.",
526 "largefile" => "It is recommended that images not exceed 100k in size.",
527 "successfulupload" => "Successful upload",
528 "fileuploaded" => "File \"$1\" uploaded successfully.
529 Please follow this link: ($2) to the description page and fill
530 in information about the file, such as where it came from, when it was
531 created and by whom, and anything else you may know about it.",
532 "uploadwarning" => "Upload warning",
533 "savefile" => "Save file",
534 "uploadedimage" => "uploaded \"$1\"",
535
536 # Image list
537 #
538 "imagelist" => "Image list",
539 "imagelisttext" => "Below is a list of $1 images sorted $2.",
540 "getimagelist" => "fetching image list",
541 "ilshowmatch" => "Show all images with names matching",
542 "ilsubmit" => "Search",
543 "showlast" => "Show last $1 images sorted $2.",
544 "all" => "all",
545 "byname" => "by name",
546 "bydate" => "by date",
547 "bysize" => "by size",
548 "imgdelete" => "del",
549 "imgdesc" => "desc",
550 "imglegend" => "Legend: (desc) = show/edit image description.",
551 "imghistory" => "Image history",
552 "revertimg" => "rev",
553 "deleteimg" => "del",
554 "deleteimgcompletely" => "del",
555 "imghistlegend" => "Legend: (cur) = this is the current image, (del) = delete
556 this old version, (rev) = revert to this old version.
557 <br><i>Click on date to see image uploaded on that date</i>.",
558 "imagelinks" => "Image links",
559 "linkstoimage" => "The following pages link to this image:",
560 "nolinkstoimage" => "There are no pages that link to this image.",
561
562 # Statistics
563 #
564 "statistics" => "Statistics",
565 "sitestats" => "Site statistics",
566 "userstats" => "User statistics",
567 "sitestatstext" => "There are <b>$1</b> total pages in the database.
568 This includes \"talk\" pages, pages about Wikipedia, minimal \"stub\"
569 pages, redirects, and others that probably don't qualify as articles.
570 Excluding those, there are <b>$2</b> pages that are probably legitimate
571 articles.<p>
572 There have been a total of <b>$3</b> page views, and <b>$4</b> page edits
573 since the software was upgraded (July 20, 2002).
574 That comes to <b>$5</b> average edits per page, and <b>$6</b> views per edit.",
575 "userstatstext" => "There are <b>$1</b> registered users.
576 <b>$2</b> of these are administrators (see $3).",
577
578 # Maintenance Page
579 #
580 "maintenance" => "Maintenance page",
581 "maintnancepagetext" => "This page includes several handy tools for everyday maintenance. Some of these functions tend to stress the database, so please do not hit reload after every item you fixed ;-)",
582 "maintenancebacklink" => "Back to Maintenance Page",
583 "disambiguations" => "Disambiguation pages",
584 "disambiguationspage" => "Wikipedia:Links_to_disambiguating_pages",
585 "disambiguationstext" => "The following articles link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br>A page is treated as dismbiguation if it is linked from $1.<br>Links from other namespaces are <i>not</i> listed here.",
586 "doubleredirects" => "Double Redirects",
587 "doubleredirectstext" => "<b>Attention:</b> This list may contain false positives. That usually means there is additional text with links below the first #REDIRECT.<br>\nEach row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the \"real\" taget article, which the first redirect should point to.",
588 "brokenredirects" => "Broken Redirects",
589 "brokenredirectstext" => "The following redirects link to a non-existing article.",
590 "selflinks" => "Pages with Self Links",
591 "selflinkstext" => "The following pages contain a link to themselves, which they should not.",
592 "mispeelings" => "Pages with misspellings",
593 "mispeelingstext" => "The following pages contain a common misspelling, which are listed on $1. The correct spelling might be given (like this).",
594 "mispeelingspage" => "List of common misspellings",
595 "missinglanguagelinks" => "Missing Language Links",
596 "missinglanguagelinksbutton" => "Find missing language links for",
597 "missinglanguagelinkstext" => "These articles do <i>not</i> link to their counterpart in $1. Redirects and subpages are <i>not</i> shown.",
598
599
600 # Miscellaneous special pages
601 #
602 "orphans" => "Orphaned pages",
603 "lonelypages" => "Orphaned pages",
604 "unusedimages" => "Unused images",
605 "popularpages" => "Popular pages",
606 "nviews" => "$1 views",
607 "wantedpages" => "Wanted pages",
608 "nlinks" => "$1 links",
609 "allpages" => "All pages",
610 "randompage" => "Random page",
611 "shortpages" => "Short pages",
612 "longpages" => "Long pages",
613 "listusers" => "User list",
614 "specialpages" => "Special pages",
615 "spheading" => "Special pages",
616 "sysopspheading" => "Special pages for sysop use",
617 "developerspheading" => "Special pages for developer use",
618 "protectpage" => "Protect page",
619 "recentchangeslinked" => "Related changes",
620 "rclsub" => "(to pages linked from \"$1\")",
621 "debug" => "Debug",
622 "newpages" => "New pages",
623 "movethispage" => "Move this page",
624 "unusedimagestext" => "<p>Please note that other web sites
625 such as the international Wikipedias may link to an image with
626 a direct URL, and so may still be listed here despite being
627 in active use.",
628 "booksources" => "Book sources",
629 "booksourcetext" => "Below is a list of links to other sites that
630 sell new and used books, and may also have further information
631 about books you are looking for.
632 Wikipedia is not affiliated with any of these businesses, and
633 this list should not be construed as an endorsement.",
634
635 # Email this user
636 #
637 "mailnologin" => "No send address",
638 "mailnologintext" => "You must be <a href=\"" .
639 "{{localurle:Special:Userlogin}}\">logged in</a>
640 and have a valid e-mail address in your <a href=\"" .
641 "{{localurle:Special:Preferences}}\">preferences</a>
642 to send e-mail to other users.",
643 "emailuser" => "E-mail this user",
644 "emailpage" => "E-mail user",
645 "emailpagetext" => "If this user has entered a valid e-mail address in
646 his or her user preferences, the form below will send a single message.
647 The e-mail address you entered in your user preferences will appear
648 as the \"From\" address of the mail, so the recipient will be able
649 to reply.",
650 "noemailtitle" => "No e-mail address",
651 "noemailtext" => "This user has not specified a valid e-mail address,
652 or has chosen not to receive e-mail from other users.",
653 "emailfrom" => "From",
654 "emailto" => "To",
655 "emailsubject" => "Subject",
656 "emailmessage" => "Message",
657 "emailsend" => "Send",
658 "emailsent" => "E-mail sent",
659 "emailsenttext" => "Your e-mail message has been sent.",
660
661 # Watchlist
662 #
663 "watchlist" => "My watchlist",
664 "watchlistsub" => "(for user \"$1\")",
665 "nowatchlist" => "You have no items on your watchlist.",
666 "watchnologin" => "Not logged in",
667 "watchnologintext" => "You must be <a href=\"" .
668 "{{localurle:Special:Userlogin}}\">logged in</a>
669 to modify your watchlist.",
670 "addedwatch" => "Added to watchlist",
671 "addedwatchtext" => "The page \"$1\" has been added to your <a href=\"" .
672 "{{localurle:Special:Watchlist}}\">watchlist</a>.
673 Future changes to this page and its associated Talk page will be listed there,
674 and the page will appear <b>bolded</b> in the <a href=\"" .
675 "{{localurle:Special:Recentchanges}}\">list of recent changes</a> to
676 make it easier to pick out.</p>
677
678 <p>If you want to remove the page from your watchlist later, click \"Stop watching\" in the sidebar.",
679 "removedwatch" => "Removed from watchlist",
680 "removedwatchtext" => "The page \"$1\" has been removed from your watchlist.",
681 "watchthispage" => "Watch this page",
682 "unwatchthispage" => "Stop watching",
683 "notanarticle" => "Not an article",
684
685 # Delete/protect/revert
686 #
687 "deletepage" => "Delete page",
688 "confirm" => "Confirm",
689 "confirmdelete" => "Confirm delete",
690 "deletesub" => "(Deleting \"$1\")",
691 "confirmdeletetext" => "You are about to permanently delete a page
692 or image along with all of its history from the database.
693 Please confirm that you intend to do this, that you understand the
694 consequences, and that you are doing this in accordance with
695 [[Wikipedia:Policy]].",
696 "confirmcheck" => "Yes, I really want to delete this.",
697 "actioncomplete" => "Action complete",
698 "deletedtext" => "\"$1\" has been deleted.
699 See $2 for a record of recent deletions.",
700 "deletedarticle" => "deleted \"$1\"",
701 "dellogpage" => "Deletion_log",
702 "dellogpagetext" => "Below is a list of the most recent deletions.
703 All times shown are server time (UTC).
704 <ul>
705 </ul>
706 ",
707 "deletionlog" => "deletion log",
708 "reverted" => "Reverted to earlier revision",
709 "deletecomment" => "Reason for deletion",
710 "imagereverted" => "Revert to earlier version was successful.",
711 "rollback" => "Roll back edits",
712 "rollbacklink" => "rollback",
713 "cantrollback" => "Can't revert edit; last contributor is only author of this article.",
714 "revertpage" => "Reverted to last edit by $1",
715
716 # Undelete
717 "undelete" => "Restore deleted page",
718 "undeletepage" => "View and restore deleted pages",
719 "undeletepagetext" => "The following pages have been deleted but are still in the archive and
720 can be restored. The archive may be periodically cleaned out.",
721 "undeletearticle" => "Restore deleted article",
722 "undeleterevisions" => "$1 revisions archived",
723 "undeletehistory" => "If you restore the page, all revisions will be restored to the history.
724 If a new page with the same name has been created since the deletion, the restored
725 revisions will appear in the prior history, and the current revision of the live page
726 will not be automatically replaced.",
727 "undeleterevision" => "Deleted revision as of $1",
728 "undeletebtn" => "Restore!",
729 "undeletedarticle" => "restored \"$1\"",
730 "undeletedtext" => "The article [[$1]] has been successfully restored.
731 See [[Wikipedia:Deletion_log]] for a record of recent deletions and restorations.",
732
733 # Contributions
734 #
735 "contributions" => "User contributions",
736 "mycontris" => "My contributions",
737 "contribsub" => "For $1",
738 "nocontribs" => "No changes were found matching these criteria.",
739 "ucnote" => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
740 "uclinks" => "View the last $1 changes; view the last $2 days.",
741 "uctop" => " (top)" ,
742
743 # What links here
744 #
745 "whatlinkshere" => "What links here",
746 "notargettitle" => "No target",
747 "notargettext" => "You have not specified a target page or user
748 to perform this function on.",
749 "linklistsub" => "(List of links)",
750 "linkshere" => "The following pages link to here:",
751 "nolinkshere" => "No pages link to here.",
752 "isredirect" => "redirect page",
753
754 # Block/unblock IP
755 #
756 "blockip" => "Block IP address",
757 "blockiptext" => "Use the form below to block write access
758 from a specific IP address.
759 This should be done only only to prevent vandalism, and in
760 accordance with [[Wikipedia:Policy|Wikipedia policy]].
761 Fill in a specific reason below (for example, citing particular
762 pages that were vandalized).",
763 "ipaddress" => "IP Address",
764 "ipbreason" => "Reason",
765 "ipbsubmit" => "Block this address",
766 "badipaddress" => "The IP address is badly formed.",
767 "noblockreason" => "You must supply a reason for the block.",
768 "blockipsuccesssub" => "Block succeeded",
769 "blockipsuccesstext" => "The IP address \"$1\" has been blocked.
770 <br>See [[Special:Ipblocklist|IP block list]] to review blocks.",
771 "unblockip" => "Unblock IP address",
772 "unblockiptext" => "Use the form below to restore write access
773 to a previously blocked IP address.",
774 "ipusubmit" => "Unblock this address",
775 "ipusuccess" => "IP address \"$1\" unblocked",
776 "ipblocklist" => "List of blocked IP addresses",
777 "blocklistline" => "$1, $2 blocked $3",
778 "blocklink" => "block",
779 "unblocklink" => "unblock",
780 "contribslink" => "contribs",
781
782 # Developer tools
783 #
784 "lockdb" => "Lock database",
785 "unlockdb" => "Unlock database",
786 "lockdbtext" => "Locking the database will suspend the ability of all
787 users to edit pages, change their preferences, edit their watchlists, and
788 other things requiring changes in the database.
789 Please confirm that this is what you intend to do, and that you will
790 unlock the database when your maintenance is done.",
791 "unlockdbtext" => "Unlocking the database will restore the ability of all
792 users to edit pages, change their preferences, edit their watchlists, and
793 other things requiring changes in the database.
794 Please confirm that this is what you intend to do.",
795 "lockconfirm" => "Yes, I really want to lock the database.",
796 "unlockconfirm" => "Yes, I really want to unlock the database.",
797 "lockbtn" => "Lock database",
798 "unlockbtn" => "Unlock database",
799 "locknoconfirm" => "You did not check the confirmation box.",
800 "lockdbsuccesssub" => "Database lock succeeded",
801 "unlockdbsuccesssub" => "Database lock removed",
802 "lockdbsuccesstext" => "The Wikipedia database has been locked.
803 <br>Remember to remove the lock after your maintenance is complete.",
804 "unlockdbsuccesstext" => "The Wikipedia database has been unlocked.",
805
806 # SQL query
807 #
808 "asksql" => "SQL query",
809 "asksqltext" => "Use the form below to make a direct query of the
810 Wikipedia database.
811 Use single quotes ('like this') to delimit string literals.
812 This can often add considerable load to the server, so please use
813 this function sparingly.",
814 "sqlquery" => "Enter query",
815 "querybtn" => "Submit query",
816 "selectonly" => "Queries other than \"SELECT\" are restricted to
817 Wikipedia developers.",
818 "querysuccessful" => "Query successful",
819
820 # Move page
821 #
822 "movepage" => "Move page",
823 "movepagetext" => "Using the form below will rename a page, moving all
824 of its history to the new name.
825 The old title will become a redirect page to the new title.
826 Links to the old page title will not be changed; be sure to
827 [[Special:Maintenance|check]] for double or broken redirects.
828 You are responsible for making sure that links continue to
829 point where they are supposed to go.
830
831 Note that the page will '''not''' be moved if there is already
832 a page at the new title, unless it is empty or a redirect and has no
833 past edit history. This means that you can rename a page back to where
834 it was just renamed from if you make a mistake, and you cannot overwrite
835 an existing page.
836
837 <b>WARNING!</b>
838 This can be a drastic and unexpected change for a popular page;
839 please be sure you understand the consequences of this before
840 proceeding.",
841 "movepagetalktext" => "The associated talk page, if any, will be automatically moved along with it '''unless:'''
842 *You are moving the page across namespaces,
843 *A non-empty talk page already exists under the new name, or
844 *You uncheck the box below.
845
846 In those cases, you will have to move or merge the page manually if desired.",
847 "movearticle" => "Move page",
848 "movenologin" => "Not logged in",
849 "movenologintext" => "You must be a registered user and <a href=\"" .
850 "{{localurle:Special:Userlogin}}\">logged in</a>
851 to move a page.",
852 "newtitle" => "To new title",
853 "movepagebtn" => "Move page",
854 "pagemovedsub" => "Move succeeded",
855 "pagemovedtext" => "Page \"[[$1]]\" moved to \"[[$2]]\".",
856 "articleexists" => "A page of that name already exists, or the
857 name you have chosen is not valid.
858 Please choose another name.",
859 "talkexists" => "The page itself was moved successfully, but the
860 talk page could not be moved because one already exists at the new
861 title. Please merge them manually.",
862 "movedto" => "moved to",
863 "movetalk" => "Move \"talk\" page as well, if applicable.",
864 "talkpagemoved" => "The corresponding talk page was also moved.",
865 "talkpagenotmoved" => "The corresponding talk page was <strong>not</strong> moved.",
866 # Math
867 'mw_math_png' => "Vždy vytvor PNG",
868 'mw_math_simple' => "Na jednoduché použi HTML, inak PNG",
869 'mw_math_html' => "Ak sa dá, použi HTML, inak PNG",
870 'mw_math_source' => "Ponechaj TeX (pre textové prehliadače)",
871 'mw_math_modern' => "Odporúčame pre moderné prehliadače",
872 'mw_math_mathml' => 'MathML',
873
874 );
875
876 class LanguageSk extends LanguageUtf8 {
877
878 function getNamespaces() {
879 global $wgNamespaceNamesSk;
880 return $wgNamespaceNamesSk;
881 }
882
883 function getNsText( $index ) {
884 global $wgNamespaceNamesSk;
885 return $wgNamespaceNamesSk[$index];
886 }
887
888 function getNsIndex( $text ) {
889 global $wgNamespaceNamesSk;
890
891 foreach ( $wgNamespaceNamesSk as $i => $n ) {
892 if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
893 }
894 if( 0 == strcasecmp( "Special", $text ) ) return -1;
895 if( 0 == strcasecmp( "Wikipedia", $text ) ) return 4;
896 return false;
897 }
898
899 function getQuickbarSettings() {
900 global $wgQuickbarSettingsSk;
901 return $wgQuickbarSettingsSk;
902 }
903
904 function getSkinNames() {
905 global $wgSkinNamesSk;
906 return $wgSkinNamesSk;
907 }
908
909 function getValidSpecialPages()
910 {
911 global $wgValidSpecialPagesSk;
912 return $wgValidSpecialPagesSk;
913 }
914
915 function getSysopSpecialPages()
916 {
917 global $wgSysopSpecialPagesSk;
918 return $wgSysopSpecialPagesSk;
919 }
920
921 function getDeveloperSpecialPages()
922 {
923 global $wgDeveloperSpecialPagesSk;
924 return $wgDeveloperSpecialPagesSk;
925 }
926
927 function getMessage( $key )
928 {
929 global $wgAllMessagesSk;
930 if($wgAllMessagesSk[$key])
931 return $wgAllMessagesSk[$key];
932 return Language::getMessage( $key );
933 }
934
935 function fallback8bitEncoding() {
936 return "iso-8859-2"; #?
937 }
938
939 }
940 ?>