bs.po 78 KB

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