bs.po 61 KB

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