bs.po 76 KB

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