bs.po 76 KB

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