bs.po 79 KB

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