bs.po 54 KB

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