bs.po 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  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-05-28 14:25+0200\n"
  10. "PO-Revision-Date: 2004-05-06 15:25+0100\n"
  11. "Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
  12. "Language-Team: Bosnian <lokal@lugbih.org>\n"
  13. "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:2571 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:1651
  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:1990 cmdline/apt-get.cc:2023
  597. msgid "Unable to lock the download directory"
  598. msgstr ""
  599. #: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2071 cmdline/apt-get.cc:2317
  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:2166
  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:2214 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:2223
  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:1403
  737. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  738. msgstr ""
  739. #: cmdline/apt-get.cc:1435
  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:1437
  746. msgid "Use 'apt-get autoremove' to remove them."
  747. msgstr ""
  748. #: cmdline/apt-get.cc:1442
  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:1445 cmdline/apt-get.cc:1733
  754. msgid "The following information may help to resolve the situation:"
  755. msgstr ""
  756. #: cmdline/apt-get.cc:1449
  757. msgid "Internal Error, AutoRemover broke stuff"
  758. msgstr ""
  759. #: cmdline/apt-get.cc:1468
  760. msgid "Internal error, AllUpgrade broke stuff"
  761. msgstr ""
  762. #: cmdline/apt-get.cc:1523
  763. #, c-format
  764. msgid "Couldn't find task %s"
  765. msgstr ""
  766. #: cmdline/apt-get.cc:1638 cmdline/apt-get.cc:1674
  767. #, c-format
  768. msgid "Couldn't find package %s"
  769. msgstr ""
  770. #: cmdline/apt-get.cc:1661
  771. #, c-format
  772. msgid "Note, selecting %s for regex '%s'\n"
  773. msgstr ""
  774. #: cmdline/apt-get.cc:1692
  775. #, fuzzy, c-format
  776. msgid "%s set to manually installed.\n"
  777. msgstr "ali se %s treba instalirati"
  778. #: cmdline/apt-get.cc:1705
  779. msgid "You might want to run `apt-get -f install' to correct these:"
  780. msgstr ""
  781. #: cmdline/apt-get.cc:1708
  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:1720
  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:1728
  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:1736
  800. msgid "Broken packages"
  801. msgstr "Oštećeni paketi"
  802. #: cmdline/apt-get.cc:1765
  803. msgid "The following extra packages will be installed:"
  804. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  805. #: cmdline/apt-get.cc:1854
  806. msgid "Suggested packages:"
  807. msgstr "Predloženi paketi:"
  808. #: cmdline/apt-get.cc:1855
  809. msgid "Recommended packages:"
  810. msgstr "Preporučeni paketi:"
  811. #: cmdline/apt-get.cc:1883
  812. msgid "Calculating upgrade... "
  813. msgstr "Računam nadogradnju..."
  814. #: cmdline/apt-get.cc:1886 methods/ftp.cc:702 methods/connect.cc:112
  815. msgid "Failed"
  816. msgstr "Neuspješno"
  817. #: cmdline/apt-get.cc:1891
  818. msgid "Done"
  819. msgstr "Urađeno"
  820. #: cmdline/apt-get.cc:1958 cmdline/apt-get.cc:1966
  821. msgid "Internal error, problem resolver broke stuff"
  822. msgstr ""
  823. #: cmdline/apt-get.cc:2066
  824. msgid "Must specify at least one package to fetch source for"
  825. msgstr ""
  826. #: cmdline/apt-get.cc:2096 cmdline/apt-get.cc:2335
  827. #, c-format
  828. msgid "Unable to find a source package for %s"
  829. msgstr ""
  830. #: cmdline/apt-get.cc:2145
  831. #, c-format
  832. msgid "Skipping already downloaded file '%s'\n"
  833. msgstr ""
  834. #: cmdline/apt-get.cc:2173
  835. #, c-format
  836. msgid "You don't have enough free space in %s"
  837. msgstr ""
  838. #: cmdline/apt-get.cc:2179
  839. #, c-format
  840. msgid "Need to get %sB/%sB of source archives.\n"
  841. msgstr ""
  842. #: cmdline/apt-get.cc:2182
  843. #, c-format
  844. msgid "Need to get %sB of source archives.\n"
  845. msgstr ""
  846. #: cmdline/apt-get.cc:2188
  847. #, c-format
  848. msgid "Fetch source %s\n"
  849. msgstr ""
  850. #: cmdline/apt-get.cc:2219
  851. msgid "Failed to fetch some archives."
  852. msgstr ""
  853. #: cmdline/apt-get.cc:2247
  854. #, c-format
  855. msgid "Skipping unpack of already unpacked source in %s\n"
  856. msgstr ""
  857. #: cmdline/apt-get.cc:2259
  858. #, c-format
  859. msgid "Unpack command '%s' failed.\n"
  860. msgstr ""
  861. #: cmdline/apt-get.cc:2260
  862. #, c-format
  863. msgid "Check if the 'dpkg-dev' package is installed.\n"
  864. msgstr ""
  865. #: cmdline/apt-get.cc:2277
  866. #, c-format
  867. msgid "Build command '%s' failed.\n"
  868. msgstr ""
  869. #: cmdline/apt-get.cc:2296
  870. msgid "Child process failed"
  871. msgstr ""
  872. #: cmdline/apt-get.cc:2312
  873. msgid "Must specify at least one package to check builddeps for"
  874. msgstr ""
  875. #: cmdline/apt-get.cc:2340
  876. #, c-format
  877. msgid "Unable to get build-dependency information for %s"
  878. msgstr ""
  879. #: cmdline/apt-get.cc:2360
  880. #, c-format
  881. msgid "%s has no build depends.\n"
  882. msgstr ""
  883. #: cmdline/apt-get.cc:2412
  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:2465
  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:2501
  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:2526
  900. #, c-format
  901. msgid "Failed to satisfy %s dependency for %s: %s"
  902. msgstr ""
  903. #: cmdline/apt-get.cc:2540
  904. #, c-format
  905. msgid "Build-dependencies for %s could not be satisfied."
  906. msgstr ""
  907. #: cmdline/apt-get.cc:2544
  908. msgid "Failed to process build dependencies"
  909. msgstr ""
  910. #: cmdline/apt-get.cc:2576
  911. msgid "Supported modules:"
  912. msgstr "Podržani moduli:"
  913. #: cmdline/apt-get.cc:2617
  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:94
  1003. #: dselect/install:105 dselect/update:45
  1004. msgid "Press enter to continue."
  1005. msgstr "Pritisnite enter za nastavak."
  1006. #: dselect/install:91
  1007. msgid "Do you want to erase any previously downloaded .deb files?"
  1008. msgstr ""
  1009. #: dselect/install:101
  1010. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1011. msgstr ""
  1012. #: dselect/install:102
  1013. msgid "packages that were installed. This may result in duplicate errors"
  1014. msgstr ""
  1015. #: dselect/install:103
  1016. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1017. msgstr ""
  1018. #: dselect/install:104
  1019. msgid ""
  1020. "above this message are important. Please fix them and run [I]nstall again"
  1021. msgstr ""
  1022. #: dselect/update:30
  1023. msgid "Merging available information"
  1024. msgstr "Sastavljam dostupne informacije"
  1025. #: apt-inst/contrib/extracttar.cc:114
  1026. msgid "Failed to create pipes"
  1027. msgstr ""
  1028. #: apt-inst/contrib/extracttar.cc:141
  1029. msgid "Failed to exec gzip "
  1030. msgstr "Ne mogu izvršiti gzip"
  1031. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1032. msgid "Corrupted archive"
  1033. msgstr "Oštećena arhiva"
  1034. #: apt-inst/contrib/extracttar.cc:193
  1035. msgid "Tar checksum failed, archive corrupted"
  1036. msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oštećena"
  1037. #: apt-inst/contrib/extracttar.cc:296
  1038. #, c-format
  1039. msgid "Unknown TAR header type %u, member %s"
  1040. msgstr ""
  1041. #: apt-inst/contrib/arfile.cc:70
  1042. msgid "Invalid archive signature"
  1043. msgstr ""
  1044. #: apt-inst/contrib/arfile.cc:78
  1045. msgid "Error reading archive member header"
  1046. msgstr ""
  1047. #: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
  1048. msgid "Invalid archive member header"
  1049. msgstr ""
  1050. #: apt-inst/contrib/arfile.cc:128
  1051. msgid "Archive is too short"
  1052. msgstr "Arhiva je prekratka"
  1053. #: apt-inst/contrib/arfile.cc:132
  1054. msgid "Failed to read the archive headers"
  1055. msgstr ""
  1056. #: apt-inst/filelist.cc:380
  1057. msgid "DropNode called on still linked node"
  1058. msgstr ""
  1059. #: apt-inst/filelist.cc:412
  1060. msgid "Failed to locate the hash element!"
  1061. msgstr ""
  1062. #: apt-inst/filelist.cc:459
  1063. msgid "Failed to allocate diversion"
  1064. msgstr ""
  1065. #: apt-inst/filelist.cc:464
  1066. msgid "Internal error in AddDiversion"
  1067. msgstr ""
  1068. #: apt-inst/filelist.cc:477
  1069. #, c-format
  1070. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1071. msgstr ""
  1072. #: apt-inst/filelist.cc:506
  1073. #, c-format
  1074. msgid "Double add of diversion %s -> %s"
  1075. msgstr ""
  1076. #: apt-inst/filelist.cc:549
  1077. #, c-format
  1078. msgid "Duplicate conf file %s/%s"
  1079. msgstr ""
  1080. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1081. #, fuzzy, c-format
  1082. msgid "Failed to write file %s"
  1083. msgstr "Ne mogu ukloniti %s"
  1084. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1085. #, c-format
  1086. msgid "Failed to close file %s"
  1087. msgstr ""
  1088. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1089. #, c-format
  1090. msgid "The path %s is too long"
  1091. msgstr ""
  1092. #: apt-inst/extract.cc:124
  1093. #, c-format
  1094. msgid "Unpacking %s more than once"
  1095. msgstr ""
  1096. #: apt-inst/extract.cc:134
  1097. #, c-format
  1098. msgid "The directory %s is diverted"
  1099. msgstr ""
  1100. #: apt-inst/extract.cc:144
  1101. #, c-format
  1102. msgid "The package is trying to write to the diversion target %s/%s"
  1103. msgstr ""
  1104. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1105. msgid "The diversion path is too long"
  1106. msgstr ""
  1107. #: apt-inst/extract.cc:240
  1108. #, c-format
  1109. msgid "The directory %s is being replaced by a non-directory"
  1110. msgstr ""
  1111. #: apt-inst/extract.cc:280
  1112. msgid "Failed to locate node in its hash bucket"
  1113. msgstr ""
  1114. #: apt-inst/extract.cc:284
  1115. msgid "The path is too long"
  1116. msgstr "Putanja je preduga"
  1117. #: apt-inst/extract.cc:414
  1118. #, c-format
  1119. msgid "Overwrite package match with no version for %s"
  1120. msgstr ""
  1121. #: apt-inst/extract.cc:431
  1122. #, c-format
  1123. msgid "File %s/%s overwrites the one in the package %s"
  1124. msgstr ""
  1125. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:821
  1126. #: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
  1127. #: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
  1128. #, c-format
  1129. msgid "Unable to read %s"
  1130. msgstr "Ne mogu čitati %s"
  1131. #: apt-inst/extract.cc:491
  1132. #, c-format
  1133. msgid "Unable to stat %s"
  1134. msgstr ""
  1135. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1136. #, c-format
  1137. msgid "Failed to remove %s"
  1138. msgstr "Ne mogu ukloniti %s"
  1139. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1140. #, c-format
  1141. msgid "Unable to create %s"
  1142. msgstr "Ne mogu kreirati %s"
  1143. #: apt-inst/deb/dpkgdb.cc:114
  1144. #, c-format
  1145. msgid "Failed to stat %sinfo"
  1146. msgstr ""
  1147. #: apt-inst/deb/dpkgdb.cc:119
  1148. msgid "The info and temp directories need to be on the same filesystem"
  1149. msgstr ""
  1150. #. Build the status cache
  1151. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
  1152. #: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
  1153. #: apt-pkg/pkgcachegen.cc:945
  1154. msgid "Reading package lists"
  1155. msgstr "Čitam spiskove paketa"
  1156. #: apt-inst/deb/dpkgdb.cc:176
  1157. #, c-format
  1158. msgid "Failed to change to the admin dir %sinfo"
  1159. msgstr ""
  1160. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1161. #: apt-inst/deb/dpkgdb.cc:444
  1162. msgid "Internal error getting a package name"
  1163. msgstr ""
  1164. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1165. msgid "Reading file listing"
  1166. msgstr "Čitam spisak datoteke"
  1167. #: apt-inst/deb/dpkgdb.cc:212
  1168. #, c-format
  1169. msgid ""
  1170. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1171. "then make it empty and immediately re-install the same version of the "
  1172. "package!"
  1173. msgstr ""
  1174. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1175. #, c-format
  1176. msgid "Failed reading the list file %sinfo/%s"
  1177. msgstr ""
  1178. #: apt-inst/deb/dpkgdb.cc:262
  1179. msgid "Internal error getting a node"
  1180. msgstr ""
  1181. #: apt-inst/deb/dpkgdb.cc:305
  1182. #, c-format
  1183. msgid "Failed to open the diversions file %sdiversions"
  1184. msgstr ""
  1185. #: apt-inst/deb/dpkgdb.cc:320
  1186. msgid "The diversion file is corrupted"
  1187. msgstr ""
  1188. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1189. #: apt-inst/deb/dpkgdb.cc:337
  1190. #, c-format
  1191. msgid "Invalid line in the diversion file: %s"
  1192. msgstr ""
  1193. #: apt-inst/deb/dpkgdb.cc:358
  1194. msgid "Internal error adding a diversion"
  1195. msgstr ""
  1196. #: apt-inst/deb/dpkgdb.cc:379
  1197. msgid "The pkg cache must be initialized first"
  1198. msgstr ""
  1199. #: apt-inst/deb/dpkgdb.cc:439
  1200. #, c-format
  1201. msgid "Failed to find a Package: header, offset %lu"
  1202. msgstr ""
  1203. #: apt-inst/deb/dpkgdb.cc:461
  1204. #, c-format
  1205. msgid "Bad ConfFile section in the status file. Offset %lu"
  1206. msgstr ""
  1207. #: apt-inst/deb/dpkgdb.cc:466
  1208. #, c-format
  1209. msgid "Error parsing MD5. Offset %lu"
  1210. msgstr ""
  1211. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1212. #, c-format
  1213. msgid "This is not a valid DEB archive, missing '%s' member"
  1214. msgstr ""
  1215. #: apt-inst/deb/debfile.cc:50
  1216. #, c-format
  1217. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1218. msgstr ""
  1219. #: apt-inst/deb/debfile.cc:110
  1220. #, c-format
  1221. msgid "Couldn't change to %s"
  1222. msgstr ""
  1223. #: apt-inst/deb/debfile.cc:140
  1224. msgid "Internal error, could not locate member"
  1225. msgstr ""
  1226. #: apt-inst/deb/debfile.cc:173
  1227. msgid "Failed to locate a valid control file"
  1228. msgstr ""
  1229. #: apt-inst/deb/debfile.cc:258
  1230. msgid "Unparsable control file"
  1231. msgstr ""
  1232. #: methods/cdrom.cc:114
  1233. #, c-format
  1234. msgid "Unable to read the cdrom database %s"
  1235. msgstr ""
  1236. #: methods/cdrom.cc:123
  1237. msgid ""
  1238. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1239. "cannot be used to add new CD-ROMs"
  1240. msgstr ""
  1241. #: methods/cdrom.cc:131
  1242. #, fuzzy
  1243. msgid "Wrong CD-ROM"
  1244. msgstr "Pogrešan CD"
  1245. #: methods/cdrom.cc:166
  1246. #, c-format
  1247. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1248. msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi."
  1249. #: methods/cdrom.cc:171
  1250. #, fuzzy
  1251. msgid "Disk not found."
  1252. msgstr "Datoteka nije pronađena"
  1253. #: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
  1254. msgid "File not found"
  1255. msgstr "Datoteka nije pronađena"
  1256. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1257. #: methods/rred.cc:234 methods/rred.cc:243
  1258. msgid "Failed to stat"
  1259. msgstr ""
  1260. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1261. msgid "Failed to set modification time"
  1262. msgstr ""
  1263. #: methods/file.cc:44
  1264. msgid "Invalid URI, local URIS must not start with //"
  1265. msgstr ""
  1266. #. Login must be before getpeername otherwise dante won't work.
  1267. #: methods/ftp.cc:162
  1268. msgid "Logging in"
  1269. msgstr "Prijavljujem se"
  1270. #: methods/ftp.cc:168
  1271. msgid "Unable to determine the peer name"
  1272. msgstr ""
  1273. #: methods/ftp.cc:173
  1274. msgid "Unable to determine the local name"
  1275. msgstr ""
  1276. #: methods/ftp.cc:204 methods/ftp.cc:232
  1277. #, c-format
  1278. msgid "The server refused the connection and said: %s"
  1279. msgstr ""
  1280. #: methods/ftp.cc:210
  1281. #, c-format
  1282. msgid "USER failed, server said: %s"
  1283. msgstr ""
  1284. #: methods/ftp.cc:217
  1285. #, c-format
  1286. msgid "PASS failed, server said: %s"
  1287. msgstr ""
  1288. #: methods/ftp.cc:237
  1289. msgid ""
  1290. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1291. "is empty."
  1292. msgstr ""
  1293. #: methods/ftp.cc:265
  1294. #, c-format
  1295. msgid "Login script command '%s' failed, server said: %s"
  1296. msgstr ""
  1297. #: methods/ftp.cc:291
  1298. #, c-format
  1299. msgid "TYPE failed, server said: %s"
  1300. msgstr ""
  1301. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1302. msgid "Connection timeout"
  1303. msgstr ""
  1304. #: methods/ftp.cc:335
  1305. msgid "Server closed the connection"
  1306. msgstr "Server je zatvorio vezu"
  1307. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:538 methods/rsh.cc:190
  1308. msgid "Read error"
  1309. msgstr "Greška pri čitanju"
  1310. #: methods/ftp.cc:345 methods/rsh.cc:197
  1311. msgid "A response overflowed the buffer."
  1312. msgstr ""
  1313. #: methods/ftp.cc:362 methods/ftp.cc:374
  1314. #, fuzzy
  1315. msgid "Protocol corruption"
  1316. msgstr "Oštećenje protokola"
  1317. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:577 methods/rsh.cc:232
  1318. msgid "Write error"
  1319. msgstr "Greška pri pisanju"
  1320. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1321. msgid "Could not create a socket"
  1322. msgstr ""
  1323. #: methods/ftp.cc:698
  1324. msgid "Could not connect data socket, connection timed out"
  1325. msgstr ""
  1326. #: methods/ftp.cc:704
  1327. msgid "Could not connect passive socket."
  1328. msgstr ""
  1329. #: methods/ftp.cc:722
  1330. msgid "getaddrinfo was unable to get a listening socket"
  1331. msgstr ""
  1332. #: methods/ftp.cc:736
  1333. msgid "Could not bind a socket"
  1334. msgstr ""
  1335. #: methods/ftp.cc:740
  1336. msgid "Could not listen on the socket"
  1337. msgstr ""
  1338. #: methods/ftp.cc:747
  1339. msgid "Could not determine the socket's name"
  1340. msgstr ""
  1341. #: methods/ftp.cc:779
  1342. msgid "Unable to send PORT command"
  1343. msgstr ""
  1344. #: methods/ftp.cc:789
  1345. #, c-format
  1346. msgid "Unknown address family %u (AF_*)"
  1347. msgstr ""
  1348. #: methods/ftp.cc:798
  1349. #, c-format
  1350. msgid "EPRT failed, server said: %s"
  1351. msgstr ""
  1352. #: methods/ftp.cc:818
  1353. msgid "Data socket connect timed out"
  1354. msgstr ""
  1355. #: methods/ftp.cc:825
  1356. msgid "Unable to accept connection"
  1357. msgstr ""
  1358. #: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
  1359. msgid "Problem hashing file"
  1360. msgstr ""
  1361. #: methods/ftp.cc:877
  1362. #, c-format
  1363. msgid "Unable to fetch file, server said '%s'"
  1364. msgstr ""
  1365. #: methods/ftp.cc:892 methods/rsh.cc:322
  1366. msgid "Data socket timed out"
  1367. msgstr ""
  1368. #: methods/ftp.cc:922
  1369. #, c-format
  1370. msgid "Data transfer failed, server said '%s'"
  1371. msgstr ""
  1372. #. Get the files information
  1373. #: methods/ftp.cc:997
  1374. msgid "Query"
  1375. msgstr ""
  1376. #: methods/ftp.cc:1109
  1377. msgid "Unable to invoke "
  1378. msgstr ""
  1379. #: methods/connect.cc:70
  1380. #, c-format
  1381. msgid "Connecting to %s (%s)"
  1382. msgstr ""
  1383. #: methods/connect.cc:81
  1384. #, c-format
  1385. msgid "[IP: %s %s]"
  1386. msgstr ""
  1387. #: methods/connect.cc:90
  1388. #, c-format
  1389. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1390. msgstr ""
  1391. #: methods/connect.cc:96
  1392. #, c-format
  1393. msgid "Cannot initiate the connection to %s:%s (%s)."
  1394. msgstr ""
  1395. #: methods/connect.cc:104
  1396. #, c-format
  1397. msgid "Could not connect to %s:%s (%s), connection timed out"
  1398. msgstr ""
  1399. #: methods/connect.cc:119
  1400. #, c-format
  1401. msgid "Could not connect to %s:%s (%s)."
  1402. msgstr ""
  1403. #. We say this mainly because the pause here is for the
  1404. #. ssh connection that is still going
  1405. #: methods/connect.cc:147 methods/rsh.cc:425
  1406. #, c-format
  1407. msgid "Connecting to %s"
  1408. msgstr "Povezujem se sa %s"
  1409. #: methods/connect.cc:165 methods/connect.cc:184
  1410. #, c-format
  1411. msgid "Could not resolve '%s'"
  1412. msgstr ""
  1413. #: methods/connect.cc:190
  1414. #, c-format
  1415. msgid "Temporary failure resolving '%s'"
  1416. msgstr ""
  1417. #: methods/connect.cc:193
  1418. #, c-format
  1419. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1420. msgstr ""
  1421. #: methods/connect.cc:240
  1422. #, c-format
  1423. msgid "Unable to connect to %s %s:"
  1424. msgstr "Ne mogu se povezati sa %s %s:"
  1425. #: methods/gpgv.cc:65
  1426. #, c-format
  1427. msgid "Couldn't access keyring: '%s'"
  1428. msgstr ""
  1429. #: methods/gpgv.cc:101
  1430. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1431. msgstr ""
  1432. #: methods/gpgv.cc:205
  1433. msgid ""
  1434. "Internal error: Good signature, but could not determine key fingerprint?!"
  1435. msgstr ""
  1436. #: methods/gpgv.cc:210
  1437. msgid "At least one invalid signature was encountered."
  1438. msgstr ""
  1439. #: methods/gpgv.cc:214
  1440. #, c-format
  1441. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1442. msgstr ""
  1443. #: methods/gpgv.cc:219
  1444. msgid "Unknown error executing gpgv"
  1445. msgstr ""
  1446. #: methods/gpgv.cc:250
  1447. #, fuzzy
  1448. msgid "The following signatures were invalid:\n"
  1449. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  1450. #: methods/gpgv.cc:257
  1451. msgid ""
  1452. "The following signatures couldn't be verified because the public key is not "
  1453. "available:\n"
  1454. msgstr ""
  1455. #: methods/gzip.cc:64
  1456. #, c-format
  1457. msgid "Couldn't open pipe for %s"
  1458. msgstr ""
  1459. #: methods/gzip.cc:109
  1460. #, c-format
  1461. msgid "Read error from %s process"
  1462. msgstr ""
  1463. #: methods/http.cc:377
  1464. msgid "Waiting for headers"
  1465. msgstr "Čekam na zaglavlja"
  1466. #: methods/http.cc:523
  1467. #, c-format
  1468. msgid "Got a single header line over %u chars"
  1469. msgstr ""
  1470. #: methods/http.cc:531
  1471. msgid "Bad header line"
  1472. msgstr ""
  1473. #: methods/http.cc:550 methods/http.cc:557
  1474. msgid "The HTTP server sent an invalid reply header"
  1475. msgstr ""
  1476. #: methods/http.cc:586
  1477. msgid "The HTTP server sent an invalid Content-Length header"
  1478. msgstr ""
  1479. #: methods/http.cc:601
  1480. msgid "The HTTP server sent an invalid Content-Range header"
  1481. msgstr ""
  1482. #: methods/http.cc:603
  1483. msgid "This HTTP server has broken range support"
  1484. msgstr ""
  1485. #: methods/http.cc:627
  1486. msgid "Unknown date format"
  1487. msgstr "Nepoznat oblik datuma"
  1488. #: methods/http.cc:774
  1489. msgid "Select failed"
  1490. msgstr ""
  1491. #: methods/http.cc:779
  1492. msgid "Connection timed out"
  1493. msgstr ""
  1494. #: methods/http.cc:802
  1495. msgid "Error writing to output file"
  1496. msgstr ""
  1497. #: methods/http.cc:833
  1498. msgid "Error writing to file"
  1499. msgstr ""
  1500. #: methods/http.cc:861
  1501. msgid "Error writing to the file"
  1502. msgstr ""
  1503. #: methods/http.cc:875
  1504. msgid "Error reading from server. Remote end closed connection"
  1505. msgstr ""
  1506. #: methods/http.cc:877
  1507. msgid "Error reading from server"
  1508. msgstr ""
  1509. #: methods/http.cc:1104
  1510. msgid "Bad header data"
  1511. msgstr ""
  1512. #: methods/http.cc:1121 methods/http.cc:1176
  1513. msgid "Connection failed"
  1514. msgstr "Povezivanje neuspješno"
  1515. #: methods/http.cc:1228
  1516. msgid "Internal error"
  1517. msgstr "Unutrašnja greška"
  1518. #: apt-pkg/contrib/mmap.cc:80
  1519. msgid "Can't mmap an empty file"
  1520. msgstr ""
  1521. #: apt-pkg/contrib/mmap.cc:85
  1522. #, c-format
  1523. msgid "Couldn't make mmap of %lu bytes"
  1524. msgstr ""
  1525. #: apt-pkg/contrib/strutl.cc:1014
  1526. #, c-format
  1527. msgid "Selection %s not found"
  1528. msgstr ""
  1529. #: apt-pkg/contrib/configuration.cc:439
  1530. #, c-format
  1531. msgid "Unrecognized type abbreviation: '%c'"
  1532. msgstr ""
  1533. #: apt-pkg/contrib/configuration.cc:497
  1534. #, c-format
  1535. msgid "Opening configuration file %s"
  1536. msgstr ""
  1537. #: apt-pkg/contrib/configuration.cc:662
  1538. #, c-format
  1539. msgid "Syntax error %s:%u: Block starts with no name."
  1540. msgstr ""
  1541. #: apt-pkg/contrib/configuration.cc:681
  1542. #, c-format
  1543. msgid "Syntax error %s:%u: Malformed tag"
  1544. msgstr ""
  1545. #: apt-pkg/contrib/configuration.cc:698
  1546. #, c-format
  1547. msgid "Syntax error %s:%u: Extra junk after value"
  1548. msgstr ""
  1549. #: apt-pkg/contrib/configuration.cc:738
  1550. #, c-format
  1551. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1552. msgstr ""
  1553. #: apt-pkg/contrib/configuration.cc:745
  1554. #, c-format
  1555. msgid "Syntax error %s:%u: Too many nested includes"
  1556. msgstr ""
  1557. #: apt-pkg/contrib/configuration.cc:749 apt-pkg/contrib/configuration.cc:754
  1558. #, c-format
  1559. msgid "Syntax error %s:%u: Included from here"
  1560. msgstr ""
  1561. #: apt-pkg/contrib/configuration.cc:758
  1562. #, c-format
  1563. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1564. msgstr ""
  1565. #: apt-pkg/contrib/configuration.cc:809
  1566. #, c-format
  1567. msgid "Syntax error %s:%u: Extra junk at end of file"
  1568. msgstr ""
  1569. #: apt-pkg/contrib/progress.cc:153
  1570. #, c-format
  1571. msgid "%c%s... Error!"
  1572. msgstr ""
  1573. #: apt-pkg/contrib/progress.cc:155
  1574. #, c-format
  1575. msgid "%c%s... Done"
  1576. msgstr ""
  1577. #: apt-pkg/contrib/cmndline.cc:77
  1578. #, c-format
  1579. msgid "Command line option '%c' [from %s] is not known."
  1580. msgstr ""
  1581. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1582. #: apt-pkg/contrib/cmndline.cc:119
  1583. #, c-format
  1584. msgid "Command line option %s is not understood"
  1585. msgstr ""
  1586. #: apt-pkg/contrib/cmndline.cc:124
  1587. #, c-format
  1588. msgid "Command line option %s is not boolean"
  1589. msgstr ""
  1590. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1591. #, c-format
  1592. msgid "Option %s requires an argument."
  1593. msgstr ""
  1594. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1595. #, c-format
  1596. msgid "Option %s: Configuration item specification must have an =<val>."
  1597. msgstr ""
  1598. #: apt-pkg/contrib/cmndline.cc:234
  1599. #, c-format
  1600. msgid "Option %s requires an integer argument, not '%s'"
  1601. msgstr ""
  1602. #: apt-pkg/contrib/cmndline.cc:265
  1603. #, c-format
  1604. msgid "Option '%s' is too long"
  1605. msgstr ""
  1606. #: apt-pkg/contrib/cmndline.cc:298
  1607. #, c-format
  1608. msgid "Sense %s is not understood, try true or false."
  1609. msgstr ""
  1610. #: apt-pkg/contrib/cmndline.cc:348
  1611. #, c-format
  1612. msgid "Invalid operation %s"
  1613. msgstr ""
  1614. #: apt-pkg/contrib/cdromutl.cc:52
  1615. #, c-format
  1616. msgid "Unable to stat the mount point %s"
  1617. msgstr ""
  1618. #: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
  1619. #, c-format
  1620. msgid "Unable to change to %s"
  1621. msgstr ""
  1622. #: apt-pkg/contrib/cdromutl.cc:187
  1623. msgid "Failed to stat the cdrom"
  1624. msgstr ""
  1625. #: apt-pkg/contrib/fileutl.cc:149
  1626. #, c-format
  1627. msgid "Not using locking for read only lock file %s"
  1628. msgstr ""
  1629. #: apt-pkg/contrib/fileutl.cc:154
  1630. #, c-format
  1631. msgid "Could not open lock file %s"
  1632. msgstr ""
  1633. #: apt-pkg/contrib/fileutl.cc:172
  1634. #, c-format
  1635. msgid "Not using locking for nfs mounted lock file %s"
  1636. msgstr ""
  1637. #: apt-pkg/contrib/fileutl.cc:176
  1638. #, c-format
  1639. msgid "Could not get lock %s"
  1640. msgstr ""
  1641. #: apt-pkg/contrib/fileutl.cc:444
  1642. #, c-format
  1643. msgid "Waited for %s but it wasn't there"
  1644. msgstr ""
  1645. #: apt-pkg/contrib/fileutl.cc:454
  1646. #, c-format
  1647. msgid "Sub-process %s received a segmentation fault."
  1648. msgstr ""
  1649. #: apt-pkg/contrib/fileutl.cc:457
  1650. #, c-format
  1651. msgid "Sub-process %s returned an error code (%u)"
  1652. msgstr ""
  1653. #: apt-pkg/contrib/fileutl.cc:459
  1654. #, c-format
  1655. msgid "Sub-process %s exited unexpectedly"
  1656. msgstr ""
  1657. #: apt-pkg/contrib/fileutl.cc:503
  1658. #, c-format
  1659. msgid "Could not open file %s"
  1660. msgstr ""
  1661. #: apt-pkg/contrib/fileutl.cc:559
  1662. #, c-format
  1663. msgid "read, still have %lu to read but none left"
  1664. msgstr ""
  1665. #: apt-pkg/contrib/fileutl.cc:589
  1666. #, c-format
  1667. msgid "write, still have %lu to write but couldn't"
  1668. msgstr ""
  1669. #: apt-pkg/contrib/fileutl.cc:664
  1670. msgid "Problem closing the file"
  1671. msgstr ""
  1672. #: apt-pkg/contrib/fileutl.cc:670
  1673. msgid "Problem unlinking the file"
  1674. msgstr ""
  1675. #: apt-pkg/contrib/fileutl.cc:681
  1676. msgid "Problem syncing the file"
  1677. msgstr ""
  1678. #: apt-pkg/pkgcache.cc:132
  1679. msgid "Empty package cache"
  1680. msgstr ""
  1681. #: apt-pkg/pkgcache.cc:138
  1682. msgid "The package cache file is corrupted"
  1683. msgstr ""
  1684. #: apt-pkg/pkgcache.cc:143
  1685. msgid "The package cache file is an incompatible version"
  1686. msgstr ""
  1687. #: apt-pkg/pkgcache.cc:148
  1688. #, c-format
  1689. msgid "This APT does not support the versioning system '%s'"
  1690. msgstr ""
  1691. #: apt-pkg/pkgcache.cc:153
  1692. msgid "The package cache was built for a different architecture"
  1693. msgstr ""
  1694. #: apt-pkg/pkgcache.cc:224
  1695. msgid "Depends"
  1696. msgstr "Zavisi"
  1697. #: apt-pkg/pkgcache.cc:224
  1698. msgid "PreDepends"
  1699. msgstr "Unaprijed zavisi"
  1700. #: apt-pkg/pkgcache.cc:224
  1701. msgid "Suggests"
  1702. msgstr "Predlaže"
  1703. #: apt-pkg/pkgcache.cc:225
  1704. msgid "Recommends"
  1705. msgstr "Preporučuje"
  1706. #: apt-pkg/pkgcache.cc:225
  1707. #, fuzzy
  1708. msgid "Conflicts"
  1709. msgstr "Sukobljava se sa"
  1710. #: apt-pkg/pkgcache.cc:225
  1711. msgid "Replaces"
  1712. msgstr "Zamjenjuje"
  1713. #: apt-pkg/pkgcache.cc:226
  1714. msgid "Obsoletes"
  1715. msgstr "Zastarijeva"
  1716. #: apt-pkg/pkgcache.cc:226
  1717. msgid "Breaks"
  1718. msgstr ""
  1719. #: apt-pkg/pkgcache.cc:237
  1720. msgid "important"
  1721. msgstr "važno"
  1722. #: apt-pkg/pkgcache.cc:237
  1723. msgid "required"
  1724. msgstr "zahtijevano"
  1725. #: apt-pkg/pkgcache.cc:237
  1726. msgid "standard"
  1727. msgstr "standardno"
  1728. #: apt-pkg/pkgcache.cc:238
  1729. msgid "optional"
  1730. msgstr "opcionalno"
  1731. #: apt-pkg/pkgcache.cc:238
  1732. msgid "extra"
  1733. msgstr "extra"
  1734. #: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
  1735. msgid "Building dependency tree"
  1736. msgstr "Gradim stablo zavisnosti"
  1737. #: apt-pkg/depcache.cc:122
  1738. msgid "Candidate versions"
  1739. msgstr "Verzije kandidata"
  1740. #: apt-pkg/depcache.cc:151
  1741. msgid "Dependency generation"
  1742. msgstr "Stvaranje zavisnosti"
  1743. #: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
  1744. #, fuzzy
  1745. msgid "Reading state information"
  1746. msgstr "Sastavljam dostupne informacije"
  1747. #: apt-pkg/depcache.cc:219
  1748. #, fuzzy, c-format
  1749. msgid "Failed to open StateFile %s"
  1750. msgstr "Ne mogu otvoriti %s"
  1751. #: apt-pkg/depcache.cc:225
  1752. #, fuzzy, c-format
  1753. msgid "Failed to write temporary StateFile %s"
  1754. msgstr "Ne mogu ukloniti %s"
  1755. #: apt-pkg/tagfile.cc:102
  1756. #, c-format
  1757. msgid "Unable to parse package file %s (1)"
  1758. msgstr ""
  1759. #: apt-pkg/tagfile.cc:189
  1760. #, c-format
  1761. msgid "Unable to parse package file %s (2)"
  1762. msgstr ""
  1763. #: apt-pkg/sourcelist.cc:90
  1764. #, c-format
  1765. msgid "Malformed line %lu in source list %s (URI)"
  1766. msgstr ""
  1767. #: apt-pkg/sourcelist.cc:92
  1768. #, c-format
  1769. msgid "Malformed line %lu in source list %s (dist)"
  1770. msgstr ""
  1771. #: apt-pkg/sourcelist.cc:95
  1772. #, c-format
  1773. msgid "Malformed line %lu in source list %s (URI parse)"
  1774. msgstr ""
  1775. #: apt-pkg/sourcelist.cc:101
  1776. #, c-format
  1777. msgid "Malformed line %lu in source list %s (absolute dist)"
  1778. msgstr ""
  1779. #: apt-pkg/sourcelist.cc:108
  1780. #, c-format
  1781. msgid "Malformed line %lu in source list %s (dist parse)"
  1782. msgstr ""
  1783. #: apt-pkg/sourcelist.cc:199
  1784. #, c-format
  1785. msgid "Opening %s"
  1786. msgstr "Otvaram %s"
  1787. #: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
  1788. #, c-format
  1789. msgid "Line %u too long in source list %s."
  1790. msgstr ""
  1791. #: apt-pkg/sourcelist.cc:236
  1792. #, c-format
  1793. msgid "Malformed line %u in source list %s (type)"
  1794. msgstr ""
  1795. #: apt-pkg/sourcelist.cc:240
  1796. #, c-format
  1797. msgid "Type '%s' is not known on line %u in source list %s"
  1798. msgstr ""
  1799. #: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
  1800. #, c-format
  1801. msgid "Malformed line %u in source list %s (vendor id)"
  1802. msgstr ""
  1803. #: apt-pkg/packagemanager.cc:428
  1804. #, c-format
  1805. msgid ""
  1806. "This installation run will require temporarily removing the essential "
  1807. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1808. "you really want to do it, activate the APT::Force-LoopBreak option."
  1809. msgstr ""
  1810. #: apt-pkg/pkgrecords.cc:32
  1811. #, c-format
  1812. msgid "Index file type '%s' is not supported"
  1813. msgstr ""
  1814. #: apt-pkg/algorithms.cc:247
  1815. #, c-format
  1816. msgid ""
  1817. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1818. msgstr ""
  1819. #: apt-pkg/algorithms.cc:1106
  1820. msgid ""
  1821. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1822. "held packages."
  1823. msgstr ""
  1824. #: apt-pkg/algorithms.cc:1108
  1825. msgid "Unable to correct problems, you have held broken packages."
  1826. msgstr ""
  1827. #: apt-pkg/algorithms.cc:1370 apt-pkg/algorithms.cc:1372
  1828. msgid ""
  1829. "Some index files failed to download, they have been ignored, or old ones "
  1830. "used instead."
  1831. msgstr ""
  1832. #: apt-pkg/acquire.cc:59
  1833. #, c-format
  1834. msgid "Lists directory %spartial is missing."
  1835. msgstr ""
  1836. #: apt-pkg/acquire.cc:63
  1837. #, c-format
  1838. msgid "Archive directory %spartial is missing."
  1839. msgstr ""
  1840. #. only show the ETA if it makes sense
  1841. #. two days
  1842. #: apt-pkg/acquire.cc:827
  1843. #, c-format
  1844. msgid "Retrieving file %li of %li (%s remaining)"
  1845. msgstr ""
  1846. #: apt-pkg/acquire.cc:829
  1847. #, fuzzy, c-format
  1848. msgid "Retrieving file %li of %li"
  1849. msgstr "Čitam spisak datoteke"
  1850. #: apt-pkg/acquire-worker.cc:110
  1851. #, c-format
  1852. msgid "The method driver %s could not be found."
  1853. msgstr ""
  1854. #: apt-pkg/acquire-worker.cc:159
  1855. #, c-format
  1856. msgid "Method %s did not start correctly"
  1857. msgstr ""
  1858. #: apt-pkg/acquire-worker.cc:399
  1859. #, c-format
  1860. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1861. msgstr ""
  1862. #: apt-pkg/init.cc:124
  1863. #, c-format
  1864. msgid "Packaging system '%s' is not supported"
  1865. msgstr ""
  1866. #: apt-pkg/init.cc:140
  1867. msgid "Unable to determine a suitable packaging system type"
  1868. msgstr ""
  1869. #: apt-pkg/clean.cc:57
  1870. #, c-format
  1871. msgid "Unable to stat %s."
  1872. msgstr ""
  1873. #: apt-pkg/srcrecords.cc:44
  1874. msgid "You must put some 'source' URIs in your sources.list"
  1875. msgstr ""
  1876. #: apt-pkg/cachefile.cc:71
  1877. msgid "The package lists or status file could not be parsed or opened."
  1878. msgstr ""
  1879. #: apt-pkg/cachefile.cc:75
  1880. msgid "You may want to run apt-get update to correct these problems"
  1881. msgstr ""
  1882. #: apt-pkg/policy.cc:267
  1883. msgid "Invalid record in the preferences file, no Package header"
  1884. msgstr ""
  1885. #: apt-pkg/policy.cc:289
  1886. #, c-format
  1887. msgid "Did not understand pin type %s"
  1888. msgstr ""
  1889. #: apt-pkg/policy.cc:297
  1890. msgid "No priority (or zero) specified for pin"
  1891. msgstr ""
  1892. #: apt-pkg/pkgcachegen.cc:72
  1893. msgid "Cache has an incompatible versioning system"
  1894. msgstr ""
  1895. #: apt-pkg/pkgcachegen.cc:115
  1896. #, c-format
  1897. msgid "Error occurred while processing %s (NewPackage)"
  1898. msgstr ""
  1899. #: apt-pkg/pkgcachegen.cc:130
  1900. #, c-format
  1901. msgid "Error occurred while processing %s (UsePackage1)"
  1902. msgstr ""
  1903. #: apt-pkg/pkgcachegen.cc:153
  1904. #, c-format
  1905. msgid "Error occurred while processing %s (NewFileDesc1)"
  1906. msgstr ""
  1907. #: apt-pkg/pkgcachegen.cc:178
  1908. #, c-format
  1909. msgid "Error occurred while processing %s (UsePackage2)"
  1910. msgstr ""
  1911. #: apt-pkg/pkgcachegen.cc:182
  1912. #, c-format
  1913. msgid "Error occurred while processing %s (NewFileVer1)"
  1914. msgstr ""
  1915. #: apt-pkg/pkgcachegen.cc:213
  1916. #, c-format
  1917. msgid "Error occurred while processing %s (NewVersion1)"
  1918. msgstr ""
  1919. #: apt-pkg/pkgcachegen.cc:217
  1920. #, c-format
  1921. msgid "Error occurred while processing %s (UsePackage3)"
  1922. msgstr ""
  1923. #: apt-pkg/pkgcachegen.cc:221
  1924. #, c-format
  1925. msgid "Error occurred while processing %s (NewVersion2)"
  1926. msgstr ""
  1927. #: apt-pkg/pkgcachegen.cc:245
  1928. #, c-format
  1929. msgid "Error occurred while processing %s (NewFileDesc2)"
  1930. msgstr ""
  1931. #: apt-pkg/pkgcachegen.cc:251
  1932. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1933. msgstr ""
  1934. #: apt-pkg/pkgcachegen.cc:254
  1935. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1936. msgstr ""
  1937. #: apt-pkg/pkgcachegen.cc:257
  1938. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1939. msgstr ""
  1940. #: apt-pkg/pkgcachegen.cc:260
  1941. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1942. msgstr ""
  1943. #: apt-pkg/pkgcachegen.cc:288
  1944. #, c-format
  1945. msgid "Error occurred while processing %s (FindPkg)"
  1946. msgstr ""
  1947. #: apt-pkg/pkgcachegen.cc:301
  1948. #, c-format
  1949. msgid "Error occurred while processing %s (CollectFileProvides)"
  1950. msgstr ""
  1951. #: apt-pkg/pkgcachegen.cc:307
  1952. #, c-format
  1953. msgid "Package %s %s was not found while processing file dependencies"
  1954. msgstr ""
  1955. #: apt-pkg/pkgcachegen.cc:678
  1956. #, c-format
  1957. msgid "Couldn't stat source package list %s"
  1958. msgstr ""
  1959. #: apt-pkg/pkgcachegen.cc:763
  1960. msgid "Collecting File Provides"
  1961. msgstr ""
  1962. #: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
  1963. msgid "IO Error saving source cache"
  1964. msgstr ""
  1965. #: apt-pkg/acquire-item.cc:127
  1966. #, c-format
  1967. msgid "rename failed, %s (%s -> %s)."
  1968. msgstr ""
  1969. #: apt-pkg/acquire-item.cc:401
  1970. msgid "MD5Sum mismatch"
  1971. msgstr ""
  1972. #: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
  1973. msgid "Hash Sum mismatch"
  1974. msgstr ""
  1975. #: apt-pkg/acquire-item.cc:1100
  1976. msgid "There is no public key available for the following key IDs:\n"
  1977. msgstr ""
  1978. #: apt-pkg/acquire-item.cc:1213
  1979. #, c-format
  1980. msgid ""
  1981. "I wasn't able to locate a file for the %s package. This might mean you need "
  1982. "to manually fix this package. (due to missing arch)"
  1983. msgstr ""
  1984. #: apt-pkg/acquire-item.cc:1272
  1985. #, c-format
  1986. msgid ""
  1987. "I wasn't able to locate file for the %s package. This might mean you need to "
  1988. "manually fix this package."
  1989. msgstr ""
  1990. #: apt-pkg/acquire-item.cc:1313
  1991. #, c-format
  1992. msgid ""
  1993. "The package index files are corrupted. No Filename: field for package %s."
  1994. msgstr ""
  1995. #: apt-pkg/acquire-item.cc:1400
  1996. msgid "Size mismatch"
  1997. msgstr ""
  1998. #: apt-pkg/vendorlist.cc:66
  1999. #, c-format
  2000. msgid "Vendor block %s contains no fingerprint"
  2001. msgstr ""
  2002. #: apt-pkg/cdrom.cc:529
  2003. #, c-format
  2004. msgid ""
  2005. "Using CD-ROM mount point %s\n"
  2006. "Mounting CD-ROM\n"
  2007. msgstr ""
  2008. #: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
  2009. msgid "Identifying.. "
  2010. msgstr ""
  2011. #: apt-pkg/cdrom.cc:563
  2012. #, c-format
  2013. msgid "Stored label: %s\n"
  2014. msgstr ""
  2015. #: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
  2016. #, fuzzy
  2017. msgid "Unmounting CD-ROM...\n"
  2018. msgstr "Pogrešan CD"
  2019. #: apt-pkg/cdrom.cc:590
  2020. #, c-format
  2021. msgid "Using CD-ROM mount point %s\n"
  2022. msgstr ""
  2023. #: apt-pkg/cdrom.cc:608
  2024. msgid "Unmounting CD-ROM\n"
  2025. msgstr ""
  2026. #: apt-pkg/cdrom.cc:612
  2027. #, fuzzy
  2028. msgid "Waiting for disc...\n"
  2029. msgstr "Čekam na zaglavlja"
  2030. #. Mount the new CDROM
  2031. #: apt-pkg/cdrom.cc:620
  2032. msgid "Mounting CD-ROM...\n"
  2033. msgstr ""
  2034. #: apt-pkg/cdrom.cc:638
  2035. msgid "Scanning disc for index files..\n"
  2036. msgstr ""
  2037. #: apt-pkg/cdrom.cc:678
  2038. #, c-format
  2039. msgid ""
  2040. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2041. "zu signatures\n"
  2042. msgstr ""
  2043. #: apt-pkg/cdrom.cc:715
  2044. #, c-format
  2045. msgid "Found label '%s'\n"
  2046. msgstr ""
  2047. #: apt-pkg/cdrom.cc:744
  2048. msgid "That is not a valid name, try again.\n"
  2049. msgstr ""
  2050. #: apt-pkg/cdrom.cc:760
  2051. #, c-format
  2052. msgid ""
  2053. "This disc is called: \n"
  2054. "'%s'\n"
  2055. msgstr ""
  2056. #: apt-pkg/cdrom.cc:764
  2057. #, fuzzy
  2058. msgid "Copying package lists..."
  2059. msgstr "Čitam spiskove paketa"
  2060. #: apt-pkg/cdrom.cc:790
  2061. msgid "Writing new source list\n"
  2062. msgstr ""
  2063. #: apt-pkg/cdrom.cc:799
  2064. msgid "Source list entries for this disc are:\n"
  2065. msgstr ""
  2066. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
  2067. #, c-format
  2068. msgid "Wrote %i records.\n"
  2069. msgstr ""
  2070. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
  2071. #, c-format
  2072. msgid "Wrote %i records with %i missing files.\n"
  2073. msgstr ""
  2074. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
  2075. #, c-format
  2076. msgid "Wrote %i records with %i mismatched files\n"
  2077. msgstr ""
  2078. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
  2079. #, c-format
  2080. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2081. msgstr ""
  2082. #: apt-pkg/deb/dpkgpm.cc:486
  2083. #, c-format
  2084. msgid "Directory '%s' missing"
  2085. msgstr ""
  2086. #: apt-pkg/deb/dpkgpm.cc:569
  2087. #, fuzzy, c-format
  2088. msgid "Preparing %s"
  2089. msgstr "Otvaram %s"
  2090. #: apt-pkg/deb/dpkgpm.cc:570
  2091. #, fuzzy, c-format
  2092. msgid "Unpacking %s"
  2093. msgstr "Otvaram %s"
  2094. #: apt-pkg/deb/dpkgpm.cc:575
  2095. #, c-format
  2096. msgid "Preparing to configure %s"
  2097. msgstr ""
  2098. #: apt-pkg/deb/dpkgpm.cc:576 apt-pkg/deb/dpkgpm.cc:605
  2099. #, fuzzy, c-format
  2100. msgid "Configuring %s"
  2101. msgstr "Povezujem se sa %s"
  2102. #: apt-pkg/deb/dpkgpm.cc:578 apt-pkg/deb/dpkgpm.cc:579
  2103. #, c-format
  2104. msgid "Processing triggers for %s"
  2105. msgstr ""
  2106. #: apt-pkg/deb/dpkgpm.cc:581
  2107. #, fuzzy, c-format
  2108. msgid "Installed %s"
  2109. msgstr " Instalirano:"
  2110. #: apt-pkg/deb/dpkgpm.cc:586 apt-pkg/deb/dpkgpm.cc:588
  2111. #: apt-pkg/deb/dpkgpm.cc:589
  2112. #, c-format
  2113. msgid "Preparing for removal of %s"
  2114. msgstr ""
  2115. #: apt-pkg/deb/dpkgpm.cc:591 apt-pkg/deb/dpkgpm.cc:606
  2116. #, fuzzy, c-format
  2117. msgid "Removing %s"
  2118. msgstr "Otvaram %s"
  2119. #: apt-pkg/deb/dpkgpm.cc:592
  2120. #, fuzzy, c-format
  2121. msgid "Removed %s"
  2122. msgstr "Preporučuje"
  2123. #: apt-pkg/deb/dpkgpm.cc:597
  2124. #, c-format
  2125. msgid "Preparing to completely remove %s"
  2126. msgstr ""
  2127. #: apt-pkg/deb/dpkgpm.cc:598
  2128. #, fuzzy, c-format
  2129. msgid "Completely removed %s"
  2130. msgstr "Ne mogu ukloniti %s"
  2131. #. populate the "processing" map
  2132. #: apt-pkg/deb/dpkgpm.cc:604
  2133. #, fuzzy, c-format
  2134. msgid "Installing %s"
  2135. msgstr " Instalirano:"
  2136. #: apt-pkg/deb/dpkgpm.cc:607
  2137. #, c-format
  2138. msgid "Running post-installation trigger %s"
  2139. msgstr ""
  2140. #: apt-pkg/deb/dpkgpm.cc:756
  2141. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2142. msgstr ""
  2143. #: methods/rred.cc:219
  2144. msgid "Could not patch file"
  2145. msgstr ""
  2146. #: methods/rsh.cc:330
  2147. msgid "Connection closed prematurely"
  2148. msgstr ""
  2149. #, fuzzy
  2150. #~ msgid "openpty failed\n"
  2151. #~ msgstr "Povezivanje neuspješno"
  2152. #~ msgid "File date has changed %s"
  2153. #~ msgstr "Datum datoteke je promijenjen %s"