bs.po 61 KB

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