bs.po 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847
  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-01 19:13+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:2665 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:830
  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 a 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:238
  315. msgid "Archive has no control record"
  316. msgstr "Arhiva nema kontrolnog zapisa"
  317. #: ftparchive/cachedb.cc:444
  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:388
  369. msgid "Archive had no package field"
  370. msgstr ""
  371. #: ftparchive/writer.cc:396 ftparchive/writer.cc:627
  372. #, c-format
  373. msgid " %s has no override entry\n"
  374. msgstr ""
  375. #: ftparchive/writer.cc:457 ftparchive/writer.cc:715
  376. #, c-format
  377. msgid " %s maintainer is %s not %s\n"
  378. msgstr ""
  379. #: ftparchive/writer.cc:637
  380. #, c-format
  381. msgid " %s has no source override entry\n"
  382. msgstr ""
  383. #: ftparchive/writer.cc:641
  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:1730
  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:2072 cmdline/apt-get.cc:2105
  589. msgid "Unable to lock the download directory"
  590. msgstr ""
  591. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2153 cmdline/apt-get.cc:2406
  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:2249
  615. #: cmdline/apt-get.cc:2252
  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:2303 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:2312
  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. #. if (VerTag.empty() == false && Last == 0)
  724. #: cmdline/apt-get.cc:1311 cmdline/apt-get.cc:1379
  725. #, c-format
  726. msgid "Ignore unavailable version '%s' of package '%s'"
  727. msgstr ""
  728. #: cmdline/apt-get.cc:1313
  729. #, c-format
  730. msgid "Ignore unavailable target release '%s' of package '%s'"
  731. msgstr ""
  732. #: cmdline/apt-get.cc:1342
  733. #, c-format
  734. msgid "Picking '%s' as source package instead of '%s'\n"
  735. msgstr ""
  736. #: cmdline/apt-get.cc:1395
  737. msgid "The update command takes no arguments"
  738. msgstr ""
  739. #: cmdline/apt-get.cc:1408
  740. msgid "Unable to lock the list directory"
  741. msgstr ""
  742. #: cmdline/apt-get.cc:1464
  743. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  744. msgstr ""
  745. #: cmdline/apt-get.cc:1513
  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:1515
  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:1516
  756. msgid "Use 'apt-get autoremove' to remove them."
  757. msgstr ""
  758. #: cmdline/apt-get.cc:1521
  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:1524 cmdline/apt-get.cc:1814
  774. msgid "The following information may help to resolve the situation:"
  775. msgstr ""
  776. #: cmdline/apt-get.cc:1528
  777. msgid "Internal Error, AutoRemover broke stuff"
  778. msgstr ""
  779. #: cmdline/apt-get.cc:1547
  780. msgid "Internal error, AllUpgrade broke stuff"
  781. msgstr ""
  782. #: cmdline/apt-get.cc:1602
  783. #, c-format
  784. msgid "Couldn't find task %s"
  785. msgstr ""
  786. #: cmdline/apt-get.cc:1717 cmdline/apt-get.cc:1753
  787. #, c-format
  788. msgid "Couldn't find package %s"
  789. msgstr ""
  790. #: cmdline/apt-get.cc:1740
  791. #, c-format
  792. msgid "Note, selecting %s for regex '%s'\n"
  793. msgstr ""
  794. #: cmdline/apt-get.cc:1771
  795. #, fuzzy, c-format
  796. msgid "%s set to manually installed.\n"
  797. msgstr "ali se %s treba instalirati"
  798. #: cmdline/apt-get.cc:1784
  799. msgid "You might want to run `apt-get -f install' to correct these:"
  800. msgstr ""
  801. #: cmdline/apt-get.cc:1787
  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:1799
  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:1817
  814. msgid "Broken packages"
  815. msgstr "Oštećeni paketi"
  816. #: cmdline/apt-get.cc:1846
  817. msgid "The following extra packages will be installed:"
  818. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  819. #: cmdline/apt-get.cc:1935
  820. msgid "Suggested packages:"
  821. msgstr "Predloženi paketi:"
  822. #: cmdline/apt-get.cc:1936
  823. msgid "Recommended packages:"
  824. msgstr "Preporučeni paketi:"
  825. #: cmdline/apt-get.cc:1965
  826. msgid "Calculating upgrade... "
  827. msgstr "Računam nadogradnju..."
  828. #: cmdline/apt-get.cc:1968 methods/ftp.cc:708 methods/connect.cc:112
  829. msgid "Failed"
  830. msgstr "Neuspješno"
  831. #: cmdline/apt-get.cc:1973
  832. msgid "Done"
  833. msgstr "Urađeno"
  834. #: cmdline/apt-get.cc:2040 cmdline/apt-get.cc:2048
  835. msgid "Internal error, problem resolver broke stuff"
  836. msgstr ""
  837. #: cmdline/apt-get.cc:2148
  838. msgid "Must specify at least one package to fetch source for"
  839. msgstr ""
  840. #: cmdline/apt-get.cc:2178 cmdline/apt-get.cc:2424
  841. #, c-format
  842. msgid "Unable to find a source package for %s"
  843. msgstr ""
  844. #: cmdline/apt-get.cc:2227
  845. #, c-format
  846. msgid "Skipping already downloaded file '%s'\n"
  847. msgstr ""
  848. #: cmdline/apt-get.cc:2262
  849. #, c-format
  850. msgid "You don't have enough free space in %s"
  851. msgstr ""
  852. #: cmdline/apt-get.cc:2268
  853. #, c-format
  854. msgid "Need to get %sB/%sB of source archives.\n"
  855. msgstr ""
  856. #: cmdline/apt-get.cc:2271
  857. #, c-format
  858. msgid "Need to get %sB of source archives.\n"
  859. msgstr ""
  860. #: cmdline/apt-get.cc:2277
  861. #, c-format
  862. msgid "Fetch source %s\n"
  863. msgstr ""
  864. #: cmdline/apt-get.cc:2308
  865. msgid "Failed to fetch some archives."
  866. msgstr ""
  867. #: cmdline/apt-get.cc:2336
  868. #, c-format
  869. msgid "Skipping unpack of already unpacked source in %s\n"
  870. msgstr ""
  871. #: cmdline/apt-get.cc:2348
  872. #, c-format
  873. msgid "Unpack command '%s' failed.\n"
  874. msgstr ""
  875. #: cmdline/apt-get.cc:2349
  876. #, c-format
  877. msgid "Check if the 'dpkg-dev' package is installed.\n"
  878. msgstr ""
  879. #: cmdline/apt-get.cc:2366
  880. #, c-format
  881. msgid "Build command '%s' failed.\n"
  882. msgstr ""
  883. #: cmdline/apt-get.cc:2385
  884. msgid "Child process failed"
  885. msgstr ""
  886. #: cmdline/apt-get.cc:2401
  887. msgid "Must specify at least one package to check builddeps for"
  888. msgstr ""
  889. #: cmdline/apt-get.cc:2429
  890. #, c-format
  891. msgid "Unable to get build-dependency information for %s"
  892. msgstr ""
  893. #: cmdline/apt-get.cc:2449
  894. #, c-format
  895. msgid "%s has no build depends.\n"
  896. msgstr ""
  897. #: cmdline/apt-get.cc:2501
  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:2554
  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:2590
  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:2617
  914. #, c-format
  915. msgid "Failed to satisfy %s dependency for %s: %s"
  916. msgstr ""
  917. #: cmdline/apt-get.cc:2633
  918. #, c-format
  919. msgid "Build-dependencies for %s could not be satisfied."
  920. msgstr ""
  921. #: cmdline/apt-get.cc:2638
  922. msgid "Failed to process build dependencies"
  923. msgstr ""
  924. #: cmdline/apt-get.cc:2670
  925. msgid "Supported modules:"
  926. msgstr "Podržani moduli:"
  927. #: cmdline/apt-get.cc:2711
  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:2879
  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/configuration.cc:843
  1153. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1154. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1155. #: apt-pkg/init.cc:90 apt-pkg/init.cc:98 apt-pkg/clean.cc:33
  1156. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1157. #, c-format
  1158. msgid "Unable to read %s"
  1159. msgstr "Ne mogu čitati %s"
  1160. #: apt-inst/extract.cc:491
  1161. #, c-format
  1162. msgid "Unable to stat %s"
  1163. msgstr ""
  1164. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1165. #, c-format
  1166. msgid "Failed to remove %s"
  1167. msgstr "Ne mogu ukloniti %s"
  1168. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1169. #, c-format
  1170. msgid "Unable to create %s"
  1171. msgstr "Ne mogu kreirati %s"
  1172. #: apt-inst/deb/dpkgdb.cc:114
  1173. #, c-format
  1174. msgid "Failed to stat %sinfo"
  1175. msgstr ""
  1176. #: apt-inst/deb/dpkgdb.cc:119
  1177. msgid "The info and temp directories need to be on the same filesystem"
  1178. msgstr ""
  1179. #. Build the status cache
  1180. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1181. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1182. #: apt-pkg/pkgcachegen.cc:961
  1183. msgid "Reading package lists"
  1184. msgstr "Čitam spiskove paketa"
  1185. #: apt-inst/deb/dpkgdb.cc:176
  1186. #, c-format
  1187. msgid "Failed to change to the admin dir %sinfo"
  1188. msgstr ""
  1189. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1190. #: apt-inst/deb/dpkgdb.cc:444
  1191. msgid "Internal error getting a package name"
  1192. msgstr ""
  1193. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1194. msgid "Reading file listing"
  1195. msgstr "Čitam spisak datoteke"
  1196. #: apt-inst/deb/dpkgdb.cc:212
  1197. #, c-format
  1198. msgid ""
  1199. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1200. "then make it empty and immediately re-install the same version of the "
  1201. "package!"
  1202. msgstr ""
  1203. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1204. #, c-format
  1205. msgid "Failed reading the list file %sinfo/%s"
  1206. msgstr ""
  1207. #: apt-inst/deb/dpkgdb.cc:262
  1208. msgid "Internal error getting a node"
  1209. msgstr ""
  1210. #: apt-inst/deb/dpkgdb.cc:305
  1211. #, c-format
  1212. msgid "Failed to open the diversions file %sdiversions"
  1213. msgstr ""
  1214. #: apt-inst/deb/dpkgdb.cc:320
  1215. msgid "The diversion file is corrupted"
  1216. msgstr ""
  1217. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1218. #: apt-inst/deb/dpkgdb.cc:337
  1219. #, c-format
  1220. msgid "Invalid line in the diversion file: %s"
  1221. msgstr ""
  1222. #: apt-inst/deb/dpkgdb.cc:358
  1223. msgid "Internal error adding a diversion"
  1224. msgstr ""
  1225. #: apt-inst/deb/dpkgdb.cc:379
  1226. msgid "The pkg cache must be initialized first"
  1227. msgstr ""
  1228. #: apt-inst/deb/dpkgdb.cc:439
  1229. #, c-format
  1230. msgid "Failed to find a Package: header, offset %lu"
  1231. msgstr ""
  1232. #: apt-inst/deb/dpkgdb.cc:461
  1233. #, c-format
  1234. msgid "Bad ConfFile section in the status file. Offset %lu"
  1235. msgstr ""
  1236. #: apt-inst/deb/dpkgdb.cc:466
  1237. #, c-format
  1238. msgid "Error parsing MD5. Offset %lu"
  1239. msgstr ""
  1240. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1241. #, c-format
  1242. msgid "This is not a valid DEB archive, missing '%s' member"
  1243. msgstr ""
  1244. #: apt-inst/deb/debfile.cc:50
  1245. #, c-format
  1246. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1247. msgstr ""
  1248. #: apt-inst/deb/debfile.cc:110
  1249. #, c-format
  1250. msgid "Couldn't change to %s"
  1251. msgstr ""
  1252. #: apt-inst/deb/debfile.cc:140
  1253. msgid "Internal error, could not locate member"
  1254. msgstr ""
  1255. #: apt-inst/deb/debfile.cc:173
  1256. msgid "Failed to locate a valid control file"
  1257. msgstr ""
  1258. #: apt-inst/deb/debfile.cc:258
  1259. msgid "Unparsable control file"
  1260. msgstr ""
  1261. #: methods/cdrom.cc:200
  1262. #, c-format
  1263. msgid "Unable to read the cdrom database %s"
  1264. msgstr ""
  1265. #: methods/cdrom.cc:209
  1266. msgid ""
  1267. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1268. "cannot be used to add new CD-ROMs"
  1269. msgstr ""
  1270. #: methods/cdrom.cc:219
  1271. #, fuzzy
  1272. msgid "Wrong CD-ROM"
  1273. msgstr "Pogrešan CD"
  1274. #: methods/cdrom.cc:245
  1275. #, c-format
  1276. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1277. msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi."
  1278. #: methods/cdrom.cc:250
  1279. #, fuzzy
  1280. msgid "Disk not found."
  1281. msgstr "Datoteka nije pronađena"
  1282. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1283. msgid "File not found"
  1284. msgstr "Datoteka nije pronađena"
  1285. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1286. #: methods/rred.cc:234 methods/rred.cc:243
  1287. msgid "Failed to stat"
  1288. msgstr ""
  1289. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1290. msgid "Failed to set modification time"
  1291. msgstr ""
  1292. #: methods/file.cc:44
  1293. msgid "Invalid URI, local URIS must not start with //"
  1294. msgstr ""
  1295. #. Login must be before getpeername otherwise dante won't work.
  1296. #: methods/ftp.cc:168
  1297. msgid "Logging in"
  1298. msgstr "Prijavljujem se"
  1299. #: methods/ftp.cc:174
  1300. msgid "Unable to determine the peer name"
  1301. msgstr ""
  1302. #: methods/ftp.cc:179
  1303. msgid "Unable to determine the local name"
  1304. msgstr ""
  1305. #: methods/ftp.cc:210 methods/ftp.cc:238
  1306. #, c-format
  1307. msgid "The server refused the connection and said: %s"
  1308. msgstr ""
  1309. #: methods/ftp.cc:216
  1310. #, c-format
  1311. msgid "USER failed, server said: %s"
  1312. msgstr ""
  1313. #: methods/ftp.cc:223
  1314. #, c-format
  1315. msgid "PASS failed, server said: %s"
  1316. msgstr ""
  1317. #: methods/ftp.cc:243
  1318. msgid ""
  1319. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1320. "is empty."
  1321. msgstr ""
  1322. #: methods/ftp.cc:271
  1323. #, c-format
  1324. msgid "Login script command '%s' failed, server said: %s"
  1325. msgstr ""
  1326. #: methods/ftp.cc:297
  1327. #, c-format
  1328. msgid "TYPE failed, server said: %s"
  1329. msgstr ""
  1330. #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:183 methods/rsh.cc:226
  1331. msgid "Connection timeout"
  1332. msgstr ""
  1333. #: methods/ftp.cc:341
  1334. msgid "Server closed the connection"
  1335. msgstr "Server je zatvorio vezu"
  1336. #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1337. msgid "Read error"
  1338. msgstr "Greška pri čitanju"
  1339. #: methods/ftp.cc:351 methods/rsh.cc:197
  1340. msgid "A response overflowed the buffer."
  1341. msgstr ""
  1342. #: methods/ftp.cc:368 methods/ftp.cc:380
  1343. #, fuzzy
  1344. msgid "Protocol corruption"
  1345. msgstr "Oštećenje protokola"
  1346. #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1347. msgid "Write error"
  1348. msgstr "Greška pri pisanju"
  1349. #: methods/ftp.cc:693 methods/ftp.cc:699 methods/ftp.cc:735
  1350. msgid "Could not create a socket"
  1351. msgstr ""
  1352. #: methods/ftp.cc:704
  1353. msgid "Could not connect data socket, connection timed out"
  1354. msgstr ""
  1355. #: methods/ftp.cc:710
  1356. msgid "Could not connect passive socket."
  1357. msgstr ""
  1358. #: methods/ftp.cc:728
  1359. msgid "getaddrinfo was unable to get a listening socket"
  1360. msgstr ""
  1361. #: methods/ftp.cc:742
  1362. msgid "Could not bind a socket"
  1363. msgstr ""
  1364. #: methods/ftp.cc:746
  1365. msgid "Could not listen on the socket"
  1366. msgstr ""
  1367. #: methods/ftp.cc:753
  1368. msgid "Could not determine the socket's name"
  1369. msgstr ""
  1370. #: methods/ftp.cc:785
  1371. msgid "Unable to send PORT command"
  1372. msgstr ""
  1373. #: methods/ftp.cc:795
  1374. #, c-format
  1375. msgid "Unknown address family %u (AF_*)"
  1376. msgstr ""
  1377. #: methods/ftp.cc:804
  1378. #, c-format
  1379. msgid "EPRT failed, server said: %s"
  1380. msgstr ""
  1381. #: methods/ftp.cc:824
  1382. msgid "Data socket connect timed out"
  1383. msgstr ""
  1384. #: methods/ftp.cc:831
  1385. msgid "Unable to accept connection"
  1386. msgstr ""
  1387. #: methods/ftp.cc:870 methods/http.cc:999 methods/rsh.cc:303
  1388. msgid "Problem hashing file"
  1389. msgstr ""
  1390. #: methods/ftp.cc:883
  1391. #, c-format
  1392. msgid "Unable to fetch file, server said '%s'"
  1393. msgstr ""
  1394. #: methods/ftp.cc:898 methods/rsh.cc:322
  1395. msgid "Data socket timed out"
  1396. msgstr ""
  1397. #: methods/ftp.cc:928
  1398. #, c-format
  1399. msgid "Data transfer failed, server said '%s'"
  1400. msgstr ""
  1401. #. Get the files information
  1402. #: methods/ftp.cc:1005
  1403. msgid "Query"
  1404. msgstr ""
  1405. #: methods/ftp.cc:1117
  1406. msgid "Unable to invoke "
  1407. msgstr ""
  1408. #: methods/connect.cc:70
  1409. #, c-format
  1410. msgid "Connecting to %s (%s)"
  1411. msgstr ""
  1412. #: methods/connect.cc:81
  1413. #, c-format
  1414. msgid "[IP: %s %s]"
  1415. msgstr ""
  1416. #: methods/connect.cc:90
  1417. #, c-format
  1418. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1419. msgstr ""
  1420. #: methods/connect.cc:96
  1421. #, c-format
  1422. msgid "Cannot initiate the connection to %s:%s (%s)."
  1423. msgstr ""
  1424. #: methods/connect.cc:104
  1425. #, c-format
  1426. msgid "Could not connect to %s:%s (%s), connection timed out"
  1427. msgstr ""
  1428. #: methods/connect.cc:119
  1429. #, c-format
  1430. msgid "Could not connect to %s:%s (%s)."
  1431. msgstr ""
  1432. #. We say this mainly because the pause here is for the
  1433. #. ssh connection that is still going
  1434. #: methods/connect.cc:147 methods/rsh.cc:425
  1435. #, c-format
  1436. msgid "Connecting to %s"
  1437. msgstr "Povezujem se sa %s"
  1438. #: methods/connect.cc:165 methods/connect.cc:184
  1439. #, c-format
  1440. msgid "Could not resolve '%s'"
  1441. msgstr ""
  1442. #: methods/connect.cc:190
  1443. #, c-format
  1444. msgid "Temporary failure resolving '%s'"
  1445. msgstr ""
  1446. #: methods/connect.cc:193
  1447. #, c-format
  1448. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1449. msgstr ""
  1450. #: methods/connect.cc:240
  1451. #, fuzzy, c-format
  1452. msgid "Unable to connect to %s:%s:"
  1453. msgstr "Ne mogu se povezati sa %s %s:"
  1454. #: methods/gpgv.cc:71
  1455. #, c-format
  1456. msgid "Couldn't access keyring: '%s'"
  1457. msgstr ""
  1458. #: methods/gpgv.cc:107
  1459. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1460. msgstr ""
  1461. #: methods/gpgv.cc:223
  1462. msgid ""
  1463. "Internal error: Good signature, but could not determine key fingerprint?!"
  1464. msgstr ""
  1465. #: methods/gpgv.cc:228
  1466. msgid "At least one invalid signature was encountered."
  1467. msgstr ""
  1468. #: methods/gpgv.cc:232
  1469. #, c-format
  1470. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1471. msgstr ""
  1472. #: methods/gpgv.cc:237
  1473. msgid "Unknown error executing gpgv"
  1474. msgstr ""
  1475. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1476. #, fuzzy
  1477. msgid "The following signatures were invalid:\n"
  1478. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  1479. #: methods/gpgv.cc:285
  1480. msgid ""
  1481. "The following signatures couldn't be verified because the public key is not "
  1482. "available:\n"
  1483. msgstr ""
  1484. #: methods/gzip.cc:64
  1485. #, c-format
  1486. msgid "Couldn't open pipe for %s"
  1487. msgstr ""
  1488. #: methods/gzip.cc:109
  1489. #, c-format
  1490. msgid "Read error from %s process"
  1491. msgstr ""
  1492. #: methods/http.cc:385
  1493. msgid "Waiting for headers"
  1494. msgstr "Čekam na zaglavlja"
  1495. #: methods/http.cc:531
  1496. #, c-format
  1497. msgid "Got a single header line over %u chars"
  1498. msgstr ""
  1499. #: methods/http.cc:539
  1500. msgid "Bad header line"
  1501. msgstr ""
  1502. #: methods/http.cc:558 methods/http.cc:565
  1503. msgid "The HTTP server sent an invalid reply header"
  1504. msgstr ""
  1505. #: methods/http.cc:594
  1506. msgid "The HTTP server sent an invalid Content-Length header"
  1507. msgstr ""
  1508. #: methods/http.cc:609
  1509. msgid "The HTTP server sent an invalid Content-Range header"
  1510. msgstr ""
  1511. #: methods/http.cc:611
  1512. msgid "This HTTP server has broken range support"
  1513. msgstr ""
  1514. #: methods/http.cc:635
  1515. msgid "Unknown date format"
  1516. msgstr "Nepoznat oblik datuma"
  1517. #: methods/http.cc:790
  1518. msgid "Select failed"
  1519. msgstr ""
  1520. #: methods/http.cc:795
  1521. msgid "Connection timed out"
  1522. msgstr ""
  1523. #: methods/http.cc:818
  1524. msgid "Error writing to output file"
  1525. msgstr ""
  1526. #: methods/http.cc:849
  1527. msgid "Error writing to file"
  1528. msgstr ""
  1529. #: methods/http.cc:877
  1530. msgid "Error writing to the file"
  1531. msgstr ""
  1532. #: methods/http.cc:891
  1533. msgid "Error reading from server. Remote end closed connection"
  1534. msgstr ""
  1535. #: methods/http.cc:893
  1536. msgid "Error reading from server"
  1537. msgstr ""
  1538. #: methods/http.cc:984 apt-pkg/contrib/mmap.cc:215
  1539. #, fuzzy
  1540. msgid "Failed to truncate file"
  1541. msgstr "Ne mogu ukloniti %s"
  1542. #: methods/http.cc:1149
  1543. msgid "Bad header data"
  1544. msgstr ""
  1545. #: methods/http.cc:1166 methods/http.cc:1221
  1546. msgid "Connection failed"
  1547. msgstr "Povezivanje neuspješno"
  1548. #: methods/http.cc:1313
  1549. msgid "Internal error"
  1550. msgstr "Unutrašnja greška"
  1551. #: apt-pkg/contrib/mmap.cc:76
  1552. msgid "Can't mmap an empty file"
  1553. msgstr ""
  1554. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187
  1555. #, c-format
  1556. msgid "Couldn't make mmap of %lu bytes"
  1557. msgstr ""
  1558. #: apt-pkg/contrib/mmap.cc:234
  1559. #, c-format
  1560. msgid ""
  1561. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1562. "Current value: %lu. (man 5 apt.conf)"
  1563. msgstr ""
  1564. #. d means days, h means hours, min means minutes, s means seconds
  1565. #: apt-pkg/contrib/strutl.cc:346
  1566. #, c-format
  1567. msgid "%lid %lih %limin %lis"
  1568. msgstr ""
  1569. #. h means hours, min means minutes, s means seconds
  1570. #: apt-pkg/contrib/strutl.cc:353
  1571. #, c-format
  1572. msgid "%lih %limin %lis"
  1573. msgstr ""
  1574. #. min means minutes, s means seconds
  1575. #: apt-pkg/contrib/strutl.cc:360
  1576. #, c-format
  1577. msgid "%limin %lis"
  1578. msgstr ""
  1579. #. s means seconds
  1580. #: apt-pkg/contrib/strutl.cc:365
  1581. #, c-format
  1582. msgid "%lis"
  1583. msgstr ""
  1584. #: apt-pkg/contrib/strutl.cc:1040
  1585. #, c-format
  1586. msgid "Selection %s not found"
  1587. msgstr ""
  1588. #: apt-pkg/contrib/configuration.cc:458
  1589. #, c-format
  1590. msgid "Unrecognized type abbreviation: '%c'"
  1591. msgstr ""
  1592. #: apt-pkg/contrib/configuration.cc:516
  1593. #, c-format
  1594. msgid "Opening configuration file %s"
  1595. msgstr ""
  1596. #: apt-pkg/contrib/configuration.cc:684
  1597. #, c-format
  1598. msgid "Syntax error %s:%u: Block starts with no name."
  1599. msgstr ""
  1600. #: apt-pkg/contrib/configuration.cc:703
  1601. #, c-format
  1602. msgid "Syntax error %s:%u: Malformed tag"
  1603. msgstr ""
  1604. #: apt-pkg/contrib/configuration.cc:720
  1605. #, c-format
  1606. msgid "Syntax error %s:%u: Extra junk after value"
  1607. msgstr ""
  1608. #: apt-pkg/contrib/configuration.cc:760
  1609. #, c-format
  1610. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1611. msgstr ""
  1612. #: apt-pkg/contrib/configuration.cc:767
  1613. #, c-format
  1614. msgid "Syntax error %s:%u: Too many nested includes"
  1615. msgstr ""
  1616. #: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776
  1617. #, c-format
  1618. msgid "Syntax error %s:%u: Included from here"
  1619. msgstr ""
  1620. #: apt-pkg/contrib/configuration.cc:780
  1621. #, c-format
  1622. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1623. msgstr ""
  1624. #: apt-pkg/contrib/configuration.cc:831
  1625. #, c-format
  1626. msgid "Syntax error %s:%u: Extra junk at end of file"
  1627. msgstr ""
  1628. #: apt-pkg/contrib/progress.cc:153
  1629. #, c-format
  1630. msgid "%c%s... Error!"
  1631. msgstr ""
  1632. #: apt-pkg/contrib/progress.cc:155
  1633. #, c-format
  1634. msgid "%c%s... Done"
  1635. msgstr ""
  1636. #: apt-pkg/contrib/cmndline.cc:77
  1637. #, c-format
  1638. msgid "Command line option '%c' [from %s] is not known."
  1639. msgstr ""
  1640. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1641. #: apt-pkg/contrib/cmndline.cc:119
  1642. #, c-format
  1643. msgid "Command line option %s is not understood"
  1644. msgstr ""
  1645. #: apt-pkg/contrib/cmndline.cc:124
  1646. #, c-format
  1647. msgid "Command line option %s is not boolean"
  1648. msgstr ""
  1649. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1650. #, c-format
  1651. msgid "Option %s requires an argument."
  1652. msgstr ""
  1653. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1654. #, c-format
  1655. msgid "Option %s: Configuration item specification must have an =<val>."
  1656. msgstr ""
  1657. #: apt-pkg/contrib/cmndline.cc:234
  1658. #, c-format
  1659. msgid "Option %s requires an integer argument, not '%s'"
  1660. msgstr ""
  1661. #: apt-pkg/contrib/cmndline.cc:265
  1662. #, c-format
  1663. msgid "Option '%s' is too long"
  1664. msgstr ""
  1665. #: apt-pkg/contrib/cmndline.cc:298
  1666. #, c-format
  1667. msgid "Sense %s is not understood, try true or false."
  1668. msgstr ""
  1669. #: apt-pkg/contrib/cmndline.cc:348
  1670. #, c-format
  1671. msgid "Invalid operation %s"
  1672. msgstr ""
  1673. #: apt-pkg/contrib/cdromutl.cc:52
  1674. #, c-format
  1675. msgid "Unable to stat the mount point %s"
  1676. msgstr ""
  1677. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1678. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1679. #, c-format
  1680. msgid "Unable to change to %s"
  1681. msgstr ""
  1682. #: apt-pkg/contrib/cdromutl.cc:195
  1683. msgid "Failed to stat the cdrom"
  1684. msgstr ""
  1685. #: apt-pkg/contrib/fileutl.cc:149
  1686. #, c-format
  1687. msgid "Not using locking for read only lock file %s"
  1688. msgstr ""
  1689. #: apt-pkg/contrib/fileutl.cc:154
  1690. #, c-format
  1691. msgid "Could not open lock file %s"
  1692. msgstr ""
  1693. #: apt-pkg/contrib/fileutl.cc:172
  1694. #, c-format
  1695. msgid "Not using locking for nfs mounted lock file %s"
  1696. msgstr ""
  1697. #: apt-pkg/contrib/fileutl.cc:176
  1698. #, c-format
  1699. msgid "Could not get lock %s"
  1700. msgstr ""
  1701. #: apt-pkg/contrib/fileutl.cc:444
  1702. #, c-format
  1703. msgid "Waited for %s but it wasn't there"
  1704. msgstr ""
  1705. #: apt-pkg/contrib/fileutl.cc:456
  1706. #, c-format
  1707. msgid "Sub-process %s received a segmentation fault."
  1708. msgstr ""
  1709. #: apt-pkg/contrib/fileutl.cc:458
  1710. #, c-format
  1711. msgid "Sub-process %s received signal %u."
  1712. msgstr ""
  1713. #: apt-pkg/contrib/fileutl.cc:462
  1714. #, c-format
  1715. msgid "Sub-process %s returned an error code (%u)"
  1716. msgstr ""
  1717. #: apt-pkg/contrib/fileutl.cc:464
  1718. #, c-format
  1719. msgid "Sub-process %s exited unexpectedly"
  1720. msgstr ""
  1721. #: apt-pkg/contrib/fileutl.cc:508
  1722. #, c-format
  1723. msgid "Could not open file %s"
  1724. msgstr ""
  1725. #: apt-pkg/contrib/fileutl.cc:564
  1726. #, c-format
  1727. msgid "read, still have %lu to read but none left"
  1728. msgstr ""
  1729. #: apt-pkg/contrib/fileutl.cc:594
  1730. #, c-format
  1731. msgid "write, still have %lu to write but couldn't"
  1732. msgstr ""
  1733. #: apt-pkg/contrib/fileutl.cc:669
  1734. msgid "Problem closing the file"
  1735. msgstr ""
  1736. #: apt-pkg/contrib/fileutl.cc:675
  1737. msgid "Problem unlinking the file"
  1738. msgstr ""
  1739. #: apt-pkg/contrib/fileutl.cc:686
  1740. msgid "Problem syncing the file"
  1741. msgstr ""
  1742. #: apt-pkg/pkgcache.cc:133
  1743. msgid "Empty package cache"
  1744. msgstr ""
  1745. #: apt-pkg/pkgcache.cc:139
  1746. msgid "The package cache file is corrupted"
  1747. msgstr ""
  1748. #: apt-pkg/pkgcache.cc:144
  1749. msgid "The package cache file is an incompatible version"
  1750. msgstr ""
  1751. #: apt-pkg/pkgcache.cc:149
  1752. #, c-format
  1753. msgid "This APT does not support the versioning system '%s'"
  1754. msgstr ""
  1755. #: apt-pkg/pkgcache.cc:154
  1756. msgid "The package cache was built for a different architecture"
  1757. msgstr ""
  1758. #: apt-pkg/pkgcache.cc:225
  1759. msgid "Depends"
  1760. msgstr "Zavisi"
  1761. #: apt-pkg/pkgcache.cc:225
  1762. msgid "PreDepends"
  1763. msgstr "Unaprijed zavisi"
  1764. #: apt-pkg/pkgcache.cc:225
  1765. msgid "Suggests"
  1766. msgstr "Predlaže"
  1767. #: apt-pkg/pkgcache.cc:226
  1768. msgid "Recommends"
  1769. msgstr "Preporučuje"
  1770. #: apt-pkg/pkgcache.cc:226
  1771. #, fuzzy
  1772. msgid "Conflicts"
  1773. msgstr "Sukobljava se sa"
  1774. #: apt-pkg/pkgcache.cc:226
  1775. msgid "Replaces"
  1776. msgstr "Zamjenjuje"
  1777. #: apt-pkg/pkgcache.cc:227
  1778. msgid "Obsoletes"
  1779. msgstr "Zastarijeva"
  1780. #: apt-pkg/pkgcache.cc:227
  1781. msgid "Breaks"
  1782. msgstr ""
  1783. #: apt-pkg/pkgcache.cc:227
  1784. msgid "Enhances"
  1785. msgstr ""
  1786. #: apt-pkg/pkgcache.cc:238
  1787. msgid "important"
  1788. msgstr "važno"
  1789. #: apt-pkg/pkgcache.cc:238
  1790. msgid "required"
  1791. msgstr "zahtijevano"
  1792. #: apt-pkg/pkgcache.cc:238
  1793. msgid "standard"
  1794. msgstr "standardno"
  1795. #: apt-pkg/pkgcache.cc:239
  1796. msgid "optional"
  1797. msgstr "opcionalno"
  1798. #: apt-pkg/pkgcache.cc:239
  1799. msgid "extra"
  1800. msgstr "extra"
  1801. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  1802. msgid "Building dependency tree"
  1803. msgstr "Gradim stablo zavisnosti"
  1804. #: apt-pkg/depcache.cc:124
  1805. msgid "Candidate versions"
  1806. msgstr "Verzije kandidata"
  1807. #: apt-pkg/depcache.cc:153
  1808. msgid "Dependency generation"
  1809. msgstr "Stvaranje zavisnosti"
  1810. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  1811. #, fuzzy
  1812. msgid "Reading state information"
  1813. msgstr "Sastavljam dostupne informacije"
  1814. #: apt-pkg/depcache.cc:223
  1815. #, fuzzy, c-format
  1816. msgid "Failed to open StateFile %s"
  1817. msgstr "Ne mogu otvoriti %s"
  1818. #: apt-pkg/depcache.cc:229
  1819. #, fuzzy, c-format
  1820. msgid "Failed to write temporary StateFile %s"
  1821. msgstr "Ne mogu ukloniti %s"
  1822. #: apt-pkg/tagfile.cc:102
  1823. #, c-format
  1824. msgid "Unable to parse package file %s (1)"
  1825. msgstr ""
  1826. #: apt-pkg/tagfile.cc:189
  1827. #, c-format
  1828. msgid "Unable to parse package file %s (2)"
  1829. msgstr ""
  1830. #: apt-pkg/sourcelist.cc:90
  1831. #, c-format
  1832. msgid "Malformed line %lu in source list %s (URI)"
  1833. msgstr ""
  1834. #: apt-pkg/sourcelist.cc:92
  1835. #, c-format
  1836. msgid "Malformed line %lu in source list %s (dist)"
  1837. msgstr ""
  1838. #: apt-pkg/sourcelist.cc:95
  1839. #, c-format
  1840. msgid "Malformed line %lu in source list %s (URI parse)"
  1841. msgstr ""
  1842. #: apt-pkg/sourcelist.cc:101
  1843. #, c-format
  1844. msgid "Malformed line %lu in source list %s (absolute dist)"
  1845. msgstr ""
  1846. #: apt-pkg/sourcelist.cc:108
  1847. #, c-format
  1848. msgid "Malformed line %lu in source list %s (dist parse)"
  1849. msgstr ""
  1850. #: apt-pkg/sourcelist.cc:206
  1851. #, c-format
  1852. msgid "Opening %s"
  1853. msgstr "Otvaram %s"
  1854. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  1855. #, c-format
  1856. msgid "Line %u too long in source list %s."
  1857. msgstr ""
  1858. #: apt-pkg/sourcelist.cc:243
  1859. #, c-format
  1860. msgid "Malformed line %u in source list %s (type)"
  1861. msgstr ""
  1862. #: apt-pkg/sourcelist.cc:247
  1863. #, c-format
  1864. msgid "Type '%s' is not known on line %u in source list %s"
  1865. msgstr ""
  1866. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  1867. #, c-format
  1868. msgid "Malformed line %u in source list %s (vendor id)"
  1869. msgstr ""
  1870. #: apt-pkg/packagemanager.cc:324 apt-pkg/packagemanager.cc:586
  1871. #, c-format
  1872. msgid ""
  1873. "Could not perform immediate configuration on '%s'.Please see man 5 apt.conf "
  1874. "under APT::Immediate-Configure for details. (%d)"
  1875. msgstr ""
  1876. #: apt-pkg/packagemanager.cc:440
  1877. #, c-format
  1878. msgid ""
  1879. "This installation run will require temporarily removing the essential "
  1880. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1881. "you really want to do it, activate the APT::Force-LoopBreak option."
  1882. msgstr ""
  1883. #: apt-pkg/packagemanager.cc:478
  1884. #, c-format
  1885. msgid ""
  1886. "Could not perform immediate configuration on already unpacked '%s'.Please "
  1887. "see man 5 apt.conf under APT::Immediate-Configure for details."
  1888. msgstr ""
  1889. #: apt-pkg/pkgrecords.cc:32
  1890. #, c-format
  1891. msgid "Index file type '%s' is not supported"
  1892. msgstr ""
  1893. #: apt-pkg/algorithms.cc:248
  1894. #, c-format
  1895. msgid ""
  1896. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1897. msgstr ""
  1898. #: apt-pkg/algorithms.cc:1138
  1899. msgid ""
  1900. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1901. "held packages."
  1902. msgstr ""
  1903. #: apt-pkg/algorithms.cc:1140
  1904. msgid "Unable to correct problems, you have held broken packages."
  1905. msgstr ""
  1906. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  1907. msgid ""
  1908. "Some index files failed to download, they have been ignored, or old ones "
  1909. "used instead."
  1910. msgstr ""
  1911. #: apt-pkg/acquire.cc:60
  1912. #, c-format
  1913. msgid "Lists directory %spartial is missing."
  1914. msgstr ""
  1915. #: apt-pkg/acquire.cc:64
  1916. #, c-format
  1917. msgid "Archive directory %spartial is missing."
  1918. msgstr ""
  1919. #. only show the ETA if it makes sense
  1920. #. two days
  1921. #: apt-pkg/acquire.cc:826
  1922. #, c-format
  1923. msgid "Retrieving file %li of %li (%s remaining)"
  1924. msgstr ""
  1925. #: apt-pkg/acquire.cc:828
  1926. #, fuzzy, c-format
  1927. msgid "Retrieving file %li of %li"
  1928. msgstr "Čitam spisak datoteke"
  1929. #: apt-pkg/acquire-worker.cc:110
  1930. #, c-format
  1931. msgid "The method driver %s could not be found."
  1932. msgstr ""
  1933. #: apt-pkg/acquire-worker.cc:159
  1934. #, c-format
  1935. msgid "Method %s did not start correctly"
  1936. msgstr ""
  1937. #: apt-pkg/acquire-worker.cc:413
  1938. #, c-format
  1939. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1940. msgstr ""
  1941. #: apt-pkg/init.cc:133
  1942. #, c-format
  1943. msgid "Packaging system '%s' is not supported"
  1944. msgstr ""
  1945. #: apt-pkg/init.cc:149
  1946. msgid "Unable to determine a suitable packaging system type"
  1947. msgstr ""
  1948. #: apt-pkg/clean.cc:56
  1949. #, c-format
  1950. msgid "Unable to stat %s."
  1951. msgstr ""
  1952. #: apt-pkg/srcrecords.cc:44
  1953. msgid "You must put some 'source' URIs in your sources.list"
  1954. msgstr ""
  1955. #: apt-pkg/cachefile.cc:71
  1956. msgid "The package lists or status file could not be parsed or opened."
  1957. msgstr ""
  1958. #: apt-pkg/cachefile.cc:75
  1959. msgid "You may want to run apt-get update to correct these problems"
  1960. msgstr ""
  1961. #: apt-pkg/policy.cc:347
  1962. #, c-format
  1963. msgid "Invalid record in the preferences file %s, no Package header"
  1964. msgstr ""
  1965. #: apt-pkg/policy.cc:369
  1966. #, c-format
  1967. msgid "Did not understand pin type %s"
  1968. msgstr ""
  1969. #: apt-pkg/policy.cc:377
  1970. msgid "No priority (or zero) specified for pin"
  1971. msgstr ""
  1972. #: apt-pkg/pkgcachegen.cc:74
  1973. msgid "Cache has an incompatible versioning system"
  1974. msgstr ""
  1975. #: apt-pkg/pkgcachegen.cc:117
  1976. #, c-format
  1977. msgid "Error occurred while processing %s (NewPackage)"
  1978. msgstr ""
  1979. #: apt-pkg/pkgcachegen.cc:132
  1980. #, c-format
  1981. msgid "Error occurred while processing %s (UsePackage1)"
  1982. msgstr ""
  1983. #: apt-pkg/pkgcachegen.cc:166
  1984. #, c-format
  1985. msgid "Error occurred while processing %s (NewFileDesc1)"
  1986. msgstr ""
  1987. #: apt-pkg/pkgcachegen.cc:191
  1988. #, c-format
  1989. msgid "Error occurred while processing %s (UsePackage2)"
  1990. msgstr ""
  1991. #: apt-pkg/pkgcachegen.cc:195
  1992. #, c-format
  1993. msgid "Error occurred while processing %s (NewFileVer1)"
  1994. msgstr ""
  1995. #: apt-pkg/pkgcachegen.cc:226
  1996. #, c-format
  1997. msgid "Error occurred while processing %s (NewVersion1)"
  1998. msgstr ""
  1999. #: apt-pkg/pkgcachegen.cc:230
  2000. #, c-format
  2001. msgid "Error occurred while processing %s (UsePackage3)"
  2002. msgstr ""
  2003. #: apt-pkg/pkgcachegen.cc:234
  2004. #, c-format
  2005. msgid "Error occurred while processing %s (NewVersion2)"
  2006. msgstr ""
  2007. #: apt-pkg/pkgcachegen.cc:258
  2008. #, c-format
  2009. msgid "Error occurred while processing %s (NewFileDesc2)"
  2010. msgstr ""
  2011. #: apt-pkg/pkgcachegen.cc:264
  2012. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2013. msgstr ""
  2014. #: apt-pkg/pkgcachegen.cc:267
  2015. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2016. msgstr ""
  2017. #: apt-pkg/pkgcachegen.cc:270
  2018. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2019. msgstr ""
  2020. #: apt-pkg/pkgcachegen.cc:273
  2021. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2022. msgstr ""
  2023. #: apt-pkg/pkgcachegen.cc:301
  2024. #, c-format
  2025. msgid "Error occurred while processing %s (FindPkg)"
  2026. msgstr ""
  2027. #: apt-pkg/pkgcachegen.cc:314
  2028. #, c-format
  2029. msgid "Error occurred while processing %s (CollectFileProvides)"
  2030. msgstr ""
  2031. #: apt-pkg/pkgcachegen.cc:320
  2032. #, c-format
  2033. msgid "Package %s %s was not found while processing file dependencies"
  2034. msgstr ""
  2035. #: apt-pkg/pkgcachegen.cc:693
  2036. #, c-format
  2037. msgid "Couldn't stat source package list %s"
  2038. msgstr ""
  2039. #: apt-pkg/pkgcachegen.cc:778
  2040. msgid "Collecting File Provides"
  2041. msgstr ""
  2042. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2043. msgid "IO Error saving source cache"
  2044. msgstr ""
  2045. #: apt-pkg/acquire-item.cc:128
  2046. #, c-format
  2047. msgid "rename failed, %s (%s -> %s)."
  2048. msgstr ""
  2049. #: apt-pkg/acquire-item.cc:395
  2050. msgid "MD5Sum mismatch"
  2051. msgstr ""
  2052. #: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411
  2053. msgid "Hash Sum mismatch"
  2054. msgstr ""
  2055. #: apt-pkg/acquire-item.cc:1106
  2056. msgid "There is no public key available for the following key IDs:\n"
  2057. msgstr ""
  2058. #: apt-pkg/acquire-item.cc:1216
  2059. #, c-format
  2060. msgid ""
  2061. "I wasn't able to locate a file for the %s package. This might mean you need "
  2062. "to manually fix this package. (due to missing arch)"
  2063. msgstr ""
  2064. #: apt-pkg/acquire-item.cc:1275
  2065. #, c-format
  2066. msgid ""
  2067. "I wasn't able to locate file for the %s package. This might mean you need to "
  2068. "manually fix this package."
  2069. msgstr ""
  2070. #: apt-pkg/acquire-item.cc:1316
  2071. #, c-format
  2072. msgid ""
  2073. "The package index files are corrupted. No Filename: field for package %s."
  2074. msgstr ""
  2075. #: apt-pkg/acquire-item.cc:1403
  2076. msgid "Size mismatch"
  2077. msgstr ""
  2078. #: apt-pkg/indexrecords.cc:40
  2079. #, fuzzy, c-format
  2080. msgid "Unable to parse Release file %s"
  2081. msgstr "Ne mogu otvoriti DB datoteku %s"
  2082. #: apt-pkg/indexrecords.cc:47
  2083. #, c-format
  2084. msgid "No sections in Release file %s"
  2085. msgstr ""
  2086. #: apt-pkg/indexrecords.cc:81
  2087. #, c-format
  2088. msgid "No Hash entry in Release file %s"
  2089. msgstr ""
  2090. #: apt-pkg/vendorlist.cc:66
  2091. #, c-format
  2092. msgid "Vendor block %s contains no fingerprint"
  2093. msgstr ""
  2094. #: apt-pkg/cdrom.cc:525
  2095. #, c-format
  2096. msgid ""
  2097. "Using CD-ROM mount point %s\n"
  2098. "Mounting CD-ROM\n"
  2099. msgstr ""
  2100. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2101. msgid "Identifying.. "
  2102. msgstr ""
  2103. #: apt-pkg/cdrom.cc:559
  2104. #, c-format
  2105. msgid "Stored label: %s\n"
  2106. msgstr ""
  2107. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2108. #, fuzzy
  2109. msgid "Unmounting CD-ROM...\n"
  2110. msgstr "Pogrešan CD"
  2111. #: apt-pkg/cdrom.cc:585
  2112. #, c-format
  2113. msgid "Using CD-ROM mount point %s\n"
  2114. msgstr ""
  2115. #: apt-pkg/cdrom.cc:603
  2116. msgid "Unmounting CD-ROM\n"
  2117. msgstr ""
  2118. #: apt-pkg/cdrom.cc:607
  2119. #, fuzzy
  2120. msgid "Waiting for disc...\n"
  2121. msgstr "Čekam na zaglavlja"
  2122. #. Mount the new CDROM
  2123. #: apt-pkg/cdrom.cc:615
  2124. msgid "Mounting CD-ROM...\n"
  2125. msgstr ""
  2126. #: apt-pkg/cdrom.cc:633
  2127. msgid "Scanning disc for index files..\n"
  2128. msgstr ""
  2129. #: apt-pkg/cdrom.cc:673
  2130. #, c-format
  2131. msgid ""
  2132. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2133. "zu signatures\n"
  2134. msgstr ""
  2135. #: apt-pkg/cdrom.cc:684
  2136. msgid ""
  2137. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2138. "wrong architecture?"
  2139. msgstr ""
  2140. #: apt-pkg/cdrom.cc:710
  2141. #, c-format
  2142. msgid "Found label '%s'\n"
  2143. msgstr ""
  2144. #: apt-pkg/cdrom.cc:739
  2145. msgid "That is not a valid name, try again.\n"
  2146. msgstr ""
  2147. #: apt-pkg/cdrom.cc:755
  2148. #, c-format
  2149. msgid ""
  2150. "This disc is called: \n"
  2151. "'%s'\n"
  2152. msgstr ""
  2153. #: apt-pkg/cdrom.cc:759
  2154. #, fuzzy
  2155. msgid "Copying package lists..."
  2156. msgstr "Čitam spiskove paketa"
  2157. #: apt-pkg/cdrom.cc:785
  2158. msgid "Writing new source list\n"
  2159. msgstr ""
  2160. #: apt-pkg/cdrom.cc:794
  2161. msgid "Source list entries for this disc are:\n"
  2162. msgstr ""
  2163. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2164. #, c-format
  2165. msgid "Wrote %i records.\n"
  2166. msgstr ""
  2167. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2168. #, c-format
  2169. msgid "Wrote %i records with %i missing files.\n"
  2170. msgstr ""
  2171. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2172. #, c-format
  2173. msgid "Wrote %i records with %i mismatched files\n"
  2174. msgstr ""
  2175. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2176. #, c-format
  2177. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2178. msgstr ""
  2179. #: apt-pkg/indexcopy.cc:530
  2180. #, c-format
  2181. msgid "Skipping nonexistent file %s"
  2182. msgstr ""
  2183. #: apt-pkg/indexcopy.cc:536
  2184. #, c-format
  2185. msgid "Can't find authentication record for: %s"
  2186. msgstr ""
  2187. #: apt-pkg/indexcopy.cc:542
  2188. #, c-format
  2189. msgid "Hash mismatch for: %s"
  2190. msgstr ""
  2191. #: apt-pkg/deb/dpkgpm.cc:49
  2192. #, fuzzy, c-format
  2193. msgid "Installing %s"
  2194. msgstr " Instalirano:"
  2195. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:661
  2196. #, fuzzy, c-format
  2197. msgid "Configuring %s"
  2198. msgstr "Povezujem se sa %s"
  2199. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:668
  2200. #, fuzzy, c-format
  2201. msgid "Removing %s"
  2202. msgstr "Otvaram %s"
  2203. #: apt-pkg/deb/dpkgpm.cc:52
  2204. #, fuzzy, c-format
  2205. msgid "Completely removing %s"
  2206. msgstr "Ne mogu ukloniti %s"
  2207. #: apt-pkg/deb/dpkgpm.cc:53
  2208. #, c-format
  2209. msgid "Running post-installation trigger %s"
  2210. msgstr ""
  2211. #: apt-pkg/deb/dpkgpm.cc:558
  2212. #, c-format
  2213. msgid "Directory '%s' missing"
  2214. msgstr ""
  2215. #: apt-pkg/deb/dpkgpm.cc:654
  2216. #, fuzzy, c-format
  2217. msgid "Preparing %s"
  2218. msgstr "Otvaram %s"
  2219. #: apt-pkg/deb/dpkgpm.cc:655
  2220. #, fuzzy, c-format
  2221. msgid "Unpacking %s"
  2222. msgstr "Otvaram %s"
  2223. #: apt-pkg/deb/dpkgpm.cc:660
  2224. #, c-format
  2225. msgid "Preparing to configure %s"
  2226. msgstr ""
  2227. #: apt-pkg/deb/dpkgpm.cc:662
  2228. #, fuzzy, c-format
  2229. msgid "Installed %s"
  2230. msgstr " Instalirano:"
  2231. #: apt-pkg/deb/dpkgpm.cc:667
  2232. #, c-format
  2233. msgid "Preparing for removal of %s"
  2234. msgstr ""
  2235. #: apt-pkg/deb/dpkgpm.cc:669
  2236. #, fuzzy, c-format
  2237. msgid "Removed %s"
  2238. msgstr "Preporučuje"
  2239. #: apt-pkg/deb/dpkgpm.cc:674
  2240. #, c-format
  2241. msgid "Preparing to completely remove %s"
  2242. msgstr ""
  2243. #: apt-pkg/deb/dpkgpm.cc:675
  2244. #, fuzzy, c-format
  2245. msgid "Completely removed %s"
  2246. msgstr "Ne mogu ukloniti %s"
  2247. #: apt-pkg/deb/dpkgpm.cc:879
  2248. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2249. msgstr ""
  2250. #: apt-pkg/deb/dpkgpm.cc:909
  2251. msgid "Running dpkg"
  2252. msgstr ""
  2253. #: apt-pkg/deb/debsystem.cc:70
  2254. #, c-format
  2255. msgid ""
  2256. "Unable to lock the administration directory (%s), is another process using "
  2257. "it?"
  2258. msgstr ""
  2259. #: apt-pkg/deb/debsystem.cc:73
  2260. #, c-format
  2261. msgid "Unable to lock the administration directory (%s), are you root?"
  2262. msgstr ""
  2263. #: apt-pkg/deb/debsystem.cc:82
  2264. msgid ""
  2265. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2266. "the problem. "
  2267. msgstr ""
  2268. #: apt-pkg/deb/debsystem.cc:100
  2269. msgid "Not locked"
  2270. msgstr ""
  2271. #: methods/rred.cc:219
  2272. msgid "Could not patch file"
  2273. msgstr ""
  2274. #: methods/rsh.cc:330
  2275. msgid "Connection closed prematurely"
  2276. msgstr ""
  2277. #, fuzzy
  2278. #~ msgid "openpty failed\n"
  2279. #~ msgstr "Povezivanje neuspješno"
  2280. #~ msgid "File date has changed %s"
  2281. #~ msgstr "Datum datoteke je promijenjen %s"