bs.po 59 KB

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