bs.po 65 KB

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