bs.po 81 KB

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