bs.po 76 KB

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