xref: /dokuwiki/inc/lang/hr/lang.php (revision 8e6cfd4d8687ecdcf3c20b31a34a0f85b1b6d6fb)
1*8e6cfd4dSAndreas Gohr<?php
2*8e6cfd4dSAndreas Gohr/**
3*8e6cfd4dSAndreas Gohr * croatian language file
4*8e6cfd4dSAndreas Gohr *
5*8e6cfd4dSAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6*8e6cfd4dSAndreas Gohr * @author     Tomo Krajina <aaa@puzz.info>
7*8e6cfd4dSAndreas Gohr */
8*8e6cfd4dSAndreas Gohr$lang['encoding']   = 'utf-8';
9*8e6cfd4dSAndreas Gohr$lang['direction']  = 'ltr';
10*8e6cfd4dSAndreas Gohr
11*8e6cfd4dSAndreas Gohr$lang['btn_edit']   = 'Izmijeni dokument';
12*8e6cfd4dSAndreas Gohr$lang['btn_source'] = 'Prikaži kod';
13*8e6cfd4dSAndreas Gohr$lang['btn_show']   = 'Prikaži dokument';
14*8e6cfd4dSAndreas Gohr$lang['btn_create'] = 'Novi dokument';
15*8e6cfd4dSAndreas Gohr$lang['btn_search'] = 'Pretraživanje';
16*8e6cfd4dSAndreas Gohr$lang['btn_save']   = 'Snimi';
17*8e6cfd4dSAndreas Gohr$lang['btn_preview']= 'Prikaži';
18*8e6cfd4dSAndreas Gohr$lang['btn_top']    = 'Na vrh';
19*8e6cfd4dSAndreas Gohr$lang['btn_newer']  = '<< noviji';
20*8e6cfd4dSAndreas Gohr$lang['btn_older']  = 'stariji >>';
21*8e6cfd4dSAndreas Gohr$lang['btn_revs']   = 'Stare verzije';
22*8e6cfd4dSAndreas Gohr$lang['btn_recent'] = 'Nedavne izmjene';
23*8e6cfd4dSAndreas Gohr$lang['btn_upload'] = 'Upload';
24*8e6cfd4dSAndreas Gohr$lang['btn_cancel'] = 'Poništi';
25*8e6cfd4dSAndreas Gohr$lang['btn_index']  = 'Indeks';
26*8e6cfd4dSAndreas Gohr$lang['btn_secedit']= 'Izmjena';
27*8e6cfd4dSAndreas Gohr$lang['btn_login']  = 'Prijava';
28*8e6cfd4dSAndreas Gohr$lang['btn_logout'] = 'Odjava';
29*8e6cfd4dSAndreas Gohr$lang['btn_admin']  = 'Admin';
30*8e6cfd4dSAndreas Gohr$lang['btn_update'] = 'Update'; // ODO
31*8e6cfd4dSAndreas Gohr$lang['btn_delete'] = 'Brisanje';
32*8e6cfd4dSAndreas Gohr$lang['btn_back']   = 'Povratak';
33*8e6cfd4dSAndreas Gohr$lang['btn_backlink']    = "Povratni linkovi";
34*8e6cfd4dSAndreas Gohr$lang['btn_backtomedia'] = 'Povratak na Mediafile izbornik'; // TODO
35*8e6cfd4dSAndreas Gohr$lang['btn_subscribe']   = 'Pretplati se na promjene';
36*8e6cfd4dSAndreas Gohr$lang['btn_unsubscribe'] = 'Odjavi pretplatu o promjenama';
37*8e6cfd4dSAndreas Gohr$lang['btn_profile']    = 'Izmjena profila';
38*8e6cfd4dSAndreas Gohr$lang['btn_reset']     = 'Reset';
39*8e6cfd4dSAndreas Gohr$lang['btn_resendpwd'] = 'Pošalji lozinku';
40*8e6cfd4dSAndreas Gohr
41*8e6cfd4dSAndreas Gohr$lang['loggedinas'] = 'Prijavljen kao';
42*8e6cfd4dSAndreas Gohr$lang['user']       = 'Korisničko ime';
43*8e6cfd4dSAndreas Gohr$lang['pass']       = 'Lozinka';
44*8e6cfd4dSAndreas Gohr$lang['newpass']    = 'Nova lozinka';
45*8e6cfd4dSAndreas Gohr$lang['oldpass']    = 'Confirm current password';
46*8e6cfd4dSAndreas Gohr$lang['passchk']    = 'Ponovi';
47*8e6cfd4dSAndreas Gohr$lang['remember']   = 'Zapamti me';
48*8e6cfd4dSAndreas Gohr$lang['fullname']   = 'Ime i prezime';
49*8e6cfd4dSAndreas Gohr$lang['email']      = 'Email';
50*8e6cfd4dSAndreas Gohr$lang['register']   = 'Registracija';
51*8e6cfd4dSAndreas Gohr$lang['profile']    = 'Profil korisnika';
52*8e6cfd4dSAndreas Gohr$lang['badlogin']   = 'Krivo korisničko ime ili lozinka.';
53*8e6cfd4dSAndreas Gohr$lang['minoredit']  = 'Manja promjena';
54*8e6cfd4dSAndreas Gohr
55*8e6cfd4dSAndreas Gohr$lang['regmissing'] = 'Morate popuniti sva polja.';
56*8e6cfd4dSAndreas Gohr$lang['reguexists'] = 'Korisnik s tim korisničkim imenom već postoji.';
57*8e6cfd4dSAndreas Gohr$lang['regsuccess'] = 'Novi korisnik je uspješno unesen i poslana mu je lozinka mailom.';
58*8e6cfd4dSAndreas Gohr$lang['regsuccess2']= 'Korisnik je uspješno.';
59*8e6cfd4dSAndreas Gohr$lang['regmailfail']= 'Došlo je do greške pri slanju lozinke. Molimo Vas da kontaktirate administratora!';
60*8e6cfd4dSAndreas Gohr$lang['regbadmail'] = 'Email adreasa nije ispravna';
61*8e6cfd4dSAndreas Gohr$lang['regbadpass'] = 'Unesene lozinke nisu jednake!';
62*8e6cfd4dSAndreas Gohr$lang['regpwmail']  = 'Vaša DokuWiki lozinka';
63*8e6cfd4dSAndreas Gohr$lang['reghere']    = 'Nemate još korisničko ime? Registrirajte se.';
64*8e6cfd4dSAndreas Gohr
65*8e6cfd4dSAndreas Gohr$lang['profna']       = 'Nije dopušteno mijenjati korisnikov profil';
66*8e6cfd4dSAndreas Gohr$lang['profnochange'] = 'Nije bilo izmjena.';
67*8e6cfd4dSAndreas Gohr$lang['profnoempty']  = 'Nije ispunjeno polje za ime i/ili email.';
68*8e6cfd4dSAndreas Gohr$lang['profchanged']  = 'Korisnikov profil uredno izmijenjen.';
69*8e6cfd4dSAndreas Gohr
70*8e6cfd4dSAndreas Gohr$lang['pwdforget'] = 'Izgubili ste lozinku?';
71*8e6cfd4dSAndreas Gohr$lang['resendna']  = 'Nije dopušteno slanje lozinke emailom.';
72*8e6cfd4dSAndreas Gohr$lang['resendpwd'] = 'Slanje nove lozinke za';
73*8e6cfd4dSAndreas Gohr$lang['resendpwdmissing'] = 'Molimo Vas da ispunite sva polja.';
74*8e6cfd4dSAndreas Gohr$lang['resendpwdnouser']  = 'Korisnik nije nađen.';
75*8e6cfd4dSAndreas Gohr$lang['resendpwdsuccess'] = 'Nova lozinka je poslana emailom.';
76*8e6cfd4dSAndreas Gohr
77*8e6cfd4dSAndreas Gohr$lang['txt_upload']   = 'Odaberite datoteku za upload';
78*8e6cfd4dSAndreas Gohr$lang['txt_filename'] = 'Upload kao (nije obavezno)';
79*8e6cfd4dSAndreas Gohr$lang['txt_overwrt']  = 'Preko već postojeće datoteke';
80*8e6cfd4dSAndreas Gohr$lang['lockedby']     = 'Zaključano od strane korisnika';
81*8e6cfd4dSAndreas Gohr$lang['lockexpire']   = 'Zaključano do';
82*8e6cfd4dSAndreas Gohr$lang['willexpire']   = 'Dokument kojeg mijenjate će biti zaključan još 1 minutu. Ukoliko želite i dalje raditi izmjene na dokumentu - molimo Vas da kliknete na "Pregled".'; // TODO
83*8e6cfd4dSAndreas Gohr
84*8e6cfd4dSAndreas Gohr$lang['notsavedyet'] = 'Vaše izmjene že ostati izgubljene.\nZaista želite nastaviti?';
85*8e6cfd4dSAndreas Gohr$lang['rssfailed']   = 'Došlo je do greške prilikom preuzimanja ovog feed-a: ';
86*8e6cfd4dSAndreas Gohr$lang['nothingfound']= 'Ništa nije nađeno.';
87*8e6cfd4dSAndreas Gohr
88*8e6cfd4dSAndreas Gohr$lang['mediaselect'] = 'Mediafile izbor';
89*8e6cfd4dSAndreas Gohr$lang['fileupload']  = 'Mediafile upload';
90*8e6cfd4dSAndreas Gohr$lang['uploadsucc']  = 'Upload uspješan';
91*8e6cfd4dSAndreas Gohr$lang['uploadfail']  = 'Upload neuspješan. Možda nešto ne valja s dozvolama na serveru?';
92*8e6cfd4dSAndreas Gohr$lang['uploadwrong'] = 'Upload nije dopušten - nedozvoljena ekstenzija!';
93*8e6cfd4dSAndreas Gohr$lang['uploadexist'] = 'Datoteka već postoji.';
94*8e6cfd4dSAndreas Gohr$lang['deletesucc']  = 'Datoteka "%s" je obrisana.';
95*8e6cfd4dSAndreas Gohr$lang['deletefail']  = '"%s" ne može biti obrisana - provjerite dozvole na serveru.';
96*8e6cfd4dSAndreas Gohr$lang['mediainuse']  = 'Datoteka "%s" nije obrisana - još uvijek se koristi.';
97*8e6cfd4dSAndreas Gohr$lang['namespaces']  = 'Namespaces';
98*8e6cfd4dSAndreas Gohr$lang['mediafiles']  = 'Datoteke u';
99*8e6cfd4dSAndreas Gohr
100*8e6cfd4dSAndreas Gohr$lang['reference']   = 'Reference za';
101*8e6cfd4dSAndreas Gohr$lang['ref_inuse']   = 'Datoteka ne može biti obrisana jer se još uvijek koristi u sljedećim stranicama:';
102*8e6cfd4dSAndreas Gohr$lang['ref_hidden']  = 'Neke reference su na stranicama koje nemate dozvolu ćitati';
103*8e6cfd4dSAndreas Gohr
104*8e6cfd4dSAndreas Gohr$lang['hits']       = 'Nađeno';
105*8e6cfd4dSAndreas Gohr$lang['quickhits']  = 'Nađeno po imenima stranica';
106*8e6cfd4dSAndreas Gohr$lang['toc']        = 'Sadržaj';
107*8e6cfd4dSAndreas Gohr$lang['current']    = 'trenutno';
108*8e6cfd4dSAndreas Gohr$lang['yours']      = 'Vaša verzija';
109*8e6cfd4dSAndreas Gohr$lang['diff']       = 'prikaži razlike u odnosu na trenutnu verziju';
110*8e6cfd4dSAndreas Gohr$lang['line']       = 'Redak';
111*8e6cfd4dSAndreas Gohr$lang['breadcrumb'] = 'Trace';
112*8e6cfd4dSAndreas Gohr$lang['youarehere'] = 'Vi ste ovdje';
113*8e6cfd4dSAndreas Gohr$lang['lastmod']    = 'Zadnja izmjena';
114*8e6cfd4dSAndreas Gohr$lang['by']         = 'od';
115*8e6cfd4dSAndreas Gohr$lang['deleted']    = 'obrisano';
116*8e6cfd4dSAndreas Gohr$lang['created']    = 'kreirano';
117*8e6cfd4dSAndreas Gohr$lang['restored']   = 'old revision restored';
118*8e6cfd4dSAndreas Gohr$lang['summary']    = 'Sažetak izmjena';
119*8e6cfd4dSAndreas Gohr
120*8e6cfd4dSAndreas Gohr$lang['mail_newpage'] = 'stranica dodana:';
121*8e6cfd4dSAndreas Gohr$lang['mail_changed'] = 'stranica kreirana:';
122*8e6cfd4dSAndreas Gohr
123*8e6cfd4dSAndreas Gohr$lang['nosmblinks'] = 'Linkovi na share-ane foldere rade samo s Internet Explorerom. ';
124*8e6cfd4dSAndreas Gohr
125*8e6cfd4dSAndreas Gohr$lang['qb_alert']   = 'Unesite tekst kojeg želite formatirati.\nBiti će dodan na kraju dokumenta.';
126*8e6cfd4dSAndreas Gohr$lang['qb_bold']    = 'Podebljani tekst';
127*8e6cfd4dSAndreas Gohr$lang['qb_italic']  = 'Ukošeni tekst';
128*8e6cfd4dSAndreas Gohr$lang['qb_underl']  = 'Potcrtani tekst';
129*8e6cfd4dSAndreas Gohr$lang['qb_code']    = 'Kod';
130*8e6cfd4dSAndreas Gohr$lang['qb_strike']  = 'Precrtani tekst';
131*8e6cfd4dSAndreas Gohr$lang['qb_h1']      = 'Naslov - nivo 1';
132*8e6cfd4dSAndreas Gohr$lang['qb_h2']      = 'Naslov - nivo 2';
133*8e6cfd4dSAndreas Gohr$lang['qb_h3']      = 'Naslov - nivo 3';
134*8e6cfd4dSAndreas Gohr$lang['qb_h4']      = 'Naslov - nivo 4';
135*8e6cfd4dSAndreas Gohr$lang['qb_h5']      = 'Naslov - nivo 5';
136*8e6cfd4dSAndreas Gohr$lang['qb_link']    = 'Interni link';
137*8e6cfd4dSAndreas Gohr$lang['qb_extlink'] = 'Eksterni link';
138*8e6cfd4dSAndreas Gohr$lang['qb_hr']      = 'Vodoravna crta';
139*8e6cfd4dSAndreas Gohr$lang['qb_ol']      = 'Pobrojana lista';
140*8e6cfd4dSAndreas Gohr$lang['qb_ul']      = 'Lista';
141*8e6cfd4dSAndreas Gohr$lang['qb_media']   = 'Slike';
142*8e6cfd4dSAndreas Gohr$lang['qb_sig']     = 'Potpis';
143*8e6cfd4dSAndreas Gohr$lang['qb_smileys'] = 'Smile-ovi';
144*8e6cfd4dSAndreas Gohr$lang['qb_chars']   = 'Posebni znakovi';
145*8e6cfd4dSAndreas Gohr
146*8e6cfd4dSAndreas Gohr$lang['del_confirm']= 'Jeste li sigurni da ćelite obrisati?';
147*8e6cfd4dSAndreas Gohr$lang['admin_register']= 'Dodavanje korisnika';
148*8e6cfd4dSAndreas Gohr
149*8e6cfd4dSAndreas Gohr$lang['spell_start'] = 'Provjerite ispravnost teksta';
150*8e6cfd4dSAndreas Gohr$lang['spell_stop']  = 'Nastavite s izmjenama';
151*8e6cfd4dSAndreas Gohr$lang['spell_wait']  = 'Pričekajte trenutak...';
152*8e6cfd4dSAndreas Gohr$lang['spell_noerr'] = 'Nema grešaka';
153*8e6cfd4dSAndreas Gohr$lang['spell_nosug'] = 'Nema prijedloga';
154*8e6cfd4dSAndreas Gohr$lang['spell_change']= 'Izmjena';
155*8e6cfd4dSAndreas Gohr
156*8e6cfd4dSAndreas Gohr$lang['metaedit']    = 'Izmjena metapodataka';
157*8e6cfd4dSAndreas Gohr$lang['metasaveerr'] = 'Izmjena metapodataka nije uspjela';
158*8e6cfd4dSAndreas Gohr$lang['metasaveok']  = 'Meta';
159*8e6cfd4dSAndreas Gohr$lang['img_backto']  = 'Povratak na';
160*8e6cfd4dSAndreas Gohr$lang['img_title']   = 'Naslov';
161*8e6cfd4dSAndreas Gohr$lang['img_caption'] = 'Caption';
162*8e6cfd4dSAndreas Gohr$lang['img_date']    = 'Datum';
163*8e6cfd4dSAndreas Gohr$lang['img_fname']   = 'Ime datoteke';
164*8e6cfd4dSAndreas Gohr$lang['img_fsize']   = 'Veličina';
165*8e6cfd4dSAndreas Gohr$lang['img_artist']  = 'Fotograf';
166*8e6cfd4dSAndreas Gohr$lang['img_copyr']   = 'Copyright';
167*8e6cfd4dSAndreas Gohr$lang['img_format']  = 'Format';
168*8e6cfd4dSAndreas Gohr$lang['img_camera']  = 'Kamera';
169*8e6cfd4dSAndreas Gohr$lang['img_keywords']= 'Ključne riječi';
170*8e6cfd4dSAndreas Gohr
171*8e6cfd4dSAndreas Gohr$lang['subscribe_success']  = 'Dodan korisnik %s kao pretplatnik na %s';
172*8e6cfd4dSAndreas Gohr$lang['subscribe_error']    = 'Greška pri dodavanju korisnika %s kao pretplatnika na %s';
173*8e6cfd4dSAndreas Gohr$lang['subscribe_noaddress']= 'Nema email adrese za vaše korisničko ime, ne možete biti dodani na listu pretplatnika';
174*8e6cfd4dSAndreas Gohr$lang['unsubscribe_success']= 'Maknut %s sa liste pretplatnika %s';
175*8e6cfd4dSAndreas Gohr$lang['unsubscribe_error']  = 'Greška pri micanju korisnika %s s liste pretplatnika za %s';
176*8e6cfd4dSAndreas Gohr
177*8e6cfd4dSAndreas Gohr/* auth.class language support */
178*8e6cfd4dSAndreas Gohr$lang['authmodfailed']   = 'Greška pri konfiguraciji za autentifikaciju. Molimo Vas da kontaktirate administratora.';
179*8e6cfd4dSAndreas Gohr$lang['authtempfail']    = 'Autentifikacija korisnika je privremeno nedostupna. Molimo Vas da kontaktirate administratora.';
180*8e6cfd4dSAndreas Gohr
181*8e6cfd4dSAndreas Gohr//Setup VIM: ex: et ts=2 enc=utf-8 :
182