bs.po 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048
  1. # APT - Advanced Package Transfer
  2. # This file is put in the public domain.
  3. # Safir Šećerović <sapphire@linux.org.ba>, 2004
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: apt 0.5.26\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2010-07-30 12:45+0200\n"
  10. "PO-Revision-Date: 2004-05-06 15:25+0100\n"
  11. "Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
  12. "Language-Team: Bosnian <lokal@lugbih.org>\n"
  13. "Language: bs\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=utf-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. #: cmdline/apt-cache.cc:156
  18. #, c-format
  19. msgid "Package %s version %s has an unmet dep:\n"
  20. msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n"
  21. #: cmdline/apt-cache.cc:284
  22. msgid "Total package names: "
  23. msgstr "Ukupno naziva paketa:"
  24. #: cmdline/apt-cache.cc:286
  25. #, fuzzy
  26. msgid "Total package structures: "
  27. msgstr "Ukupno naziva paketa:"
  28. #: cmdline/apt-cache.cc:326
  29. msgid " Normal packages: "
  30. msgstr " Normalni paketi:"
  31. #: cmdline/apt-cache.cc:327
  32. msgid " Pure virtual packages: "
  33. msgstr " Čisto virtuelni paketi:"
  34. #: cmdline/apt-cache.cc:328
  35. msgid " Single virtual packages: "
  36. msgstr " Pojedinačni virutuelni paketi:"
  37. #: cmdline/apt-cache.cc:329
  38. msgid " Mixed virtual packages: "
  39. msgstr " Miješani virtuelni paketi:"
  40. #: cmdline/apt-cache.cc:330
  41. msgid " Missing: "
  42. msgstr " Nedostajući:"
  43. #: cmdline/apt-cache.cc:332
  44. msgid "Total distinct versions: "
  45. msgstr "Ukupno različitih verzija:"
  46. #: cmdline/apt-cache.cc:334
  47. #, fuzzy
  48. msgid "Total distinct descriptions: "
  49. msgstr "Ukupno različitih verzija:"
  50. #: cmdline/apt-cache.cc:336
  51. msgid "Total dependencies: "
  52. msgstr "Ukupno zavisnosti:"
  53. #: cmdline/apt-cache.cc:339
  54. msgid "Total ver/file relations: "
  55. msgstr "Ukupno Verzija/Datoteka odnosa:"
  56. #: cmdline/apt-cache.cc:341
  57. #, fuzzy
  58. msgid "Total Desc/File relations: "
  59. msgstr "Ukupno Verzija/Datoteka odnosa:"
  60. #: cmdline/apt-cache.cc:343
  61. msgid "Total Provides mappings: "
  62. msgstr ""
  63. #: cmdline/apt-cache.cc:355
  64. msgid "Total globbed strings: "
  65. msgstr ""
  66. #: cmdline/apt-cache.cc:369
  67. msgid "Total dependency version space: "
  68. msgstr ""
  69. #: cmdline/apt-cache.cc:374
  70. msgid "Total slack space: "
  71. msgstr ""
  72. #: cmdline/apt-cache.cc:382
  73. msgid "Total space accounted for: "
  74. msgstr ""
  75. #: cmdline/apt-cache.cc:513 cmdline/apt-cache.cc:1194
  76. #, c-format
  77. msgid "Package file %s is out of sync."
  78. msgstr ""
  79. #: cmdline/apt-cache.cc:1273
  80. msgid "You must give at least one search pattern"
  81. msgstr ""
  82. #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431
  83. #: cmdline/apt-cache.cc:1508
  84. msgid "No packages found"
  85. msgstr "Paketi nisu pronađeni"
  86. #: cmdline/apt-cache.cc:1503
  87. #, c-format
  88. msgid "Unable to locate package %s"
  89. msgstr "Ne mogu pronaći paket %s"
  90. #: cmdline/apt-cache.cc:1533
  91. msgid "Package files:"
  92. msgstr "Datoteke paketa:"
  93. #: cmdline/apt-cache.cc:1540 cmdline/apt-cache.cc:1638
  94. msgid "Cache is out of sync, can't x-ref a package file"
  95. msgstr ""
  96. #. Show any packages have explicit pins
  97. #: cmdline/apt-cache.cc:1554
  98. msgid "Pinned packages:"
  99. msgstr ""
  100. #: cmdline/apt-cache.cc:1566 cmdline/apt-cache.cc:1618
  101. msgid "(not found)"
  102. msgstr ""
  103. #: cmdline/apt-cache.cc:1575
  104. msgid " Installed: "
  105. msgstr " Instalirano:"
  106. #: cmdline/apt-cache.cc:1576
  107. msgid " Candidate: "
  108. msgstr ""
  109. #: cmdline/apt-cache.cc:1600 cmdline/apt-cache.cc:1608
  110. msgid "(none)"
  111. msgstr ""
  112. #: cmdline/apt-cache.cc:1615
  113. msgid " Package pin: "
  114. msgstr ""
  115. #. Show the priority tables
  116. #: cmdline/apt-cache.cc:1624
  117. msgid " Version table:"
  118. msgstr ""
  119. #: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70
  120. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584
  121. #: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144
  122. #, c-format
  123. msgid "%s %s for %s compiled on %s %s\n"
  124. msgstr ""
  125. #: cmdline/apt-cache.cc:1739
  126. msgid ""
  127. "Usage: apt-cache [options] command\n"
  128. " apt-cache [options] add file1 [file2 ...]\n"
  129. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  130. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  131. "\n"
  132. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  133. "cache files, and query information from them\n"
  134. "\n"
  135. "Commands:\n"
  136. " add - Add a package file to the source cache\n"
  137. " gencaches - Build both the package and source cache\n"
  138. " showpkg - Show some general information for a single package\n"
  139. " showsrc - Show source records\n"
  140. " stats - Show some basic statistics\n"
  141. " dump - Show the entire file in a terse form\n"
  142. " dumpavail - Print an available file to stdout\n"
  143. " unmet - Show unmet dependencies\n"
  144. " search - Search the package list for a regex pattern\n"
  145. " show - Show a readable record for the package\n"
  146. " showauto - Display a list of automatically installed packages\n"
  147. " depends - Show raw dependency information for a package\n"
  148. " rdepends - Show reverse dependency information for a package\n"
  149. " pkgnames - List the names of all packages in the system\n"
  150. " dotty - Generate package graphs for GraphViz\n"
  151. " xvcg - Generate package graphs for xvcg\n"
  152. " policy - Show policy settings\n"
  153. "\n"
  154. "Options:\n"
  155. " -h This help text.\n"
  156. " -p=? The package cache.\n"
  157. " -s=? The source cache.\n"
  158. " -q Disable progress indicator.\n"
  159. " -i Show only important deps for the unmet command.\n"
  160. " -c=? Read this configuration file\n"
  161. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  162. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  163. msgstr ""
  164. #: cmdline/apt-cdrom.cc:77
  165. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  166. msgstr ""
  167. #: cmdline/apt-cdrom.cc:92
  168. msgid "Please insert a Disc in the drive and press enter"
  169. msgstr ""
  170. #: cmdline/apt-cdrom.cc:127
  171. #, fuzzy, c-format
  172. msgid "Failed to mount '%s' to '%s'"
  173. msgstr "Ne mogu otvoriti %s"
  174. #: cmdline/apt-cdrom.cc:162
  175. msgid "Repeat this process for the rest of the CDs in your set."
  176. msgstr ""
  177. #: cmdline/apt-config.cc:41
  178. msgid "Arguments not in pairs"
  179. msgstr "Argumenti nisu u parovima"
  180. #: cmdline/apt-config.cc:76
  181. msgid ""
  182. "Usage: apt-config [options] command\n"
  183. "\n"
  184. "apt-config is a simple tool to read the APT config file\n"
  185. "\n"
  186. "Commands:\n"
  187. " shell - Shell mode\n"
  188. " dump - Show the configuration\n"
  189. "\n"
  190. "Options:\n"
  191. " -h This help text.\n"
  192. " -c=? Read this configuration file\n"
  193. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  194. msgstr ""
  195. "Upotreba: apt-config [opcije] naredba\n"
  196. "\n"
  197. "apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n"
  198. "\n"
  199. "Naredbe:\n"
  200. " shell - Shell mod\n"
  201. " dump - Prikaz konfiguracije\n"
  202. "\n"
  203. "Opcije:\n"
  204. " -h Ovaj tekst pomoći.\n"
  205. " -c=? Pročitaj ovu konfiguracijsku datoteku\n"
  206. " -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n"
  207. #: cmdline/apt-extracttemplates.cc:98
  208. #, c-format
  209. msgid "%s not a valid DEB package."
  210. msgstr "%s nije ispravan DEB paket."
  211. #: cmdline/apt-extracttemplates.cc:232
  212. msgid ""
  213. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  214. "\n"
  215. "apt-extracttemplates is a tool to extract config and template info\n"
  216. "from debian packages\n"
  217. "\n"
  218. "Options:\n"
  219. " -h This help text\n"
  220. " -t Set the temp dir\n"
  221. " -c=? Read this configuration file\n"
  222. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  223. msgstr ""
  224. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1171
  225. #, c-format
  226. msgid "Unable to write to %s"
  227. msgstr "Ne mogu zapisati na %s"
  228. #: cmdline/apt-extracttemplates.cc:309
  229. msgid "Cannot get debconf version. Is debconf installed?"
  230. msgstr ""
  231. "Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?"
  232. #: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345
  233. msgid "Package extension list is too long"
  234. msgstr ""
  235. #: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187
  236. #: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260
  237. #: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296
  238. #, c-format
  239. msgid "Error processing directory %s"
  240. msgstr ""
  241. #: ftparchive/apt-ftparchive.cc:258
  242. msgid "Source extension list is too long"
  243. msgstr ""
  244. #: ftparchive/apt-ftparchive.cc:375
  245. msgid "Error writing header to contents file"
  246. msgstr ""
  247. #: ftparchive/apt-ftparchive.cc:405
  248. #, c-format
  249. msgid "Error processing contents %s"
  250. msgstr ""
  251. #: ftparchive/apt-ftparchive.cc:590
  252. msgid ""
  253. "Usage: apt-ftparchive [options] command\n"
  254. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  255. " sources srcpath [overridefile [pathprefix]]\n"
  256. " contents path\n"
  257. " release path\n"
  258. " generate config [groups]\n"
  259. " clean config\n"
  260. "\n"
  261. "apt-ftparchive generates index files for Debian archives. It supports\n"
  262. "many styles of generation from fully automated to functional replacements\n"
  263. "for dpkg-scanpackages and dpkg-scansources\n"
  264. "\n"
  265. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  266. "Package file contains the contents of all the control fields from\n"
  267. "each package as well as the MD5 hash and filesize. An override file\n"
  268. "is supported to force the value of Priority and Section.\n"
  269. "\n"
  270. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  271. "The --source-override option can be used to specify a src override file\n"
  272. "\n"
  273. "The 'packages' and 'sources' command should be run in the root of the\n"
  274. "tree. BinaryPath should point to the base of the recursive search and \n"
  275. "override file should contain the override flags. Pathprefix is\n"
  276. "appended to the filename fields if present. Example usage from the \n"
  277. "Debian archive:\n"
  278. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  279. " dists/potato/main/binary-i386/Packages\n"
  280. "\n"
  281. "Options:\n"
  282. " -h This help text\n"
  283. " --md5 Control MD5 generation\n"
  284. " -s=? Source override file\n"
  285. " -q Quiet\n"
  286. " -d=? Select the optional caching database\n"
  287. " --no-delink Enable delinking debug mode\n"
  288. " --contents Control contents file generation\n"
  289. " -c=? Read this configuration file\n"
  290. " -o=? Set an arbitrary configuration option"
  291. msgstr ""
  292. #: ftparchive/apt-ftparchive.cc:796
  293. msgid "No selections matched"
  294. msgstr ""
  295. #: ftparchive/apt-ftparchive.cc:874
  296. #, c-format
  297. msgid "Some files are missing in the package file group `%s'"
  298. msgstr ""
  299. #: ftparchive/cachedb.cc:43
  300. #, c-format
  301. msgid "DB was corrupted, file renamed to %s.old"
  302. msgstr "DB je bila oštećena, datoteka preimenovana u %s.old"
  303. #: ftparchive/cachedb.cc:61
  304. #, c-format
  305. msgid "DB is old, attempting to upgrade %s"
  306. msgstr "DB je stara, pokušavam nadogradnju %s"
  307. #: ftparchive/cachedb.cc:72
  308. msgid ""
  309. "DB format is invalid. If you upgraded from an older version of apt, please "
  310. "remove and re-create the database."
  311. msgstr ""
  312. #: ftparchive/cachedb.cc:77
  313. #, fuzzy, c-format
  314. msgid "Unable to open DB file %s: %s"
  315. msgstr "Ne mogu otvoriti DB datoteku %s"
  316. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  317. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  318. #, c-format
  319. msgid "Failed to stat %s"
  320. msgstr ""
  321. #: ftparchive/cachedb.cc:242
  322. msgid "Archive has no control record"
  323. msgstr "Arhiva nema kontrolnog zapisa"
  324. #: ftparchive/cachedb.cc:448
  325. msgid "Unable to get a cursor"
  326. msgstr ""
  327. #: ftparchive/writer.cc:73
  328. #, c-format
  329. msgid "W: Unable to read directory %s\n"
  330. msgstr ""
  331. #: ftparchive/writer.cc:78
  332. #, c-format
  333. msgid "W: Unable to stat %s\n"
  334. msgstr ""
  335. #: ftparchive/writer.cc:134
  336. msgid "E: "
  337. msgstr ""
  338. #: ftparchive/writer.cc:136
  339. msgid "W: "
  340. msgstr ""
  341. #: ftparchive/writer.cc:143
  342. msgid "E: Errors apply to file "
  343. msgstr ""
  344. #: ftparchive/writer.cc:161 ftparchive/writer.cc:193
  345. #, c-format
  346. msgid "Failed to resolve %s"
  347. msgstr ""
  348. #: ftparchive/writer.cc:174
  349. msgid "Tree walking failed"
  350. msgstr ""
  351. #: ftparchive/writer.cc:201
  352. #, c-format
  353. msgid "Failed to open %s"
  354. msgstr "Ne mogu otvoriti %s"
  355. #: ftparchive/writer.cc:260
  356. #, c-format
  357. msgid " DeLink %s [%s]\n"
  358. msgstr ""
  359. #: ftparchive/writer.cc:268
  360. #, c-format
  361. msgid "Failed to readlink %s"
  362. msgstr ""
  363. #: ftparchive/writer.cc:272
  364. #, c-format
  365. msgid "Failed to unlink %s"
  366. msgstr ""
  367. #: ftparchive/writer.cc:279
  368. #, c-format
  369. msgid "*** Failed to link %s to %s"
  370. msgstr ""
  371. #: ftparchive/writer.cc:289
  372. #, c-format
  373. msgid " DeLink limit of %sB hit.\n"
  374. msgstr ""
  375. #: ftparchive/writer.cc:393
  376. msgid "Archive had no package field"
  377. msgstr ""
  378. #: ftparchive/writer.cc:401 ftparchive/writer.cc:688
  379. #, c-format
  380. msgid " %s has no override entry\n"
  381. msgstr ""
  382. #: ftparchive/writer.cc:464 ftparchive/writer.cc:790
  383. #, c-format
  384. msgid " %s maintainer is %s not %s\n"
  385. msgstr ""
  386. #: ftparchive/writer.cc:698
  387. #, c-format
  388. msgid " %s has no source override entry\n"
  389. msgstr ""
  390. #: ftparchive/writer.cc:702
  391. #, c-format
  392. msgid " %s has no binary override entry either\n"
  393. msgstr ""
  394. #: ftparchive/contents.cc:321
  395. #, c-format
  396. msgid "Internal error, could not locate member %s"
  397. msgstr ""
  398. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  399. msgid "realloc - Failed to allocate memory"
  400. msgstr ""
  401. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  402. #, c-format
  403. msgid "Unable to open %s"
  404. msgstr ""
  405. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  406. #, c-format
  407. msgid "Malformed override %s line %lu #1"
  408. msgstr ""
  409. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  410. #, c-format
  411. msgid "Malformed override %s line %lu #2"
  412. msgstr ""
  413. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  414. #, c-format
  415. msgid "Malformed override %s line %lu #3"
  416. msgstr ""
  417. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  418. #, c-format
  419. msgid "Failed to read the override file %s"
  420. msgstr ""
  421. #: ftparchive/multicompress.cc:72
  422. #, c-format
  423. msgid "Unknown compression algorithm '%s'"
  424. msgstr ""
  425. #: ftparchive/multicompress.cc:102
  426. #, c-format
  427. msgid "Compressed output %s needs a compression set"
  428. msgstr ""
  429. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  430. msgid "Failed to create IPC pipe to subprocess"
  431. msgstr ""
  432. #: ftparchive/multicompress.cc:195
  433. msgid "Failed to create FILE*"
  434. msgstr ""
  435. #: ftparchive/multicompress.cc:198
  436. msgid "Failed to fork"
  437. msgstr ""
  438. #: ftparchive/multicompress.cc:212
  439. msgid "Compress child"
  440. msgstr ""
  441. #: ftparchive/multicompress.cc:235
  442. #, c-format
  443. msgid "Internal error, failed to create %s"
  444. msgstr ""
  445. #: ftparchive/multicompress.cc:286
  446. msgid "Failed to create subprocess IPC"
  447. msgstr ""
  448. #: ftparchive/multicompress.cc:321
  449. msgid "Failed to exec compressor "
  450. msgstr ""
  451. #: ftparchive/multicompress.cc:360
  452. msgid "decompressor"
  453. msgstr ""
  454. #: ftparchive/multicompress.cc:403
  455. msgid "IO to subprocess/file failed"
  456. msgstr ""
  457. #: ftparchive/multicompress.cc:455
  458. msgid "Failed to read while computing MD5"
  459. msgstr ""
  460. #: ftparchive/multicompress.cc:472
  461. #, c-format
  462. msgid "Problem unlinking %s"
  463. msgstr ""
  464. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  465. #, c-format
  466. msgid "Failed to rename %s to %s"
  467. msgstr ""
  468. #: cmdline/apt-get.cc:134
  469. msgid "Y"
  470. msgstr ""
  471. #: cmdline/apt-get.cc:156
  472. #, c-format
  473. msgid "Regex compilation error - %s"
  474. msgstr ""
  475. #: cmdline/apt-get.cc:251
  476. msgid "The following packages have unmet dependencies:"
  477. msgstr ""
  478. #: cmdline/apt-get.cc:341
  479. #, c-format
  480. msgid "but %s is installed"
  481. msgstr "ali je %s instaliran"
  482. #: cmdline/apt-get.cc:343
  483. #, c-format
  484. msgid "but %s is to be installed"
  485. msgstr "ali se %s treba instalirati"
  486. #: cmdline/apt-get.cc:350
  487. msgid "but it is not installable"
  488. msgstr "ali se ne može instalirati"
  489. #: cmdline/apt-get.cc:352
  490. msgid "but it is a virtual package"
  491. msgstr "ali je virtuelni paket"
  492. #: cmdline/apt-get.cc:355
  493. msgid "but it is not installed"
  494. msgstr "ali nije instaliran"
  495. #: cmdline/apt-get.cc:355
  496. msgid "but it is not going to be installed"
  497. msgstr "ali se neće instalirati"
  498. #: cmdline/apt-get.cc:360
  499. msgid " or"
  500. msgstr " ili"
  501. #: cmdline/apt-get.cc:391
  502. msgid "The following NEW packages will be installed:"
  503. msgstr "Slijedeći NOVI paketi će biti instalirani:"
  504. #: cmdline/apt-get.cc:419
  505. msgid "The following packages will be REMOVED:"
  506. msgstr "Slijedeći paketi će biti UKLONJENI:"
  507. #: cmdline/apt-get.cc:441
  508. #, fuzzy
  509. msgid "The following packages have been kept back:"
  510. msgstr "Slijedeći paketi su zadržani:"
  511. #: cmdline/apt-get.cc:464
  512. msgid "The following packages will be upgraded:"
  513. msgstr "Slijedeći paketi će biti nadograđeni:"
  514. #: cmdline/apt-get.cc:487
  515. msgid "The following packages will be DOWNGRADED:"
  516. msgstr ""
  517. #: cmdline/apt-get.cc:507
  518. msgid "The following held packages will be changed:"
  519. msgstr ""
  520. #: cmdline/apt-get.cc:560
  521. #, c-format
  522. msgid "%s (due to %s) "
  523. msgstr ""
  524. #: cmdline/apt-get.cc:568
  525. msgid ""
  526. "WARNING: The following essential packages will be removed.\n"
  527. "This should NOT be done unless you know exactly what you are doing!"
  528. msgstr ""
  529. #: cmdline/apt-get.cc:602
  530. #, c-format
  531. msgid "%lu upgraded, %lu newly installed, "
  532. msgstr ""
  533. #: cmdline/apt-get.cc:606
  534. #, c-format
  535. msgid "%lu reinstalled, "
  536. msgstr ""
  537. #: cmdline/apt-get.cc:608
  538. #, c-format
  539. msgid "%lu downgraded, "
  540. msgstr ""
  541. #: cmdline/apt-get.cc:610
  542. #, c-format
  543. msgid "%lu to remove and %lu not upgraded.\n"
  544. msgstr ""
  545. #: cmdline/apt-get.cc:614
  546. #, c-format
  547. msgid "%lu not fully installed or removed.\n"
  548. msgstr ""
  549. #: cmdline/apt-get.cc:634
  550. #, c-format
  551. msgid "Note, selecting '%s' for task '%s'\n"
  552. msgstr ""
  553. #: cmdline/apt-get.cc:640
  554. #, c-format
  555. msgid "Note, selecting '%s' for regex '%s'\n"
  556. msgstr ""
  557. #: cmdline/apt-get.cc:647
  558. #, c-format
  559. msgid "Selected version '%s' (%s) for '%s'\n"
  560. msgstr ""
  561. #: cmdline/apt-get.cc:657
  562. #, c-format
  563. msgid "Package %s is a virtual package provided by:\n"
  564. msgstr ""
  565. #: cmdline/apt-get.cc:668
  566. msgid " [Installed]"
  567. msgstr "[Instalirano]"
  568. #: cmdline/apt-get.cc:677
  569. #, fuzzy
  570. msgid " [Not candidate version]"
  571. msgstr "Verzije kandidata"
  572. #: cmdline/apt-get.cc:679
  573. msgid "You should explicitly select one to install."
  574. msgstr ""
  575. #: cmdline/apt-get.cc:682
  576. #, c-format
  577. msgid ""
  578. "Package %s is not available, but is referred to by another package.\n"
  579. "This may mean that the package is missing, has been obsoleted, or\n"
  580. "is only available from another source\n"
  581. msgstr ""
  582. #: cmdline/apt-get.cc:700
  583. msgid "However the following packages replace it:"
  584. msgstr "Međutim, slijedeći paketi ga zamjenjuju:"
  585. #: cmdline/apt-get.cc:712
  586. #, c-format
  587. msgid "Package '%s' has no installation candidate"
  588. msgstr ""
  589. #: cmdline/apt-get.cc:723
  590. #, c-format
  591. msgid "Virtual packages like '%s' can't be removed\n"
  592. msgstr ""
  593. #: cmdline/apt-get.cc:754
  594. #, c-format
  595. msgid "Note, selecting '%s' instead of '%s'\n"
  596. msgstr ""
  597. #: cmdline/apt-get.cc:784
  598. #, c-format
  599. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  600. msgstr ""
  601. #: cmdline/apt-get.cc:788
  602. #, c-format
  603. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  604. msgstr ""
  605. #: cmdline/apt-get.cc:798
  606. #, c-format
  607. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  608. msgstr ""
  609. #: cmdline/apt-get.cc:803
  610. #, c-format
  611. msgid "%s is already the newest version.\n"
  612. msgstr ""
  613. #: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979
  614. #, fuzzy, c-format
  615. msgid "%s set to manually installed.\n"
  616. msgstr "ali se %s treba instalirati"
  617. #: cmdline/apt-get.cc:859
  618. #, c-format
  619. msgid "Package %s is not installed, so not removed\n"
  620. msgstr ""
  621. #: cmdline/apt-get.cc:934
  622. msgid "Correcting dependencies..."
  623. msgstr "Ispravljam zavisnosti..."
  624. #: cmdline/apt-get.cc:937
  625. msgid " failed."
  626. msgstr ""
  627. #: cmdline/apt-get.cc:940
  628. msgid "Unable to correct dependencies"
  629. msgstr "Ne mogu ispraviti zavisnosti"
  630. #: cmdline/apt-get.cc:943
  631. msgid "Unable to minimize the upgrade set"
  632. msgstr ""
  633. #: cmdline/apt-get.cc:945
  634. msgid " Done"
  635. msgstr " Urađeno"
  636. #: cmdline/apt-get.cc:949
  637. msgid "You might want to run 'apt-get -f install' to correct these."
  638. msgstr ""
  639. #: cmdline/apt-get.cc:952
  640. msgid "Unmet dependencies. Try using -f."
  641. msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f."
  642. #: cmdline/apt-get.cc:977
  643. #, fuzzy
  644. msgid "WARNING: The following packages cannot be authenticated!"
  645. msgstr "Slijedeći paketi će biti nadograđeni:"
  646. #: cmdline/apt-get.cc:981
  647. msgid "Authentication warning overridden.\n"
  648. msgstr ""
  649. #: cmdline/apt-get.cc:988
  650. msgid "Install these packages without verification [y/N]? "
  651. msgstr ""
  652. #: cmdline/apt-get.cc:990
  653. msgid "Some packages could not be authenticated"
  654. msgstr ""
  655. #: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154
  656. msgid "There are problems and -y was used without --force-yes"
  657. msgstr ""
  658. #: cmdline/apt-get.cc:1040
  659. msgid "Internal error, InstallPackages was called with broken packages!"
  660. msgstr ""
  661. #: cmdline/apt-get.cc:1049
  662. msgid "Packages need to be removed but remove is disabled."
  663. msgstr ""
  664. #: cmdline/apt-get.cc:1060
  665. msgid "Internal error, Ordering didn't finish"
  666. msgstr ""
  667. #: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481
  668. #: apt-pkg/cachefile.cc:106
  669. msgid "The list of sources could not be read."
  670. msgstr ""
  671. #: cmdline/apt-get.cc:1100
  672. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  673. msgstr ""
  674. #: cmdline/apt-get.cc:1105
  675. #, c-format
  676. msgid "Need to get %sB/%sB of archives.\n"
  677. msgstr ""
  678. #: cmdline/apt-get.cc:1108
  679. #, c-format
  680. msgid "Need to get %sB of archives.\n"
  681. msgstr ""
  682. #: cmdline/apt-get.cc:1113
  683. #, c-format
  684. msgid "After this operation, %sB of additional disk space will be used.\n"
  685. msgstr ""
  686. #: cmdline/apt-get.cc:1116
  687. #, c-format
  688. msgid "After this operation, %sB disk space will be freed.\n"
  689. msgstr ""
  690. #: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319
  691. #: cmdline/apt-get.cc:2322
  692. #, c-format
  693. msgid "Couldn't determine free space in %s"
  694. msgstr ""
  695. #: cmdline/apt-get.cc:1144
  696. #, c-format
  697. msgid "You don't have enough free space in %s."
  698. msgstr ""
  699. #: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180
  700. msgid "Trivial Only specified but this is not a trivial operation."
  701. msgstr ""
  702. #: cmdline/apt-get.cc:1162
  703. msgid "Yes, do as I say!"
  704. msgstr "Da, uradi kako kažem!"
  705. #: cmdline/apt-get.cc:1164
  706. #, c-format
  707. msgid ""
  708. "You are about to do something potentially harmful.\n"
  709. "To continue type in the phrase '%s'\n"
  710. " ?] "
  711. msgstr ""
  712. #: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189
  713. msgid "Abort."
  714. msgstr "Odustani."
  715. #: cmdline/apt-get.cc:1185
  716. #, fuzzy
  717. msgid "Do you want to continue [Y/n]? "
  718. msgstr "Da li želite nastaviti? [Y/n]"
  719. #: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434
  720. #, c-format
  721. msgid "Failed to fetch %s %s\n"
  722. msgstr ""
  723. #: cmdline/apt-get.cc:1275
  724. msgid "Some files failed to download"
  725. msgstr ""
  726. #: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384
  727. msgid "Download complete and in download only mode"
  728. msgstr ""
  729. #: cmdline/apt-get.cc:1282
  730. msgid ""
  731. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  732. "missing?"
  733. msgstr ""
  734. #: cmdline/apt-get.cc:1286
  735. msgid "--fix-missing and media swapping is not currently supported"
  736. msgstr ""
  737. #: cmdline/apt-get.cc:1291
  738. msgid "Unable to correct missing packages."
  739. msgstr ""
  740. #: cmdline/apt-get.cc:1292
  741. msgid "Aborting install."
  742. msgstr "Odustajem od instalacije."
  743. #: cmdline/apt-get.cc:1320
  744. msgid ""
  745. "The following package disappeared from your system as\n"
  746. "all files have been overwritten by other packages:"
  747. msgid_plural ""
  748. "The following packages disappeared from your system as\n"
  749. "all files have been overwritten by other packages:"
  750. msgstr[0] ""
  751. msgstr[1] ""
  752. #: cmdline/apt-get.cc:1324
  753. msgid "Note: This is done automatic and on purpose by dpkg."
  754. msgstr ""
  755. #: cmdline/apt-get.cc:1454
  756. #, c-format
  757. msgid "Ignore unavailable target release '%s' of package '%s'"
  758. msgstr ""
  759. #: cmdline/apt-get.cc:1486
  760. #, c-format
  761. msgid "Picking '%s' as source package instead of '%s'\n"
  762. msgstr ""
  763. #. if (VerTag.empty() == false && Last == 0)
  764. #: cmdline/apt-get.cc:1524
  765. #, c-format
  766. msgid "Ignore unavailable version '%s' of package '%s'"
  767. msgstr ""
  768. #: cmdline/apt-get.cc:1540
  769. msgid "The update command takes no arguments"
  770. msgstr ""
  771. #: cmdline/apt-get.cc:1605
  772. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  773. msgstr ""
  774. #: cmdline/apt-get.cc:1653
  775. #, fuzzy
  776. msgid ""
  777. "The following package is automatically installed and is no longer required:"
  778. msgid_plural ""
  779. "The following packages were automatically installed and are no longer "
  780. "required:"
  781. msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
  782. msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
  783. #: cmdline/apt-get.cc:1657
  784. #, fuzzy, c-format
  785. msgid "%lu package was automatically installed and is no longer required.\n"
  786. msgid_plural ""
  787. "%lu packages were automatically installed and are no longer required.\n"
  788. msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
  789. msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
  790. #: cmdline/apt-get.cc:1659
  791. msgid "Use 'apt-get autoremove' to remove them."
  792. msgstr ""
  793. #: cmdline/apt-get.cc:1664
  794. msgid ""
  795. "Hmm, seems like the AutoRemover destroyed something which really\n"
  796. "shouldn't happen. Please file a bug report against apt."
  797. msgstr ""
  798. #.
  799. #. if (Packages == 1)
  800. #. {
  801. #. c1out << endl;
  802. #. c1out <<
  803. #. _("Since you only requested a single operation it is extremely likely that\n"
  804. #. "the package is simply not installable and a bug report against\n"
  805. #. "that package should be filed.") << endl;
  806. #. }
  807. #.
  808. #: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809
  809. msgid "The following information may help to resolve the situation:"
  810. msgstr ""
  811. #: cmdline/apt-get.cc:1671
  812. msgid "Internal Error, AutoRemover broke stuff"
  813. msgstr ""
  814. #: cmdline/apt-get.cc:1690
  815. msgid "Internal error, AllUpgrade broke stuff"
  816. msgstr ""
  817. #: cmdline/apt-get.cc:1779
  818. msgid "You might want to run 'apt-get -f install' to correct these:"
  819. msgstr ""
  820. #: cmdline/apt-get.cc:1782
  821. msgid ""
  822. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  823. "solution)."
  824. msgstr ""
  825. #: cmdline/apt-get.cc:1794
  826. msgid ""
  827. "Some packages could not be installed. This may mean that you have\n"
  828. "requested an impossible situation or if you are using the unstable\n"
  829. "distribution that some required packages have not yet been created\n"
  830. "or been moved out of Incoming."
  831. msgstr ""
  832. #: cmdline/apt-get.cc:1812
  833. msgid "Broken packages"
  834. msgstr "Oštećeni paketi"
  835. #: cmdline/apt-get.cc:1841
  836. msgid "The following extra packages will be installed:"
  837. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  838. #: cmdline/apt-get.cc:1931
  839. msgid "Suggested packages:"
  840. msgstr "Predloženi paketi:"
  841. #: cmdline/apt-get.cc:1932
  842. msgid "Recommended packages:"
  843. msgstr "Preporučeni paketi:"
  844. #: cmdline/apt-get.cc:1974
  845. #, c-format
  846. msgid "Couldn't find package %s"
  847. msgstr ""
  848. #: cmdline/apt-get.cc:1981
  849. #, fuzzy, c-format
  850. msgid "%s set to automatically installed.\n"
  851. msgstr "ali se %s treba instalirati"
  852. #: cmdline/apt-get.cc:2002
  853. msgid "Calculating upgrade... "
  854. msgstr "Računam nadogradnju..."
  855. #: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111
  856. msgid "Failed"
  857. msgstr "Neuspješno"
  858. #: cmdline/apt-get.cc:2010
  859. msgid "Done"
  860. msgstr "Urađeno"
  861. #: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085
  862. msgid "Internal error, problem resolver broke stuff"
  863. msgstr ""
  864. #: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142
  865. msgid "Unable to lock the download directory"
  866. msgstr ""
  867. #: cmdline/apt-get.cc:2185
  868. msgid "Must specify at least one package to fetch source for"
  869. msgstr ""
  870. #: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501
  871. #, c-format
  872. msgid "Unable to find a source package for %s"
  873. msgstr ""
  874. #: cmdline/apt-get.cc:2241
  875. #, c-format
  876. msgid ""
  877. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  878. "%s\n"
  879. msgstr ""
  880. #: cmdline/apt-get.cc:2246
  881. #, c-format
  882. msgid ""
  883. "Please use:\n"
  884. "bzr get %s\n"
  885. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  886. msgstr ""
  887. #: cmdline/apt-get.cc:2297
  888. #, c-format
  889. msgid "Skipping already downloaded file '%s'\n"
  890. msgstr ""
  891. #: cmdline/apt-get.cc:2332
  892. #, c-format
  893. msgid "You don't have enough free space in %s"
  894. msgstr ""
  895. #: cmdline/apt-get.cc:2338
  896. #, c-format
  897. msgid "Need to get %sB/%sB of source archives.\n"
  898. msgstr ""
  899. #: cmdline/apt-get.cc:2341
  900. #, c-format
  901. msgid "Need to get %sB of source archives.\n"
  902. msgstr ""
  903. #: cmdline/apt-get.cc:2347
  904. #, c-format
  905. msgid "Fetch source %s\n"
  906. msgstr ""
  907. #: cmdline/apt-get.cc:2380
  908. msgid "Failed to fetch some archives."
  909. msgstr ""
  910. #: cmdline/apt-get.cc:2410
  911. #, c-format
  912. msgid "Skipping unpack of already unpacked source in %s\n"
  913. msgstr ""
  914. #: cmdline/apt-get.cc:2422
  915. #, c-format
  916. msgid "Unpack command '%s' failed.\n"
  917. msgstr ""
  918. #: cmdline/apt-get.cc:2423
  919. #, c-format
  920. msgid "Check if the 'dpkg-dev' package is installed.\n"
  921. msgstr ""
  922. #: cmdline/apt-get.cc:2440
  923. #, c-format
  924. msgid "Build command '%s' failed.\n"
  925. msgstr ""
  926. #: cmdline/apt-get.cc:2460
  927. msgid "Child process failed"
  928. msgstr ""
  929. #: cmdline/apt-get.cc:2476
  930. msgid "Must specify at least one package to check builddeps for"
  931. msgstr ""
  932. #: cmdline/apt-get.cc:2506
  933. #, c-format
  934. msgid "Unable to get build-dependency information for %s"
  935. msgstr ""
  936. #: cmdline/apt-get.cc:2526
  937. #, c-format
  938. msgid "%s has no build depends.\n"
  939. msgstr ""
  940. #: cmdline/apt-get.cc:2577
  941. #, c-format
  942. msgid ""
  943. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  944. "found"
  945. msgstr ""
  946. #: cmdline/apt-get.cc:2630
  947. #, c-format
  948. msgid ""
  949. "%s dependency for %s cannot be satisfied because no available versions of "
  950. "package %s can satisfy version requirements"
  951. msgstr ""
  952. #: cmdline/apt-get.cc:2666
  953. #, c-format
  954. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  955. msgstr ""
  956. #: cmdline/apt-get.cc:2693
  957. #, c-format
  958. msgid "Failed to satisfy %s dependency for %s: %s"
  959. msgstr ""
  960. #: cmdline/apt-get.cc:2709
  961. #, c-format
  962. msgid "Build-dependencies for %s could not be satisfied."
  963. msgstr ""
  964. #: cmdline/apt-get.cc:2714
  965. msgid "Failed to process build dependencies"
  966. msgstr ""
  967. #: cmdline/apt-get.cc:2745
  968. msgid "Supported modules:"
  969. msgstr "Podržani moduli:"
  970. #: cmdline/apt-get.cc:2786
  971. msgid ""
  972. "Usage: apt-get [options] command\n"
  973. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  974. " apt-get [options] source pkg1 [pkg2 ...]\n"
  975. "\n"
  976. "apt-get is a simple command line interface for downloading and\n"
  977. "installing packages. The most frequently used commands are update\n"
  978. "and install.\n"
  979. "\n"
  980. "Commands:\n"
  981. " update - Retrieve new lists of packages\n"
  982. " upgrade - Perform an upgrade\n"
  983. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  984. " remove - Remove packages\n"
  985. " autoremove - Remove automatically all unused packages\n"
  986. " purge - Remove packages and config files\n"
  987. " source - Download source archives\n"
  988. " build-dep - Configure build-dependencies for source packages\n"
  989. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  990. " dselect-upgrade - Follow dselect selections\n"
  991. " clean - Erase downloaded archive files\n"
  992. " autoclean - Erase old downloaded archive files\n"
  993. " check - Verify that there are no broken dependencies\n"
  994. " markauto - Mark the given packages as automatically installed\n"
  995. " unmarkauto - Mark the given packages as manually installed\n"
  996. "\n"
  997. "Options:\n"
  998. " -h This help text.\n"
  999. " -q Loggable output - no progress indicator\n"
  1000. " -qq No output except for errors\n"
  1001. " -d Download only - do NOT install or unpack archives\n"
  1002. " -s No-act. Perform ordering simulation\n"
  1003. " -y Assume Yes to all queries and do not prompt\n"
  1004. " -f Attempt to correct a system with broken dependencies in place\n"
  1005. " -m Attempt to continue if archives are unlocatable\n"
  1006. " -u Show a list of upgraded packages as well\n"
  1007. " -b Build the source package after fetching it\n"
  1008. " -V Show verbose version numbers\n"
  1009. " -c=? Read this configuration file\n"
  1010. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1011. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1012. "pages for more information and options.\n"
  1013. " This APT has Super Cow Powers.\n"
  1014. msgstr ""
  1015. #: cmdline/apt-get.cc:2958
  1016. msgid ""
  1017. "NOTE: This is only a simulation!\n"
  1018. " apt-get needs root privileges for real execution.\n"
  1019. " Keep also in mind that locking is deactivated,\n"
  1020. " so don't depend on the relevance to the real current situation!"
  1021. msgstr ""
  1022. #: cmdline/acqprogress.cc:55
  1023. msgid "Hit "
  1024. msgstr ""
  1025. #: cmdline/acqprogress.cc:79
  1026. msgid "Get:"
  1027. msgstr ""
  1028. #: cmdline/acqprogress.cc:110
  1029. msgid "Ign "
  1030. msgstr ""
  1031. #: cmdline/acqprogress.cc:114
  1032. msgid "Err "
  1033. msgstr ""
  1034. #: cmdline/acqprogress.cc:135
  1035. #, c-format
  1036. msgid "Fetched %sB in %s (%sB/s)\n"
  1037. msgstr ""
  1038. #: cmdline/acqprogress.cc:225
  1039. #, c-format
  1040. msgid " [Working]"
  1041. msgstr ""
  1042. #: cmdline/acqprogress.cc:271
  1043. #, c-format
  1044. msgid ""
  1045. "Media change: please insert the disc labeled\n"
  1046. " '%s'\n"
  1047. "in the drive '%s' and press enter\n"
  1048. msgstr ""
  1049. #: cmdline/apt-sortpkgs.cc:86
  1050. msgid "Unknown package record!"
  1051. msgstr "Nepoznat zapis paketa\""
  1052. #: cmdline/apt-sortpkgs.cc:150
  1053. msgid ""
  1054. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1055. "\n"
  1056. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1057. "to indicate what kind of file it is.\n"
  1058. "\n"
  1059. "Options:\n"
  1060. " -h This help text\n"
  1061. " -s Use source file sorting\n"
  1062. " -c=? Read this configuration file\n"
  1063. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1064. msgstr ""
  1065. #: dselect/install:32
  1066. msgid "Bad default setting!"
  1067. msgstr "Loša podrazumjevana postavka!"
  1068. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1069. #: dselect/install:105 dselect/update:45
  1070. msgid "Press enter to continue."
  1071. msgstr "Pritisnite enter za nastavak."
  1072. #: dselect/install:91
  1073. msgid "Do you want to erase any previously downloaded .deb files?"
  1074. msgstr ""
  1075. #: dselect/install:101
  1076. msgid "Some errors occurred while unpacking. Packages that were installed"
  1077. msgstr ""
  1078. #: dselect/install:102
  1079. msgid "will be configured. This may result in duplicate errors"
  1080. msgstr ""
  1081. #: dselect/install:103
  1082. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1083. msgstr ""
  1084. #: dselect/install:104
  1085. msgid ""
  1086. "above this message are important. Please fix them and run [I]nstall again"
  1087. msgstr ""
  1088. #: dselect/update:30
  1089. msgid "Merging available information"
  1090. msgstr "Sastavljam dostupne informacije"
  1091. #: apt-inst/contrib/extracttar.cc:114
  1092. msgid "Failed to create pipes"
  1093. msgstr ""
  1094. #: apt-inst/contrib/extracttar.cc:141
  1095. msgid "Failed to exec gzip "
  1096. msgstr "Ne mogu izvršiti gzip"
  1097. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1098. msgid "Corrupted archive"
  1099. msgstr "Oštećena arhiva"
  1100. #: apt-inst/contrib/extracttar.cc:193
  1101. msgid "Tar checksum failed, archive corrupted"
  1102. msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oštećena"
  1103. #: apt-inst/contrib/extracttar.cc:296
  1104. #, c-format
  1105. msgid "Unknown TAR header type %u, member %s"
  1106. msgstr ""
  1107. #: apt-inst/contrib/arfile.cc:70
  1108. msgid "Invalid archive signature"
  1109. msgstr ""
  1110. #: apt-inst/contrib/arfile.cc:78
  1111. msgid "Error reading archive member header"
  1112. msgstr ""
  1113. #: apt-inst/contrib/arfile.cc:90
  1114. #, c-format
  1115. msgid "Invalid archive member header %s"
  1116. msgstr ""
  1117. #: apt-inst/contrib/arfile.cc:102
  1118. msgid "Invalid archive member header"
  1119. msgstr ""
  1120. #: apt-inst/contrib/arfile.cc:128
  1121. msgid "Archive is too short"
  1122. msgstr "Arhiva je prekratka"
  1123. #: apt-inst/contrib/arfile.cc:132
  1124. msgid "Failed to read the archive headers"
  1125. msgstr ""
  1126. #: apt-inst/filelist.cc:380
  1127. msgid "DropNode called on still linked node"
  1128. msgstr ""
  1129. #: apt-inst/filelist.cc:412
  1130. msgid "Failed to locate the hash element!"
  1131. msgstr ""
  1132. #: apt-inst/filelist.cc:459
  1133. msgid "Failed to allocate diversion"
  1134. msgstr ""
  1135. #: apt-inst/filelist.cc:464
  1136. msgid "Internal error in AddDiversion"
  1137. msgstr ""
  1138. #: apt-inst/filelist.cc:477
  1139. #, c-format
  1140. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1141. msgstr ""
  1142. #: apt-inst/filelist.cc:506
  1143. #, c-format
  1144. msgid "Double add of diversion %s -> %s"
  1145. msgstr ""
  1146. #: apt-inst/filelist.cc:549
  1147. #, c-format
  1148. msgid "Duplicate conf file %s/%s"
  1149. msgstr ""
  1150. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1151. #, fuzzy, c-format
  1152. msgid "Failed to write file %s"
  1153. msgstr "Ne mogu ukloniti %s"
  1154. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1155. #, c-format
  1156. msgid "Failed to close file %s"
  1157. msgstr ""
  1158. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1159. #, c-format
  1160. msgid "The path %s is too long"
  1161. msgstr ""
  1162. #: apt-inst/extract.cc:124
  1163. #, c-format
  1164. msgid "Unpacking %s more than once"
  1165. msgstr ""
  1166. #: apt-inst/extract.cc:134
  1167. #, c-format
  1168. msgid "The directory %s is diverted"
  1169. msgstr ""
  1170. #: apt-inst/extract.cc:144
  1171. #, c-format
  1172. msgid "The package is trying to write to the diversion target %s/%s"
  1173. msgstr ""
  1174. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1175. msgid "The diversion path is too long"
  1176. msgstr ""
  1177. #: apt-inst/extract.cc:240
  1178. #, c-format
  1179. msgid "The directory %s is being replaced by a non-directory"
  1180. msgstr ""
  1181. #: apt-inst/extract.cc:280
  1182. msgid "Failed to locate node in its hash bucket"
  1183. msgstr ""
  1184. #: apt-inst/extract.cc:284
  1185. msgid "The path is too long"
  1186. msgstr "Putanja je preduga"
  1187. #: apt-inst/extract.cc:414
  1188. #, c-format
  1189. msgid "Overwrite package match with no version for %s"
  1190. msgstr ""
  1191. #: apt-inst/extract.cc:431
  1192. #, c-format
  1193. msgid "File %s/%s overwrites the one in the package %s"
  1194. msgstr ""
  1195. #. Only warn if there are no sources.list.d.
  1196. #. Only warn if there is no sources.list file.
  1197. #: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166
  1198. #: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204
  1199. #: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98
  1200. #: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306
  1201. #, c-format
  1202. msgid "Unable to read %s"
  1203. msgstr "Ne mogu čitati %s"
  1204. #: apt-inst/extract.cc:491
  1205. #, c-format
  1206. msgid "Unable to stat %s"
  1207. msgstr ""
  1208. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1209. #, c-format
  1210. msgid "Failed to remove %s"
  1211. msgstr "Ne mogu ukloniti %s"
  1212. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1213. #, c-format
  1214. msgid "Unable to create %s"
  1215. msgstr "Ne mogu kreirati %s"
  1216. #: apt-inst/deb/dpkgdb.cc:114
  1217. #, c-format
  1218. msgid "Failed to stat %sinfo"
  1219. msgstr ""
  1220. #: apt-inst/deb/dpkgdb.cc:119
  1221. msgid "The info and temp directories need to be on the same filesystem"
  1222. msgstr ""
  1223. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:1070
  1224. #: apt-pkg/pkgcachegen.cc:1174 apt-pkg/pkgcachegen.cc:1180
  1225. #: apt-pkg/pkgcachegen.cc:1326
  1226. msgid "Reading package lists"
  1227. msgstr "Čitam spiskove paketa"
  1228. #: apt-inst/deb/dpkgdb.cc:176
  1229. #, c-format
  1230. msgid "Failed to change to the admin dir %sinfo"
  1231. msgstr ""
  1232. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1233. #: apt-inst/deb/dpkgdb.cc:444
  1234. msgid "Internal error getting a package name"
  1235. msgstr ""
  1236. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1237. msgid "Reading file listing"
  1238. msgstr "Čitam spisak datoteke"
  1239. #: apt-inst/deb/dpkgdb.cc:212
  1240. #, c-format
  1241. msgid ""
  1242. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1243. "then make it empty and immediately re-install the same version of the "
  1244. "package!"
  1245. msgstr ""
  1246. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1247. #, c-format
  1248. msgid "Failed reading the list file %sinfo/%s"
  1249. msgstr ""
  1250. #: apt-inst/deb/dpkgdb.cc:262
  1251. msgid "Internal error getting a node"
  1252. msgstr ""
  1253. #: apt-inst/deb/dpkgdb.cc:305
  1254. #, c-format
  1255. msgid "Failed to open the diversions file %sdiversions"
  1256. msgstr ""
  1257. #: apt-inst/deb/dpkgdb.cc:320
  1258. msgid "The diversion file is corrupted"
  1259. msgstr ""
  1260. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1261. #: apt-inst/deb/dpkgdb.cc:337
  1262. #, c-format
  1263. msgid "Invalid line in the diversion file: %s"
  1264. msgstr ""
  1265. #: apt-inst/deb/dpkgdb.cc:358
  1266. msgid "Internal error adding a diversion"
  1267. msgstr ""
  1268. #: apt-inst/deb/dpkgdb.cc:379
  1269. msgid "The pkg cache must be initialized first"
  1270. msgstr ""
  1271. #: apt-inst/deb/dpkgdb.cc:439
  1272. #, c-format
  1273. msgid "Failed to find a Package: header, offset %lu"
  1274. msgstr ""
  1275. #: apt-inst/deb/dpkgdb.cc:461
  1276. #, c-format
  1277. msgid "Bad ConfFile section in the status file. Offset %lu"
  1278. msgstr ""
  1279. #: apt-inst/deb/dpkgdb.cc:466
  1280. #, c-format
  1281. msgid "Error parsing MD5. Offset %lu"
  1282. msgstr ""
  1283. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1284. #, c-format
  1285. msgid "This is not a valid DEB archive, missing '%s' member"
  1286. msgstr ""
  1287. #: apt-inst/deb/debfile.cc:50
  1288. #, c-format
  1289. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1290. msgstr ""
  1291. #: apt-inst/deb/debfile.cc:110
  1292. #, c-format
  1293. msgid "Couldn't change to %s"
  1294. msgstr ""
  1295. #: apt-inst/deb/debfile.cc:140
  1296. msgid "Internal error, could not locate member"
  1297. msgstr ""
  1298. #: apt-inst/deb/debfile.cc:173
  1299. msgid "Failed to locate a valid control file"
  1300. msgstr ""
  1301. #: apt-inst/deb/debfile.cc:258
  1302. msgid "Unparsable control file"
  1303. msgstr ""
  1304. #: methods/cdrom.cc:199
  1305. #, c-format
  1306. msgid "Unable to read the cdrom database %s"
  1307. msgstr ""
  1308. #: methods/cdrom.cc:208
  1309. msgid ""
  1310. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1311. "cannot be used to add new CD-ROMs"
  1312. msgstr ""
  1313. #: methods/cdrom.cc:218
  1314. #, fuzzy
  1315. msgid "Wrong CD-ROM"
  1316. msgstr "Pogrešan CD"
  1317. #: methods/cdrom.cc:245
  1318. #, c-format
  1319. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1320. msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi."
  1321. #: methods/cdrom.cc:250
  1322. #, fuzzy
  1323. msgid "Disk not found."
  1324. msgstr "Datoteka nije pronađena"
  1325. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1326. msgid "File not found"
  1327. msgstr "Datoteka nije pronađena"
  1328. #: methods/copy.cc:43 methods/gzip.cc:96 methods/gzip.cc:105
  1329. #: methods/rred.cc:486 methods/rred.cc:495
  1330. msgid "Failed to stat"
  1331. msgstr ""
  1332. #: methods/copy.cc:80 methods/gzip.cc:102 methods/rred.cc:492
  1333. msgid "Failed to set modification time"
  1334. msgstr ""
  1335. #: methods/file.cc:44
  1336. msgid "Invalid URI, local URIS must not start with //"
  1337. msgstr ""
  1338. #. Login must be before getpeername otherwise dante won't work.
  1339. #: methods/ftp.cc:168
  1340. msgid "Logging in"
  1341. msgstr "Prijavljujem se"
  1342. #: methods/ftp.cc:174
  1343. msgid "Unable to determine the peer name"
  1344. msgstr ""
  1345. #: methods/ftp.cc:179
  1346. msgid "Unable to determine the local name"
  1347. msgstr ""
  1348. #: methods/ftp.cc:210 methods/ftp.cc:238
  1349. #, c-format
  1350. msgid "The server refused the connection and said: %s"
  1351. msgstr ""
  1352. #: methods/ftp.cc:216
  1353. #, c-format
  1354. msgid "USER failed, server said: %s"
  1355. msgstr ""
  1356. #: methods/ftp.cc:223
  1357. #, c-format
  1358. msgid "PASS failed, server said: %s"
  1359. msgstr ""
  1360. #: methods/ftp.cc:243
  1361. msgid ""
  1362. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1363. "is empty."
  1364. msgstr ""
  1365. #: methods/ftp.cc:271
  1366. #, c-format
  1367. msgid "Login script command '%s' failed, server said: %s"
  1368. msgstr ""
  1369. #: methods/ftp.cc:297
  1370. #, c-format
  1371. msgid "TYPE failed, server said: %s"
  1372. msgstr ""
  1373. #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:183 methods/rsh.cc:226
  1374. msgid "Connection timeout"
  1375. msgstr ""
  1376. #: methods/ftp.cc:341
  1377. msgid "Server closed the connection"
  1378. msgstr "Server je zatvorio vezu"
  1379. #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190
  1380. msgid "Read error"
  1381. msgstr "Greška pri čitanju"
  1382. #: methods/ftp.cc:351 methods/rsh.cc:197
  1383. msgid "A response overflowed the buffer."
  1384. msgstr ""
  1385. #: methods/ftp.cc:368 methods/ftp.cc:380
  1386. #, fuzzy
  1387. msgid "Protocol corruption"
  1388. msgstr "Oštećenje protokola"
  1389. #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232
  1390. msgid "Write error"
  1391. msgstr "Greška pri pisanju"
  1392. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1393. msgid "Could not create a socket"
  1394. msgstr ""
  1395. #: methods/ftp.cc:703
  1396. msgid "Could not connect data socket, connection timed out"
  1397. msgstr ""
  1398. #: methods/ftp.cc:709
  1399. msgid "Could not connect passive socket."
  1400. msgstr ""
  1401. #: methods/ftp.cc:727
  1402. msgid "getaddrinfo was unable to get a listening socket"
  1403. msgstr ""
  1404. #: methods/ftp.cc:741
  1405. msgid "Could not bind a socket"
  1406. msgstr ""
  1407. #: methods/ftp.cc:745
  1408. msgid "Could not listen on the socket"
  1409. msgstr ""
  1410. #: methods/ftp.cc:752
  1411. msgid "Could not determine the socket's name"
  1412. msgstr ""
  1413. #: methods/ftp.cc:784
  1414. msgid "Unable to send PORT command"
  1415. msgstr ""
  1416. #: methods/ftp.cc:794
  1417. #, c-format
  1418. msgid "Unknown address family %u (AF_*)"
  1419. msgstr ""
  1420. #: methods/ftp.cc:803
  1421. #, c-format
  1422. msgid "EPRT failed, server said: %s"
  1423. msgstr ""
  1424. #: methods/ftp.cc:823
  1425. msgid "Data socket connect timed out"
  1426. msgstr ""
  1427. #: methods/ftp.cc:830
  1428. msgid "Unable to accept connection"
  1429. msgstr ""
  1430. #: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302
  1431. msgid "Problem hashing file"
  1432. msgstr ""
  1433. #: methods/ftp.cc:882
  1434. #, c-format
  1435. msgid "Unable to fetch file, server said '%s'"
  1436. msgstr ""
  1437. #: methods/ftp.cc:897 methods/rsh.cc:321
  1438. msgid "Data socket timed out"
  1439. msgstr ""
  1440. #: methods/ftp.cc:927
  1441. #, c-format
  1442. msgid "Data transfer failed, server said '%s'"
  1443. msgstr ""
  1444. #. Get the files information
  1445. #: methods/ftp.cc:1004
  1446. msgid "Query"
  1447. msgstr ""
  1448. #: methods/ftp.cc:1116
  1449. msgid "Unable to invoke "
  1450. msgstr ""
  1451. #: methods/connect.cc:71
  1452. #, c-format
  1453. msgid "Connecting to %s (%s)"
  1454. msgstr ""
  1455. #: methods/connect.cc:82
  1456. #, c-format
  1457. msgid "[IP: %s %s]"
  1458. msgstr ""
  1459. #: methods/connect.cc:89
  1460. #, c-format
  1461. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1462. msgstr ""
  1463. #: methods/connect.cc:95
  1464. #, c-format
  1465. msgid "Cannot initiate the connection to %s:%s (%s)."
  1466. msgstr ""
  1467. #: methods/connect.cc:103
  1468. #, c-format
  1469. msgid "Could not connect to %s:%s (%s), connection timed out"
  1470. msgstr ""
  1471. #: methods/connect.cc:121
  1472. #, c-format
  1473. msgid "Could not connect to %s:%s (%s)."
  1474. msgstr ""
  1475. #. We say this mainly because the pause here is for the
  1476. #. ssh connection that is still going
  1477. #: methods/connect.cc:149 methods/rsh.cc:424
  1478. #, c-format
  1479. msgid "Connecting to %s"
  1480. msgstr "Povezujem se sa %s"
  1481. #: methods/connect.cc:168 methods/connect.cc:187
  1482. #, c-format
  1483. msgid "Could not resolve '%s'"
  1484. msgstr ""
  1485. #: methods/connect.cc:193
  1486. #, c-format
  1487. msgid "Temporary failure resolving '%s'"
  1488. msgstr ""
  1489. #: methods/connect.cc:196
  1490. #, c-format
  1491. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1492. msgstr ""
  1493. #: methods/connect.cc:243
  1494. #, fuzzy, c-format
  1495. msgid "Unable to connect to %s:%s:"
  1496. msgstr "Ne mogu se povezati sa %s %s:"
  1497. #. TRANSLATOR: %s is the trusted keyring parts directory
  1498. #: methods/gpgv.cc:71
  1499. #, fuzzy, c-format
  1500. msgid "No keyring installed in %s."
  1501. msgstr "Odustajem od instalacije."
  1502. #: methods/gpgv.cc:163
  1503. msgid ""
  1504. "Internal error: Good signature, but could not determine key fingerprint?!"
  1505. msgstr ""
  1506. #: methods/gpgv.cc:168
  1507. msgid "At least one invalid signature was encountered."
  1508. msgstr ""
  1509. #: methods/gpgv.cc:172
  1510. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1511. msgstr ""
  1512. #: methods/gpgv.cc:177
  1513. msgid "Unknown error executing gpgv"
  1514. msgstr ""
  1515. #: methods/gpgv.cc:211 methods/gpgv.cc:218
  1516. #, fuzzy
  1517. msgid "The following signatures were invalid:\n"
  1518. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  1519. #: methods/gpgv.cc:225
  1520. msgid ""
  1521. "The following signatures couldn't be verified because the public key is not "
  1522. "available:\n"
  1523. msgstr ""
  1524. #: methods/http.cc:385
  1525. msgid "Waiting for headers"
  1526. msgstr "Čekam na zaglavlja"
  1527. #: methods/http.cc:531
  1528. #, c-format
  1529. msgid "Got a single header line over %u chars"
  1530. msgstr ""
  1531. #: methods/http.cc:539
  1532. msgid "Bad header line"
  1533. msgstr ""
  1534. #: methods/http.cc:558 methods/http.cc:565
  1535. msgid "The HTTP server sent an invalid reply header"
  1536. msgstr ""
  1537. #: methods/http.cc:594
  1538. msgid "The HTTP server sent an invalid Content-Length header"
  1539. msgstr ""
  1540. #: methods/http.cc:609
  1541. msgid "The HTTP server sent an invalid Content-Range header"
  1542. msgstr ""
  1543. #: methods/http.cc:611
  1544. msgid "This HTTP server has broken range support"
  1545. msgstr ""
  1546. #: methods/http.cc:635
  1547. msgid "Unknown date format"
  1548. msgstr "Nepoznat oblik datuma"
  1549. #: methods/http.cc:793
  1550. msgid "Select failed"
  1551. msgstr ""
  1552. #: methods/http.cc:798
  1553. msgid "Connection timed out"
  1554. msgstr ""
  1555. #: methods/http.cc:821
  1556. msgid "Error writing to output file"
  1557. msgstr ""
  1558. #: methods/http.cc:852
  1559. msgid "Error writing to file"
  1560. msgstr ""
  1561. #: methods/http.cc:880
  1562. msgid "Error writing to the file"
  1563. msgstr ""
  1564. #: methods/http.cc:894
  1565. msgid "Error reading from server. Remote end closed connection"
  1566. msgstr ""
  1567. #: methods/http.cc:896
  1568. msgid "Error reading from server"
  1569. msgstr ""
  1570. #: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281
  1571. #, fuzzy
  1572. msgid "Failed to truncate file"
  1573. msgstr "Ne mogu ukloniti %s"
  1574. #: methods/http.cc:1154
  1575. msgid "Bad header data"
  1576. msgstr ""
  1577. #: methods/http.cc:1171 methods/http.cc:1226
  1578. msgid "Connection failed"
  1579. msgstr "Povezivanje neuspješno"
  1580. #: methods/http.cc:1318
  1581. msgid "Internal error"
  1582. msgstr "Unutrašnja greška"
  1583. #: apt-pkg/contrib/mmap.cc:77
  1584. msgid "Can't mmap an empty file"
  1585. msgstr ""
  1586. #: apt-pkg/contrib/mmap.cc:89
  1587. #, c-format
  1588. msgid "Couldn't duplicate file descriptor %i"
  1589. msgstr ""
  1590. #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250
  1591. #, c-format
  1592. msgid "Couldn't make mmap of %lu bytes"
  1593. msgstr ""
  1594. #: apt-pkg/contrib/mmap.cc:124
  1595. #, fuzzy
  1596. msgid "Unable to close mmap"
  1597. msgstr "Ne mogu kreirati %s"
  1598. #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180
  1599. #, fuzzy
  1600. msgid "Unable to synchronize mmap"
  1601. msgstr "Ne mogu kreirati %s"
  1602. #: apt-pkg/contrib/mmap.cc:300
  1603. #, c-format
  1604. msgid ""
  1605. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1606. "Current value: %lu. (man 5 apt.conf)"
  1607. msgstr ""
  1608. #: apt-pkg/contrib/mmap.cc:399
  1609. #, c-format
  1610. msgid ""
  1611. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1612. "reached."
  1613. msgstr ""
  1614. #: apt-pkg/contrib/mmap.cc:402
  1615. msgid ""
  1616. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1617. msgstr ""
  1618. #. d means days, h means hours, min means minutes, s means seconds
  1619. #: apt-pkg/contrib/strutl.cc:371
  1620. #, c-format
  1621. msgid "%lid %lih %limin %lis"
  1622. msgstr ""
  1623. #. h means hours, min means minutes, s means seconds
  1624. #: apt-pkg/contrib/strutl.cc:378
  1625. #, c-format
  1626. msgid "%lih %limin %lis"
  1627. msgstr ""
  1628. #. min means minutes, s means seconds
  1629. #: apt-pkg/contrib/strutl.cc:385
  1630. #, c-format
  1631. msgid "%limin %lis"
  1632. msgstr ""
  1633. #. s means seconds
  1634. #: apt-pkg/contrib/strutl.cc:390
  1635. #, c-format
  1636. msgid "%lis"
  1637. msgstr ""
  1638. #: apt-pkg/contrib/strutl.cc:1119
  1639. #, c-format
  1640. msgid "Selection %s not found"
  1641. msgstr ""
  1642. #: apt-pkg/contrib/configuration.cc:452
  1643. #, c-format
  1644. msgid "Unrecognized type abbreviation: '%c'"
  1645. msgstr ""
  1646. #: apt-pkg/contrib/configuration.cc:510
  1647. #, c-format
  1648. msgid "Opening configuration file %s"
  1649. msgstr ""
  1650. #: apt-pkg/contrib/configuration.cc:678
  1651. #, c-format
  1652. msgid "Syntax error %s:%u: Block starts with no name."
  1653. msgstr ""
  1654. #: apt-pkg/contrib/configuration.cc:697
  1655. #, c-format
  1656. msgid "Syntax error %s:%u: Malformed tag"
  1657. msgstr ""
  1658. #: apt-pkg/contrib/configuration.cc:714
  1659. #, c-format
  1660. msgid "Syntax error %s:%u: Extra junk after value"
  1661. msgstr ""
  1662. #: apt-pkg/contrib/configuration.cc:754
  1663. #, c-format
  1664. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1665. msgstr ""
  1666. #: apt-pkg/contrib/configuration.cc:761
  1667. #, c-format
  1668. msgid "Syntax error %s:%u: Too many nested includes"
  1669. msgstr ""
  1670. #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770
  1671. #, c-format
  1672. msgid "Syntax error %s:%u: Included from here"
  1673. msgstr ""
  1674. #: apt-pkg/contrib/configuration.cc:774
  1675. #, c-format
  1676. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1677. msgstr ""
  1678. #: apt-pkg/contrib/configuration.cc:777
  1679. #, c-format
  1680. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1681. msgstr ""
  1682. #: apt-pkg/contrib/configuration.cc:827
  1683. #, c-format
  1684. msgid "Syntax error %s:%u: Extra junk at end of file"
  1685. msgstr ""
  1686. #: apt-pkg/contrib/progress.cc:153
  1687. #, c-format
  1688. msgid "%c%s... Error!"
  1689. msgstr ""
  1690. #: apt-pkg/contrib/progress.cc:155
  1691. #, c-format
  1692. msgid "%c%s... Done"
  1693. msgstr ""
  1694. #: apt-pkg/contrib/cmndline.cc:77
  1695. #, c-format
  1696. msgid "Command line option '%c' [from %s] is not known."
  1697. msgstr ""
  1698. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1699. #: apt-pkg/contrib/cmndline.cc:119
  1700. #, c-format
  1701. msgid "Command line option %s is not understood"
  1702. msgstr ""
  1703. #: apt-pkg/contrib/cmndline.cc:124
  1704. #, c-format
  1705. msgid "Command line option %s is not boolean"
  1706. msgstr ""
  1707. #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186
  1708. #, c-format
  1709. msgid "Option %s requires an argument."
  1710. msgstr ""
  1711. #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206
  1712. #, c-format
  1713. msgid "Option %s: Configuration item specification must have an =<val>."
  1714. msgstr ""
  1715. #: apt-pkg/contrib/cmndline.cc:236
  1716. #, c-format
  1717. msgid "Option %s requires an integer argument, not '%s'"
  1718. msgstr ""
  1719. #: apt-pkg/contrib/cmndline.cc:267
  1720. #, c-format
  1721. msgid "Option '%s' is too long"
  1722. msgstr ""
  1723. #: apt-pkg/contrib/cmndline.cc:300
  1724. #, c-format
  1725. msgid "Sense %s is not understood, try true or false."
  1726. msgstr ""
  1727. #: apt-pkg/contrib/cmndline.cc:350
  1728. #, c-format
  1729. msgid "Invalid operation %s"
  1730. msgstr ""
  1731. #: apt-pkg/contrib/cdromutl.cc:52
  1732. #, c-format
  1733. msgid "Unable to stat the mount point %s"
  1734. msgstr ""
  1735. #: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196
  1736. #: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39
  1737. #, c-format
  1738. msgid "Unable to change to %s"
  1739. msgstr ""
  1740. #: apt-pkg/contrib/cdromutl.cc:204
  1741. msgid "Failed to stat the cdrom"
  1742. msgstr ""
  1743. #: apt-pkg/contrib/fileutl.cc:154
  1744. #, c-format
  1745. msgid "Not using locking for read only lock file %s"
  1746. msgstr ""
  1747. #: apt-pkg/contrib/fileutl.cc:159
  1748. #, c-format
  1749. msgid "Could not open lock file %s"
  1750. msgstr ""
  1751. #: apt-pkg/contrib/fileutl.cc:177
  1752. #, c-format
  1753. msgid "Not using locking for nfs mounted lock file %s"
  1754. msgstr ""
  1755. #: apt-pkg/contrib/fileutl.cc:181
  1756. #, c-format
  1757. msgid "Could not get lock %s"
  1758. msgstr ""
  1759. #: apt-pkg/contrib/fileutl.cc:621
  1760. #, c-format
  1761. msgid "Waited for %s but it wasn't there"
  1762. msgstr ""
  1763. #: apt-pkg/contrib/fileutl.cc:633
  1764. #, c-format
  1765. msgid "Sub-process %s received a segmentation fault."
  1766. msgstr ""
  1767. #: apt-pkg/contrib/fileutl.cc:635
  1768. #, c-format
  1769. msgid "Sub-process %s received signal %u."
  1770. msgstr ""
  1771. #: apt-pkg/contrib/fileutl.cc:639
  1772. #, c-format
  1773. msgid "Sub-process %s returned an error code (%u)"
  1774. msgstr ""
  1775. #: apt-pkg/contrib/fileutl.cc:641
  1776. #, c-format
  1777. msgid "Sub-process %s exited unexpectedly"
  1778. msgstr ""
  1779. #: apt-pkg/contrib/fileutl.cc:697
  1780. #, c-format
  1781. msgid "Could not open file %s"
  1782. msgstr ""
  1783. #: apt-pkg/contrib/fileutl.cc:714
  1784. #, fuzzy, c-format
  1785. msgid "Could not open file descriptor %d"
  1786. msgstr "Ne mogu otvoriti %s"
  1787. #: apt-pkg/contrib/fileutl.cc:774
  1788. #, c-format
  1789. msgid "read, still have %lu to read but none left"
  1790. msgstr ""
  1791. #: apt-pkg/contrib/fileutl.cc:807
  1792. #, c-format
  1793. msgid "write, still have %lu to write but couldn't"
  1794. msgstr ""
  1795. #: apt-pkg/contrib/fileutl.cc:906
  1796. #, c-format
  1797. msgid "Problem closing the gzip file %s"
  1798. msgstr ""
  1799. #: apt-pkg/contrib/fileutl.cc:909
  1800. #, fuzzy, c-format
  1801. msgid "Problem closing the file %s"
  1802. msgstr "Ne mogu ukloniti %s"
  1803. #: apt-pkg/contrib/fileutl.cc:914
  1804. #, c-format
  1805. msgid "Problem renaming the file %s to %s"
  1806. msgstr ""
  1807. #: apt-pkg/contrib/fileutl.cc:925
  1808. #, c-format
  1809. msgid "Problem unlinking the file %s"
  1810. msgstr ""
  1811. #: apt-pkg/contrib/fileutl.cc:938
  1812. msgid "Problem syncing the file"
  1813. msgstr ""
  1814. #: apt-pkg/pkgcache.cc:142
  1815. msgid "Empty package cache"
  1816. msgstr ""
  1817. #: apt-pkg/pkgcache.cc:148
  1818. msgid "The package cache file is corrupted"
  1819. msgstr ""
  1820. #: apt-pkg/pkgcache.cc:153
  1821. msgid "The package cache file is an incompatible version"
  1822. msgstr ""
  1823. #: apt-pkg/pkgcache.cc:158
  1824. #, c-format
  1825. msgid "This APT does not support the versioning system '%s'"
  1826. msgstr ""
  1827. #: apt-pkg/pkgcache.cc:163
  1828. msgid "The package cache was built for a different architecture"
  1829. msgstr ""
  1830. #: apt-pkg/pkgcache.cc:290
  1831. msgid "Depends"
  1832. msgstr "Zavisi"
  1833. #: apt-pkg/pkgcache.cc:290
  1834. msgid "PreDepends"
  1835. msgstr "Unaprijed zavisi"
  1836. #: apt-pkg/pkgcache.cc:290
  1837. msgid "Suggests"
  1838. msgstr "Predlaže"
  1839. #: apt-pkg/pkgcache.cc:291
  1840. msgid "Recommends"
  1841. msgstr "Preporučuje"
  1842. #: apt-pkg/pkgcache.cc:291
  1843. #, fuzzy
  1844. msgid "Conflicts"
  1845. msgstr "Sukobljava se sa"
  1846. #: apt-pkg/pkgcache.cc:291
  1847. msgid "Replaces"
  1848. msgstr "Zamjenjuje"
  1849. #: apt-pkg/pkgcache.cc:292
  1850. msgid "Obsoletes"
  1851. msgstr "Zastarijeva"
  1852. #: apt-pkg/pkgcache.cc:292
  1853. msgid "Breaks"
  1854. msgstr ""
  1855. #: apt-pkg/pkgcache.cc:292
  1856. msgid "Enhances"
  1857. msgstr ""
  1858. #: apt-pkg/pkgcache.cc:303
  1859. msgid "important"
  1860. msgstr "važno"
  1861. #: apt-pkg/pkgcache.cc:303
  1862. msgid "required"
  1863. msgstr "zahtijevano"
  1864. #: apt-pkg/pkgcache.cc:303
  1865. msgid "standard"
  1866. msgstr "standardno"
  1867. #: apt-pkg/pkgcache.cc:304
  1868. msgid "optional"
  1869. msgstr "opcionalno"
  1870. #: apt-pkg/pkgcache.cc:304
  1871. msgid "extra"
  1872. msgstr "extra"
  1873. #: apt-pkg/depcache.cc:124 apt-pkg/depcache.cc:153
  1874. msgid "Building dependency tree"
  1875. msgstr "Gradim stablo zavisnosti"
  1876. #: apt-pkg/depcache.cc:125
  1877. msgid "Candidate versions"
  1878. msgstr "Verzije kandidata"
  1879. #: apt-pkg/depcache.cc:154
  1880. msgid "Dependency generation"
  1881. msgstr "Stvaranje zavisnosti"
  1882. #: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:207 apt-pkg/depcache.cc:211
  1883. #, fuzzy
  1884. msgid "Reading state information"
  1885. msgstr "Sastavljam dostupne informacije"
  1886. #: apt-pkg/depcache.cc:236
  1887. #, fuzzy, c-format
  1888. msgid "Failed to open StateFile %s"
  1889. msgstr "Ne mogu otvoriti %s"
  1890. #: apt-pkg/depcache.cc:242
  1891. #, fuzzy, c-format
  1892. msgid "Failed to write temporary StateFile %s"
  1893. msgstr "Ne mogu ukloniti %s"
  1894. #: apt-pkg/depcache.cc:921
  1895. #, c-format
  1896. msgid "Internal error, group '%s' has no installable pseudo package"
  1897. msgstr ""
  1898. #: apt-pkg/tagfile.cc:102
  1899. #, c-format
  1900. msgid "Unable to parse package file %s (1)"
  1901. msgstr ""
  1902. #: apt-pkg/tagfile.cc:189
  1903. #, c-format
  1904. msgid "Unable to parse package file %s (2)"
  1905. msgstr ""
  1906. #: apt-pkg/sourcelist.cc:92
  1907. #, c-format
  1908. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  1909. msgstr ""
  1910. #: apt-pkg/sourcelist.cc:95
  1911. #, c-format
  1912. msgid "Malformed line %lu in source list %s ([option] too short)"
  1913. msgstr ""
  1914. #: apt-pkg/sourcelist.cc:106
  1915. #, c-format
  1916. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  1917. msgstr ""
  1918. #: apt-pkg/sourcelist.cc:112
  1919. #, c-format
  1920. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  1921. msgstr ""
  1922. #: apt-pkg/sourcelist.cc:115
  1923. #, c-format
  1924. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  1925. msgstr ""
  1926. #: apt-pkg/sourcelist.cc:128
  1927. #, c-format
  1928. msgid "Malformed line %lu in source list %s (URI)"
  1929. msgstr ""
  1930. #: apt-pkg/sourcelist.cc:130
  1931. #, c-format
  1932. msgid "Malformed line %lu in source list %s (dist)"
  1933. msgstr ""
  1934. #: apt-pkg/sourcelist.cc:133
  1935. #, c-format
  1936. msgid "Malformed line %lu in source list %s (URI parse)"
  1937. msgstr ""
  1938. #: apt-pkg/sourcelist.cc:139
  1939. #, c-format
  1940. msgid "Malformed line %lu in source list %s (absolute dist)"
  1941. msgstr ""
  1942. #: apt-pkg/sourcelist.cc:146
  1943. #, c-format
  1944. msgid "Malformed line %lu in source list %s (dist parse)"
  1945. msgstr ""
  1946. #: apt-pkg/sourcelist.cc:244
  1947. #, c-format
  1948. msgid "Opening %s"
  1949. msgstr "Otvaram %s"
  1950. #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438
  1951. #, c-format
  1952. msgid "Line %u too long in source list %s."
  1953. msgstr ""
  1954. #: apt-pkg/sourcelist.cc:281
  1955. #, c-format
  1956. msgid "Malformed line %u in source list %s (type)"
  1957. msgstr ""
  1958. #: apt-pkg/sourcelist.cc:285
  1959. #, c-format
  1960. msgid "Type '%s' is not known on line %u in source list %s"
  1961. msgstr ""
  1962. #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616
  1963. #, c-format
  1964. msgid ""
  1965. "Could not perform immediate configuration on '%s'.Please see man 5 apt.conf "
  1966. "under APT::Immediate-Configure for details. (%d)"
  1967. msgstr ""
  1968. #: apt-pkg/packagemanager.cc:452
  1969. #, c-format
  1970. msgid ""
  1971. "This installation run will require temporarily removing the essential "
  1972. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1973. "you really want to do it, activate the APT::Force-LoopBreak option."
  1974. msgstr ""
  1975. #: apt-pkg/packagemanager.cc:495
  1976. #, c-format
  1977. msgid ""
  1978. "Could not perform immediate configuration on already unpacked '%s'.Please "
  1979. "see man 5 apt.conf under APT::Immediate-Configure for details."
  1980. msgstr ""
  1981. #: apt-pkg/pkgrecords.cc:32
  1982. #, c-format
  1983. msgid "Index file type '%s' is not supported"
  1984. msgstr ""
  1985. #: apt-pkg/algorithms.cc:292
  1986. #, c-format
  1987. msgid ""
  1988. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1989. msgstr ""
  1990. #: apt-pkg/algorithms.cc:1182
  1991. msgid ""
  1992. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1993. "held packages."
  1994. msgstr ""
  1995. #: apt-pkg/algorithms.cc:1184
  1996. msgid "Unable to correct problems, you have held broken packages."
  1997. msgstr ""
  1998. #: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462
  1999. msgid ""
  2000. "Some index files failed to download, they have been ignored, or old ones "
  2001. "used instead."
  2002. msgstr ""
  2003. #: apt-pkg/acquire.cc:79
  2004. #, c-format
  2005. msgid "List directory %spartial is missing."
  2006. msgstr ""
  2007. #: apt-pkg/acquire.cc:83
  2008. #, c-format
  2009. msgid "Archives directory %spartial is missing."
  2010. msgstr ""
  2011. #: apt-pkg/acquire.cc:91
  2012. #, fuzzy, c-format
  2013. msgid "Unable to lock directory %s"
  2014. msgstr "Ne mogu kreirati %s"
  2015. #. only show the ETA if it makes sense
  2016. #. two days
  2017. #: apt-pkg/acquire.cc:878
  2018. #, c-format
  2019. msgid "Retrieving file %li of %li (%s remaining)"
  2020. msgstr ""
  2021. #: apt-pkg/acquire.cc:880
  2022. #, fuzzy, c-format
  2023. msgid "Retrieving file %li of %li"
  2024. msgstr "Čitam spisak datoteke"
  2025. #: apt-pkg/acquire-worker.cc:110
  2026. #, c-format
  2027. msgid "The method driver %s could not be found."
  2028. msgstr ""
  2029. #: apt-pkg/acquire-worker.cc:159
  2030. #, c-format
  2031. msgid "Method %s did not start correctly"
  2032. msgstr ""
  2033. #: apt-pkg/acquire-worker.cc:413
  2034. #, c-format
  2035. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2036. msgstr ""
  2037. #: apt-pkg/init.cc:141
  2038. #, c-format
  2039. msgid "Packaging system '%s' is not supported"
  2040. msgstr ""
  2041. #: apt-pkg/init.cc:157
  2042. msgid "Unable to determine a suitable packaging system type"
  2043. msgstr ""
  2044. #: apt-pkg/clean.cc:56
  2045. #, c-format
  2046. msgid "Unable to stat %s."
  2047. msgstr ""
  2048. #: apt-pkg/srcrecords.cc:44
  2049. msgid "You must put some 'source' URIs in your sources.list"
  2050. msgstr ""
  2051. #: apt-pkg/cachefile.cc:84
  2052. msgid "The package lists or status file could not be parsed or opened."
  2053. msgstr ""
  2054. #: apt-pkg/cachefile.cc:88
  2055. msgid "You may want to run apt-get update to correct these problems"
  2056. msgstr ""
  2057. #: apt-pkg/policy.cc:343
  2058. #, c-format
  2059. msgid "Invalid record in the preferences file %s, no Package header"
  2060. msgstr ""
  2061. #: apt-pkg/policy.cc:365
  2062. #, c-format
  2063. msgid "Did not understand pin type %s"
  2064. msgstr ""
  2065. #: apt-pkg/policy.cc:373
  2066. msgid "No priority (or zero) specified for pin"
  2067. msgstr ""
  2068. #: apt-pkg/pkgcachegen.cc:80
  2069. msgid "Cache has an incompatible versioning system"
  2070. msgstr ""
  2071. #: apt-pkg/pkgcachegen.cc:198
  2072. #, c-format
  2073. msgid "Error occurred while processing %s (NewPackage)"
  2074. msgstr ""
  2075. #: apt-pkg/pkgcachegen.cc:215
  2076. #, c-format
  2077. msgid "Error occurred while processing %s (UsePackage1)"
  2078. msgstr ""
  2079. #: apt-pkg/pkgcachegen.cc:253
  2080. #, c-format
  2081. msgid "Error occurred while processing %s (NewFileDesc1)"
  2082. msgstr ""
  2083. #: apt-pkg/pkgcachegen.cc:285
  2084. #, c-format
  2085. msgid "Error occurred while processing %s (UsePackage2)"
  2086. msgstr ""
  2087. #: apt-pkg/pkgcachegen.cc:289
  2088. #, c-format
  2089. msgid "Error occurred while processing %s (NewFileVer1)"
  2090. msgstr ""
  2091. #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316
  2092. #: apt-pkg/pkgcachegen.cc:324
  2093. #, c-format
  2094. msgid "Error occurred while processing %s (NewVersion%d)"
  2095. msgstr ""
  2096. #: apt-pkg/pkgcachegen.cc:320
  2097. #, c-format
  2098. msgid "Error occurred while processing %s (UsePackage3)"
  2099. msgstr ""
  2100. #: apt-pkg/pkgcachegen.cc:353
  2101. #, c-format
  2102. msgid "Error occurred while processing %s (NewFileDesc2)"
  2103. msgstr ""
  2104. #: apt-pkg/pkgcachegen.cc:360
  2105. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2106. msgstr ""
  2107. #: apt-pkg/pkgcachegen.cc:363
  2108. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2109. msgstr ""
  2110. #: apt-pkg/pkgcachegen.cc:366
  2111. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2112. msgstr ""
  2113. #: apt-pkg/pkgcachegen.cc:369
  2114. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2115. msgstr ""
  2116. #: apt-pkg/pkgcachegen.cc:398
  2117. #, c-format
  2118. msgid "Error occurred while processing %s (FindPkg)"
  2119. msgstr ""
  2120. #: apt-pkg/pkgcachegen.cc:412
  2121. #, c-format
  2122. msgid "Error occurred while processing %s (CollectFileProvides)"
  2123. msgstr ""
  2124. #: apt-pkg/pkgcachegen.cc:418
  2125. #, c-format
  2126. msgid "Package %s %s was not found while processing file dependencies"
  2127. msgstr ""
  2128. #: apt-pkg/pkgcachegen.cc:982
  2129. #, c-format
  2130. msgid "Couldn't stat source package list %s"
  2131. msgstr ""
  2132. #: apt-pkg/pkgcachegen.cc:1087
  2133. msgid "Collecting File Provides"
  2134. msgstr ""
  2135. #: apt-pkg/pkgcachegen.cc:1265 apt-pkg/pkgcachegen.cc:1272
  2136. msgid "IO Error saving source cache"
  2137. msgstr ""
  2138. #: apt-pkg/acquire-item.cc:136
  2139. #, c-format
  2140. msgid "rename failed, %s (%s -> %s)."
  2141. msgstr ""
  2142. #: apt-pkg/acquire-item.cc:484
  2143. msgid "MD5Sum mismatch"
  2144. msgstr ""
  2145. #: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570
  2146. #: apt-pkg/acquire-item.cc:1713
  2147. msgid "Hash Sum mismatch"
  2148. msgstr ""
  2149. #: apt-pkg/acquire-item.cc:1240
  2150. msgid "There is no public key available for the following key IDs:\n"
  2151. msgstr ""
  2152. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2153. #. the time since then the file is invalid - formated in the same way as in
  2154. #. the download progress display (e.g. 7d 3h 42min 1s)
  2155. #: apt-pkg/acquire-item.cc:1277
  2156. #, c-format
  2157. msgid "Release file expired, ignoring %s (invalid since %s)"
  2158. msgstr ""
  2159. #: apt-pkg/acquire-item.cc:1298
  2160. #, c-format
  2161. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2162. msgstr ""
  2163. #: apt-pkg/acquire-item.cc:1324
  2164. #, c-format
  2165. msgid ""
  2166. "A error occurred during the signature verification. The repository is not "
  2167. "updated and the previous index files will be used.GPG error: %s: %s\n"
  2168. msgstr ""
  2169. #: apt-pkg/acquire-item.cc:1333
  2170. #, c-format
  2171. msgid "GPG error: %s: %s"
  2172. msgstr ""
  2173. #: apt-pkg/acquire-item.cc:1361
  2174. #, c-format
  2175. msgid ""
  2176. "I wasn't able to locate a file for the %s package. This might mean you need "
  2177. "to manually fix this package. (due to missing arch)"
  2178. msgstr ""
  2179. #: apt-pkg/acquire-item.cc:1420
  2180. #, c-format
  2181. msgid ""
  2182. "I wasn't able to locate file for the %s package. This might mean you need to "
  2183. "manually fix this package."
  2184. msgstr ""
  2185. #: apt-pkg/acquire-item.cc:1475
  2186. #, c-format
  2187. msgid ""
  2188. "The package index files are corrupted. No Filename: field for package %s."
  2189. msgstr ""
  2190. #: apt-pkg/acquire-item.cc:1562
  2191. msgid "Size mismatch"
  2192. msgstr ""
  2193. #: apt-pkg/indexrecords.cc:53
  2194. #, fuzzy, c-format
  2195. msgid "Unable to parse Release file %s"
  2196. msgstr "Ne mogu otvoriti DB datoteku %s"
  2197. #: apt-pkg/indexrecords.cc:60
  2198. #, c-format
  2199. msgid "No sections in Release file %s"
  2200. msgstr ""
  2201. #: apt-pkg/indexrecords.cc:94
  2202. #, c-format
  2203. msgid "No Hash entry in Release file %s"
  2204. msgstr ""
  2205. #: apt-pkg/indexrecords.cc:107
  2206. #, c-format
  2207. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2208. msgstr ""
  2209. #: apt-pkg/indexrecords.cc:122
  2210. #, fuzzy, c-format
  2211. msgid "Invalid 'Date' entry in Release file %s"
  2212. msgstr "Ne mogu otvoriti DB datoteku %s"
  2213. #: apt-pkg/vendorlist.cc:66
  2214. #, c-format
  2215. msgid "Vendor block %s contains no fingerprint"
  2216. msgstr ""
  2217. #: apt-pkg/cdrom.cc:518
  2218. #, c-format
  2219. msgid ""
  2220. "Using CD-ROM mount point %s\n"
  2221. "Mounting CD-ROM\n"
  2222. msgstr ""
  2223. #: apt-pkg/cdrom.cc:527 apt-pkg/cdrom.cc:615
  2224. msgid "Identifying.. "
  2225. msgstr ""
  2226. #: apt-pkg/cdrom.cc:552
  2227. #, c-format
  2228. msgid "Stored label: %s\n"
  2229. msgstr ""
  2230. #: apt-pkg/cdrom.cc:559 apt-pkg/cdrom.cc:827
  2231. #, fuzzy
  2232. msgid "Unmounting CD-ROM...\n"
  2233. msgstr "Pogrešan CD"
  2234. #: apt-pkg/cdrom.cc:578
  2235. #, c-format
  2236. msgid "Using CD-ROM mount point %s\n"
  2237. msgstr ""
  2238. #: apt-pkg/cdrom.cc:596
  2239. msgid "Unmounting CD-ROM\n"
  2240. msgstr ""
  2241. #: apt-pkg/cdrom.cc:600
  2242. #, fuzzy
  2243. msgid "Waiting for disc...\n"
  2244. msgstr "Čekam na zaglavlja"
  2245. #. Mount the new CDROM
  2246. #: apt-pkg/cdrom.cc:608
  2247. msgid "Mounting CD-ROM...\n"
  2248. msgstr ""
  2249. #: apt-pkg/cdrom.cc:626
  2250. msgid "Scanning disc for index files..\n"
  2251. msgstr ""
  2252. #: apt-pkg/cdrom.cc:666
  2253. #, c-format
  2254. msgid ""
  2255. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2256. "%zu signatures\n"
  2257. msgstr ""
  2258. #: apt-pkg/cdrom.cc:677
  2259. msgid ""
  2260. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2261. "wrong architecture?"
  2262. msgstr ""
  2263. #: apt-pkg/cdrom.cc:703
  2264. #, c-format
  2265. msgid "Found label '%s'\n"
  2266. msgstr ""
  2267. #: apt-pkg/cdrom.cc:732
  2268. msgid "That is not a valid name, try again.\n"
  2269. msgstr ""
  2270. #: apt-pkg/cdrom.cc:748
  2271. #, c-format
  2272. msgid ""
  2273. "This disc is called: \n"
  2274. "'%s'\n"
  2275. msgstr ""
  2276. #: apt-pkg/cdrom.cc:752
  2277. #, fuzzy
  2278. msgid "Copying package lists..."
  2279. msgstr "Čitam spiskove paketa"
  2280. #: apt-pkg/cdrom.cc:778
  2281. msgid "Writing new source list\n"
  2282. msgstr ""
  2283. #: apt-pkg/cdrom.cc:787
  2284. msgid "Source list entries for this disc are:\n"
  2285. msgstr ""
  2286. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902
  2287. #, c-format
  2288. msgid "Wrote %i records.\n"
  2289. msgstr ""
  2290. #: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904
  2291. #, c-format
  2292. msgid "Wrote %i records with %i missing files.\n"
  2293. msgstr ""
  2294. #: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907
  2295. #, c-format
  2296. msgid "Wrote %i records with %i mismatched files\n"
  2297. msgstr ""
  2298. #: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910
  2299. #, c-format
  2300. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2301. msgstr ""
  2302. #: apt-pkg/indexcopy.cc:532
  2303. #, c-format
  2304. msgid "Skipping nonexistent file %s"
  2305. msgstr ""
  2306. #: apt-pkg/indexcopy.cc:538
  2307. #, c-format
  2308. msgid "Can't find authentication record for: %s"
  2309. msgstr ""
  2310. #: apt-pkg/indexcopy.cc:544
  2311. #, c-format
  2312. msgid "Hash mismatch for: %s"
  2313. msgstr ""
  2314. #: apt-pkg/deb/dpkgpm.cc:52
  2315. #, fuzzy, c-format
  2316. msgid "Installing %s"
  2317. msgstr " Instalirano:"
  2318. #: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819
  2319. #, fuzzy, c-format
  2320. msgid "Configuring %s"
  2321. msgstr "Povezujem se sa %s"
  2322. #: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826
  2323. #, fuzzy, c-format
  2324. msgid "Removing %s"
  2325. msgstr "Otvaram %s"
  2326. #: apt-pkg/deb/dpkgpm.cc:55
  2327. #, fuzzy, c-format
  2328. msgid "Completely removing %s"
  2329. msgstr "Ne mogu ukloniti %s"
  2330. #: apt-pkg/deb/dpkgpm.cc:56
  2331. #, c-format
  2332. msgid "Noting disappearance of %s"
  2333. msgstr ""
  2334. #: apt-pkg/deb/dpkgpm.cc:57
  2335. #, c-format
  2336. msgid "Running post-installation trigger %s"
  2337. msgstr ""
  2338. #: apt-pkg/deb/dpkgpm.cc:643
  2339. #, c-format
  2340. msgid "Directory '%s' missing"
  2341. msgstr ""
  2342. #: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671
  2343. #, fuzzy, c-format
  2344. msgid "Could not open file '%s'"
  2345. msgstr "Ne mogu otvoriti %s"
  2346. #: apt-pkg/deb/dpkgpm.cc:812
  2347. #, fuzzy, c-format
  2348. msgid "Preparing %s"
  2349. msgstr "Otvaram %s"
  2350. #: apt-pkg/deb/dpkgpm.cc:813
  2351. #, fuzzy, c-format
  2352. msgid "Unpacking %s"
  2353. msgstr "Otvaram %s"
  2354. #: apt-pkg/deb/dpkgpm.cc:818
  2355. #, c-format
  2356. msgid "Preparing to configure %s"
  2357. msgstr ""
  2358. #: apt-pkg/deb/dpkgpm.cc:820
  2359. #, fuzzy, c-format
  2360. msgid "Installed %s"
  2361. msgstr " Instalirano:"
  2362. #: apt-pkg/deb/dpkgpm.cc:825
  2363. #, c-format
  2364. msgid "Preparing for removal of %s"
  2365. msgstr ""
  2366. #: apt-pkg/deb/dpkgpm.cc:827
  2367. #, fuzzy, c-format
  2368. msgid "Removed %s"
  2369. msgstr "Preporučuje"
  2370. #: apt-pkg/deb/dpkgpm.cc:832
  2371. #, c-format
  2372. msgid "Preparing to completely remove %s"
  2373. msgstr ""
  2374. #: apt-pkg/deb/dpkgpm.cc:833
  2375. #, fuzzy, c-format
  2376. msgid "Completely removed %s"
  2377. msgstr "Ne mogu ukloniti %s"
  2378. #: apt-pkg/deb/dpkgpm.cc:1039
  2379. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2380. msgstr ""
  2381. #: apt-pkg/deb/dpkgpm.cc:1070
  2382. msgid "Running dpkg"
  2383. msgstr ""
  2384. #: apt-pkg/deb/dpkgpm.cc:1273
  2385. msgid "No apport report written because MaxReports is reached already"
  2386. msgstr ""
  2387. #. check if its not a follow up error
  2388. #: apt-pkg/deb/dpkgpm.cc:1278
  2389. msgid "dependency problems - leaving unconfigured"
  2390. msgstr ""
  2391. #: apt-pkg/deb/dpkgpm.cc:1280
  2392. msgid ""
  2393. "No apport report written because the error message indicates its a followup "
  2394. "error from a previous failure."
  2395. msgstr ""
  2396. #: apt-pkg/deb/dpkgpm.cc:1286
  2397. msgid ""
  2398. "No apport report written because the error message indicates a disk full "
  2399. "error"
  2400. msgstr ""
  2401. #: apt-pkg/deb/dpkgpm.cc:1292
  2402. msgid ""
  2403. "No apport report written because the error message indicates a out of memory "
  2404. "error"
  2405. msgstr ""
  2406. #: apt-pkg/deb/dpkgpm.cc:1299
  2407. msgid ""
  2408. "No apport report written because the error message indicates a dpkg I/O error"
  2409. msgstr ""
  2410. #: apt-pkg/deb/debsystem.cc:69
  2411. #, c-format
  2412. msgid ""
  2413. "Unable to lock the administration directory (%s), is another process using "
  2414. "it?"
  2415. msgstr ""
  2416. #: apt-pkg/deb/debsystem.cc:72
  2417. #, c-format
  2418. msgid "Unable to lock the administration directory (%s), are you root?"
  2419. msgstr ""
  2420. #. TRANSLATORS: the %s contains the recovery command, usually
  2421. #. dpkg --configure -a
  2422. #: apt-pkg/deb/debsystem.cc:88
  2423. #, c-format
  2424. msgid ""
  2425. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2426. msgstr ""
  2427. #: apt-pkg/deb/debsystem.cc:106
  2428. msgid "Not locked"
  2429. msgstr ""
  2430. #: methods/rred.cc:465
  2431. #, c-format
  2432. msgid ""
  2433. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2434. "to be corrupt."
  2435. msgstr ""
  2436. #: methods/rred.cc:470
  2437. #, c-format
  2438. msgid ""
  2439. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2440. "to be corrupt."
  2441. msgstr ""
  2442. #: methods/rsh.cc:329
  2443. msgid "Connection closed prematurely"
  2444. msgstr ""
  2445. #, fuzzy
  2446. #~ msgid "openpty failed\n"
  2447. #~ msgstr "Povezivanje neuspješno"
  2448. #~ msgid "File date has changed %s"
  2449. #~ msgstr "Datum datoteke je promijenjen %s"