bs.po 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492
  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: APT Development Team <deity@lists.debian.org>\n"
  9. "POT-Creation-Date: 2015-08-21 06:13-0400\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. "Language: bs\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=utf-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
  18. "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
  19. #: cmdline/apt-cache.cc:149
  20. #, c-format
  21. msgid "Package %s version %s has an unmet dep:\n"
  22. msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n"
  23. #: cmdline/apt-cache.cc:319
  24. msgid "apt-cache stats does not take any arguments"
  25. msgstr ""
  26. #: cmdline/apt-cache.cc:325
  27. msgid "Total package names: "
  28. msgstr "Ukupno naziva paketa:"
  29. #: cmdline/apt-cache.cc:327
  30. #, fuzzy
  31. msgid "Total package structures: "
  32. msgstr "Ukupno naziva paketa:"
  33. #: cmdline/apt-cache.cc:367
  34. msgid " Normal packages: "
  35. msgstr " Normalni paketi:"
  36. #: cmdline/apt-cache.cc:368
  37. msgid " Pure virtual packages: "
  38. msgstr " Čisto virtuelni paketi:"
  39. #: cmdline/apt-cache.cc:369
  40. msgid " Single virtual packages: "
  41. msgstr " Pojedinačni virutuelni paketi:"
  42. #: cmdline/apt-cache.cc:370
  43. msgid " Mixed virtual packages: "
  44. msgstr " Miješani virtuelni paketi:"
  45. #: cmdline/apt-cache.cc:371
  46. msgid " Missing: "
  47. msgstr " Nedostajući:"
  48. #: cmdline/apt-cache.cc:373
  49. msgid "Total distinct versions: "
  50. msgstr "Ukupno različitih verzija:"
  51. #: cmdline/apt-cache.cc:375
  52. #, fuzzy
  53. msgid "Total distinct descriptions: "
  54. msgstr "Ukupno različitih verzija:"
  55. #: cmdline/apt-cache.cc:377
  56. msgid "Total dependencies: "
  57. msgstr "Ukupno zavisnosti:"
  58. #: cmdline/apt-cache.cc:380
  59. msgid "Total ver/file relations: "
  60. msgstr "Ukupno Verzija/Datoteka odnosa:"
  61. #: cmdline/apt-cache.cc:382
  62. #, fuzzy
  63. msgid "Total Desc/File relations: "
  64. msgstr "Ukupno Verzija/Datoteka odnosa:"
  65. #: cmdline/apt-cache.cc:384
  66. msgid "Total Provides mappings: "
  67. msgstr ""
  68. #: cmdline/apt-cache.cc:440
  69. msgid "Total globbed strings: "
  70. msgstr ""
  71. #: cmdline/apt-cache.cc:446
  72. msgid "Total slack space: "
  73. msgstr ""
  74. #: cmdline/apt-cache.cc:463
  75. msgid "Total space accounted for: "
  76. msgstr ""
  77. #: cmdline/apt-cache.cc:605 cmdline/apt-cache.cc:1256
  78. #: apt-private/private-show.cc:58
  79. #, c-format
  80. msgid "Package file %s is out of sync."
  81. msgstr ""
  82. #: cmdline/apt-cache.cc:680 cmdline/apt-cache.cc:1541 cmdline/apt-cache.cc:1543
  83. #: cmdline/apt-cache.cc:1624 cmdline/apt-mark.cc:56 cmdline/apt-mark.cc:103
  84. #: cmdline/apt-mark.cc:229 apt-private/private-show.cc:173
  85. #: apt-private/private-show.cc:175
  86. msgid "No packages found"
  87. msgstr "Paketi nisu pronađeni"
  88. #: cmdline/apt-cache.cc:1356 apt-private/private-search.cc:41
  89. msgid "You must give at least one search pattern"
  90. msgstr ""
  91. #: cmdline/apt-cache.cc:1520
  92. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  93. msgstr ""
  94. #: cmdline/apt-cache.cc:1619 apt-pkg/cacheset.cc:762
  95. #, c-format
  96. msgid "Unable to locate package %s"
  97. msgstr "Ne mogu pronaći paket %s"
  98. #: cmdline/apt-cache.cc:1649
  99. msgid "Package files:"
  100. msgstr "Datoteke paketa:"
  101. #: cmdline/apt-cache.cc:1658 cmdline/apt-cache.cc:1766
  102. msgid "Cache is out of sync, can't x-ref a package file"
  103. msgstr ""
  104. #. Show any packages have explicit pins
  105. #: cmdline/apt-cache.cc:1672
  106. msgid "Pinned packages:"
  107. msgstr ""
  108. #: cmdline/apt-cache.cc:1686 cmdline/apt-cache.cc:1743
  109. msgid "(not found)"
  110. msgstr ""
  111. #. Print the package name and the version we are forcing to
  112. #: cmdline/apt-cache.cc:1700
  113. #, c-format
  114. msgid "%s -> %s with priority %d\n"
  115. msgstr ""
  116. #: cmdline/apt-cache.cc:1706
  117. msgid " Installed: "
  118. msgstr " Instalirano:"
  119. #: cmdline/apt-cache.cc:1707
  120. msgid " Candidate: "
  121. msgstr ""
  122. #: cmdline/apt-cache.cc:1725 cmdline/apt-cache.cc:1733
  123. msgid "(none)"
  124. msgstr ""
  125. #: cmdline/apt-cache.cc:1740
  126. msgid " Package pin: "
  127. msgstr ""
  128. #. Show the priority tables
  129. #: cmdline/apt-cache.cc:1749
  130. msgid " Version table:"
  131. msgstr ""
  132. #: cmdline/apt-cache.cc:1871
  133. msgid ""
  134. "Usage: apt-cache [options] command\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 query information\n"
  139. "from APT's binary cache files\n"
  140. "\n"
  141. "Commands:\n"
  142. " gencaches - Build both the package and source cache\n"
  143. " showpkg - Show some general information for a single package\n"
  144. " showsrc - Show source records\n"
  145. " stats - Show some basic statistics\n"
  146. " dump - Show the entire file in a terse form\n"
  147. " dumpavail - Print an available file to stdout\n"
  148. " unmet - Show unmet dependencies\n"
  149. " search - Search the package list for a regex pattern\n"
  150. " show - Show a readable record for the package\n"
  151. " depends - Show raw dependency information for a package\n"
  152. " rdepends - Show reverse dependency information for a package\n"
  153. " pkgnames - List the names of all packages in the system\n"
  154. " dotty - Generate package graphs for GraphViz\n"
  155. " xvcg - Generate package graphs for xvcg\n"
  156. " policy - Show policy settings\n"
  157. "\n"
  158. "Options:\n"
  159. " -h This help text.\n"
  160. " -p=? The package cache.\n"
  161. " -s=? The source cache.\n"
  162. " -q Disable progress indicator.\n"
  163. " -i Show only important deps for the unmet command.\n"
  164. " -c=? Read this configuration file\n"
  165. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  166. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  167. msgstr ""
  168. #: cmdline/apt-cdrom.cc:77
  169. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  170. msgstr ""
  171. #: cmdline/apt-cdrom.cc:92
  172. msgid "Please insert a Disc in the drive and press [Enter]"
  173. msgstr ""
  174. #: cmdline/apt-cdrom.cc:140
  175. #, fuzzy, c-format
  176. msgid "Failed to mount '%s' to '%s'"
  177. msgstr "Ne mogu otvoriti %s"
  178. #: cmdline/apt-cdrom.cc:179
  179. msgid ""
  180. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  181. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  182. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  183. "mount point."
  184. msgstr ""
  185. #: cmdline/apt-cdrom.cc:183
  186. msgid "Repeat this process for the rest of the CDs in your set."
  187. msgstr ""
  188. #: cmdline/apt-config.cc:48
  189. msgid "Arguments not in pairs"
  190. msgstr "Argumenti nisu u parovima"
  191. #: cmdline/apt-config.cc:88
  192. msgid ""
  193. "Usage: apt-config [options] command\n"
  194. "\n"
  195. "apt-config is a simple tool to read the APT config file\n"
  196. "\n"
  197. "Commands:\n"
  198. " shell - Shell mode\n"
  199. " dump - Show the configuration\n"
  200. "\n"
  201. "Options:\n"
  202. " -h This help text.\n"
  203. " -c=? Read this configuration file\n"
  204. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  205. msgstr ""
  206. "Upotreba: apt-config [opcije] naredba\n"
  207. "\n"
  208. "apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n"
  209. "\n"
  210. "Naredbe:\n"
  211. " shell - Shell mod\n"
  212. " dump - Prikaz konfiguracije\n"
  213. "\n"
  214. "Opcije:\n"
  215. " -h Ovaj tekst pomoći.\n"
  216. " -c=? Pročitaj ovu konfiguracijsku datoteku\n"
  217. " -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n"
  218. #: cmdline/apt-get.cc:211
  219. #, c-format
  220. msgid "Can not find a package for architecture '%s'"
  221. msgstr ""
  222. #: cmdline/apt-get.cc:287
  223. #, c-format
  224. msgid "Can not find a package '%s' with version '%s'"
  225. msgstr ""
  226. #: cmdline/apt-get.cc:290
  227. #, c-format
  228. msgid "Can not find a package '%s' with release '%s'"
  229. msgstr ""
  230. #: cmdline/apt-get.cc:327
  231. #, c-format
  232. msgid "Picking '%s' as source package instead of '%s'\n"
  233. msgstr ""
  234. #: cmdline/apt-get.cc:386
  235. #, c-format
  236. msgid "Can not find version '%s' of package '%s'"
  237. msgstr ""
  238. #: cmdline/apt-get.cc:417
  239. #, c-format
  240. msgid "Couldn't find package %s"
  241. msgstr ""
  242. #: cmdline/apt-get.cc:422 cmdline/apt-mark.cc:78
  243. #: apt-private/private-install.cc:839
  244. #, fuzzy, c-format
  245. msgid "%s set to manually installed.\n"
  246. msgstr "ali se %s treba instalirati"
  247. #: cmdline/apt-get.cc:424 cmdline/apt-mark.cc:80
  248. #, fuzzy, c-format
  249. msgid "%s set to automatically installed.\n"
  250. msgstr "ali se %s treba instalirati"
  251. #: cmdline/apt-get.cc:432 cmdline/apt-mark.cc:124
  252. msgid ""
  253. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  254. "instead."
  255. msgstr ""
  256. #: cmdline/apt-get.cc:501 cmdline/apt-get.cc:509
  257. msgid "Internal error, problem resolver broke stuff"
  258. msgstr ""
  259. #: cmdline/apt-get.cc:570
  260. msgid "Unable to lock the download directory"
  261. msgstr ""
  262. #: cmdline/apt-get.cc:688
  263. msgid "Must specify at least one package to fetch source for"
  264. msgstr ""
  265. #: cmdline/apt-get.cc:725 cmdline/apt-get.cc:1035
  266. #, c-format
  267. msgid "Unable to find a source package for %s"
  268. msgstr ""
  269. #: cmdline/apt-get.cc:745
  270. #, c-format
  271. msgid ""
  272. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  273. "%s\n"
  274. msgstr ""
  275. #: cmdline/apt-get.cc:750
  276. #, c-format
  277. msgid ""
  278. "Please use:\n"
  279. "bzr branch %s\n"
  280. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  281. msgstr ""
  282. #: cmdline/apt-get.cc:798
  283. #, c-format
  284. msgid "Skipping already downloaded file '%s'\n"
  285. msgstr ""
  286. #. TRANSLATOR: The required space between number and unit is already included
  287. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  288. #: cmdline/apt-get.cc:828
  289. #, c-format
  290. msgid "Need to get %sB/%sB of source archives.\n"
  291. msgstr ""
  292. #. TRANSLATOR: The required space between number and unit is already included
  293. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  294. #: cmdline/apt-get.cc:833
  295. #, c-format
  296. msgid "Need to get %sB of source archives.\n"
  297. msgstr ""
  298. #: cmdline/apt-get.cc:839
  299. #, c-format
  300. msgid "Fetch source %s\n"
  301. msgstr ""
  302. #: cmdline/apt-get.cc:864
  303. msgid "Failed to fetch some archives."
  304. msgstr ""
  305. #: cmdline/apt-get.cc:869 apt-private/private-install.cc:300
  306. msgid "Download complete and in download only mode"
  307. msgstr ""
  308. #: cmdline/apt-get.cc:894
  309. #, c-format
  310. msgid "Skipping unpack of already unpacked source in %s\n"
  311. msgstr ""
  312. #: cmdline/apt-get.cc:907
  313. #, c-format
  314. msgid "Unpack command '%s' failed.\n"
  315. msgstr ""
  316. #: cmdline/apt-get.cc:908
  317. #, c-format
  318. msgid "Check if the 'dpkg-dev' package is installed.\n"
  319. msgstr ""
  320. #: cmdline/apt-get.cc:936
  321. #, c-format
  322. msgid "Build command '%s' failed.\n"
  323. msgstr ""
  324. #: cmdline/apt-get.cc:955
  325. msgid "Child process failed"
  326. msgstr ""
  327. #: cmdline/apt-get.cc:976
  328. msgid "Must specify at least one package to check builddeps for"
  329. msgstr ""
  330. #: cmdline/apt-get.cc:994
  331. #, c-format
  332. msgid ""
  333. "No architecture information available for %s. See apt.conf(5) APT::"
  334. "Architectures for setup"
  335. msgstr ""
  336. #: cmdline/apt-get.cc:1012
  337. #, c-format
  338. msgid "Note, using directory '%s' to get the build dependencies\n"
  339. msgstr ""
  340. #: cmdline/apt-get.cc:1022
  341. #, c-format
  342. msgid "Note, using file '%s' to get the build dependencies\n"
  343. msgstr ""
  344. #: cmdline/apt-get.cc:1047 cmdline/apt-get.cc:1050
  345. #, c-format
  346. msgid "Unable to get build-dependency information for %s"
  347. msgstr ""
  348. #: cmdline/apt-get.cc:1070
  349. #, c-format
  350. msgid "%s has no build depends.\n"
  351. msgstr ""
  352. #: cmdline/apt-get.cc:1240
  353. #, c-format
  354. msgid ""
  355. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  356. "packages"
  357. msgstr ""
  358. #: cmdline/apt-get.cc:1258
  359. #, c-format
  360. msgid ""
  361. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  362. "found"
  363. msgstr ""
  364. #: cmdline/apt-get.cc:1281
  365. #, c-format
  366. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  367. msgstr ""
  368. #: cmdline/apt-get.cc:1320
  369. #, c-format
  370. msgid ""
  371. "%s dependency for %s cannot be satisfied because candidate version of "
  372. "package %s can't satisfy version requirements"
  373. msgstr ""
  374. #: cmdline/apt-get.cc:1326
  375. #, c-format
  376. msgid ""
  377. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  378. "version"
  379. msgstr ""
  380. #: cmdline/apt-get.cc:1349
  381. #, c-format
  382. msgid "Failed to satisfy %s dependency for %s: %s"
  383. msgstr ""
  384. #: cmdline/apt-get.cc:1364
  385. #, c-format
  386. msgid "Build-dependencies for %s could not be satisfied."
  387. msgstr ""
  388. #: cmdline/apt-get.cc:1369
  389. msgid "Failed to process build dependencies"
  390. msgstr ""
  391. #: cmdline/apt-get.cc:1554
  392. msgid "Supported modules:"
  393. msgstr "Podržani moduli:"
  394. #: cmdline/apt-get.cc:1595
  395. msgid ""
  396. "Usage: apt-get [options] command\n"
  397. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  398. " apt-get [options] source pkg1 [pkg2 ...]\n"
  399. "\n"
  400. "apt-get is a simple command line interface for downloading and\n"
  401. "installing packages. The most frequently used commands are update\n"
  402. "and install.\n"
  403. "\n"
  404. "Commands:\n"
  405. " update - Retrieve new lists of packages\n"
  406. " upgrade - Perform an upgrade\n"
  407. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  408. " remove - Remove packages\n"
  409. " autoremove - Remove automatically all unused packages\n"
  410. " purge - Remove packages and config files\n"
  411. " source - Download source archives\n"
  412. " build-dep - Configure build-dependencies for source packages\n"
  413. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  414. " dselect-upgrade - Follow dselect selections\n"
  415. " clean - Erase downloaded archive files\n"
  416. " autoclean - Erase old downloaded archive files\n"
  417. " check - Verify that there are no broken dependencies\n"
  418. " changelog - Download and display the changelog for the given package\n"
  419. " download - Download the binary package into the current directory\n"
  420. "\n"
  421. "Options:\n"
  422. " -h This help text.\n"
  423. " -q Loggable output - no progress indicator\n"
  424. " -qq No output except for errors\n"
  425. " -d Download only - do NOT install or unpack archives\n"
  426. " -s No-act. Perform ordering simulation\n"
  427. " -y Assume Yes to all queries and do not prompt\n"
  428. " -f Attempt to correct a system with broken dependencies in place\n"
  429. " -m Attempt to continue if archives are unlocatable\n"
  430. " -u Show a list of upgraded packages as well\n"
  431. " -b Build the source package after fetching it\n"
  432. " -V Show verbose version numbers\n"
  433. " -c=? Read this configuration file\n"
  434. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  435. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  436. "pages for more information and options.\n"
  437. " This APT has Super Cow Powers.\n"
  438. msgstr ""
  439. #: cmdline/apt-helper.cc:37
  440. msgid "Need one URL as argument"
  441. msgstr ""
  442. #: cmdline/apt-helper.cc:50
  443. msgid "Must specify at least one pair url/filename"
  444. msgstr ""
  445. #: cmdline/apt-helper.cc:76 cmdline/apt-helper.cc:80
  446. msgid "Download Failed"
  447. msgstr ""
  448. #: cmdline/apt-helper.cc:88
  449. msgid "Must specifc at least one srv record"
  450. msgstr ""
  451. #: cmdline/apt-helper.cc:95
  452. #, c-format
  453. msgid "GetSrvRec failed for %s"
  454. msgstr ""
  455. #: cmdline/apt-helper.cc:118
  456. msgid ""
  457. "Usage: apt-helper [options] command\n"
  458. " apt-helper [options] download-file uri target-path\n"
  459. "\n"
  460. "apt-helper is a internal helper for apt\n"
  461. "\n"
  462. "Commands:\n"
  463. " download-file - download the given uri to the target-path\n"
  464. " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
  465. " auto-detect-proxy - detect proxy using apt.conf\n"
  466. "\n"
  467. " This APT helper has Super Meep Powers.\n"
  468. msgstr ""
  469. #: cmdline/apt-mark.cc:65
  470. #, fuzzy, c-format
  471. msgid "%s can not be marked as it is not installed.\n"
  472. msgstr "ali nije instaliran"
  473. #: cmdline/apt-mark.cc:71
  474. #, fuzzy, c-format
  475. msgid "%s was already set to manually installed.\n"
  476. msgstr "ali se %s treba instalirati"
  477. #: cmdline/apt-mark.cc:73
  478. #, fuzzy, c-format
  479. msgid "%s was already set to automatically installed.\n"
  480. msgstr "ali se %s treba instalirati"
  481. #: cmdline/apt-mark.cc:238
  482. #, c-format
  483. msgid "%s was already set on hold.\n"
  484. msgstr ""
  485. #: cmdline/apt-mark.cc:240
  486. #, c-format
  487. msgid "%s was already not hold.\n"
  488. msgstr ""
  489. #: cmdline/apt-mark.cc:255 cmdline/apt-mark.cc:333 cmdline/apt-mark.cc:397
  490. #: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:207
  491. #: apt-pkg/deb/dpkgpm.cc:1302
  492. #, c-format
  493. msgid "Waited for %s but it wasn't there"
  494. msgstr ""
  495. #: cmdline/apt-mark.cc:270 cmdline/apt-mark.cc:380
  496. #, fuzzy, c-format
  497. msgid "%s set on hold.\n"
  498. msgstr "ali se %s treba instalirati"
  499. #: cmdline/apt-mark.cc:272 cmdline/apt-mark.cc:385
  500. #, fuzzy, c-format
  501. msgid "Canceled hold on %s.\n"
  502. msgstr "Ne mogu otvoriti %s"
  503. #: cmdline/apt-mark.cc:337 cmdline/apt-mark.cc:403
  504. msgid "Executing dpkg failed. Are you root?"
  505. msgstr ""
  506. #: cmdline/apt-mark.cc:449
  507. msgid ""
  508. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  509. "\n"
  510. "apt-mark is a simple command line interface for marking packages\n"
  511. "as manually or automatically installed. It can also list marks.\n"
  512. "\n"
  513. "Commands:\n"
  514. " auto - Mark the given packages as automatically installed\n"
  515. " manual - Mark the given packages as manually installed\n"
  516. " hold - Mark a package as held back\n"
  517. " unhold - Unset a package set as held back\n"
  518. " showauto - Print the list of automatically installed packages\n"
  519. " showmanual - Print the list of manually installed packages\n"
  520. " showhold - Print the list of package on hold\n"
  521. "\n"
  522. "Options:\n"
  523. " -h This help text.\n"
  524. " -q Loggable output - no progress indicator\n"
  525. " -qq No output except for errors\n"
  526. " -s No-act. Just prints what would be done.\n"
  527. " -f read/write auto/manual marking in the given file\n"
  528. " -c=? Read this configuration file\n"
  529. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  530. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  531. msgstr ""
  532. #: cmdline/apt.cc:46
  533. msgid ""
  534. "Usage: apt [options] command\n"
  535. "\n"
  536. "CLI for apt.\n"
  537. "Basic commands: \n"
  538. " list - list packages based on package names\n"
  539. " search - search in package descriptions\n"
  540. " show - show package details\n"
  541. "\n"
  542. " update - update list of available packages\n"
  543. "\n"
  544. " install - install packages\n"
  545. " remove - remove packages\n"
  546. " autoremove - Remove automatically all unused packages\n"
  547. "\n"
  548. " upgrade - upgrade the system by installing/upgrading packages\n"
  549. " full-upgrade - upgrade the system by removing/installing/upgrading "
  550. "packages\n"
  551. "\n"
  552. " edit-sources - edit the source information file\n"
  553. msgstr ""
  554. #: methods/cdrom.cc:203
  555. #, c-format
  556. msgid "Unable to read the cdrom database %s"
  557. msgstr ""
  558. #: methods/cdrom.cc:212
  559. msgid ""
  560. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  561. "cannot be used to add new CD-ROMs"
  562. msgstr ""
  563. #: methods/cdrom.cc:222
  564. #, fuzzy
  565. msgid "Wrong CD-ROM"
  566. msgstr "Pogrešan CD"
  567. #: methods/cdrom.cc:249
  568. #, c-format
  569. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  570. msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi."
  571. #: methods/cdrom.cc:254
  572. #, fuzzy
  573. msgid "Disk not found."
  574. msgstr "Datoteka nije pronađena"
  575. #: methods/cdrom.cc:262 methods/file.cc:121 methods/rsh.cc:299
  576. msgid "File not found"
  577. msgstr "Datoteka nije pronađena"
  578. #: methods/copy.cc:57 methods/gzip.cc:127 methods/rred.cc:654
  579. #: methods/rred.cc:664
  580. msgid "Failed to stat"
  581. msgstr ""
  582. #: methods/copy.cc:101 methods/gzip.cc:134 methods/rred.cc:661
  583. msgid "Failed to set modification time"
  584. msgstr ""
  585. #: methods/file.cc:49
  586. msgid "Invalid URI, local URIS must not start with //"
  587. msgstr ""
  588. #. Login must be before getpeername otherwise dante won't work.
  589. #: methods/ftp.cc:177
  590. msgid "Logging in"
  591. msgstr "Prijavljujem se"
  592. #: methods/ftp.cc:183
  593. msgid "Unable to determine the peer name"
  594. msgstr ""
  595. #: methods/ftp.cc:188
  596. msgid "Unable to determine the local name"
  597. msgstr ""
  598. #: methods/ftp.cc:219 methods/ftp.cc:247
  599. #, c-format
  600. msgid "The server refused the connection and said: %s"
  601. msgstr ""
  602. #: methods/ftp.cc:225
  603. #, c-format
  604. msgid "USER failed, server said: %s"
  605. msgstr ""
  606. #: methods/ftp.cc:232
  607. #, c-format
  608. msgid "PASS failed, server said: %s"
  609. msgstr ""
  610. #: methods/ftp.cc:252
  611. msgid ""
  612. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  613. "is empty."
  614. msgstr ""
  615. #: methods/ftp.cc:282
  616. #, c-format
  617. msgid "Login script command '%s' failed, server said: %s"
  618. msgstr ""
  619. #: methods/ftp.cc:308
  620. #, c-format
  621. msgid "TYPE failed, server said: %s"
  622. msgstr ""
  623. #: methods/ftp.cc:346 methods/ftp.cc:458 methods/rsh.cc:213 methods/rsh.cc:261
  624. msgid "Connection timeout"
  625. msgstr ""
  626. #: methods/ftp.cc:352
  627. msgid "Server closed the connection"
  628. msgstr "Server je zatvorio vezu"
  629. #: methods/ftp.cc:355 methods/rsh.cc:220 apt-pkg/contrib/fileutl.cc:1569
  630. #: apt-pkg/contrib/fileutl.cc:1578 apt-pkg/contrib/fileutl.cc:1583
  631. #: apt-pkg/contrib/fileutl.cc:1585
  632. msgid "Read error"
  633. msgstr "Greška pri čitanju"
  634. #: methods/ftp.cc:362 methods/rsh.cc:227
  635. msgid "A response overflowed the buffer."
  636. msgstr ""
  637. #: methods/ftp.cc:379 methods/ftp.cc:391
  638. #, fuzzy
  639. msgid "Protocol corruption"
  640. msgstr "Oštećenje protokola"
  641. #: methods/ftp.cc:464 methods/rsh.cc:267 apt-pkg/contrib/fileutl.cc:946
  642. #: apt-pkg/contrib/fileutl.cc:1691 apt-pkg/contrib/fileutl.cc:1700
  643. #: apt-pkg/contrib/fileutl.cc:1705 apt-pkg/contrib/fileutl.cc:1707
  644. #: apt-pkg/contrib/fileutl.cc:1732
  645. msgid "Write error"
  646. msgstr "Greška pri pisanju"
  647. #: methods/ftp.cc:703 methods/ftp.cc:709 methods/ftp.cc:744
  648. msgid "Could not create a socket"
  649. msgstr ""
  650. #: methods/ftp.cc:714
  651. msgid "Could not connect data socket, connection timed out"
  652. msgstr ""
  653. #: methods/ftp.cc:718 methods/connect.cc:120 methods/rsh.cc:102
  654. msgid "Failed"
  655. msgstr "Neuspješno"
  656. #: methods/ftp.cc:720
  657. msgid "Could not connect passive socket."
  658. msgstr ""
  659. #: methods/ftp.cc:737
  660. msgid "getaddrinfo was unable to get a listening socket"
  661. msgstr ""
  662. #: methods/ftp.cc:751
  663. msgid "Could not bind a socket"
  664. msgstr ""
  665. #: methods/ftp.cc:755
  666. msgid "Could not listen on the socket"
  667. msgstr ""
  668. #: methods/ftp.cc:762
  669. msgid "Could not determine the socket's name"
  670. msgstr ""
  671. #: methods/ftp.cc:794
  672. msgid "Unable to send PORT command"
  673. msgstr ""
  674. #: methods/ftp.cc:804
  675. #, c-format
  676. msgid "Unknown address family %u (AF_*)"
  677. msgstr ""
  678. #: methods/ftp.cc:813
  679. #, c-format
  680. msgid "EPRT failed, server said: %s"
  681. msgstr ""
  682. #: methods/ftp.cc:833
  683. msgid "Data socket connect timed out"
  684. msgstr ""
  685. #: methods/ftp.cc:840
  686. msgid "Unable to accept connection"
  687. msgstr ""
  688. #: methods/ftp.cc:880 methods/server.cc:391 methods/rsh.cc:337
  689. msgid "Problem hashing file"
  690. msgstr ""
  691. #: methods/ftp.cc:893
  692. #, c-format
  693. msgid "Unable to fetch file, server said '%s'"
  694. msgstr ""
  695. #: methods/ftp.cc:908 methods/rsh.cc:356
  696. msgid "Data socket timed out"
  697. msgstr ""
  698. #: methods/ftp.cc:945
  699. #, c-format
  700. msgid "Data transfer failed, server said '%s'"
  701. msgstr ""
  702. #. Get the files information
  703. #: methods/ftp.cc:1028
  704. msgid "Query"
  705. msgstr ""
  706. #: methods/ftp.cc:1142
  707. msgid "Unable to invoke "
  708. msgstr ""
  709. #: methods/connect.cc:80
  710. #, c-format
  711. msgid "Connecting to %s (%s)"
  712. msgstr ""
  713. #: methods/connect.cc:91
  714. #, c-format
  715. msgid "[IP: %s %s]"
  716. msgstr ""
  717. #: methods/connect.cc:98
  718. #, c-format
  719. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  720. msgstr ""
  721. #: methods/connect.cc:104
  722. #, c-format
  723. msgid "Cannot initiate the connection to %s:%s (%s)."
  724. msgstr ""
  725. #: methods/connect.cc:112
  726. #, c-format
  727. msgid "Could not connect to %s:%s (%s), connection timed out"
  728. msgstr ""
  729. #: methods/connect.cc:130
  730. #, c-format
  731. msgid "Could not connect to %s:%s (%s)."
  732. msgstr ""
  733. #. We say this mainly because the pause here is for the
  734. #. ssh connection that is still going
  735. #: methods/connect.cc:155 methods/rsh.cc:460
  736. #, c-format
  737. msgid "Connecting to %s"
  738. msgstr "Povezujem se sa %s"
  739. #: methods/connect.cc:181 methods/connect.cc:200
  740. #, c-format
  741. msgid "Could not resolve '%s'"
  742. msgstr ""
  743. #: methods/connect.cc:206
  744. #, c-format
  745. msgid "Temporary failure resolving '%s'"
  746. msgstr ""
  747. #: methods/connect.cc:210
  748. #, c-format
  749. msgid "System error resolving '%s:%s'"
  750. msgstr ""
  751. #: methods/connect.cc:212
  752. #, c-format
  753. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  754. msgstr ""
  755. #: methods/connect.cc:259
  756. #, fuzzy, c-format
  757. msgid "Unable to connect to %s:%s:"
  758. msgstr "Ne mogu se povezati sa %s %s:"
  759. #: methods/gpgv.cc:205 methods/gpgv.cc:215
  760. msgid "At least one invalid signature was encountered."
  761. msgstr ""
  762. #: methods/gpgv.cc:210
  763. msgid ""
  764. "Internal error: Good signature, but could not determine key fingerprint?!"
  765. msgstr ""
  766. #: methods/gpgv.cc:217
  767. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  768. msgstr ""
  769. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  770. #: methods/gpgv.cc:223 apt-pkg/acquire-item.cc:604
  771. #, c-format
  772. msgid ""
  773. "Clearsigned file isn't valid, got '%s' (does the network require "
  774. "authentication?)"
  775. msgstr ""
  776. #: methods/gpgv.cc:227
  777. msgid "Unknown error executing apt-key"
  778. msgstr ""
  779. #: methods/gpgv.cc:260 methods/gpgv.cc:267
  780. #, fuzzy
  781. msgid "The following signatures were invalid:\n"
  782. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  783. #: methods/gpgv.cc:274
  784. msgid ""
  785. "The following signatures couldn't be verified because the public key is not "
  786. "available:\n"
  787. msgstr ""
  788. #: methods/gzip.cc:79
  789. msgid "Empty files can't be valid archives"
  790. msgstr ""
  791. #: methods/http.cc:515
  792. msgid "Error writing to the file"
  793. msgstr ""
  794. #: methods/http.cc:529
  795. msgid "Error reading from server. Remote end closed connection"
  796. msgstr ""
  797. #: methods/http.cc:531
  798. msgid "Error reading from server"
  799. msgstr ""
  800. #: methods/http.cc:567
  801. msgid "Error writing to file"
  802. msgstr ""
  803. #: methods/http.cc:627
  804. msgid "Select failed"
  805. msgstr ""
  806. #: methods/http.cc:632
  807. msgid "Connection timed out"
  808. msgstr ""
  809. #: methods/http.cc:655
  810. msgid "Error writing to output file"
  811. msgstr ""
  812. #: methods/server.cc:52
  813. msgid "Waiting for headers"
  814. msgstr "Čekam na zaglavlja"
  815. #: methods/server.cc:111
  816. msgid "Bad header line"
  817. msgstr ""
  818. #: methods/server.cc:136 methods/server.cc:143
  819. msgid "The HTTP server sent an invalid reply header"
  820. msgstr ""
  821. #: methods/server.cc:173
  822. msgid "The HTTP server sent an invalid Content-Length header"
  823. msgstr ""
  824. #: methods/server.cc:200
  825. msgid "The HTTP server sent an invalid Content-Range header"
  826. msgstr ""
  827. #: methods/server.cc:202
  828. msgid "This HTTP server has broken range support"
  829. msgstr ""
  830. #: methods/server.cc:229
  831. msgid "Unknown date format"
  832. msgstr "Nepoznat oblik datuma"
  833. #: methods/server.cc:535
  834. msgid "Bad header data"
  835. msgstr ""
  836. #: methods/server.cc:552 methods/server.cc:646
  837. msgid "Connection failed"
  838. msgstr "Povezivanje neuspješno"
  839. #: methods/server.cc:618
  840. #, c-format
  841. msgid ""
  842. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  843. "5 apt.conf)"
  844. msgstr ""
  845. #: methods/server.cc:741
  846. msgid "Internal error"
  847. msgstr "Unutrašnja greška"
  848. #: apt-private/private-cacheset.cc:38 apt-private/private-search.cc:65
  849. msgid "Sorting"
  850. msgstr ""
  851. #: apt-private/private-cacheset.cc:127
  852. #, c-format
  853. msgid "Note, selecting '%s' for task '%s'\n"
  854. msgstr ""
  855. #: apt-private/private-cacheset.cc:133
  856. #, c-format
  857. msgid "Note, selecting '%s' for glob '%s'\n"
  858. msgstr ""
  859. #: apt-private/private-cacheset.cc:139
  860. #, c-format
  861. msgid "Note, selecting '%s' for regex '%s'\n"
  862. msgstr ""
  863. #: apt-private/private-cacheset.cc:157
  864. #, fuzzy, c-format
  865. msgid "Package %s is a virtual package provided by:\n"
  866. msgstr "ali je virtuelni paket"
  867. #: apt-private/private-cacheset.cc:168
  868. #, fuzzy
  869. msgid " [Installed]"
  870. msgstr "[Instalirano]"
  871. #: apt-private/private-cacheset.cc:177
  872. #, fuzzy
  873. msgid " [Not candidate version]"
  874. msgstr "Verzije kandidata"
  875. #: apt-private/private-cacheset.cc:179
  876. msgid "You should explicitly select one to install."
  877. msgstr ""
  878. #: apt-private/private-cacheset.cc:182
  879. #, c-format
  880. msgid ""
  881. "Package %s is not available, but is referred to by another package.\n"
  882. "This may mean that the package is missing, has been obsoleted, or\n"
  883. "is only available from another source\n"
  884. msgstr ""
  885. #: apt-private/private-cacheset.cc:200
  886. msgid "However the following packages replace it:"
  887. msgstr "Međutim, slijedeći paketi ga zamjenjuju:"
  888. #: apt-private/private-cacheset.cc:213
  889. #, c-format
  890. msgid "Package '%s' has no installation candidate"
  891. msgstr ""
  892. #: apt-private/private-cacheset.cc:226
  893. #, c-format
  894. msgid "Virtual packages like '%s' can't be removed\n"
  895. msgstr ""
  896. #. TRANSLATORS: Note, this is not an interactive question
  897. #: apt-private/private-cacheset.cc:238 apt-private/private-install.cc:915
  898. #, c-format
  899. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  900. msgstr ""
  901. #: apt-private/private-cacheset.cc:244 apt-private/private-install.cc:921
  902. #, c-format
  903. msgid "Package '%s' is not installed, so not removed\n"
  904. msgstr ""
  905. #: apt-private/private-cacheset.cc:289
  906. #, c-format
  907. msgid "Note, selecting '%s' instead of '%s'\n"
  908. msgstr ""
  909. #: apt-private/private-install.cc:87
  910. msgid "Internal error, InstallPackages was called with broken packages!"
  911. msgstr ""
  912. #: apt-private/private-install.cc:96
  913. msgid "Packages need to be removed but remove is disabled."
  914. msgstr ""
  915. #: apt-private/private-install.cc:103 apt-private/private-download.cc:118
  916. msgid ""
  917. "--force-yes is deprecated, use one of the options starting with --allow "
  918. "instead."
  919. msgstr ""
  920. #: apt-private/private-install.cc:108
  921. msgid ""
  922. "Essential packages were removed and -y was used without --allow-remove-"
  923. "essential."
  924. msgstr ""
  925. #: apt-private/private-install.cc:110
  926. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  927. msgstr ""
  928. #: apt-private/private-install.cc:112
  929. msgid ""
  930. "Held packages were changed and -y was used without --allow-change-held-"
  931. "packages."
  932. msgstr ""
  933. #: apt-private/private-install.cc:128
  934. msgid "Internal error, Ordering didn't finish"
  935. msgstr ""
  936. #: apt-private/private-install.cc:166
  937. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  938. msgstr ""
  939. #. TRANSLATOR: The required space between number and unit is already included
  940. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  941. #: apt-private/private-install.cc:173
  942. #, c-format
  943. msgid "Need to get %sB/%sB of archives.\n"
  944. msgstr ""
  945. #. TRANSLATOR: The required space between number and unit is already included
  946. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  947. #: apt-private/private-install.cc:178
  948. #, c-format
  949. msgid "Need to get %sB of archives.\n"
  950. msgstr ""
  951. #. TRANSLATOR: The required space between number and unit is already included
  952. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  953. #: apt-private/private-install.cc:185
  954. #, c-format
  955. msgid "After this operation, %sB of additional disk space will be used.\n"
  956. msgstr ""
  957. #. TRANSLATOR: The required space between number and unit is already included
  958. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  959. #: apt-private/private-install.cc:190
  960. #, c-format
  961. msgid "After this operation, %sB disk space will be freed.\n"
  962. msgstr ""
  963. #: apt-private/private-install.cc:202 apt-private/private-install.cc:224
  964. msgid "Trivial Only specified but this is not a trivial operation."
  965. msgstr ""
  966. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  967. #. careful with hard to type or special characters (like non-breaking spaces)
  968. #: apt-private/private-install.cc:206
  969. msgid "Yes, do as I say!"
  970. msgstr "Da, uradi kako kažem!"
  971. #: apt-private/private-install.cc:208
  972. #, c-format
  973. msgid ""
  974. "You are about to do something potentially harmful.\n"
  975. "To continue type in the phrase '%s'\n"
  976. " ?] "
  977. msgstr ""
  978. #: apt-private/private-install.cc:214 apt-private/private-install.cc:232
  979. msgid "Abort."
  980. msgstr "Odustani."
  981. #: apt-private/private-install.cc:229
  982. msgid "Do you want to continue?"
  983. msgstr "Da li želite nastaviti?"
  984. #: apt-private/private-install.cc:299
  985. msgid "Some files failed to download"
  986. msgstr ""
  987. #: apt-private/private-install.cc:306
  988. msgid ""
  989. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  990. "missing?"
  991. msgstr ""
  992. #: apt-private/private-install.cc:310
  993. msgid "--fix-missing and media swapping is not currently supported"
  994. msgstr ""
  995. #: apt-private/private-install.cc:315
  996. msgid "Unable to correct missing packages."
  997. msgstr ""
  998. #: apt-private/private-install.cc:316
  999. msgid "Aborting install."
  1000. msgstr "Odustajem od instalacije."
  1001. #: apt-private/private-install.cc:341
  1002. msgid ""
  1003. "The following package disappeared from your system as\n"
  1004. "all files have been overwritten by other packages:"
  1005. msgid_plural ""
  1006. "The following packages disappeared from your system as\n"
  1007. "all files have been overwritten by other packages:"
  1008. msgstr[0] ""
  1009. msgstr[1] ""
  1010. #: apt-private/private-install.cc:348
  1011. msgid "Note: This is done automatically and on purpose by dpkg."
  1012. msgstr ""
  1013. #: apt-private/private-install.cc:370
  1014. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1015. msgstr ""
  1016. #: apt-private/private-install.cc:463
  1017. msgid ""
  1018. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1019. "shouldn't happen. Please file a bug report against apt."
  1020. msgstr ""
  1021. #.
  1022. #. if (Packages == 1)
  1023. #. {
  1024. #. c1out << std::endl;
  1025. #. c1out <<
  1026. #. _("Since you only requested a single operation it is extremely likely that\n"
  1027. #. "the package is simply not installable and a bug report against\n"
  1028. #. "that package should be filed.") << std::endl;
  1029. #. }
  1030. #.
  1031. #: apt-private/private-install.cc:466 apt-private/private-install.cc:622
  1032. msgid "The following information may help to resolve the situation:"
  1033. msgstr ""
  1034. #: apt-private/private-install.cc:470
  1035. msgid "Internal Error, AutoRemover broke stuff"
  1036. msgstr ""
  1037. #: apt-private/private-install.cc:479
  1038. #, fuzzy
  1039. msgid ""
  1040. "The following package was automatically installed and is no longer required:"
  1041. msgid_plural ""
  1042. "The following packages were automatically installed and are no longer "
  1043. "required:"
  1044. msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
  1045. msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
  1046. #: apt-private/private-install.cc:486
  1047. #, fuzzy, c-format
  1048. msgid "%lu package was automatically installed and is no longer required.\n"
  1049. msgid_plural ""
  1050. "%lu packages were automatically installed and are no longer required.\n"
  1051. msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
  1052. msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
  1053. #: apt-private/private-install.cc:488
  1054. msgid "Use 'apt-get autoremove' to remove it."
  1055. msgid_plural "Use 'apt-get autoremove' to remove them."
  1056. msgstr[0] ""
  1057. msgstr[1] ""
  1058. #: apt-private/private-install.cc:582
  1059. msgid "You might want to run 'apt-get -f install' to correct these:"
  1060. msgstr ""
  1061. #: apt-private/private-install.cc:584
  1062. msgid ""
  1063. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1064. "solution)."
  1065. msgstr ""
  1066. #: apt-private/private-install.cc:607
  1067. msgid ""
  1068. "Some packages could not be installed. This may mean that you have\n"
  1069. "requested an impossible situation or if you are using the unstable\n"
  1070. "distribution that some required packages have not yet been created\n"
  1071. "or been moved out of Incoming."
  1072. msgstr ""
  1073. #: apt-private/private-install.cc:628
  1074. msgid "Broken packages"
  1075. msgstr "Oštećeni paketi"
  1076. #: apt-private/private-install.cc:685
  1077. #, fuzzy
  1078. msgid "The following additional packages will be installed:"
  1079. msgstr "Slijedeći dodatni paketi će biti instalirani:"
  1080. #: apt-private/private-install.cc:774
  1081. msgid "Suggested packages:"
  1082. msgstr "Predloženi paketi:"
  1083. #: apt-private/private-install.cc:776
  1084. msgid "Recommended packages:"
  1085. msgstr "Preporučeni paketi:"
  1086. #: apt-private/private-install.cc:798
  1087. #, c-format
  1088. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1089. msgstr ""
  1090. #: apt-private/private-install.cc:802
  1091. #, c-format
  1092. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1093. msgstr ""
  1094. #: apt-private/private-install.cc:814
  1095. #, c-format
  1096. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1097. msgstr ""
  1098. #. TRANSLATORS: First string is package name, second is version
  1099. #: apt-private/private-install.cc:820
  1100. #, c-format
  1101. msgid "%s is already the newest version (%s).\n"
  1102. msgstr ""
  1103. #: apt-private/private-install.cc:868
  1104. #, c-format
  1105. msgid "Selected version '%s' (%s) for '%s'\n"
  1106. msgstr ""
  1107. #: apt-private/private-install.cc:873
  1108. #, c-format
  1109. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1110. msgstr ""
  1111. #: apt-private/private-list.cc:121
  1112. msgid "Listing"
  1113. msgstr ""
  1114. #: apt-private/private-list.cc:151
  1115. #, c-format
  1116. msgid "There is %i additional version. Please use the '-a' switch to see it"
  1117. msgid_plural ""
  1118. "There are %i additional versions. Please use the '-a' switch to see them."
  1119. msgstr[0] ""
  1120. msgstr[1] ""
  1121. #: apt-private/private-cachefile.cc:96
  1122. msgid "Correcting dependencies..."
  1123. msgstr "Ispravljam zavisnosti..."
  1124. #: apt-private/private-cachefile.cc:99
  1125. msgid " failed."
  1126. msgstr ""
  1127. #: apt-private/private-cachefile.cc:102
  1128. msgid "Unable to correct dependencies"
  1129. msgstr "Ne mogu ispraviti zavisnosti"
  1130. #: apt-private/private-cachefile.cc:105
  1131. msgid "Unable to minimize the upgrade set"
  1132. msgstr ""
  1133. #: apt-private/private-cachefile.cc:107
  1134. msgid " Done"
  1135. msgstr " Urađeno"
  1136. #: apt-private/private-cachefile.cc:111
  1137. msgid "You might want to run 'apt-get -f install' to correct these."
  1138. msgstr ""
  1139. #: apt-private/private-cachefile.cc:114
  1140. msgid "Unmet dependencies. Try using -f."
  1141. msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f."
  1142. #: apt-private/private-output.cc:105 apt-private/private-show.cc:84
  1143. #: apt-private/private-show.cc:89
  1144. msgid "unknown"
  1145. msgstr ""
  1146. #: apt-private/private-output.cc:272
  1147. #, fuzzy, c-format
  1148. msgid "[installed,upgradable to: %s]"
  1149. msgstr "[Instalirano]"
  1150. #: apt-private/private-output.cc:275
  1151. #, fuzzy
  1152. msgid "[installed,local]"
  1153. msgstr "[Instalirano]"
  1154. #: apt-private/private-output.cc:277
  1155. msgid "[installed,auto-removable]"
  1156. msgstr ""
  1157. #: apt-private/private-output.cc:279
  1158. #, fuzzy
  1159. msgid "[installed,automatic]"
  1160. msgstr "[Instalirano]"
  1161. #: apt-private/private-output.cc:281
  1162. #, fuzzy
  1163. msgid "[installed]"
  1164. msgstr "[Instalirano]"
  1165. #: apt-private/private-output.cc:284
  1166. #, c-format
  1167. msgid "[upgradable from: %s]"
  1168. msgstr ""
  1169. #: apt-private/private-output.cc:288
  1170. msgid "[residual-config]"
  1171. msgstr ""
  1172. #: apt-private/private-output.cc:402
  1173. #, c-format
  1174. msgid "but %s is installed"
  1175. msgstr "ali je %s instaliran"
  1176. #: apt-private/private-output.cc:404
  1177. #, c-format
  1178. msgid "but %s is to be installed"
  1179. msgstr "ali se %s treba instalirati"
  1180. #: apt-private/private-output.cc:411
  1181. msgid "but it is not installable"
  1182. msgstr "ali se ne može instalirati"
  1183. #: apt-private/private-output.cc:413
  1184. msgid "but it is a virtual package"
  1185. msgstr "ali je virtuelni paket"
  1186. #: apt-private/private-output.cc:416
  1187. msgid "but it is not installed"
  1188. msgstr "ali nije instaliran"
  1189. #: apt-private/private-output.cc:416
  1190. msgid "but it is not going to be installed"
  1191. msgstr "ali se neće instalirati"
  1192. #: apt-private/private-output.cc:421
  1193. msgid " or"
  1194. msgstr " ili"
  1195. #: apt-private/private-output.cc:435 apt-private/private-output.cc:445
  1196. msgid "The following packages have unmet dependencies:"
  1197. msgstr ""
  1198. #: apt-private/private-output.cc:455
  1199. msgid "The following NEW packages will be installed:"
  1200. msgstr "Slijedeći NOVI paketi će biti instalirani:"
  1201. #: apt-private/private-output.cc:465
  1202. msgid "The following packages will be REMOVED:"
  1203. msgstr "Slijedeći paketi će biti UKLONJENI:"
  1204. #: apt-private/private-output.cc:481
  1205. #, fuzzy
  1206. msgid "The following packages have been kept back:"
  1207. msgstr "Slijedeći paketi su zadržani:"
  1208. #: apt-private/private-output.cc:497
  1209. msgid "The following packages will be upgraded:"
  1210. msgstr "Slijedeći paketi će biti nadograđeni:"
  1211. #: apt-private/private-output.cc:512
  1212. msgid "The following packages will be DOWNGRADED:"
  1213. msgstr ""
  1214. #: apt-private/private-output.cc:525
  1215. msgid "The following held packages will be changed:"
  1216. msgstr ""
  1217. #: apt-private/private-output.cc:552
  1218. #, c-format
  1219. msgid "%s (due to %s)"
  1220. msgstr ""
  1221. #: apt-private/private-output.cc:602
  1222. msgid ""
  1223. "WARNING: The following essential packages will be removed.\n"
  1224. "This should NOT be done unless you know exactly what you are doing!"
  1225. msgstr ""
  1226. #: apt-private/private-output.cc:633
  1227. #, c-format
  1228. msgid "%lu upgraded, %lu newly installed, "
  1229. msgstr ""
  1230. #: apt-private/private-output.cc:637
  1231. #, c-format
  1232. msgid "%lu reinstalled, "
  1233. msgstr ""
  1234. #: apt-private/private-output.cc:639
  1235. #, c-format
  1236. msgid "%lu downgraded, "
  1237. msgstr ""
  1238. #: apt-private/private-output.cc:641
  1239. #, c-format
  1240. msgid "%lu to remove and %lu not upgraded.\n"
  1241. msgstr ""
  1242. #: apt-private/private-output.cc:645
  1243. #, c-format
  1244. msgid "%lu not fully installed or removed.\n"
  1245. msgstr ""
  1246. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1247. #. e.g. "Do you want to continue? [Y/n] "
  1248. #. The user has to answer with an input matching the
  1249. #. YESEXPR/NOEXPR defined in your l10n.
  1250. #: apt-private/private-output.cc:667
  1251. msgid "[Y/n]"
  1252. msgstr ""
  1253. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1254. #. e.g. "Should this file be removed? [y/N] "
  1255. #. The user has to answer with an input matching the
  1256. #. YESEXPR/NOEXPR defined in your l10n.
  1257. #: apt-private/private-output.cc:673
  1258. msgid "[y/N]"
  1259. msgstr ""
  1260. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1261. #: apt-private/private-output.cc:684
  1262. msgid "Y"
  1263. msgstr ""
  1264. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1265. #: apt-private/private-output.cc:690
  1266. msgid "N"
  1267. msgstr ""
  1268. #: apt-private/private-output.cc:712 apt-pkg/cachefilter.cc:40
  1269. #, c-format
  1270. msgid "Regex compilation error - %s"
  1271. msgstr ""
  1272. #: apt-private/private-update.cc:31
  1273. msgid "The update command takes no arguments"
  1274. msgstr ""
  1275. #: apt-private/private-update.cc:96
  1276. #, c-format
  1277. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  1278. msgid_plural ""
  1279. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  1280. msgstr[0] ""
  1281. msgstr[1] ""
  1282. #: apt-private/private-update.cc:100
  1283. msgid "All packages are up to date."
  1284. msgstr ""
  1285. #: apt-private/private-show.cc:158
  1286. #, c-format
  1287. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1288. msgid_plural ""
  1289. "There are %i additional records. Please use the '-a' switch to see them."
  1290. msgstr[0] ""
  1291. msgstr[1] ""
  1292. #: apt-private/private-show.cc:165
  1293. msgid "not a real package (virtual)"
  1294. msgstr ""
  1295. #: apt-private/private-main.cc:34
  1296. msgid ""
  1297. "NOTE: This is only a simulation!\n"
  1298. " apt-get needs root privileges for real execution.\n"
  1299. " Keep also in mind that locking is deactivated,\n"
  1300. " so don't depend on the relevance to the real current situation!"
  1301. msgstr ""
  1302. #: apt-private/private-download.cc:62
  1303. #, c-format
  1304. msgid ""
  1305. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  1306. "user '%s'."
  1307. msgstr ""
  1308. #: apt-private/private-download.cc:94
  1309. #, fuzzy
  1310. msgid "WARNING: The following packages cannot be authenticated!"
  1311. msgstr "Slijedeći paketi će biti nadograđeni:"
  1312. #: apt-private/private-download.cc:101
  1313. msgid "Authentication warning overridden.\n"
  1314. msgstr ""
  1315. #: apt-private/private-download.cc:106 apt-private/private-download.cc:113
  1316. msgid "Some packages could not be authenticated"
  1317. msgstr ""
  1318. #: apt-private/private-download.cc:111
  1319. msgid "Install these packages without verification?"
  1320. msgstr ""
  1321. #: apt-private/private-download.cc:122
  1322. msgid ""
  1323. "There were unauthenticated packages and -y was used without --allow-"
  1324. "unauthenticated"
  1325. msgstr ""
  1326. #: apt-private/private-download.cc:154
  1327. #, c-format
  1328. msgid "Failed to fetch %s %s\n"
  1329. msgstr ""
  1330. #: apt-private/private-download.cc:176 apt-private/private-download.cc:179
  1331. #, c-format
  1332. msgid "Couldn't determine free space in %s"
  1333. msgstr ""
  1334. #: apt-private/private-download.cc:193
  1335. #, c-format
  1336. msgid "You don't have enough free space in %s."
  1337. msgstr ""
  1338. #: apt-private/private-sources.cc:58
  1339. #, fuzzy, c-format
  1340. msgid "Failed to parse %s. Edit again? "
  1341. msgstr "Ne mogu otvoriti %s"
  1342. #: apt-private/private-sources.cc:70
  1343. #, c-format
  1344. msgid "Your '%s' file changed, please run 'apt-get update'."
  1345. msgstr ""
  1346. #: apt-private/private-search.cc:69
  1347. msgid "Full Text Search"
  1348. msgstr ""
  1349. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  1350. #: apt-private/acqprogress.cc:74
  1351. #, c-format
  1352. msgid "Hit:%lu %s"
  1353. msgstr ""
  1354. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  1355. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  1356. #: apt-private/acqprogress.cc:96
  1357. #, c-format
  1358. msgid "Get:%lu %s"
  1359. msgstr ""
  1360. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1361. #. which failed to download, but the error is ignored (compare "Err:")
  1362. #: apt-private/acqprogress.cc:126
  1363. #, c-format
  1364. msgid "Ign:%lu %s"
  1365. msgstr ""
  1366. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1367. #. which failed to download and the error is critical (compare "Ign:")
  1368. #: apt-private/acqprogress.cc:136
  1369. #, c-format
  1370. msgid "Err:%lu %s"
  1371. msgstr ""
  1372. #: apt-private/acqprogress.cc:159
  1373. #, c-format
  1374. msgid "Fetched %sB in %s (%sB/s)\n"
  1375. msgstr ""
  1376. #: apt-private/acqprogress.cc:229
  1377. msgid " [Working]"
  1378. msgstr ""
  1379. #: apt-private/acqprogress.cc:297
  1380. #, c-format
  1381. msgid ""
  1382. "Media change: please insert the disc labeled\n"
  1383. " '%s'\n"
  1384. "in the drive '%s' and press [Enter]\n"
  1385. msgstr ""
  1386. #. Only warn if there are no sources.list.d.
  1387. #. Only warn if there is no sources.list file.
  1388. #: methods/mirror.cc:95 apt-pkg/init.cc:133 apt-pkg/init.cc:141
  1389. #: apt-pkg/clean.cc:43 apt-pkg/acquire.cc:557 apt-pkg/policy.cc:412
  1390. #: apt-pkg/sourcelist.cc:306 apt-pkg/sourcelist.cc:312
  1391. #: apt-pkg/contrib/fileutl.cc:375 apt-pkg/contrib/fileutl.cc:488
  1392. #: apt-pkg/contrib/cdromutl.cc:205 apt-inst/extract.cc:471
  1393. #, c-format
  1394. msgid "Unable to read %s"
  1395. msgstr "Ne mogu čitati %s"
  1396. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49
  1397. #: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:563
  1398. #: apt-pkg/acquire.cc:588 apt-pkg/contrib/cdromutl.cc:201
  1399. #: apt-pkg/contrib/cdromutl.cc:235
  1400. #, c-format
  1401. msgid "Unable to change to %s"
  1402. msgstr ""
  1403. #. FIXME: fallback to a default mirror here instead
  1404. #. and provide a config option to define that default
  1405. #: methods/mirror.cc:280
  1406. #, c-format
  1407. msgid "No mirror file '%s' found "
  1408. msgstr ""
  1409. #. FIXME: fallback to a default mirror here instead
  1410. #. and provide a config option to define that default
  1411. #: methods/mirror.cc:287
  1412. #, fuzzy, c-format
  1413. msgid "Can not read mirror file '%s'"
  1414. msgstr "Ne mogu otvoriti %s"
  1415. #: methods/mirror.cc:315
  1416. #, fuzzy, c-format
  1417. msgid "No entry found in mirror file '%s'"
  1418. msgstr "Ne mogu otvoriti %s"
  1419. #: methods/mirror.cc:445
  1420. #, c-format
  1421. msgid "[Mirror: %s]"
  1422. msgstr ""
  1423. #: methods/rsh.cc:109 ftparchive/multicompress.cc:170
  1424. msgid "Failed to create IPC pipe to subprocess"
  1425. msgstr ""
  1426. #: methods/rsh.cc:364
  1427. msgid "Connection closed prematurely"
  1428. msgstr ""
  1429. #: dselect/install:33
  1430. msgid "Bad default setting!"
  1431. msgstr "Loša podrazumjevana postavka!"
  1432. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1433. #: dselect/install:106 dselect/update:45
  1434. #, fuzzy
  1435. msgid "Press [Enter] to continue."
  1436. msgstr "Pritisnite enter za nastavak."
  1437. #: dselect/install:92
  1438. msgid "Do you want to erase any previously downloaded .deb files?"
  1439. msgstr ""
  1440. #: dselect/install:102
  1441. msgid "Some errors occurred while unpacking. Packages that were installed"
  1442. msgstr ""
  1443. #: dselect/install:103
  1444. msgid "will be configured. This may result in duplicate errors"
  1445. msgstr ""
  1446. #: dselect/install:104
  1447. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1448. msgstr ""
  1449. #: dselect/install:105
  1450. msgid ""
  1451. "above this message are important. Please fix them and run [I]nstall again"
  1452. msgstr ""
  1453. #: dselect/update:30
  1454. msgid "Merging available information"
  1455. msgstr "Sastavljam dostupne informacije"
  1456. #: apt-pkg/install-progress.cc:58
  1457. #, c-format
  1458. msgid "Progress: [%3i%%]"
  1459. msgstr ""
  1460. #: apt-pkg/install-progress.cc:93 apt-pkg/install-progress.cc:177
  1461. msgid "Running dpkg"
  1462. msgstr ""
  1463. #: apt-pkg/init.cc:176
  1464. #, c-format
  1465. msgid "Packaging system '%s' is not supported"
  1466. msgstr ""
  1467. #: apt-pkg/init.cc:192
  1468. msgid "Unable to determine a suitable packaging system type"
  1469. msgstr ""
  1470. #: apt-pkg/indexcopy.cc:228 apt-pkg/indexcopy.cc:753
  1471. #, c-format
  1472. msgid "Wrote %i records.\n"
  1473. msgstr ""
  1474. #: apt-pkg/indexcopy.cc:230 apt-pkg/indexcopy.cc:755
  1475. #, c-format
  1476. msgid "Wrote %i records with %i missing files.\n"
  1477. msgstr ""
  1478. #: apt-pkg/indexcopy.cc:233 apt-pkg/indexcopy.cc:758
  1479. #, c-format
  1480. msgid "Wrote %i records with %i mismatched files\n"
  1481. msgstr ""
  1482. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:761
  1483. #, c-format
  1484. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1485. msgstr ""
  1486. #: apt-pkg/indexcopy.cc:498
  1487. #, c-format
  1488. msgid "Can't find authentication record for: %s"
  1489. msgstr ""
  1490. #: apt-pkg/indexcopy.cc:504
  1491. #, c-format
  1492. msgid "Hash mismatch for: %s"
  1493. msgstr ""
  1494. #: apt-pkg/cachefile.cc:101
  1495. msgid "The package lists or status file could not be parsed or opened."
  1496. msgstr ""
  1497. #: apt-pkg/cachefile.cc:105
  1498. msgid "You may want to run apt-get update to correct these problems"
  1499. msgstr ""
  1500. #: apt-pkg/cachefile.cc:123
  1501. msgid "The list of sources could not be read."
  1502. msgstr ""
  1503. #: apt-pkg/pkgcache.cc:163
  1504. msgid "Empty package cache"
  1505. msgstr ""
  1506. #: apt-pkg/pkgcache.cc:169 apt-pkg/pkgcache.cc:180
  1507. msgid "The package cache file is corrupted"
  1508. msgstr ""
  1509. #: apt-pkg/pkgcache.cc:174
  1510. msgid "The package cache file is an incompatible version"
  1511. msgstr ""
  1512. #: apt-pkg/pkgcache.cc:177
  1513. msgid "The package cache file is corrupted, it is too small"
  1514. msgstr ""
  1515. #: apt-pkg/pkgcache.cc:184
  1516. #, c-format
  1517. msgid "This APT does not support the versioning system '%s'"
  1518. msgstr ""
  1519. #: apt-pkg/pkgcache.cc:194
  1520. #, c-format
  1521. msgid "The package cache was built for different architectures: %s vs %s"
  1522. msgstr ""
  1523. #: apt-pkg/pkgcache.cc:319
  1524. msgid "Depends"
  1525. msgstr "Zavisi"
  1526. #: apt-pkg/pkgcache.cc:319
  1527. msgid "PreDepends"
  1528. msgstr "Unaprijed zavisi"
  1529. #: apt-pkg/pkgcache.cc:319
  1530. msgid "Suggests"
  1531. msgstr "Predlaže"
  1532. #: apt-pkg/pkgcache.cc:320
  1533. msgid "Recommends"
  1534. msgstr "Preporučuje"
  1535. #: apt-pkg/pkgcache.cc:320
  1536. #, fuzzy
  1537. msgid "Conflicts"
  1538. msgstr "Sukobljava se sa"
  1539. #: apt-pkg/pkgcache.cc:320
  1540. msgid "Replaces"
  1541. msgstr "Zamjenjuje"
  1542. #: apt-pkg/pkgcache.cc:321
  1543. msgid "Obsoletes"
  1544. msgstr "Zastarijeva"
  1545. #: apt-pkg/pkgcache.cc:321
  1546. msgid "Breaks"
  1547. msgstr ""
  1548. #: apt-pkg/pkgcache.cc:321
  1549. msgid "Enhances"
  1550. msgstr ""
  1551. #: apt-pkg/pkgcache.cc:332
  1552. msgid "important"
  1553. msgstr "važno"
  1554. #: apt-pkg/pkgcache.cc:332
  1555. msgid "required"
  1556. msgstr "zahtijevano"
  1557. #: apt-pkg/pkgcache.cc:332
  1558. msgid "standard"
  1559. msgstr "standardno"
  1560. #: apt-pkg/pkgcache.cc:333
  1561. msgid "optional"
  1562. msgstr "opcionalno"
  1563. #: apt-pkg/pkgcache.cc:333
  1564. msgid "extra"
  1565. msgstr "extra"
  1566. #: apt-pkg/acquire-worker.cc:111
  1567. #, c-format
  1568. msgid "The method driver %s could not be found."
  1569. msgstr ""
  1570. #: apt-pkg/acquire-worker.cc:113
  1571. #, c-format
  1572. msgid "Is the package %s installed?"
  1573. msgstr ""
  1574. #: apt-pkg/acquire-worker.cc:164
  1575. #, c-format
  1576. msgid "Method %s did not start correctly"
  1577. msgstr ""
  1578. #: apt-pkg/acquire-worker.cc:536
  1579. #, c-format
  1580. msgid ""
  1581. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  1582. msgstr ""
  1583. #: apt-pkg/pkgrecords.cc:38
  1584. #, c-format
  1585. msgid "Index file type '%s' is not supported"
  1586. msgstr ""
  1587. #: apt-pkg/depcache.cc:139 apt-pkg/depcache.cc:167
  1588. msgid "Building dependency tree"
  1589. msgstr "Gradim stablo zavisnosti"
  1590. #: apt-pkg/depcache.cc:140
  1591. msgid "Candidate versions"
  1592. msgstr "Verzije kandidata"
  1593. #: apt-pkg/depcache.cc:168
  1594. msgid "Dependency generation"
  1595. msgstr "Stvaranje zavisnosti"
  1596. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  1597. #, fuzzy
  1598. msgid "Reading state information"
  1599. msgstr "Sastavljam dostupne informacije"
  1600. #: apt-pkg/depcache.cc:252
  1601. #, fuzzy, c-format
  1602. msgid "Failed to open StateFile %s"
  1603. msgstr "Ne mogu otvoriti %s"
  1604. #: apt-pkg/depcache.cc:257
  1605. #, fuzzy, c-format
  1606. msgid "Failed to write temporary StateFile %s"
  1607. msgstr "Ne mogu ukloniti %s"
  1608. #: apt-pkg/acquire-item.cc:116
  1609. msgid "Use --allow-insecure-repositories to force the update"
  1610. msgstr ""
  1611. #: apt-pkg/acquire-item.cc:561 apt-pkg/contrib/fileutl.cc:2161
  1612. #, c-format
  1613. msgid "rename failed, %s (%s -> %s)."
  1614. msgstr ""
  1615. #: apt-pkg/acquire-item.cc:585
  1616. msgid "Hash Sum mismatch"
  1617. msgstr ""
  1618. #: apt-pkg/acquire-item.cc:590
  1619. msgid "Size mismatch"
  1620. msgstr ""
  1621. #: apt-pkg/acquire-item.cc:595
  1622. msgid "Invalid file format"
  1623. msgstr ""
  1624. #: apt-pkg/acquire-item.cc:600
  1625. #, fuzzy
  1626. msgid "Signature error"
  1627. msgstr "Greška pri pisanju"
  1628. #: apt-pkg/acquire-item.cc:789
  1629. #, c-format
  1630. msgid ""
  1631. "An error occurred during the signature verification. The repository is not "
  1632. "updated and the previous index files will be used. GPG error: %s: %s"
  1633. msgstr ""
  1634. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  1635. #: apt-pkg/acquire-item.cc:799 apt-pkg/acquire-item.cc:805
  1636. #, c-format
  1637. msgid "GPG error: %s: %s"
  1638. msgstr ""
  1639. #: apt-pkg/acquire-item.cc:970
  1640. #, c-format
  1641. msgid ""
  1642. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  1643. "or malformed file)"
  1644. msgstr ""
  1645. #: apt-pkg/acquire-item.cc:1026
  1646. msgid "There is no public key available for the following key IDs:\n"
  1647. msgstr ""
  1648. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  1649. #. the time since then the file is invalid - formatted in the same way as in
  1650. #. the download progress display (e.g. 7d 3h 42min 1s)
  1651. #: apt-pkg/acquire-item.cc:1066
  1652. #, c-format
  1653. msgid ""
  1654. "Release file for %s is expired (invalid since %s). Updates for this "
  1655. "repository will not be applied."
  1656. msgstr ""
  1657. #: apt-pkg/acquire-item.cc:1107
  1658. #, c-format
  1659. msgid "Conflicting distribution: %s (expected %s but got %s)"
  1660. msgstr ""
  1661. #: apt-pkg/acquire-item.cc:1224 apt-pkg/acquire-item.cc:1480
  1662. #, c-format
  1663. msgid ""
  1664. "The data from '%s' is not signed. Packages from that repository can not be "
  1665. "authenticated."
  1666. msgstr ""
  1667. #: apt-pkg/acquire-item.cc:1326
  1668. #, c-format
  1669. msgid ""
  1670. "The repository '%s' does not have a Release file. This is deprecated, please "
  1671. "contact the owner of the repository."
  1672. msgstr ""
  1673. #: apt-pkg/acquire-item.cc:1459
  1674. #, c-format
  1675. msgid "The repository '%s' is no longer signed."
  1676. msgstr ""
  1677. #: apt-pkg/acquire-item.cc:1466
  1678. msgid ""
  1679. "This is normally not allowed, but the option Acquire::"
  1680. "AllowDowngradeToInsecureRepositories was given to override it."
  1681. msgstr ""
  1682. #: apt-pkg/acquire-item.cc:2611
  1683. #, c-format
  1684. msgid ""
  1685. "I wasn't able to locate a file for the %s package. This might mean you need "
  1686. "to manually fix this package. (due to missing arch)"
  1687. msgstr ""
  1688. #: apt-pkg/acquire-item.cc:2677
  1689. #, c-format
  1690. msgid "Can't find a source to download version '%s' of '%s'"
  1691. msgstr ""
  1692. #: apt-pkg/acquire-item.cc:2715
  1693. #, c-format
  1694. msgid ""
  1695. "The package index files are corrupted. No Filename: field for package %s."
  1696. msgstr ""
  1697. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  1698. #: apt-pkg/acquire-item.cc:2916 apt-pkg/acquire-item.cc:3054
  1699. #, c-format
  1700. msgid "Changelog unavailable for %s=%s"
  1701. msgstr ""
  1702. #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:553
  1703. #, c-format
  1704. msgid "Clean of %s is not supported"
  1705. msgstr ""
  1706. #: apt-pkg/clean.cc:64
  1707. #, c-format
  1708. msgid "Unable to stat %s."
  1709. msgstr ""
  1710. #: apt-pkg/pkgcachegen.cc:112
  1711. msgid "Cache has an incompatible versioning system"
  1712. msgstr ""
  1713. #. TRANSLATOR: The first placeholder is a package name,
  1714. #. the other two should be copied verbatim as they include debug info
  1715. #: apt-pkg/pkgcachegen.cc:237 apt-pkg/pkgcachegen.cc:299
  1716. #: apt-pkg/pkgcachegen.cc:365 apt-pkg/pkgcachegen.cc:369
  1717. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:394
  1718. #: apt-pkg/pkgcachegen.cc:398 apt-pkg/pkgcachegen.cc:402
  1719. #: apt-pkg/pkgcachegen.cc:423 apt-pkg/pkgcachegen.cc:428
  1720. #: apt-pkg/pkgcachegen.cc:474 apt-pkg/pkgcachegen.cc:488
  1721. #, c-format
  1722. msgid "Error occurred while processing %s (%s%d)"
  1723. msgstr ""
  1724. #: apt-pkg/pkgcachegen.cc:257
  1725. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1726. msgstr ""
  1727. #: apt-pkg/pkgcachegen.cc:260
  1728. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1729. msgstr ""
  1730. #: apt-pkg/pkgcachegen.cc:263
  1731. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1732. msgstr ""
  1733. #: apt-pkg/pkgcachegen.cc:266
  1734. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1735. msgstr ""
  1736. #: apt-pkg/pkgcachegen.cc:1400 apt-pkg/pkgcachegen.cc:1526
  1737. #: apt-pkg/pkgcachegen.cc:1552 apt-pkg/pkgcachegen.cc:1671
  1738. msgid "Reading package lists"
  1739. msgstr "Čitam spiskove paketa"
  1740. #: apt-pkg/pkgcachegen.cc:1471 apt-pkg/pkgcachegen.cc:1478
  1741. msgid "IO Error saving source cache"
  1742. msgstr ""
  1743. #: apt-pkg/pkgcachegen.cc:1570 apt-pkg/pkgcachegen.cc:1572
  1744. #: apt-pkg/contrib/fileutl.cc:2151 cmdline/apt-extracttemplates.cc:263
  1745. #, c-format
  1746. msgid "Unable to write to %s"
  1747. msgstr "Ne mogu zapisati na %s"
  1748. #: apt-pkg/acquire.cc:126 apt-pkg/acquire.cc:146 apt-pkg/cdrom.cc:833
  1749. #, c-format
  1750. msgid "List directory %spartial is missing."
  1751. msgstr ""
  1752. #: apt-pkg/acquire.cc:129 apt-pkg/acquire.cc:151
  1753. #, c-format
  1754. msgid "Archives directory %spartial is missing."
  1755. msgstr ""
  1756. #: apt-pkg/acquire.cc:162
  1757. #, fuzzy, c-format
  1758. msgid "Unable to lock directory %s"
  1759. msgstr "Ne mogu kreirati %s"
  1760. #. only show the ETA if it makes sense
  1761. #. two days
  1762. #: apt-pkg/acquire.cc:1081
  1763. #, c-format
  1764. msgid "Retrieving file %li of %li (%s remaining)"
  1765. msgstr ""
  1766. #: apt-pkg/acquire.cc:1083
  1767. #, fuzzy, c-format
  1768. msgid "Retrieving file %li of %li"
  1769. msgstr "Čitam spisak datoteke"
  1770. #: apt-pkg/update.cc:76
  1771. #, fuzzy, c-format
  1772. msgid "Failed to fetch %s %s"
  1773. msgstr "Ne mogu otvoriti %s"
  1774. #: apt-pkg/update.cc:102 apt-pkg/update.cc:104
  1775. msgid ""
  1776. "Some index files failed to download. They have been ignored, or old ones "
  1777. "used instead."
  1778. msgstr ""
  1779. #: apt-pkg/srcrecords.cc:53
  1780. msgid "You must put some 'source' URIs in your sources.list"
  1781. msgstr ""
  1782. #: apt-pkg/policy.cc:77
  1783. #, c-format
  1784. msgid ""
  1785. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  1786. "available in the sources"
  1787. msgstr ""
  1788. #: apt-pkg/policy.cc:453
  1789. #, c-format
  1790. msgid "Invalid record in the preferences file %s, no Package header"
  1791. msgstr ""
  1792. #: apt-pkg/policy.cc:475
  1793. #, c-format
  1794. msgid "Did not understand pin type %s"
  1795. msgstr ""
  1796. #: apt-pkg/policy.cc:484
  1797. #, c-format
  1798. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  1799. msgstr ""
  1800. #: apt-pkg/policy.cc:491
  1801. msgid "No priority (or zero) specified for pin"
  1802. msgstr ""
  1803. #: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:983
  1804. #, c-format
  1805. msgid ""
  1806. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  1807. "under APT::Immediate-Configure for details. (%d)"
  1808. msgstr ""
  1809. #: apt-pkg/packagemanager.cc:562 apt-pkg/packagemanager.cc:592
  1810. #, fuzzy, c-format
  1811. msgid "Could not configure '%s'. "
  1812. msgstr "Ne mogu otvoriti %s"
  1813. #: apt-pkg/packagemanager.cc:642
  1814. #, c-format
  1815. msgid ""
  1816. "This installation run will require temporarily removing the essential "
  1817. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1818. "you really want to do it, activate the APT::Force-LoopBreak option."
  1819. msgstr ""
  1820. #: apt-pkg/cdrom.cc:498
  1821. #, c-format
  1822. msgid "Line %u too long in source list %s."
  1823. msgstr ""
  1824. #: apt-pkg/cdrom.cc:572
  1825. #, fuzzy
  1826. msgid "Unmounting CD-ROM...\n"
  1827. msgstr "Pogrešan CD"
  1828. #: apt-pkg/cdrom.cc:587
  1829. #, c-format
  1830. msgid "Using CD-ROM mount point %s\n"
  1831. msgstr ""
  1832. #: apt-pkg/cdrom.cc:600
  1833. #, fuzzy
  1834. msgid "Waiting for disc...\n"
  1835. msgstr "Čekam na zaglavlja"
  1836. #: apt-pkg/cdrom.cc:610
  1837. msgid "Mounting CD-ROM...\n"
  1838. msgstr ""
  1839. #: apt-pkg/cdrom.cc:621
  1840. msgid "Identifying... "
  1841. msgstr ""
  1842. #: apt-pkg/cdrom.cc:663
  1843. #, c-format
  1844. msgid "Stored label: %s\n"
  1845. msgstr ""
  1846. #: apt-pkg/cdrom.cc:681
  1847. msgid "Scanning disc for index files...\n"
  1848. msgstr ""
  1849. #: apt-pkg/cdrom.cc:735
  1850. #, c-format
  1851. msgid ""
  1852. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  1853. "%zu signatures\n"
  1854. msgstr ""
  1855. #: apt-pkg/cdrom.cc:745
  1856. msgid ""
  1857. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  1858. "wrong architecture?"
  1859. msgstr ""
  1860. #: apt-pkg/cdrom.cc:772
  1861. #, c-format
  1862. msgid "Found label '%s'\n"
  1863. msgstr ""
  1864. #: apt-pkg/cdrom.cc:801
  1865. msgid "That is not a valid name, try again.\n"
  1866. msgstr ""
  1867. #: apt-pkg/cdrom.cc:818
  1868. #, c-format
  1869. msgid ""
  1870. "This disc is called: \n"
  1871. "'%s'\n"
  1872. msgstr ""
  1873. #: apt-pkg/cdrom.cc:820
  1874. #, fuzzy
  1875. msgid "Copying package lists..."
  1876. msgstr "Čitam spiskove paketa"
  1877. #: apt-pkg/cdrom.cc:867
  1878. msgid "Writing new source list\n"
  1879. msgstr ""
  1880. #: apt-pkg/cdrom.cc:878
  1881. msgid "Source list entries for this disc are:\n"
  1882. msgstr ""
  1883. #: apt-pkg/upgrade.cc:34 apt-pkg/upgrade.cc:136 apt-pkg/upgrade.cc:182
  1884. msgid "Calculating upgrade"
  1885. msgstr "Računam nadogradnju"
  1886. #: apt-pkg/algorithms.cc:263
  1887. #, c-format
  1888. msgid ""
  1889. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1890. msgstr ""
  1891. #: apt-pkg/algorithms.cc:1080
  1892. msgid ""
  1893. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1894. "held packages."
  1895. msgstr ""
  1896. #: apt-pkg/algorithms.cc:1082
  1897. msgid "Unable to correct problems, you have held broken packages."
  1898. msgstr ""
  1899. #: apt-pkg/edsp.cc:184 apt-pkg/edsp.cc:210
  1900. msgid "Send scenario to solver"
  1901. msgstr ""
  1902. #: apt-pkg/edsp.cc:232
  1903. msgid "Send request to solver"
  1904. msgstr ""
  1905. #: apt-pkg/edsp.cc:311
  1906. msgid "Prepare for receiving solution"
  1907. msgstr ""
  1908. #: apt-pkg/edsp.cc:318
  1909. msgid "External solver failed without a proper error message"
  1910. msgstr ""
  1911. #: apt-pkg/edsp.cc:610 apt-pkg/edsp.cc:613 apt-pkg/edsp.cc:618
  1912. msgid "Execute external solver"
  1913. msgstr ""
  1914. #: apt-pkg/tagfile.cc:196 apt-pkg/tagfile.cc:296 apt-pkg/deb/debrecords.cc:212
  1915. #, c-format
  1916. msgid "Unable to parse package file %s (%d)"
  1917. msgstr ""
  1918. #: apt-pkg/tagfile.cc:541 apt-pkg/tagfile.cc:544
  1919. #, c-format
  1920. msgid "Cannot convert %s to integer"
  1921. msgstr ""
  1922. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  1923. #: apt-pkg/sourcelist.cc:133 apt-pkg/sourcelist.cc:140
  1924. #: apt-pkg/sourcelist.cc:143 apt-pkg/sourcelist.cc:151
  1925. #: apt-pkg/sourcelist.cc:158 apt-pkg/sourcelist.cc:197
  1926. #: apt-pkg/sourcelist.cc:200 apt-pkg/sourcelist.cc:211
  1927. #: apt-pkg/sourcelist.cc:217 apt-pkg/sourcelist.cc:220
  1928. #: apt-pkg/sourcelist.cc:233 apt-pkg/sourcelist.cc:235
  1929. #: apt-pkg/sourcelist.cc:238 apt-pkg/sourcelist.cc:244
  1930. #: apt-pkg/sourcelist.cc:251
  1931. #, c-format
  1932. msgid "Malformed entry %u in %s file %s (%s)"
  1933. msgstr ""
  1934. #: apt-pkg/sourcelist.cc:355
  1935. #, c-format
  1936. msgid "Opening %s"
  1937. msgstr "Otvaram %s"
  1938. #: apt-pkg/sourcelist.cc:389
  1939. #, c-format
  1940. msgid "Malformed line %u in source list %s (type)"
  1941. msgstr ""
  1942. #: apt-pkg/sourcelist.cc:393
  1943. #, c-format
  1944. msgid "Type '%s' is not known on line %u in source list %s"
  1945. msgstr ""
  1946. #: apt-pkg/sourcelist.cc:413 apt-pkg/sourcelist.cc:419
  1947. #, c-format
  1948. msgid "Malformed stanza %u in source list %s (type)"
  1949. msgstr ""
  1950. #: apt-pkg/sourcelist.cc:429
  1951. #, c-format
  1952. msgid "Type '%s' is not known on stanza %u in source list %s"
  1953. msgstr ""
  1954. #: apt-pkg/cacheset.cc:500
  1955. #, c-format
  1956. msgid "Release '%s' for '%s' was not found"
  1957. msgstr ""
  1958. #: apt-pkg/cacheset.cc:503
  1959. #, c-format
  1960. msgid "Version '%s' for '%s' was not found"
  1961. msgstr ""
  1962. #: apt-pkg/cacheset.cc:738
  1963. #, fuzzy, c-format
  1964. msgid "Couldn't find task '%s'"
  1965. msgstr "Ne mogu otvoriti %s"
  1966. #: apt-pkg/cacheset.cc:744
  1967. #, c-format
  1968. msgid "Couldn't find any package by regex '%s'"
  1969. msgstr ""
  1970. #: apt-pkg/cacheset.cc:750
  1971. #, fuzzy, c-format
  1972. msgid "Couldn't find any package by glob '%s'"
  1973. msgstr "Ne mogu otvoriti %s"
  1974. #: apt-pkg/cacheset.cc:789
  1975. #, c-format
  1976. msgid "Can't select versions from package '%s' as it is purely virtual"
  1977. msgstr ""
  1978. #: apt-pkg/cacheset.cc:828
  1979. #, c-format
  1980. msgid "Can't select newest version from package '%s' as it is purely virtual"
  1981. msgstr ""
  1982. #: apt-pkg/cacheset.cc:836
  1983. #, c-format
  1984. msgid "Can't select candidate version from package %s as it has no candidate"
  1985. msgstr ""
  1986. #: apt-pkg/cacheset.cc:844
  1987. #, c-format
  1988. msgid "Can't select installed version from package %s as it is not installed"
  1989. msgstr ""
  1990. #: apt-pkg/cacheset.cc:852 apt-pkg/cacheset.cc:860
  1991. #, c-format
  1992. msgid ""
  1993. "Can't select installed nor candidate version from package '%s' as it has "
  1994. "neither of them"
  1995. msgstr ""
  1996. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  1997. #: apt-pkg/contrib/strutl.cc:420
  1998. #, c-format
  1999. msgid "%lid %lih %limin %lis"
  2000. msgstr ""
  2001. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2002. #: apt-pkg/contrib/strutl.cc:425
  2003. #, c-format
  2004. msgid "%lih %limin %lis"
  2005. msgstr ""
  2006. #. TRANSLATOR: min means minutes, s means seconds
  2007. #: apt-pkg/contrib/strutl.cc:430
  2008. #, c-format
  2009. msgid "%limin %lis"
  2010. msgstr ""
  2011. #. TRANSLATOR: s means seconds
  2012. #: apt-pkg/contrib/strutl.cc:435
  2013. #, c-format
  2014. msgid "%lis"
  2015. msgstr ""
  2016. #: apt-pkg/contrib/strutl.cc:1279
  2017. #, c-format
  2018. msgid "Selection %s not found"
  2019. msgstr ""
  2020. #: apt-pkg/contrib/fileutl.cc:197
  2021. #, c-format
  2022. msgid "Not using locking for read only lock file %s"
  2023. msgstr ""
  2024. #: apt-pkg/contrib/fileutl.cc:202
  2025. #, c-format
  2026. msgid "Could not open lock file %s"
  2027. msgstr ""
  2028. #: apt-pkg/contrib/fileutl.cc:225
  2029. #, c-format
  2030. msgid "Not using locking for nfs mounted lock file %s"
  2031. msgstr ""
  2032. #: apt-pkg/contrib/fileutl.cc:230
  2033. #, c-format
  2034. msgid "Could not get lock %s"
  2035. msgstr ""
  2036. #: apt-pkg/contrib/fileutl.cc:367 apt-pkg/contrib/fileutl.cc:481
  2037. #, c-format
  2038. msgid "List of files can't be created as '%s' is not a directory"
  2039. msgstr ""
  2040. #: apt-pkg/contrib/fileutl.cc:401
  2041. #, c-format
  2042. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2043. msgstr ""
  2044. #: apt-pkg/contrib/fileutl.cc:419
  2045. #, c-format
  2046. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2047. msgstr ""
  2048. #: apt-pkg/contrib/fileutl.cc:428
  2049. #, c-format
  2050. msgid ""
  2051. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2052. msgstr ""
  2053. #: apt-pkg/contrib/fileutl.cc:862
  2054. #, c-format
  2055. msgid "Sub-process %s received a segmentation fault."
  2056. msgstr ""
  2057. #: apt-pkg/contrib/fileutl.cc:864
  2058. #, c-format
  2059. msgid "Sub-process %s received signal %u."
  2060. msgstr ""
  2061. #: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:227
  2062. #, c-format
  2063. msgid "Sub-process %s returned an error code (%u)"
  2064. msgstr ""
  2065. #: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:220
  2066. #, c-format
  2067. msgid "Sub-process %s exited unexpectedly"
  2068. msgstr ""
  2069. #: apt-pkg/contrib/fileutl.cc:987
  2070. #, c-format
  2071. msgid "Problem closing the gzip file %s"
  2072. msgstr ""
  2073. #: apt-pkg/contrib/fileutl.cc:1194
  2074. #, c-format
  2075. msgid "Could not open file %s"
  2076. msgstr ""
  2077. #: apt-pkg/contrib/fileutl.cc:1253 apt-pkg/contrib/fileutl.cc:1300
  2078. #, fuzzy, c-format
  2079. msgid "Could not open file descriptor %d"
  2080. msgstr "Ne mogu otvoriti %s"
  2081. #: apt-pkg/contrib/fileutl.cc:1408 apt-pkg/contrib/fileutl.cc:2176
  2082. msgid "Failed to create subprocess IPC"
  2083. msgstr ""
  2084. #: apt-pkg/contrib/fileutl.cc:1466
  2085. msgid "Failed to exec compressor "
  2086. msgstr ""
  2087. #: apt-pkg/contrib/fileutl.cc:1607
  2088. #, c-format
  2089. msgid "read, still have %llu to read but none left"
  2090. msgstr ""
  2091. #: apt-pkg/contrib/fileutl.cc:1720 apt-pkg/contrib/fileutl.cc:1742
  2092. #, c-format
  2093. msgid "write, still have %llu to write but couldn't"
  2094. msgstr ""
  2095. #: apt-pkg/contrib/fileutl.cc:2008
  2096. #, fuzzy, c-format
  2097. msgid "Problem closing the file %s"
  2098. msgstr "Ne mogu ukloniti %s"
  2099. #: apt-pkg/contrib/fileutl.cc:2019
  2100. #, c-format
  2101. msgid "Problem renaming the file %s to %s"
  2102. msgstr ""
  2103. #: apt-pkg/contrib/fileutl.cc:2030
  2104. #, c-format
  2105. msgid "Problem unlinking the file %s"
  2106. msgstr ""
  2107. #: apt-pkg/contrib/fileutl.cc:2043
  2108. msgid "Problem syncing the file"
  2109. msgstr ""
  2110. #: apt-pkg/contrib/fileutl.cc:2146 cmdline/apt-extracttemplates.cc:258
  2111. #, fuzzy, c-format
  2112. msgid "Unable to mkstemp %s"
  2113. msgstr "Ne mogu kreirati %s"
  2114. #: apt-pkg/contrib/progress.cc:148
  2115. #, c-format
  2116. msgid "%c%s... Error!"
  2117. msgstr ""
  2118. #: apt-pkg/contrib/progress.cc:150
  2119. #, c-format
  2120. msgid "%c%s... Done"
  2121. msgstr ""
  2122. #: apt-pkg/contrib/progress.cc:181
  2123. msgid "..."
  2124. msgstr ""
  2125. #. Print the spinner
  2126. #: apt-pkg/contrib/progress.cc:197
  2127. #, c-format
  2128. msgid "%c%s... %u%%"
  2129. msgstr ""
  2130. #: apt-pkg/contrib/mmap.cc:79
  2131. msgid "Can't mmap an empty file"
  2132. msgstr ""
  2133. #: apt-pkg/contrib/mmap.cc:111
  2134. #, c-format
  2135. msgid "Couldn't duplicate file descriptor %i"
  2136. msgstr ""
  2137. #: apt-pkg/contrib/mmap.cc:119
  2138. #, c-format
  2139. msgid "Couldn't make mmap of %llu bytes"
  2140. msgstr ""
  2141. #: apt-pkg/contrib/mmap.cc:146
  2142. #, fuzzy
  2143. msgid "Unable to close mmap"
  2144. msgstr "Ne mogu kreirati %s"
  2145. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2146. #, fuzzy
  2147. msgid "Unable to synchronize mmap"
  2148. msgstr "Ne mogu kreirati %s"
  2149. #: apt-pkg/contrib/mmap.cc:290
  2150. #, c-format
  2151. msgid "Couldn't make mmap of %lu bytes"
  2152. msgstr ""
  2153. #: apt-pkg/contrib/mmap.cc:322
  2154. #, fuzzy
  2155. msgid "Failed to truncate file"
  2156. msgstr "Ne mogu ukloniti %s"
  2157. #: apt-pkg/contrib/mmap.cc:341
  2158. #, c-format
  2159. msgid ""
  2160. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2161. "Current value: %lu. (man 5 apt.conf)"
  2162. msgstr ""
  2163. #: apt-pkg/contrib/mmap.cc:446
  2164. #, c-format
  2165. msgid ""
  2166. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2167. "reached."
  2168. msgstr ""
  2169. #: apt-pkg/contrib/mmap.cc:449
  2170. msgid ""
  2171. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2172. msgstr ""
  2173. #: apt-pkg/contrib/cdromutl.cc:65
  2174. #, c-format
  2175. msgid "Unable to stat the mount point %s"
  2176. msgstr ""
  2177. #: apt-pkg/contrib/cdromutl.cc:247
  2178. msgid "Failed to stat the cdrom"
  2179. msgstr ""
  2180. #: apt-pkg/contrib/configuration.cc:516
  2181. #, c-format
  2182. msgid "Unrecognized type abbreviation: '%c'"
  2183. msgstr ""
  2184. #: apt-pkg/contrib/configuration.cc:630
  2185. #, c-format
  2186. msgid "Opening configuration file %s"
  2187. msgstr ""
  2188. #: apt-pkg/contrib/configuration.cc:798
  2189. #, c-format
  2190. msgid "Syntax error %s:%u: Block starts with no name."
  2191. msgstr ""
  2192. #: apt-pkg/contrib/configuration.cc:817
  2193. #, c-format
  2194. msgid "Syntax error %s:%u: Malformed tag"
  2195. msgstr ""
  2196. #: apt-pkg/contrib/configuration.cc:834
  2197. #, c-format
  2198. msgid "Syntax error %s:%u: Extra junk after value"
  2199. msgstr ""
  2200. #: apt-pkg/contrib/configuration.cc:874
  2201. #, c-format
  2202. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2203. msgstr ""
  2204. #: apt-pkg/contrib/configuration.cc:881
  2205. #, c-format
  2206. msgid "Syntax error %s:%u: Too many nested includes"
  2207. msgstr ""
  2208. #: apt-pkg/contrib/configuration.cc:885 apt-pkg/contrib/configuration.cc:890
  2209. #, c-format
  2210. msgid "Syntax error %s:%u: Included from here"
  2211. msgstr ""
  2212. #: apt-pkg/contrib/configuration.cc:894
  2213. #, c-format
  2214. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2215. msgstr ""
  2216. #: apt-pkg/contrib/configuration.cc:897
  2217. #, c-format
  2218. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2219. msgstr ""
  2220. #: apt-pkg/contrib/configuration.cc:947
  2221. #, c-format
  2222. msgid "Syntax error %s:%u: Extra junk at end of file"
  2223. msgstr ""
  2224. #: apt-pkg/contrib/cmndline.cc:127
  2225. #, c-format
  2226. msgid ""
  2227. "Command line option '%c' [from %s] is not understood in combination with the "
  2228. "other options."
  2229. msgstr ""
  2230. #: apt-pkg/contrib/cmndline.cc:152 apt-pkg/contrib/cmndline.cc:161
  2231. #: apt-pkg/contrib/cmndline.cc:169
  2232. #, c-format
  2233. msgid ""
  2234. "Command line option %s is not understood in combination with the other "
  2235. "options"
  2236. msgstr ""
  2237. #: apt-pkg/contrib/cmndline.cc:174
  2238. #, c-format
  2239. msgid "Command line option %s is not boolean"
  2240. msgstr ""
  2241. #: apt-pkg/contrib/cmndline.cc:215 apt-pkg/contrib/cmndline.cc:236
  2242. #, c-format
  2243. msgid "Option %s requires an argument."
  2244. msgstr ""
  2245. #: apt-pkg/contrib/cmndline.cc:249 apt-pkg/contrib/cmndline.cc:255
  2246. #, c-format
  2247. msgid "Option %s: Configuration item specification must have an =<val>."
  2248. msgstr ""
  2249. #: apt-pkg/contrib/cmndline.cc:284
  2250. #, c-format
  2251. msgid "Option %s requires an integer argument, not '%s'"
  2252. msgstr ""
  2253. #: apt-pkg/contrib/cmndline.cc:315
  2254. #, c-format
  2255. msgid "Option '%s' is too long"
  2256. msgstr ""
  2257. #: apt-pkg/contrib/cmndline.cc:347
  2258. #, c-format
  2259. msgid "Sense %s is not understood, try true or false."
  2260. msgstr ""
  2261. #: apt-pkg/contrib/cmndline.cc:397
  2262. #, c-format
  2263. msgid "Invalid operation %s"
  2264. msgstr ""
  2265. #: apt-pkg/deb/debmetaindex.cc:229
  2266. #, fuzzy, c-format
  2267. msgid "Unable to parse Release file %s"
  2268. msgstr "Ne mogu otvoriti DB datoteku %s"
  2269. #: apt-pkg/deb/debmetaindex.cc:238
  2270. #, c-format
  2271. msgid "No sections in Release file %s"
  2272. msgstr ""
  2273. #: apt-pkg/deb/debmetaindex.cc:278
  2274. #, c-format
  2275. msgid "No Hash entry in Release file %s"
  2276. msgstr ""
  2277. #: apt-pkg/deb/debmetaindex.cc:286
  2278. #, fuzzy, c-format
  2279. msgid "Invalid 'Date' entry in Release file %s"
  2280. msgstr "Ne mogu otvoriti DB datoteku %s"
  2281. #: apt-pkg/deb/debmetaindex.cc:307
  2282. #, c-format
  2283. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2284. msgstr ""
  2285. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2286. #: apt-pkg/deb/debmetaindex.cc:438 apt-pkg/deb/debmetaindex.cc:446
  2287. #: apt-pkg/deb/debmetaindex.cc:454 apt-pkg/deb/debmetaindex.cc:462
  2288. #: apt-pkg/deb/debmetaindex.cc:485
  2289. #, c-format
  2290. msgid "Conflicting values set for option %s concerning source %s %s"
  2291. msgstr ""
  2292. #: apt-pkg/deb/debmetaindex.cc:480
  2293. #, c-format
  2294. msgid "Invalid value set for option %s concerning source %s %s (%s)"
  2295. msgstr ""
  2296. #: apt-pkg/deb/dpkgpm.cc:110
  2297. #, fuzzy, c-format
  2298. msgid "Installing %s"
  2299. msgstr " Instalirano:"
  2300. #: apt-pkg/deb/dpkgpm.cc:111 apt-pkg/deb/dpkgpm.cc:1007
  2301. #, fuzzy, c-format
  2302. msgid "Configuring %s"
  2303. msgstr "Povezujem se sa %s"
  2304. #: apt-pkg/deb/dpkgpm.cc:112 apt-pkg/deb/dpkgpm.cc:1014
  2305. #, fuzzy, c-format
  2306. msgid "Removing %s"
  2307. msgstr "Otvaram %s"
  2308. #: apt-pkg/deb/dpkgpm.cc:113
  2309. #, fuzzy, c-format
  2310. msgid "Completely removing %s"
  2311. msgstr "Ne mogu ukloniti %s"
  2312. #: apt-pkg/deb/dpkgpm.cc:114
  2313. #, c-format
  2314. msgid "Noting disappearance of %s"
  2315. msgstr ""
  2316. #: apt-pkg/deb/dpkgpm.cc:115
  2317. #, c-format
  2318. msgid "Running post-installation trigger %s"
  2319. msgstr ""
  2320. #. FIXME: use a better string after freeze
  2321. #: apt-pkg/deb/dpkgpm.cc:838
  2322. #, c-format
  2323. msgid "Directory '%s' missing"
  2324. msgstr ""
  2325. #: apt-pkg/deb/dpkgpm.cc:853 apt-pkg/deb/dpkgpm.cc:875
  2326. #, fuzzy, c-format
  2327. msgid "Could not open file '%s'"
  2328. msgstr "Ne mogu otvoriti %s"
  2329. #: apt-pkg/deb/dpkgpm.cc:1000
  2330. #, fuzzy, c-format
  2331. msgid "Preparing %s"
  2332. msgstr "Otvaram %s"
  2333. #: apt-pkg/deb/dpkgpm.cc:1001
  2334. #, fuzzy, c-format
  2335. msgid "Unpacking %s"
  2336. msgstr "Otvaram %s"
  2337. #: apt-pkg/deb/dpkgpm.cc:1006
  2338. #, c-format
  2339. msgid "Preparing to configure %s"
  2340. msgstr ""
  2341. #: apt-pkg/deb/dpkgpm.cc:1008
  2342. #, fuzzy, c-format
  2343. msgid "Installed %s"
  2344. msgstr " Instalirano:"
  2345. #: apt-pkg/deb/dpkgpm.cc:1013
  2346. #, c-format
  2347. msgid "Preparing for removal of %s"
  2348. msgstr ""
  2349. #: apt-pkg/deb/dpkgpm.cc:1015
  2350. #, fuzzy, c-format
  2351. msgid "Removed %s"
  2352. msgstr "Preporučuje"
  2353. #: apt-pkg/deb/dpkgpm.cc:1020
  2354. #, c-format
  2355. msgid "Preparing to completely remove %s"
  2356. msgstr ""
  2357. #: apt-pkg/deb/dpkgpm.cc:1021
  2358. #, fuzzy, c-format
  2359. msgid "Completely removed %s"
  2360. msgstr "Ne mogu ukloniti %s"
  2361. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2362. #, fuzzy, c-format
  2363. msgid "Can not write log (%s)"
  2364. msgstr "Ne mogu zapisati na %s"
  2365. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2366. msgid "Is /dev/pts mounted?"
  2367. msgstr ""
  2368. #: apt-pkg/deb/dpkgpm.cc:1656
  2369. msgid "Operation was interrupted before it could finish"
  2370. msgstr ""
  2371. #: apt-pkg/deb/dpkgpm.cc:1718
  2372. msgid "No apport report written because MaxReports is reached already"
  2373. msgstr ""
  2374. #. check if its not a follow up error
  2375. #: apt-pkg/deb/dpkgpm.cc:1723
  2376. msgid "dependency problems - leaving unconfigured"
  2377. msgstr ""
  2378. #: apt-pkg/deb/dpkgpm.cc:1725
  2379. msgid ""
  2380. "No apport report written because the error message indicates its a followup "
  2381. "error from a previous failure."
  2382. msgstr ""
  2383. #: apt-pkg/deb/dpkgpm.cc:1731
  2384. msgid ""
  2385. "No apport report written because the error message indicates a disk full "
  2386. "error"
  2387. msgstr ""
  2388. #: apt-pkg/deb/dpkgpm.cc:1738
  2389. msgid ""
  2390. "No apport report written because the error message indicates a out of memory "
  2391. "error"
  2392. msgstr ""
  2393. #: apt-pkg/deb/dpkgpm.cc:1745 apt-pkg/deb/dpkgpm.cc:1751
  2394. msgid ""
  2395. "No apport report written because the error message indicates an issue on the "
  2396. "local system"
  2397. msgstr ""
  2398. #: apt-pkg/deb/dpkgpm.cc:1773
  2399. msgid ""
  2400. "No apport report written because the error message indicates a dpkg I/O error"
  2401. msgstr ""
  2402. #: apt-pkg/deb/debsystem.cc:88
  2403. #, c-format
  2404. msgid ""
  2405. "Unable to lock the administration directory (%s), is another process using "
  2406. "it?"
  2407. msgstr ""
  2408. #: apt-pkg/deb/debsystem.cc:91
  2409. #, c-format
  2410. msgid "Unable to lock the administration directory (%s), are you root?"
  2411. msgstr ""
  2412. #. TRANSLATORS: the %s contains the recovery command, usually
  2413. #. dpkg --configure -a
  2414. #: apt-pkg/deb/debsystem.cc:107
  2415. #, c-format
  2416. msgid ""
  2417. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2418. msgstr ""
  2419. #: apt-pkg/deb/debsystem.cc:125
  2420. msgid "Not locked"
  2421. msgstr ""
  2422. #: cmdline/apt-extracttemplates.cc:228
  2423. msgid ""
  2424. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2425. "\n"
  2426. "apt-extracttemplates is a tool to extract config and template info\n"
  2427. "from debian packages\n"
  2428. "\n"
  2429. "Options:\n"
  2430. " -h This help text\n"
  2431. " -t Set the temp dir\n"
  2432. " -c=? Read this configuration file\n"
  2433. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2434. msgstr ""
  2435. #: cmdline/apt-extracttemplates.cc:304
  2436. msgid "Cannot get debconf version. Is debconf installed?"
  2437. msgstr ""
  2438. "Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?"
  2439. #: ftparchive/apt-ftparchive.cc:188 ftparchive/apt-ftparchive.cc:368
  2440. msgid "Package extension list is too long"
  2441. msgstr ""
  2442. #: ftparchive/apt-ftparchive.cc:190 ftparchive/apt-ftparchive.cc:202
  2443. #: ftparchive/apt-ftparchive.cc:225 ftparchive/apt-ftparchive.cc:281
  2444. #: ftparchive/apt-ftparchive.cc:291 ftparchive/apt-ftparchive.cc:313
  2445. #, c-format
  2446. msgid "Error processing directory %s"
  2447. msgstr ""
  2448. #: ftparchive/apt-ftparchive.cc:279
  2449. msgid "Source extension list is too long"
  2450. msgstr ""
  2451. #: ftparchive/apt-ftparchive.cc:394
  2452. msgid "Error writing header to contents file"
  2453. msgstr ""
  2454. #: ftparchive/apt-ftparchive.cc:424
  2455. #, c-format
  2456. msgid "Error processing contents %s"
  2457. msgstr ""
  2458. #: ftparchive/apt-ftparchive.cc:616
  2459. msgid ""
  2460. "Usage: apt-ftparchive [options] command\n"
  2461. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2462. " sources srcpath [overridefile [pathprefix]]\n"
  2463. " contents path\n"
  2464. " release path\n"
  2465. " generate config [groups]\n"
  2466. " clean config\n"
  2467. "\n"
  2468. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2469. "many styles of generation from fully automated to functional replacements\n"
  2470. "for dpkg-scanpackages and dpkg-scansources\n"
  2471. "\n"
  2472. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2473. "Package file contains the contents of all the control fields from\n"
  2474. "each package as well as the MD5 hash and filesize. An override file\n"
  2475. "is supported to force the value of Priority and Section.\n"
  2476. "\n"
  2477. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2478. "The --source-override option can be used to specify a src override file\n"
  2479. "\n"
  2480. "The 'packages' and 'sources' command should be run in the root of the\n"
  2481. "tree. BinaryPath should point to the base of the recursive search and \n"
  2482. "override file should contain the override flags. Pathprefix is\n"
  2483. "appended to the filename fields if present. Example usage from the \n"
  2484. "Debian archive:\n"
  2485. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2486. " dists/potato/main/binary-i386/Packages\n"
  2487. "\n"
  2488. "Options:\n"
  2489. " -h This help text\n"
  2490. " --md5 Control MD5 generation\n"
  2491. " -s=? Source override file\n"
  2492. " -q Quiet\n"
  2493. " -d=? Select the optional caching database\n"
  2494. " --no-delink Enable delinking debug mode\n"
  2495. " --contents Control contents file generation\n"
  2496. " -c=? Read this configuration file\n"
  2497. " -o=? Set an arbitrary configuration option"
  2498. msgstr ""
  2499. #: ftparchive/apt-ftparchive.cc:812
  2500. msgid "No selections matched"
  2501. msgstr ""
  2502. #: ftparchive/apt-ftparchive.cc:892
  2503. #, c-format
  2504. msgid "Some files are missing in the package file group `%s'"
  2505. msgstr ""
  2506. #: ftparchive/cachedb.cc:68
  2507. #, c-format
  2508. msgid "DB was corrupted, file renamed to %s.old"
  2509. msgstr "DB je bila oštećena, datoteka preimenovana u %s.old"
  2510. #: ftparchive/cachedb.cc:86
  2511. #, c-format
  2512. msgid "DB is old, attempting to upgrade %s"
  2513. msgstr "DB je stara, pokušavam nadogradnju %s"
  2514. #: ftparchive/cachedb.cc:97
  2515. msgid ""
  2516. "DB format is invalid. If you upgraded from an older version of apt, please "
  2517. "remove and re-create the database."
  2518. msgstr ""
  2519. #: ftparchive/cachedb.cc:102
  2520. #, fuzzy, c-format
  2521. msgid "Unable to open DB file %s: %s"
  2522. msgstr "Ne mogu otvoriti DB datoteku %s"
  2523. #: ftparchive/cachedb.cc:185 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  2524. #: apt-inst/extract.cc:216
  2525. #, c-format
  2526. msgid "Failed to stat %s"
  2527. msgstr ""
  2528. #: ftparchive/cachedb.cc:327
  2529. #, fuzzy
  2530. msgid "Failed to read .dsc"
  2531. msgstr "Ne mogu ukloniti %s"
  2532. #: ftparchive/cachedb.cc:360
  2533. msgid "Archive has no control record"
  2534. msgstr "Arhiva nema kontrolnog zapisa"
  2535. #: ftparchive/cachedb.cc:527
  2536. msgid "Unable to get a cursor"
  2537. msgstr ""
  2538. #: ftparchive/writer.cc:104
  2539. #, c-format
  2540. msgid "W: Unable to read directory %s\n"
  2541. msgstr ""
  2542. #: ftparchive/writer.cc:109
  2543. #, c-format
  2544. msgid "W: Unable to stat %s\n"
  2545. msgstr ""
  2546. #: ftparchive/writer.cc:165
  2547. msgid "E: "
  2548. msgstr ""
  2549. #: ftparchive/writer.cc:167
  2550. msgid "W: "
  2551. msgstr ""
  2552. #: ftparchive/writer.cc:174
  2553. msgid "E: Errors apply to file "
  2554. msgstr ""
  2555. #: ftparchive/writer.cc:192 ftparchive/writer.cc:224
  2556. #, c-format
  2557. msgid "Failed to resolve %s"
  2558. msgstr ""
  2559. #: ftparchive/writer.cc:205
  2560. msgid "Tree walking failed"
  2561. msgstr ""
  2562. #: ftparchive/writer.cc:232
  2563. #, c-format
  2564. msgid "Failed to open %s"
  2565. msgstr "Ne mogu otvoriti %s"
  2566. #: ftparchive/writer.cc:291
  2567. #, c-format
  2568. msgid " DeLink %s [%s]\n"
  2569. msgstr ""
  2570. #: ftparchive/writer.cc:299
  2571. #, c-format
  2572. msgid "Failed to readlink %s"
  2573. msgstr ""
  2574. #: ftparchive/writer.cc:303
  2575. #, c-format
  2576. msgid "Failed to unlink %s"
  2577. msgstr ""
  2578. #: ftparchive/writer.cc:311
  2579. #, c-format
  2580. msgid "*** Failed to link %s to %s"
  2581. msgstr ""
  2582. #: ftparchive/writer.cc:321
  2583. #, c-format
  2584. msgid " DeLink limit of %sB hit.\n"
  2585. msgstr ""
  2586. #: ftparchive/writer.cc:426
  2587. msgid "Archive had no package field"
  2588. msgstr ""
  2589. #: ftparchive/writer.cc:434 ftparchive/writer.cc:698
  2590. #, c-format
  2591. msgid " %s has no override entry\n"
  2592. msgstr ""
  2593. #: ftparchive/writer.cc:501 ftparchive/writer.cc:855
  2594. #, c-format
  2595. msgid " %s maintainer is %s not %s\n"
  2596. msgstr ""
  2597. #: ftparchive/writer.cc:712
  2598. #, c-format
  2599. msgid " %s has no source override entry\n"
  2600. msgstr ""
  2601. #: ftparchive/writer.cc:716
  2602. #, c-format
  2603. msgid " %s has no binary override entry either\n"
  2604. msgstr ""
  2605. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  2606. msgid "realloc - Failed to allocate memory"
  2607. msgstr ""
  2608. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2609. #, c-format
  2610. msgid "Unable to open %s"
  2611. msgstr ""
  2612. #. skip spaces
  2613. #. find end of word
  2614. #: ftparchive/override.cc:68
  2615. #, c-format
  2616. msgid "Malformed override %s line %llu (%s)"
  2617. msgstr ""
  2618. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2619. #, c-format
  2620. msgid "Failed to read the override file %s"
  2621. msgstr ""
  2622. #: ftparchive/override.cc:166
  2623. #, c-format
  2624. msgid "Malformed override %s line %llu #1"
  2625. msgstr ""
  2626. #: ftparchive/override.cc:178
  2627. #, c-format
  2628. msgid "Malformed override %s line %llu #2"
  2629. msgstr ""
  2630. #: ftparchive/override.cc:191
  2631. #, c-format
  2632. msgid "Malformed override %s line %llu #3"
  2633. msgstr ""
  2634. #: ftparchive/multicompress.cc:72
  2635. #, c-format
  2636. msgid "Unknown compression algorithm '%s'"
  2637. msgstr ""
  2638. #: ftparchive/multicompress.cc:102
  2639. #, c-format
  2640. msgid "Compressed output %s needs a compression set"
  2641. msgstr ""
  2642. #: ftparchive/multicompress.cc:193
  2643. msgid "Failed to fork"
  2644. msgstr ""
  2645. #: ftparchive/multicompress.cc:206
  2646. msgid "Compress child"
  2647. msgstr ""
  2648. #: ftparchive/multicompress.cc:229
  2649. #, c-format
  2650. msgid "Internal error, failed to create %s"
  2651. msgstr ""
  2652. #: ftparchive/multicompress.cc:302
  2653. msgid "IO to subprocess/file failed"
  2654. msgstr ""
  2655. #: ftparchive/multicompress.cc:340
  2656. msgid "Failed to read while computing MD5"
  2657. msgstr ""
  2658. #: ftparchive/multicompress.cc:356
  2659. #, c-format
  2660. msgid "Problem unlinking %s"
  2661. msgstr ""
  2662. #: ftparchive/multicompress.cc:371 apt-inst/extract.cc:194
  2663. #, c-format
  2664. msgid "Failed to rename %s to %s"
  2665. msgstr ""
  2666. #: cmdline/apt-internal-solver.cc:50
  2667. msgid ""
  2668. "Usage: apt-internal-solver\n"
  2669. "\n"
  2670. "apt-internal-solver is an interface to use the current internal\n"
  2671. "like an external resolver for the APT family for debugging or alike\n"
  2672. "\n"
  2673. "Options:\n"
  2674. " -h This help text.\n"
  2675. " -q Loggable output - no progress indicator\n"
  2676. " -c=? Read this configuration file\n"
  2677. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2678. msgstr ""
  2679. #: cmdline/apt-sortpkgs.cc:91
  2680. msgid "Unknown package record!"
  2681. msgstr "Nepoznat zapis paketa\""
  2682. #: cmdline/apt-sortpkgs.cc:154
  2683. msgid ""
  2684. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  2685. "\n"
  2686. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  2687. "to indicate what kind of file it is.\n"
  2688. "\n"
  2689. "Options:\n"
  2690. " -h This help text\n"
  2691. " -s Use source file sorting\n"
  2692. " -c=? Read this configuration file\n"
  2693. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2694. msgstr ""
  2695. #: apt-inst/filelist.cc:380
  2696. msgid "DropNode called on still linked node"
  2697. msgstr ""
  2698. #: apt-inst/filelist.cc:412
  2699. msgid "Failed to locate the hash element!"
  2700. msgstr ""
  2701. #: apt-inst/filelist.cc:459
  2702. msgid "Failed to allocate diversion"
  2703. msgstr ""
  2704. #: apt-inst/filelist.cc:464
  2705. msgid "Internal error in AddDiversion"
  2706. msgstr ""
  2707. #: apt-inst/filelist.cc:477
  2708. #, c-format
  2709. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  2710. msgstr ""
  2711. #: apt-inst/filelist.cc:506
  2712. #, c-format
  2713. msgid "Double add of diversion %s -> %s"
  2714. msgstr ""
  2715. #: apt-inst/filelist.cc:549
  2716. #, c-format
  2717. msgid "Duplicate conf file %s/%s"
  2718. msgstr ""
  2719. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  2720. #, c-format
  2721. msgid "The path %s is too long"
  2722. msgstr ""
  2723. #: apt-inst/extract.cc:132
  2724. #, c-format
  2725. msgid "Unpacking %s more than once"
  2726. msgstr ""
  2727. #: apt-inst/extract.cc:142
  2728. #, c-format
  2729. msgid "The directory %s is diverted"
  2730. msgstr ""
  2731. #: apt-inst/extract.cc:152
  2732. #, c-format
  2733. msgid "The package is trying to write to the diversion target %s/%s"
  2734. msgstr ""
  2735. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  2736. msgid "The diversion path is too long"
  2737. msgstr ""
  2738. #: apt-inst/extract.cc:249
  2739. #, c-format
  2740. msgid "The directory %s is being replaced by a non-directory"
  2741. msgstr ""
  2742. #: apt-inst/extract.cc:289
  2743. msgid "Failed to locate node in its hash bucket"
  2744. msgstr ""
  2745. #: apt-inst/extract.cc:293
  2746. msgid "The path is too long"
  2747. msgstr "Putanja je preduga"
  2748. #: apt-inst/extract.cc:421
  2749. #, c-format
  2750. msgid "Overwrite package match with no version for %s"
  2751. msgstr ""
  2752. #: apt-inst/extract.cc:438
  2753. #, c-format
  2754. msgid "File %s/%s overwrites the one in the package %s"
  2755. msgstr ""
  2756. #: apt-inst/extract.cc:498
  2757. #, c-format
  2758. msgid "Unable to stat %s"
  2759. msgstr ""
  2760. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  2761. #, fuzzy, c-format
  2762. msgid "Failed to write file %s"
  2763. msgstr "Ne mogu ukloniti %s"
  2764. #: apt-inst/dirstream.cc:104
  2765. #, c-format
  2766. msgid "Failed to close file %s"
  2767. msgstr ""
  2768. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  2769. #: apt-inst/deb/debfile.cc:63
  2770. #, c-format
  2771. msgid "This is not a valid DEB archive, missing '%s' member"
  2772. msgstr ""
  2773. #: apt-inst/deb/debfile.cc:132
  2774. #, c-format
  2775. msgid "Internal error, could not locate member %s"
  2776. msgstr ""
  2777. #: apt-inst/deb/debfile.cc:227
  2778. msgid "Unparsable control file"
  2779. msgstr ""
  2780. #: apt-inst/contrib/arfile.cc:76
  2781. msgid "Invalid archive signature"
  2782. msgstr ""
  2783. #: apt-inst/contrib/arfile.cc:84
  2784. msgid "Error reading archive member header"
  2785. msgstr ""
  2786. #: apt-inst/contrib/arfile.cc:96
  2787. #, c-format
  2788. msgid "Invalid archive member header %s"
  2789. msgstr ""
  2790. #: apt-inst/contrib/arfile.cc:108
  2791. msgid "Invalid archive member header"
  2792. msgstr ""
  2793. #: apt-inst/contrib/arfile.cc:137
  2794. msgid "Archive is too short"
  2795. msgstr "Arhiva je prekratka"
  2796. #: apt-inst/contrib/arfile.cc:141
  2797. msgid "Failed to read the archive headers"
  2798. msgstr ""
  2799. #: apt-inst/contrib/extracttar.cc:123
  2800. msgid "Failed to create pipes"
  2801. msgstr ""
  2802. #: apt-inst/contrib/extracttar.cc:150
  2803. msgid "Failed to exec gzip "
  2804. msgstr "Ne mogu izvršiti gzip"
  2805. #: apt-inst/contrib/extracttar.cc:187 apt-inst/contrib/extracttar.cc:217
  2806. msgid "Corrupted archive"
  2807. msgstr "Oštećena arhiva"
  2808. #: apt-inst/contrib/extracttar.cc:202
  2809. msgid "Tar checksum failed, archive corrupted"
  2810. msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oštećena"
  2811. #: apt-inst/contrib/extracttar.cc:307
  2812. #, c-format
  2813. msgid "Unknown TAR header type %u, member %s"
  2814. msgstr ""
  2815. #, fuzzy
  2816. #~ msgid "Unable to find hash sum for '%s' in Release file"
  2817. #~ msgstr "Ne mogu otvoriti DB datoteku %s"
  2818. #~ msgid "Done"
  2819. #~ msgstr "Urađeno"
  2820. #, fuzzy
  2821. #~ msgid "No keyring installed in %s."
  2822. #~ msgstr "Odustajem od instalacije."
  2823. #~ msgid "%s not a valid DEB package."
  2824. #~ msgstr "%s nije ispravan DEB paket."
  2825. #~ msgid "Reading file listing"
  2826. #~ msgstr "Čitam spisak datoteke"
  2827. #, fuzzy
  2828. #~ msgid "Couldn't open pipe for %s"
  2829. #~ msgstr "Ne mogu otvoriti %s"
  2830. #, fuzzy
  2831. #~ msgid "openpty failed\n"
  2832. #~ msgstr "Povezivanje neuspješno"
  2833. #~ msgid "File date has changed %s"
  2834. #~ msgstr "Datum datoteke je promijenjen %s"