bs.po 82 KB

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