bs.po 80 KB

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