bs.po 78 KB

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