bs.po 77 KB

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