bs.po 78 KB

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