bs.po 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: dpkg 1.13\n"
  9. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  10. "POT-Creation-Date: 2010-05-24 21:01+0200\n"
  11. "PO-Revision-Date: 2009-11-14 17:44+0100\n"
  12. "Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
  13. "Language-Team: Bosnian <lokal@linux.org.ba>\n"
  14. "Language: bs\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=utf-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: lib/dpkg/buffer.c:254
  19. #, c-format
  20. msgid "failed to read on buffer copy for %s"
  21. msgstr ""
  22. #: lib/dpkg/buffer.c:256
  23. #, c-format
  24. msgid "failed in write on buffer copy for %s"
  25. msgstr ""
  26. #: lib/dpkg/buffer.c:258
  27. #, c-format
  28. msgid "short read on buffer copy for %s"
  29. msgstr ""
  30. #: lib/dpkg/command.c:182
  31. #, c-format
  32. msgid "unable to execute %s (%s)"
  33. msgstr ""
  34. #: lib/dpkg/compress.c:76
  35. #, c-format
  36. msgid "%s: decompression"
  37. msgstr ""
  38. #: lib/dpkg/compress.c:83
  39. #, c-format
  40. msgid "%s: compression"
  41. msgstr ""
  42. #: lib/dpkg/compress.c:107
  43. #, c-format
  44. msgid "%s: error binding input to gzip stream"
  45. msgstr ""
  46. #: lib/dpkg/compress.c:119
  47. #, c-format
  48. msgid "%s: internal gzip read error: '%s'"
  49. msgstr ""
  50. #: lib/dpkg/compress.c:127 lib/dpkg/compress.c:131
  51. #, c-format
  52. msgid "%s: internal gzip write error"
  53. msgstr ""
  54. #: lib/dpkg/compress.c:147
  55. #, c-format
  56. msgid "%s: error binding output to gzip stream"
  57. msgstr ""
  58. #: lib/dpkg/compress.c:154
  59. #, c-format
  60. msgid "%s: internal gzip read error"
  61. msgstr ""
  62. #: lib/dpkg/compress.c:164
  63. #, c-format
  64. msgid "%s: internal gzip write error: '%s'"
  65. msgstr ""
  66. #: lib/dpkg/compress.c:177
  67. #, c-format
  68. msgid "%s: internal gzip write error: %s"
  69. msgstr ""
  70. #: lib/dpkg/compress.c:219
  71. #, c-format
  72. msgid "%s: error binding input to bzip2 stream"
  73. msgstr ""
  74. #: lib/dpkg/compress.c:231
  75. #, c-format
  76. msgid "%s: internal bzip2 read error: '%s'"
  77. msgstr ""
  78. #: lib/dpkg/compress.c:239 lib/dpkg/compress.c:243 lib/dpkg/compress.c:295
  79. #, c-format
  80. msgid "%s: internal bzip2 write error"
  81. msgstr ""
  82. #: lib/dpkg/compress.c:259
  83. #, c-format
  84. msgid "%s: error binding output to bzip2 stream"
  85. msgstr ""
  86. #: lib/dpkg/compress.c:266
  87. #, c-format
  88. msgid "%s: internal bzip2 read error"
  89. msgstr ""
  90. #: lib/dpkg/compress.c:276 lib/dpkg/compress.c:287
  91. #, c-format
  92. msgid "%s: internal bzip2 write error: '%s'"
  93. msgstr ""
  94. #: lib/dpkg/compress.c:283
  95. msgid "unexpected bzip2 error"
  96. msgstr ""
  97. #: lib/dpkg/database.c:201
  98. #, c-format
  99. msgid "size %7d occurs %5d times\n"
  100. msgstr ""
  101. #: lib/dpkg/dbmodify.c:65
  102. #, c-format
  103. msgid ""
  104. "updates directory contains file `%.250s' whose name is too long (length=%d, "
  105. "max=%d)"
  106. msgstr ""
  107. #: lib/dpkg/dbmodify.c:69
  108. #, c-format
  109. msgid ""
  110. "updates directory contains files with different length names (both %d and %d)"
  111. msgstr ""
  112. #: lib/dpkg/dbmodify.c:83
  113. #, c-format
  114. msgid "cannot scan updates directory `%.255s'"
  115. msgstr ""
  116. #: lib/dpkg/dbmodify.c:99
  117. #, c-format
  118. msgid "failed to remove incorporated update file %.255s"
  119. msgstr ""
  120. # Now that we have verified everything its time to actually
  121. # * build something. Lets start by making the ar-wrapper.
  122. #: lib/dpkg/dbmodify.c:119 dpkg-deb/build.c:406
  123. #, c-format
  124. msgid "unable to create `%.255s'"
  125. msgstr ""
  126. #: lib/dpkg/dbmodify.c:123
  127. #, c-format
  128. msgid "unable to fill %.250s with padding"
  129. msgstr ""
  130. #: lib/dpkg/dbmodify.c:125
  131. #, c-format
  132. msgid "unable to flush %.250s after padding"
  133. msgstr ""
  134. #: lib/dpkg/dbmodify.c:127
  135. #, c-format
  136. msgid "unable to seek to start of %.250s after padding"
  137. msgstr ""
  138. #: lib/dpkg/dbmodify.c:161
  139. msgid "you do not have permission to lock the dpkg status database"
  140. msgstr ""
  141. #: lib/dpkg/dbmodify.c:162
  142. msgid "unable to open/create status database lockfile"
  143. msgstr ""
  144. #: lib/dpkg/dbmodify.c:167
  145. msgid "unable to lock dpkg status database"
  146. msgstr ""
  147. #: lib/dpkg/dbmodify.c:168
  148. msgid "status database area is locked by another process"
  149. msgstr ""
  150. #: lib/dpkg/dbmodify.c:197
  151. msgid "requested operation requires superuser privilege"
  152. msgstr ""
  153. #: lib/dpkg/dbmodify.c:202
  154. msgid "unable to access dpkg status area"
  155. msgstr ""
  156. #: lib/dpkg/dbmodify.c:204
  157. msgid "operation requires read/write access to dpkg status area"
  158. msgstr ""
  159. #: lib/dpkg/dbmodify.c:252
  160. #, c-format
  161. msgid "failed to remove my own update file %.255s"
  162. msgstr ""
  163. #: lib/dpkg/dbmodify.c:293
  164. #, c-format
  165. msgid "unable to write updated status of `%.250s'"
  166. msgstr ""
  167. #: lib/dpkg/dbmodify.c:295
  168. #, c-format
  169. msgid "unable to flush updated status of `%.250s'"
  170. msgstr ""
  171. #: lib/dpkg/dbmodify.c:297
  172. #, c-format
  173. msgid "unable to truncate for updated status of `%.250s'"
  174. msgstr ""
  175. #: lib/dpkg/dbmodify.c:299
  176. #, c-format
  177. msgid "unable to fsync updated status of `%.250s'"
  178. msgstr ""
  179. #: lib/dpkg/dbmodify.c:301
  180. #, c-format
  181. msgid "unable to close updated status of `%.250s'"
  182. msgstr ""
  183. #: lib/dpkg/dbmodify.c:304
  184. #, c-format
  185. msgid "unable to install updated status of `%.250s'"
  186. msgstr ""
  187. #: lib/dpkg/dump.c:351
  188. #, c-format
  189. msgid "failed to write details of `%.50s' to `%.250s'"
  190. msgstr ""
  191. #: lib/dpkg/dump.c:380
  192. #, c-format
  193. msgid "failed to open '%s' for writing %s database"
  194. msgstr ""
  195. #: lib/dpkg/dump.c:383
  196. #, c-format
  197. msgid "unable to set buffering on %s database file"
  198. msgstr ""
  199. #: lib/dpkg/dump.c:394
  200. #, c-format
  201. msgid "failed to write %s database record about '%.50s' to '%.250s'"
  202. msgstr ""
  203. #: lib/dpkg/dump.c:402
  204. #, c-format
  205. msgid "failed to flush %s database to '%.250s'"
  206. msgstr ""
  207. #: lib/dpkg/dump.c:404
  208. #, c-format
  209. msgid "failed to fsync %s database to '%.250s'"
  210. msgstr ""
  211. #: lib/dpkg/dump.c:407
  212. #, c-format
  213. msgid "failed to close '%.250s' after writing %s database"
  214. msgstr ""
  215. #: lib/dpkg/dump.c:411
  216. #, c-format
  217. msgid "failed to link '%.250s' to '%.250s' for backup of %s database"
  218. msgstr ""
  219. #: lib/dpkg/dump.c:414
  220. #, c-format
  221. msgid "failed to install '%.250s' as '%.250s' containing %s database"
  222. msgstr ""
  223. #: lib/dpkg/ehandle.c:91
  224. #, c-format
  225. msgid ""
  226. "%s: unrecoverable fatal error, aborting:\n"
  227. " %s\n"
  228. msgstr ""
  229. #: lib/dpkg/ehandle.c:107
  230. msgid "out of memory pushing error handler: "
  231. msgstr ""
  232. #: lib/dpkg/ehandle.c:123
  233. #, c-format
  234. msgid ""
  235. "%s: error while cleaning up:\n"
  236. " %s\n"
  237. msgstr ""
  238. #: lib/dpkg/ehandle.c:138
  239. #, c-format
  240. msgid "dpkg: too many nested errors during error recovery !!\n"
  241. msgstr ""
  242. #: lib/dpkg/ehandle.c:211
  243. msgid "out of memory for new cleanup entry with many arguments"
  244. msgstr ""
  245. #: lib/dpkg/ehandle.c:223
  246. msgid "out of memory for new cleanup entry"
  247. msgstr ""
  248. #: lib/dpkg/ehandle.c:288
  249. #, fuzzy, c-format
  250. msgid "%s: warning: %s\n"
  251. msgstr "upozorenje"
  252. #: lib/dpkg/ehandle.c:292
  253. #, c-format
  254. msgid "error writing `%s'"
  255. msgstr ""
  256. #: lib/dpkg/ehandle.c:305
  257. #, c-format
  258. msgid "%s:%s:%d: internal error: %s\n"
  259. msgstr ""
  260. #: lib/dpkg/fields.c:46
  261. #, c-format
  262. msgid "%s is missing"
  263. msgstr ""
  264. #: lib/dpkg/fields.c:55
  265. #, c-format
  266. msgid "`%.*s' is not allowed for %s"
  267. msgstr ""
  268. #: lib/dpkg/fields.c:63
  269. #, c-format
  270. msgid "junk after %s"
  271. msgstr ""
  272. #: lib/dpkg/fields.c:75
  273. #, c-format
  274. msgid "invalid package name (%.250s)"
  275. msgstr ""
  276. #: lib/dpkg/fields.c:90
  277. #, c-format
  278. msgid "empty file details field `%s'"
  279. msgstr ""
  280. #: lib/dpkg/fields.c:93
  281. #, c-format
  282. msgid "file details field `%s' not allowed in status file"
  283. msgstr ""
  284. #: lib/dpkg/fields.c:106
  285. #, c-format
  286. msgid "too many values in file details field `%s' (compared to others)"
  287. msgstr ""
  288. #: lib/dpkg/fields.c:120
  289. #, c-format
  290. msgid "too few values in file details field `%s' (compared to others)"
  291. msgstr ""
  292. #: lib/dpkg/fields.c:138
  293. msgid "yes/no in boolean field"
  294. msgstr ""
  295. #: lib/dpkg/fields.c:154
  296. msgid "word in `priority' field"
  297. msgstr ""
  298. #: lib/dpkg/fields.c:166
  299. msgid "value for `status' field not allowed in this context"
  300. msgstr ""
  301. #: lib/dpkg/fields.c:170
  302. msgid "first (want) word in `status' field"
  303. msgstr ""
  304. #: lib/dpkg/fields.c:172
  305. msgid "second (error) word in `status' field"
  306. msgstr ""
  307. #: lib/dpkg/fields.c:174
  308. msgid "third (status) word in `status' field"
  309. msgstr ""
  310. #: lib/dpkg/fields.c:186
  311. #, c-format
  312. msgid "error in Version string `%.250s': %.250s"
  313. msgstr ""
  314. #: lib/dpkg/fields.c:195
  315. msgid "obsolete `Revision' or `Package-Revision' field used"
  316. msgstr ""
  317. #: lib/dpkg/fields.c:212
  318. msgid "value for `config-version' field not allowed in this context"
  319. msgstr ""
  320. #: lib/dpkg/fields.c:219
  321. #, c-format
  322. msgid "error in Config-Version string `%.250s': %.250s"
  323. msgstr ""
  324. #: lib/dpkg/fields.c:244
  325. #, c-format
  326. msgid "value for `conffiles' has malformatted line `%.*s'"
  327. msgstr ""
  328. #: lib/dpkg/fields.c:263
  329. #, c-format
  330. msgid "value for `conffiles' has line starting with non-space `%c'"
  331. msgstr ""
  332. #: lib/dpkg/fields.c:280
  333. msgid "root or null directory is listed as a conffile"
  334. msgstr ""
  335. #: lib/dpkg/fields.c:333
  336. #, c-format
  337. msgid ""
  338. "`%s' field, missing package name, or garbage where package name expected"
  339. msgstr ""
  340. #: lib/dpkg/fields.c:338
  341. #, c-format
  342. msgid "`%s' field, invalid package name `%.255s': %s"
  343. msgstr ""
  344. #: lib/dpkg/fields.c:368
  345. #, c-format
  346. msgid ""
  347. "`%s' field, reference to `%.255s':\n"
  348. " bad version relationship %c%c"
  349. msgstr ""
  350. #: lib/dpkg/fields.c:374
  351. #, c-format
  352. msgid ""
  353. "`%s' field, reference to `%.255s':\n"
  354. " `%c' is obsolete, use `%c=' or `%c%c' instead"
  355. msgstr ""
  356. #: lib/dpkg/fields.c:384
  357. #, c-format
  358. msgid ""
  359. "`%s' field, reference to `%.255s':\n"
  360. " implicit exact match on version number, suggest using `=' instead"
  361. msgstr ""
  362. #: lib/dpkg/fields.c:392
  363. msgid "Only exact versions may be used for Provides"
  364. msgstr ""
  365. #: lib/dpkg/fields.c:396
  366. #, c-format
  367. msgid ""
  368. "`%s' field, reference to `%.255s':\n"
  369. " version value starts with non-alphanumeric, suggest adding a space"
  370. msgstr ""
  371. #: lib/dpkg/fields.c:413 lib/dpkg/fields.c:417
  372. #, c-format
  373. msgid "`%s' field, reference to `%.255s': version contains `%c'"
  374. msgstr ""
  375. #: lib/dpkg/fields.c:421
  376. #, c-format
  377. msgid "`%s' field, reference to `%.255s': version unterminated"
  378. msgstr ""
  379. #: lib/dpkg/fields.c:429
  380. #, c-format
  381. msgid "`%s' field, reference to `%.255s': error in version: %.255s"
  382. msgstr ""
  383. #: lib/dpkg/fields.c:440
  384. #, c-format
  385. msgid "`%s' field, syntax error after reference to package `%.255s'"
  386. msgstr ""
  387. #: lib/dpkg/fields.c:447
  388. #, c-format
  389. msgid "alternatives (`|') not allowed in %s field"
  390. msgstr ""
  391. #: lib/dpkg/fields.c:501
  392. msgid "value for `triggers-pending' field not allowed in this context"
  393. msgstr ""
  394. #: lib/dpkg/fields.c:508
  395. #, c-format
  396. msgid "illegal pending trigger name `%.255s': %s"
  397. msgstr ""
  398. #: lib/dpkg/fields.c:512
  399. #, c-format
  400. msgid "duplicate pending trigger `%.255s'"
  401. msgstr ""
  402. #: lib/dpkg/fields.c:526
  403. msgid "value for `triggers-awaited' field not allowed in this context"
  404. msgstr ""
  405. #: lib/dpkg/fields.c:533
  406. #, c-format
  407. msgid "illegal package name in awaited trigger `%.255s': %s"
  408. msgstr ""
  409. #: lib/dpkg/fields.c:539
  410. #, c-format
  411. msgid "duplicate awaited trigger package `%.255s'"
  412. msgstr ""
  413. #: lib/dpkg/file.c:45
  414. #, c-format
  415. msgid "unable to stat source file '%.250s'"
  416. msgstr ""
  417. #: lib/dpkg/file.c:49
  418. #, c-format
  419. msgid "unable to change ownership of target file '%.250s'"
  420. msgstr ""
  421. #: lib/dpkg/file.c:53
  422. #, c-format
  423. msgid "unable to set mode of target file '%.250s'"
  424. msgstr ""
  425. #: lib/dpkg/file.c:68
  426. msgid "unable to unlock dpkg status database"
  427. msgstr ""
  428. #: lib/dpkg/log.c:52
  429. #, c-format
  430. msgid "couldn't open log `%s': %s\n"
  431. msgstr ""
  432. #: lib/dpkg/log.c:100
  433. #, c-format
  434. msgid "unable to write to status fd %d"
  435. msgstr ""
  436. #: lib/dpkg/mlib.c:44
  437. #, c-format
  438. msgid "malloc failed (%ld bytes)"
  439. msgstr ""
  440. #: lib/dpkg/mlib.c:57
  441. #, c-format
  442. msgid "realloc failed (%ld bytes)"
  443. msgstr ""
  444. #: lib/dpkg/mlib.c:71
  445. msgid "failed to allocate memory"
  446. msgstr ""
  447. #: lib/dpkg/mlib.c:83
  448. #, c-format
  449. msgid "failed to dup for std%s"
  450. msgstr ""
  451. #: lib/dpkg/mlib.c:84
  452. #, c-format
  453. msgid "failed to dup for fd %d"
  454. msgstr ""
  455. #: lib/dpkg/mlib.c:90
  456. msgid "failed to create pipe"
  457. msgstr ""
  458. #: lib/dpkg/mlib.c:98
  459. #, c-format
  460. msgid "error writing to '%s'"
  461. msgstr ""
  462. #: lib/dpkg/mlib.c:105
  463. #, c-format
  464. msgid "unable to read filedescriptor flags for %.250s"
  465. msgstr ""
  466. #: lib/dpkg/mlib.c:107
  467. #, c-format
  468. msgid "unable to set close-on-exec flag for %.250s"
  469. msgstr ""
  470. #: lib/dpkg/myopt.c:61
  471. #, fuzzy, c-format
  472. msgid "configuration error: %s:%d: %s"
  473. msgstr ""
  474. "\n"
  475. "Konfiguracijska datoteka `%s'"
  476. #: lib/dpkg/myopt.c:73
  477. #, c-format
  478. msgid "failed to open configuration file '%.255s' for reading: %s"
  479. msgstr ""
  480. #: lib/dpkg/myopt.c:100
  481. #, c-format
  482. msgid "unbalanced quotes in '%s'"
  483. msgstr ""
  484. #: lib/dpkg/myopt.c:115
  485. #, c-format
  486. msgid "unknown option '%s'"
  487. msgstr ""
  488. #: lib/dpkg/myopt.c:119
  489. #, c-format
  490. msgid "'%s' needs a value"
  491. msgstr ""
  492. #: lib/dpkg/myopt.c:125
  493. #, c-format
  494. msgid "'%s' does not take a value"
  495. msgstr ""
  496. #: lib/dpkg/myopt.c:130
  497. #, c-format
  498. msgid "read error in configuration file `%.255s'"
  499. msgstr ""
  500. #: lib/dpkg/myopt.c:131
  501. #, c-format
  502. msgid "error closing configuration file `%.255s'"
  503. msgstr ""
  504. #: lib/dpkg/myopt.c:168
  505. #, c-format
  506. msgid "error opening configuration directory '%s'"
  507. msgstr ""
  508. #: lib/dpkg/myopt.c:229
  509. #, c-format
  510. msgid "unknown option --%s"
  511. msgstr ""
  512. #: lib/dpkg/myopt.c:233
  513. #, c-format
  514. msgid "--%s option takes a value"
  515. msgstr ""
  516. #: lib/dpkg/myopt.c:238
  517. #, c-format
  518. msgid "--%s option does not take a value"
  519. msgstr ""
  520. #: lib/dpkg/myopt.c:245
  521. #, c-format
  522. msgid "unknown option -%c"
  523. msgstr ""
  524. #: lib/dpkg/myopt.c:250
  525. #, c-format
  526. msgid "-%c option takes a value"
  527. msgstr ""
  528. #: lib/dpkg/myopt.c:258
  529. #, c-format
  530. msgid "-%c option does not take a value"
  531. msgstr ""
  532. #: lib/dpkg/parse.c:116
  533. #, c-format
  534. msgid "failed to open package info file `%.255s' for reading"
  535. msgstr ""
  536. #: lib/dpkg/parse.c:121
  537. #, c-format
  538. msgid "can't stat package info file `%.255s'"
  539. msgstr ""
  540. #: lib/dpkg/parse.c:127
  541. #, c-format
  542. msgid "can't mmap package info file `%.255s'"
  543. msgstr ""
  544. #: lib/dpkg/parse.c:131
  545. #, c-format
  546. msgid "copy info file `%.255s'"
  547. msgstr ""
  548. #: lib/dpkg/parse.c:162
  549. #, c-format
  550. msgid "EOF after field name `%.*s'"
  551. msgstr ""
  552. #: lib/dpkg/parse.c:165
  553. #, c-format
  554. msgid "newline in field name `%.*s'"
  555. msgstr ""
  556. #: lib/dpkg/parse.c:168
  557. #, c-format
  558. msgid "MSDOS EOF (^Z) in field name `%.*s'"
  559. msgstr ""
  560. #: lib/dpkg/parse.c:172
  561. #, c-format
  562. msgid "field name `%.*s' must be followed by colon"
  563. msgstr ""
  564. #: lib/dpkg/parse.c:181
  565. #, c-format
  566. msgid "EOF before value of field `%.*s' (missing final newline)"
  567. msgstr ""
  568. #: lib/dpkg/parse.c:185
  569. #, c-format
  570. msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
  571. msgstr ""
  572. #: lib/dpkg/parse.c:199
  573. #, c-format
  574. msgid "EOF during value of field `%.*s' (missing final newline)"
  575. msgstr ""
  576. #: lib/dpkg/parse.c:224
  577. #, c-format
  578. msgid "duplicate value for `%s' field"
  579. msgstr ""
  580. #: lib/dpkg/parse.c:229
  581. #, c-format
  582. msgid "user-defined field name `%.*s' too short"
  583. msgstr ""
  584. #: lib/dpkg/parse.c:235
  585. #, c-format
  586. msgid "duplicate value for user-defined field `%.*s'"
  587. msgstr ""
  588. #: lib/dpkg/parse.c:249
  589. msgid "several package info entries found, only one allowed"
  590. msgstr ""
  591. #: lib/dpkg/parse.c:274
  592. msgid "Configured-Version for package with inappropriate Status"
  593. msgstr ""
  594. #: lib/dpkg/parse.c:284
  595. #, c-format
  596. msgid "package has status %s but triggers are awaited"
  597. msgstr ""
  598. #: lib/dpkg/parse.c:288
  599. msgid "package has status triggers-awaited but no triggers awaited"
  600. msgstr ""
  601. #: lib/dpkg/parse.c:295
  602. #, c-format
  603. msgid "package has status %s but triggers are pending"
  604. msgstr ""
  605. #: lib/dpkg/parse.c:299
  606. msgid "package has status triggers-pending but no triggers pending"
  607. msgstr ""
  608. #: lib/dpkg/parse.c:310
  609. msgid "Package which in state not-installed has conffiles, forgetting them"
  610. msgstr ""
  611. #: lib/dpkg/parse.c:397
  612. #, c-format
  613. msgid "failed to close after read: `%.255s'"
  614. msgstr ""
  615. #: lib/dpkg/parse.c:398
  616. #, c-format
  617. msgid "no package information in `%.255s'"
  618. msgstr ""
  619. #: lib/dpkg/parsehelp.c:40
  620. #, c-format
  621. msgid ""
  622. "%s, in file '%.255s' near line %d package '%.255s':\n"
  623. " "
  624. msgstr ""
  625. #: lib/dpkg/parsehelp.c:43
  626. #, c-format
  627. msgid ""
  628. "%s, in file '%.255s' near line %d:\n"
  629. " "
  630. msgstr ""
  631. #: lib/dpkg/parsehelp.c:54
  632. msgid "parse error"
  633. msgstr ""
  634. #: lib/dpkg/parsehelp.c:69 scripts/update-alternatives.pl:509
  635. msgid "warning"
  636. msgstr "upozorenje"
  637. #: lib/dpkg/parsehelp.c:78
  638. msgid "failed to write parsing warning"
  639. msgstr ""
  640. #: lib/dpkg/parsehelp.c:140
  641. msgid "may not be empty string"
  642. msgstr ""
  643. #: lib/dpkg/parsehelp.c:141
  644. msgid "must start with an alphanumeric"
  645. msgstr "mora počinjati sa alfanumeričkim znakom"
  646. #: lib/dpkg/parsehelp.c:150
  647. #, c-format
  648. msgid "character `%c' not allowed (only letters, digits and characters `%s')"
  649. msgstr ""
  650. #: lib/dpkg/parsehelp.c:207
  651. msgid "<none>"
  652. msgstr ""
  653. #: lib/dpkg/parsehelp.c:222
  654. msgid "version string is empty"
  655. msgstr ""
  656. #: lib/dpkg/parsehelp.c:236
  657. msgid "version string has embedded spaces"
  658. msgstr ""
  659. #: lib/dpkg/parsehelp.c:241
  660. msgid "epoch in version is not number"
  661. msgstr ""
  662. #: lib/dpkg/parsehelp.c:242
  663. msgid "nothing after colon in version number"
  664. msgstr ""
  665. #: lib/dpkg/parsehelp.c:263 lib/dpkg/parsehelp.c:276
  666. #, c-format
  667. msgid "missing %s"
  668. msgstr ""
  669. #: lib/dpkg/parsehelp.c:265 lib/dpkg/parsehelp.c:279
  670. #, c-format
  671. msgid "empty value for %s"
  672. msgstr ""
  673. #: lib/dpkg/pkg-format.c:80
  674. #, c-format
  675. msgid "invalid character `%c' in field width\n"
  676. msgstr ""
  677. #: lib/dpkg/pkg-format.c:172
  678. #, c-format
  679. msgid "Closing brace missing in format\n"
  680. msgstr ""
  681. #: lib/dpkg/subproc.c:54
  682. #, c-format
  683. msgid "unable to ignore signal %s before running %.250s"
  684. msgstr ""
  685. #: lib/dpkg/subproc.c:67
  686. #, c-format
  687. msgid "error un-catching signal %s: %s\n"
  688. msgstr ""
  689. #: lib/dpkg/subproc.c:77
  690. #, c-format
  691. msgid "%s (subprocess): %s\n"
  692. msgstr ""
  693. #: lib/dpkg/subproc.c:96
  694. msgid "fork failed"
  695. msgstr ""
  696. #: lib/dpkg/subproc.c:119 lib/dpkg/subproc.c:122
  697. #, c-format
  698. msgid "subprocess %s returned error exit status %d"
  699. msgstr ""
  700. #: lib/dpkg/subproc.c:131 lib/dpkg/subproc.c:135
  701. #, c-format
  702. msgid "subprocess %s killed by signal (%s)%s"
  703. msgstr ""
  704. #: lib/dpkg/subproc.c:133 lib/dpkg/subproc.c:137
  705. msgid ", core dumped"
  706. msgstr ""
  707. #: lib/dpkg/subproc.c:139
  708. #, c-format
  709. msgid "subprocess %s failed with wait status code %d"
  710. msgstr ""
  711. #: lib/dpkg/subproc.c:156
  712. #, c-format
  713. msgid "wait for subprocess %s failed"
  714. msgstr ""
  715. #: lib/dpkg/trigdeferred.l:71
  716. #, c-format
  717. msgid "invalid package name `%.250s' in triggers deferred file `%.250s'"
  718. msgstr ""
  719. #: lib/dpkg/trigdeferred.l:80
  720. #, c-format
  721. msgid "truncated triggers deferred file `%.250s'"
  722. msgstr ""
  723. #: lib/dpkg/trigdeferred.l:84
  724. #, c-format
  725. msgid "syntax error in triggers deferred file `%.250s' at character `%s'%s"
  726. msgstr ""
  727. #: lib/dpkg/trigdeferred.l:121
  728. #, c-format
  729. msgid "unable to open/create triggers lockfile `%.250s'"
  730. msgstr ""
  731. #: lib/dpkg/trigdeferred.l:128
  732. msgid "unable to lock triggers area"
  733. msgstr ""
  734. #: lib/dpkg/trigdeferred.l:139
  735. #, c-format
  736. msgid "unable to stat triggers deferred file `%.250s'"
  737. msgstr ""
  738. #: lib/dpkg/trigdeferred.l:153
  739. #, c-format
  740. msgid "unable to open triggers deferred file `%.250s'"
  741. msgstr ""
  742. #: lib/dpkg/trigdeferred.l:167
  743. #, c-format
  744. msgid "unable to open/create new triggers deferred file `%.250s'"
  745. msgstr ""
  746. #: lib/dpkg/trigdeferred.l:203
  747. #, c-format
  748. msgid "error reading triggers deferred file `%.250s'"
  749. msgstr ""
  750. #: lib/dpkg/trigdeferred.l:211
  751. #, c-format
  752. msgid "unable to write new triggers deferred file `%.250s'"
  753. msgstr ""
  754. #: lib/dpkg/trigdeferred.l:216
  755. #, c-format
  756. msgid "unable to close new triggers deferred file `%.250s'"
  757. msgstr ""
  758. #: lib/dpkg/trigdeferred.l:220
  759. #, c-format
  760. msgid "unable to install new triggers deferred file `%.250s'"
  761. msgstr ""
  762. #: lib/dpkg/triglib.c:48
  763. msgid "empty trigger names are not permitted"
  764. msgstr ""
  765. #: lib/dpkg/triglib.c:52
  766. msgid "trigger name contains invalid character"
  767. msgstr ""
  768. #: lib/dpkg/triglib.c:316
  769. #, c-format
  770. msgid ""
  771. "invalid or unknown syntax in trigger name `%.250s' (in trigger interests for "
  772. "package `%.250s')"
  773. msgstr ""
  774. #: lib/dpkg/triglib.c:356
  775. #, c-format
  776. msgid "failed to open trigger interest list file `%.250s'"
  777. msgstr ""
  778. #: lib/dpkg/triglib.c:385
  779. #, c-format
  780. msgid "failed to rewind trigger interest file `%.250s'"
  781. msgstr ""
  782. #: lib/dpkg/triglib.c:390
  783. #, c-format
  784. msgid ""
  785. "trigger interest file `%.250s' syntax error; illegal package name `%.250s': "
  786. "%.250s"
  787. msgstr ""
  788. #: lib/dpkg/triglib.c:412
  789. #, c-format
  790. msgid "unable to create new trigger interest file `%.250s'"
  791. msgstr ""
  792. #: lib/dpkg/triglib.c:425
  793. #, c-format
  794. msgid "unable to write new trigger interest file `%.250s'"
  795. msgstr ""
  796. #: lib/dpkg/triglib.c:428
  797. #, c-format
  798. msgid "unable to flush new trigger interest file '%.250s'"
  799. msgstr ""
  800. #: lib/dpkg/triglib.c:431
  801. #, c-format
  802. msgid "unable to sync new trigger interest file '%.250s'"
  803. msgstr ""
  804. #: lib/dpkg/triglib.c:435
  805. #, c-format
  806. msgid "unable to close new trigger interest file `%.250s'"
  807. msgstr ""
  808. #: lib/dpkg/triglib.c:439
  809. #, c-format
  810. msgid "unable to install new trigger interest file `%.250s'"
  811. msgstr ""
  812. #: lib/dpkg/triglib.c:503
  813. #, c-format
  814. msgid ""
  815. "duplicate file trigger interest for filename `%.250s' and package `%.250s'"
  816. msgstr ""
  817. #: lib/dpkg/triglib.c:526
  818. #, c-format
  819. msgid "unable to create new file triggers file `%.250s'"
  820. msgstr ""
  821. #: lib/dpkg/triglib.c:535
  822. #, c-format
  823. msgid "unable to write new file triggers file `%.250s'"
  824. msgstr ""
  825. #: lib/dpkg/triglib.c:538
  826. #, c-format
  827. msgid "unable to flush new file triggers file '%.250s'"
  828. msgstr ""
  829. #: lib/dpkg/triglib.c:541
  830. #, c-format
  831. msgid "unable to sync new file triggers file '%.250s'"
  832. msgstr ""
  833. #: lib/dpkg/triglib.c:545
  834. #, c-format
  835. msgid "unable to close new file triggers file `%.250s'"
  836. msgstr ""
  837. #: lib/dpkg/triglib.c:549
  838. #, c-format
  839. msgid "unable to install new file triggers file as `%.250s'"
  840. msgstr ""
  841. #: lib/dpkg/triglib.c:572
  842. #, c-format
  843. msgid "unable to read file triggers file `%.250s'"
  844. msgstr ""
  845. #: lib/dpkg/triglib.c:580
  846. #, c-format
  847. msgid "syntax error in file triggers file `%.250s'"
  848. msgstr ""
  849. #: lib/dpkg/triglib.c:584
  850. #, c-format
  851. msgid ""
  852. "file triggers record mentions illegal package name `%.250s' (for interest in "
  853. "file `%.250s'): %.250s"
  854. msgstr ""
  855. #: lib/dpkg/triglib.c:683
  856. #, c-format
  857. msgid ""
  858. "triggers ci file `%.250s' contains illegal trigger syntax in trigger name `"
  859. "%.250s': %.250s"
  860. msgstr ""
  861. #: lib/dpkg/triglib.c:703
  862. #, c-format
  863. msgid "unable to open triggers ci file `%.250s'"
  864. msgstr ""
  865. #: lib/dpkg/triglib.c:718
  866. msgid "triggers ci file contains unknown directive syntax"
  867. msgstr ""
  868. #: lib/dpkg/triglib.c:727
  869. #, c-format
  870. msgid "triggers ci file contains unknown directive `%.250s'"
  871. msgstr ""
  872. #: lib/dpkg/triglib.c:791
  873. #, c-format
  874. msgid "unable to create triggers state directory `%.250s'"
  875. msgstr ""
  876. #: lib/dpkg/triglib.c:794
  877. #, c-format
  878. msgid "unable to set ownership of triggers state directory `%.250s'"
  879. msgstr ""
  880. #: lib/dpkg/utils.c:53
  881. #, c-format
  882. msgid "read error in `%.250s'"
  883. msgstr ""
  884. #: lib/dpkg/utils.c:58
  885. #, c-format
  886. msgid "fgets gave an empty string from `%.250s'"
  887. msgstr ""
  888. #: lib/dpkg/utils.c:60
  889. #, c-format
  890. msgid "too-long line or missing newline in `%.250s'"
  891. msgstr ""
  892. #: lib/dpkg/utils.c:72
  893. #, c-format
  894. msgid "unexpected eof reading `%.250s'"
  895. msgstr ""
  896. #: lib/dpkg/varbuf.c:78 lib/dpkg/varbuf.c:87
  897. msgid "error formatting string into varbuf variable"
  898. msgstr ""
  899. #: src/archives.c:178 src/archives.c:207 src/archives.c:655
  900. msgid "error reading from dpkg-deb pipe"
  901. msgstr ""
  902. #: src/archives.c:202
  903. #, c-format
  904. msgid "skipped unpacking file '%.255s' (replaced or excluded?)"
  905. msgstr ""
  906. #: src/archives.c:245
  907. #, c-format
  908. msgid "error setting timestamps of `%.255s'"
  909. msgstr ""
  910. #: src/archives.c:252 src/archives.c:664 src/statcmd.c:172
  911. #, c-format
  912. msgid "error setting ownership of `%.255s'"
  913. msgstr ""
  914. #: src/archives.c:254 src/archives.c:667 src/statcmd.c:174
  915. #, c-format
  916. msgid "error setting permissions of `%.255s'"
  917. msgstr ""
  918. #: src/archives.c:357
  919. #, c-format
  920. msgid "failed to stat (dereference) existing symlink `%.250s'"
  921. msgstr ""
  922. #: src/archives.c:379
  923. #, c-format
  924. msgid ""
  925. "failed to stat (dereference) proposed new symlink target `%.250s' for "
  926. "symlink `%.250s'"
  927. msgstr ""
  928. #: src/archives.c:435
  929. #, c-format
  930. msgid ""
  931. "trying to overwrite `%.250s', which is the diverted version of `"
  932. "%.250s' (package: %.100s)"
  933. msgstr ""
  934. #: src/archives.c:441
  935. #, c-format
  936. msgid "trying to overwrite `%.250s', which is the diverted version of `%.250s'"
  937. msgstr ""
  938. #: src/archives.c:467
  939. #, c-format
  940. msgid "unable to stat `%.255s' (which I was about to install)"
  941. msgstr ""
  942. #: src/archives.c:475
  943. #, c-format
  944. msgid ""
  945. "unable to clean up mess surrounding `%.255s' before installing another "
  946. "version"
  947. msgstr ""
  948. #: src/archives.c:481
  949. #, c-format
  950. msgid "unable to stat restored `%.255s' before installing another version"
  951. msgstr ""
  952. #: src/archives.c:516
  953. #, c-format
  954. msgid "archive contained object `%.255s' of unknown type 0x%x"
  955. msgstr ""
  956. #: src/archives.c:578
  957. #, c-format
  958. msgid "Replacing files in old package %s ...\n"
  959. msgstr ""
  960. #: src/archives.c:582
  961. #, fuzzy, c-format
  962. msgid "Replaced by files in installed package %s ...\n"
  963. msgstr "Ažurirani instalirani paketi"
  964. #: src/archives.c:590
  965. #, c-format
  966. msgid ""
  967. "trying to overwrite directory '%.250s' in package %.250s %.250s with "
  968. "nondirectory"
  969. msgstr ""
  970. #: src/archives.c:602
  971. #, c-format
  972. msgid "trying to overwrite '%.250s', which is also in package %.250s %.250s"
  973. msgstr ""
  974. #: src/archives.c:643
  975. #, c-format
  976. msgid "unable to create `%.255s' (while processing `%.255s')"
  977. msgstr ""
  978. #: src/archives.c:649
  979. #, c-format
  980. msgid "backend dpkg-deb during `%.255s'"
  981. msgstr ""
  982. #: src/archives.c:674 src/archives.c:849
  983. #, c-format
  984. msgid "error closing/writing `%.255s'"
  985. msgstr ""
  986. #: src/archives.c:679
  987. #, c-format
  988. msgid "error creating pipe `%.255s'"
  989. msgstr ""
  990. #: src/archives.c:685 src/archives.c:691
  991. #, c-format
  992. msgid "error creating device `%.255s'"
  993. msgstr ""
  994. #: src/archives.c:704
  995. #, c-format
  996. msgid "error creating hard link `%.255s'"
  997. msgstr ""
  998. #: src/archives.c:711
  999. #, c-format
  1000. msgid "error creating symbolic link `%.255s'"
  1001. msgstr ""
  1002. #: src/archives.c:716
  1003. #, c-format
  1004. msgid "error setting ownership of symlink `%.255s'"
  1005. msgstr ""
  1006. #: src/archives.c:721
  1007. #, c-format
  1008. msgid "error creating directory `%.255s'"
  1009. msgstr ""
  1010. #: src/archives.c:761
  1011. #, c-format
  1012. msgid "unable to move aside `%.255s' to install new version"
  1013. msgstr ""
  1014. #: src/archives.c:770
  1015. #, c-format
  1016. msgid "unable to read link `%.255s'"
  1017. msgstr ""
  1018. #: src/archives.c:774
  1019. #, c-format
  1020. msgid "unable to make backup symlink for `%.255s'"
  1021. msgstr ""
  1022. #: src/archives.c:776
  1023. #, c-format
  1024. msgid "unable to chown backup symlink for `%.255s'"
  1025. msgstr ""
  1026. #: src/archives.c:781
  1027. #, c-format
  1028. msgid "unable to make backup link of `%.255s' before installing new version"
  1029. msgstr ""
  1030. #: src/archives.c:796 src/archives.c:856
  1031. #, c-format
  1032. msgid "unable to install new version of `%.255s'"
  1033. msgstr ""
  1034. #: src/archives.c:845
  1035. #, c-format
  1036. msgid "unable to open '%.255s'"
  1037. msgstr ""
  1038. #: src/archives.c:847
  1039. #, c-format
  1040. msgid "unable to sync file '%.255s'"
  1041. msgstr ""
  1042. #: src/archives.c:893
  1043. #, c-format
  1044. msgid ""
  1045. "ignoring dependency problem with %s:\n"
  1046. "%s"
  1047. msgstr ""
  1048. #: src/archives.c:898
  1049. #, c-format
  1050. msgid ""
  1051. "considering deconfiguration of essential\n"
  1052. " package %s, to enable %s."
  1053. msgstr ""
  1054. #: src/archives.c:901
  1055. #, c-format
  1056. msgid ""
  1057. "dpkg: no, %s is essential, will not deconfigure\n"
  1058. " it in order to enable %s.\n"
  1059. msgstr ""
  1060. #: src/archives.c:915
  1061. #, c-format
  1062. msgid ""
  1063. "dpkg: no, cannot proceed with %s (--auto-deconfigure will help):\n"
  1064. "%s"
  1065. msgstr ""
  1066. #: src/archives.c:925
  1067. #, c-format
  1068. msgid "removal of %.250s"
  1069. msgstr ""
  1070. #: src/archives.c:950
  1071. #, c-format
  1072. msgid "installation of %.250s"
  1073. msgstr ""
  1074. #: src/archives.c:951
  1075. #, c-format
  1076. msgid ""
  1077. "dpkg: considering deconfiguration of %s, which would be broken by %s ...\n"
  1078. msgstr ""
  1079. #: src/archives.c:958
  1080. #, c-format
  1081. msgid "dpkg: yes, will deconfigure %s (broken by %s).\n"
  1082. msgstr ""
  1083. #: src/archives.c:962 src/archives.c:1083
  1084. #, c-format
  1085. msgid ""
  1086. "dpkg: regarding %s containing %s:\n"
  1087. "%s"
  1088. msgstr ""
  1089. #: src/archives.c:970
  1090. msgid "ignoring breakage, may proceed anyway!"
  1091. msgstr ""
  1092. #: src/archives.c:975
  1093. #, c-format
  1094. msgid ""
  1095. "installing %.250s would break %.250s, and\n"
  1096. " deconfiguration is not permitted (--auto-deconfigure might help)"
  1097. msgstr ""
  1098. #: src/archives.c:979
  1099. #, c-format
  1100. msgid "installing %.250s would break existing software"
  1101. msgstr ""
  1102. #: src/archives.c:1009
  1103. #, c-format
  1104. msgid "dpkg: considering removing %s in favour of %s ...\n"
  1105. msgstr ""
  1106. #: src/archives.c:1015
  1107. #, c-format
  1108. msgid "%s is not properly installed - ignoring any dependencies on it.\n"
  1109. msgstr ""
  1110. #: src/archives.c:1044
  1111. #, c-format
  1112. msgid "dpkg: may have trouble removing %s, as it provides %s ...\n"
  1113. msgstr ""
  1114. #: src/archives.c:1059
  1115. #, c-format
  1116. msgid ""
  1117. "dpkg: package %s requires reinstallation, but will remove anyway as you "
  1118. "requested.\n"
  1119. msgstr ""
  1120. #: src/archives.c:1062
  1121. #, c-format
  1122. msgid "dpkg: package %s requires reinstallation, will not remove.\n"
  1123. msgstr ""
  1124. #: src/archives.c:1069
  1125. #, c-format
  1126. msgid "package %s has too many Conflicts/Replaces pairs"
  1127. msgstr ""
  1128. #: src/archives.c:1075
  1129. #, c-format
  1130. msgid "dpkg: yes, will remove %s in favour of %s.\n"
  1131. msgstr ""
  1132. #: src/archives.c:1086
  1133. #, c-format
  1134. msgid "conflicting packages - not installing %.250s"
  1135. msgstr ""
  1136. #: src/archives.c:1087
  1137. msgid "ignoring conflict, may proceed anyway!"
  1138. msgstr ""
  1139. #: src/archives.c:1128
  1140. #, c-format
  1141. msgid "--%s --recursive needs at least one path argument"
  1142. msgstr ""
  1143. #: src/archives.c:1138
  1144. msgid "find for dpkg --recursive"
  1145. msgstr ""
  1146. #: src/archives.c:1160
  1147. msgid "failed to fdopen find's pipe"
  1148. msgstr ""
  1149. #: src/archives.c:1166
  1150. msgid "error reading find's pipe"
  1151. msgstr ""
  1152. #: src/archives.c:1167
  1153. msgid "error closing find's pipe"
  1154. msgstr ""
  1155. #: src/archives.c:1170
  1156. #, c-format
  1157. msgid "find for --recursive returned unhandled error %i"
  1158. msgstr ""
  1159. #: src/archives.c:1173
  1160. msgid "searched, but found no packages (files matching *.deb)"
  1161. msgstr ""
  1162. #: src/archives.c:1189
  1163. #, c-format
  1164. msgid "--%s needs at least one package archive file argument"
  1165. msgstr ""
  1166. #: src/archives.c:1221 src/enquiry.c:151 src/enquiry.c:256 src/enquiry.c:399
  1167. #: src/enquiry.c:401 src/enquiry.c:410 src/main.c:62 src/main.c:154
  1168. #: src/main.c:250 src/main.c:417 src/packages.c:249 src/query.c:187
  1169. #: src/query.c:284 src/query.c:323 src/query.c:332 src/query.c:379
  1170. #: src/query.c:442 src/query.c:577 src/query.c:621 src/select.c:77
  1171. #: src/statcmd.c:66 src/statcmd.c:96 src/trigcmd.c:60 src/trigcmd.c:92
  1172. #: dpkg-deb/build.c:401 dpkg-deb/extract.c:213 dpkg-deb/extract.c:233
  1173. #: dpkg-deb/info.c:192 dpkg-deb/info.c:248 dpkg-deb/main.c:61
  1174. #: dpkg-deb/main.c:124 dpkg-split/info.c:249 dpkg-split/main.c:53
  1175. #: dpkg-split/main.c:91 dpkg-split/queue.c:139 dpkg-split/queue.c:264
  1176. msgid "<standard output>"
  1177. msgstr ""
  1178. #: src/archives.c:1222 src/packages.c:250 src/query.c:188 src/query.c:282
  1179. #: src/query.c:385 src/query.c:443 src/select.c:78 dpkg-split/main.c:196
  1180. #: dpkg-split/queue.c:211
  1181. msgid "<standard error>"
  1182. msgstr ""
  1183. #: src/archives.c:1266
  1184. #, c-format
  1185. msgid "Selecting previously deselected package %s.\n"
  1186. msgstr ""
  1187. #: src/archives.c:1271
  1188. #, c-format
  1189. msgid "Skipping deselected package %s.\n"
  1190. msgstr ""
  1191. #: src/archives.c:1288
  1192. #, c-format
  1193. msgid "Version %.250s of %.250s already installed, skipping.\n"
  1194. msgstr ""
  1195. #: src/archives.c:1299
  1196. #, c-format
  1197. msgid "downgrading %.250s from %.250s to %.250s."
  1198. msgstr ""
  1199. #: src/archives.c:1304
  1200. #, c-format
  1201. msgid "Will not downgrade %.250s from version %.250s to %.250s, skipping.\n"
  1202. msgstr ""
  1203. #: src/cleanup.c:85
  1204. #, c-format
  1205. msgid ""
  1206. "unable to remove newly-installed version of `%.250s' to allow reinstallation "
  1207. "of backup copy"
  1208. msgstr ""
  1209. #: src/cleanup.c:92
  1210. #, c-format
  1211. msgid "unable to restore backup version of `%.250s'"
  1212. msgstr ""
  1213. #: src/cleanup.c:96
  1214. #, c-format
  1215. msgid "unable to remove newly-installed version of `%.250s'"
  1216. msgstr ""
  1217. #: src/cleanup.c:103
  1218. #, c-format
  1219. msgid "unable to remove newly-extracted version of `%.250s'"
  1220. msgstr ""
  1221. #: src/configure.c:101
  1222. #, c-format
  1223. msgid "unable to stat new dist conffile `%.250s'"
  1224. msgstr ""
  1225. #: src/configure.c:110
  1226. #, c-format
  1227. msgid "unable to stat current installed conffile `%.250s'"
  1228. msgstr ""
  1229. #: src/configure.c:122
  1230. #, c-format
  1231. msgid ""
  1232. "\n"
  1233. "Configuration file `%s', does not exist on system.\n"
  1234. "Installing new config file as you requested.\n"
  1235. msgstr ""
  1236. #: src/configure.c:159
  1237. #, c-format
  1238. msgid "%s: failed to remove old backup '%.250s': %s"
  1239. msgstr ""
  1240. #: src/configure.c:167
  1241. #, c-format
  1242. msgid "%s: failed to rename '%.250s' to '%.250s': %s"
  1243. msgstr ""
  1244. #: src/configure.c:173
  1245. #, c-format
  1246. msgid "%s: failed to remove '%.250s': %s"
  1247. msgstr ""
  1248. #: src/configure.c:179
  1249. #, c-format
  1250. msgid "%s: failed to remove old distrib version '%.250s': %s"
  1251. msgstr ""
  1252. #: src/configure.c:183
  1253. #, c-format
  1254. msgid "%s: failed to remove '%.250s' (before overwrite): %s"
  1255. msgstr ""
  1256. #: src/configure.c:187
  1257. #, c-format
  1258. msgid "%s: failed to link '%.250s' to '%.250s': %s"
  1259. msgstr ""
  1260. #: src/configure.c:191
  1261. #, c-format
  1262. msgid "Installing new version of config file %s ...\n"
  1263. msgstr ""
  1264. #: src/configure.c:197
  1265. #, c-format
  1266. msgid "unable to install `%.250s' as `%.250s'"
  1267. msgstr ""
  1268. #: src/configure.c:248
  1269. #, c-format
  1270. msgid "no package named `%s' is installed, cannot configure"
  1271. msgstr ""
  1272. #: src/configure.c:251
  1273. #, c-format
  1274. msgid "package %.250s is already installed and configured"
  1275. msgstr ""
  1276. #: src/configure.c:254
  1277. #, c-format
  1278. msgid ""
  1279. "package %.250s is not ready for configuration\n"
  1280. " cannot configure (current status `%.250s')"
  1281. msgstr ""
  1282. #: src/configure.c:283
  1283. #, c-format
  1284. msgid ""
  1285. "dpkg: dependency problems prevent configuration of %s:\n"
  1286. "%s"
  1287. msgstr ""
  1288. #: src/configure.c:286
  1289. msgid "dependency problems - leaving unconfigured"
  1290. msgstr ""
  1291. #: src/configure.c:290
  1292. #, c-format
  1293. msgid ""
  1294. "dpkg: %s: dependency problems, but configuring anyway as you requested:\n"
  1295. "%s"
  1296. msgstr ""
  1297. #: src/configure.c:298
  1298. msgid ""
  1299. "Package is in a very bad inconsistent state - you should\n"
  1300. " reinstall it before attempting configuration."
  1301. msgstr ""
  1302. #: src/configure.c:301
  1303. #, c-format
  1304. msgid "Setting up %s (%s) ...\n"
  1305. msgstr ""
  1306. #: src/configure.c:384
  1307. #, c-format
  1308. msgid ""
  1309. "%s: unable to stat config file '%s'\n"
  1310. " (= '%s'): %s"
  1311. msgstr ""
  1312. #: src/configure.c:397
  1313. #, c-format
  1314. msgid ""
  1315. "%s: config file '%s' is a circular link\n"
  1316. " (= '%s')"
  1317. msgstr ""
  1318. #: src/configure.c:406
  1319. #, c-format
  1320. msgid ""
  1321. "%s: unable to readlink conffile '%s'\n"
  1322. " (= '%s'): %s"
  1323. msgstr ""
  1324. #: src/configure.c:428
  1325. #, c-format
  1326. msgid ""
  1327. "%s: conffile '%.250s' resolves to degenerate filename\n"
  1328. " ('%s' is a symlink to '%s')"
  1329. msgstr ""
  1330. #: src/configure.c:443
  1331. #, c-format
  1332. msgid "%s: conffile '%.250s' is not a plain file or symlink (= '%s')"
  1333. msgstr ""
  1334. #: src/configure.c:469
  1335. msgid "md5hash"
  1336. msgstr ""
  1337. #: src/configure.c:475
  1338. #, c-format
  1339. msgid "%s: unable to open conffile %s for hash: %s"
  1340. msgstr ""
  1341. #: src/configure.c:511
  1342. #, c-format
  1343. msgid "failed to run %s (%.250s)"
  1344. msgstr ""
  1345. #: src/configure.c:532
  1346. msgid "Type `exit' when you're done.\n"
  1347. msgstr "Ukucajte `exit' kada završite.\n"
  1348. #: src/configure.c:549
  1349. #, c-format
  1350. msgid "failed to exec shell (%.250s)"
  1351. msgstr ""
  1352. #: src/configure.c:599
  1353. #, c-format
  1354. msgid ""
  1355. "\n"
  1356. "Configuration file `%s'"
  1357. msgstr ""
  1358. "\n"
  1359. "Konfiguracijska datoteka `%s'"
  1360. #: src/configure.c:601
  1361. #, c-format
  1362. msgid " (actually `%s')"
  1363. msgstr ""
  1364. #: src/configure.c:605
  1365. #, c-format
  1366. msgid ""
  1367. "\n"
  1368. " ==> File on system created by you or by a script.\n"
  1369. " ==> File also in package provided by package maintainer.\n"
  1370. msgstr ""
  1371. #: src/configure.c:610
  1372. #, c-format
  1373. msgid ""
  1374. "\n"
  1375. " Not modified since installation.\n"
  1376. msgstr ""
  1377. #: src/configure.c:612
  1378. #, c-format
  1379. msgid ""
  1380. "\n"
  1381. " ==> Modified (by you or by a script) since installation.\n"
  1382. msgstr ""
  1383. #: src/configure.c:613
  1384. #, c-format
  1385. msgid ""
  1386. "\n"
  1387. " ==> Deleted (by you or by a script) since installation.\n"
  1388. msgstr ""
  1389. #: src/configure.c:616
  1390. #, c-format
  1391. msgid " ==> Package distributor has shipped an updated version.\n"
  1392. msgstr ""
  1393. #: src/configure.c:617
  1394. #, c-format
  1395. msgid " Version in package is the same as at last installation.\n"
  1396. msgstr ""
  1397. #: src/configure.c:625
  1398. #, c-format
  1399. msgid " ==> Using new file as you requested.\n"
  1400. msgstr ""
  1401. #: src/configure.c:629
  1402. #, c-format
  1403. msgid " ==> Using current old file as you requested.\n"
  1404. msgstr ""
  1405. #: src/configure.c:638
  1406. #, c-format
  1407. msgid " ==> Keeping old config file as default.\n"
  1408. msgstr ""
  1409. #: src/configure.c:642
  1410. #, c-format
  1411. msgid " ==> Using new config file as default.\n"
  1412. msgstr ""
  1413. #: src/configure.c:649
  1414. #, c-format
  1415. msgid ""
  1416. " What would you like to do about it ? Your options are:\n"
  1417. " Y or I : install the package maintainer's version\n"
  1418. " N or O : keep your currently-installed version\n"
  1419. " D : show the differences between the versions\n"
  1420. " Z : start a shell to examine the situation\n"
  1421. msgstr ""
  1422. #: src/configure.c:656
  1423. #, c-format
  1424. msgid " The default action is to keep your current version.\n"
  1425. msgstr ""
  1426. #: src/configure.c:658
  1427. #, c-format
  1428. msgid " The default action is to install the new version.\n"
  1429. msgstr ""
  1430. #: src/configure.c:665
  1431. msgid "[default=N]"
  1432. msgstr ""
  1433. #: src/configure.c:666
  1434. msgid "[default=Y]"
  1435. msgstr ""
  1436. #: src/configure.c:667
  1437. msgid "[no default]"
  1438. msgstr ""
  1439. #: src/configure.c:670
  1440. msgid "error writing to stderr, discovered before conffile prompt"
  1441. msgstr ""
  1442. #: src/configure.c:679
  1443. msgid "read error on stdin at conffile prompt"
  1444. msgstr ""
  1445. #: src/configure.c:680
  1446. msgid "EOF on stdin at conffile prompt"
  1447. msgstr ""
  1448. #: src/depcon.c:82
  1449. #, c-format
  1450. msgid "unable to check for existence of `%.250s'"
  1451. msgstr ""
  1452. #: src/depcon.c:176
  1453. #, fuzzy, c-format
  1454. msgid "%s depends on %s"
  1455. msgstr "zavisi o"
  1456. #: src/depcon.c:179
  1457. #, fuzzy, c-format
  1458. msgid "%s pre-depends on %s"
  1459. msgstr "unaprijed zavisi o"
  1460. #: src/depcon.c:182
  1461. #, fuzzy, c-format
  1462. msgid "%s recommends %s"
  1463. msgstr "preporučuje"
  1464. #: src/depcon.c:185
  1465. #, fuzzy, c-format
  1466. msgid "%s suggests %s"
  1467. msgstr "predlaže"
  1468. #: src/depcon.c:188
  1469. #, c-format
  1470. msgid "%s breaks %s"
  1471. msgstr ""
  1472. #: src/depcon.c:191
  1473. #, fuzzy, c-format
  1474. msgid "%s conflicts with %s"
  1475. msgstr "sukobljava se sa"
  1476. #: src/depcon.c:194
  1477. #, fuzzy, c-format
  1478. msgid "%s enhances %s"
  1479. msgstr "poboljšava"
  1480. #: src/depcon.c:289
  1481. #, c-format
  1482. msgid " %.250s is to be removed.\n"
  1483. msgstr ""
  1484. #: src/depcon.c:292
  1485. #, c-format
  1486. msgid " %.250s is to be deconfigured.\n"
  1487. msgstr ""
  1488. #: src/depcon.c:297
  1489. #, c-format
  1490. msgid " %.250s is to be installed, but is version %.250s.\n"
  1491. msgstr ""
  1492. #: src/depcon.c:307
  1493. #, c-format
  1494. msgid " %.250s is installed, but is version %.250s.\n"
  1495. msgstr ""
  1496. #: src/depcon.c:323
  1497. #, c-format
  1498. msgid " %.250s is unpacked, but has never been configured.\n"
  1499. msgstr ""
  1500. #: src/depcon.c:327
  1501. #, c-format
  1502. msgid " %.250s is unpacked, but is version %.250s.\n"
  1503. msgstr ""
  1504. #: src/depcon.c:333
  1505. #, c-format
  1506. msgid " %.250s latest configured version is %.250s.\n"
  1507. msgstr ""
  1508. #: src/depcon.c:343
  1509. #, c-format
  1510. msgid " %.250s is %s.\n"
  1511. msgstr ""
  1512. #: src/depcon.c:380
  1513. #, c-format
  1514. msgid " %.250s provides %.250s but is to be removed.\n"
  1515. msgstr ""
  1516. #: src/depcon.c:384
  1517. #, c-format
  1518. msgid " %.250s provides %.250s but is to be deconfigured.\n"
  1519. msgstr ""
  1520. #: src/depcon.c:390
  1521. #, c-format
  1522. msgid " %.250s provides %.250s but is %s.\n"
  1523. msgstr ""
  1524. #: src/depcon.c:405
  1525. #, c-format
  1526. msgid " %.250s is not installed.\n"
  1527. msgstr ""
  1528. #: src/depcon.c:436
  1529. #, c-format
  1530. msgid " %.250s (version %.250s) is to be installed.\n"
  1531. msgstr ""
  1532. #: src/depcon.c:459
  1533. #, c-format
  1534. msgid " %.250s (version %.250s) is present and %s.\n"
  1535. msgstr ""
  1536. #: src/depcon.c:486
  1537. #, c-format
  1538. msgid " %.250s provides %.250s and is to be installed.\n"
  1539. msgstr ""
  1540. #: src/depcon.c:526
  1541. #, c-format
  1542. msgid " %.250s provides %.250s and is present and %s.\n"
  1543. msgstr ""
  1544. #: src/divertdb.c:66
  1545. msgid "failed to open diversions file"
  1546. msgstr ""
  1547. #: src/divertdb.c:73
  1548. msgid "failed to fstat previous diversions file"
  1549. msgstr ""
  1550. #: src/divertdb.c:75
  1551. msgid "failed to fstat diversions file"
  1552. msgstr ""
  1553. #: src/divertdb.c:115
  1554. #, c-format
  1555. msgid "conflicting diversions involving `%.250s' or `%.250s'"
  1556. msgstr ""
  1557. #: src/enquiry.c:71
  1558. msgid ""
  1559. "The following packages are in a mess due to serious problems during\n"
  1560. "installation. They must be reinstalled for them (and any packages\n"
  1561. "that depend on them) to function properly:\n"
  1562. msgstr ""
  1563. #: src/enquiry.c:78
  1564. msgid ""
  1565. "The following packages have been unpacked but not yet configured.\n"
  1566. "They must be configured using dpkg --configure or the configure\n"
  1567. "menu option in dselect for them to work:\n"
  1568. msgstr ""
  1569. #: src/enquiry.c:85
  1570. msgid ""
  1571. "The following packages are only half configured, probably due to problems\n"
  1572. "configuring them the first time. The configuration should be retried using\n"
  1573. "dpkg --configure <package> or the configure menu option in dselect:\n"
  1574. msgstr ""
  1575. #: src/enquiry.c:92
  1576. msgid ""
  1577. "The following packages are only half installed, due to problems during\n"
  1578. "installation. The installation can probably be completed by retrying it;\n"
  1579. "the packages can be removed using dselect or dpkg --remove:\n"
  1580. msgstr ""
  1581. #: src/enquiry.c:99
  1582. msgid ""
  1583. "The following packages are awaiting processing of triggers that they\n"
  1584. "have activated in other packages. This processing can be requested using\n"
  1585. "dselect or dpkg --configure --pending (or dpkg --triggers-only):\n"
  1586. msgstr ""
  1587. #: src/enquiry.c:106
  1588. msgid ""
  1589. "The following packages have been triggered, but the trigger processing\n"
  1590. "has not yet been done. Trigger processing can be requested using\n"
  1591. "dselect or dpkg --configure --pending (or dpkg --triggers-only):\n"
  1592. msgstr ""
  1593. #: src/enquiry.c:132 src/enquiry.c:191 src/enquiry.c:267 src/enquiry.c:330
  1594. #: src/enquiry.c:406 src/select.c:92 src/select.c:149 src/trigcmd.c:199
  1595. #: src/update.c:44 src/update.c:100 dpkg-split/queue.c:223
  1596. #, c-format
  1597. msgid "--%s takes no arguments"
  1598. msgstr ""
  1599. #: src/enquiry.c:173
  1600. msgid "<unknown>"
  1601. msgstr ""
  1602. #: src/enquiry.c:230
  1603. #, c-format
  1604. msgid " %d in %s: "
  1605. msgstr ""
  1606. #: src/enquiry.c:245
  1607. #, c-format
  1608. msgid " %d packages, from the following sections:"
  1609. msgstr ""
  1610. #: src/enquiry.c:280
  1611. #, c-format
  1612. msgid ""
  1613. "Version of dpkg with working %s support not yet configured.\n"
  1614. " Please use 'dpkg --configure dpkg', and then try again.\n"
  1615. msgstr ""
  1616. #: src/enquiry.c:285
  1617. #, c-format
  1618. msgid "dpkg not recorded as installed, cannot check for %s support!\n"
  1619. msgstr ""
  1620. #: src/enquiry.c:293
  1621. msgid "Pre-Depends field"
  1622. msgstr ""
  1623. #: src/enquiry.c:298
  1624. msgid "epoch"
  1625. msgstr ""
  1626. #: src/enquiry.c:303
  1627. msgid "long filenames"
  1628. msgstr ""
  1629. #: src/enquiry.c:308
  1630. msgid "multiple Conflicts and Replaces"
  1631. msgstr ""
  1632. #: src/enquiry.c:385
  1633. #, c-format
  1634. msgid ""
  1635. "dpkg: cannot see how to satisfy pre-dependency:\n"
  1636. " %s\n"
  1637. msgstr ""
  1638. #: src/enquiry.c:386
  1639. #, c-format
  1640. msgid "cannot satisfy pre-dependencies for %.250s (wanted due to %.250s)"
  1641. msgstr ""
  1642. #: src/enquiry.c:416
  1643. #, c-format
  1644. msgid "obsolete option '--%s', please use '--%s' instead."
  1645. msgstr ""
  1646. #: src/enquiry.c:457
  1647. msgid ""
  1648. "--compare-versions takes three arguments: <version> <relation> <version>"
  1649. msgstr ""
  1650. #: src/enquiry.c:462
  1651. msgid "--compare-versions bad relation"
  1652. msgstr ""
  1653. #: src/enquiry.c:467 src/enquiry.c:474
  1654. #, c-format
  1655. msgid "version '%s' has bad syntax: %s"
  1656. msgstr ""
  1657. #: src/errors.c:60
  1658. #, c-format
  1659. msgid ""
  1660. "%s: error processing %s (--%s):\n"
  1661. " %s\n"
  1662. msgstr ""
  1663. #: src/errors.c:67
  1664. msgid ""
  1665. "dpkg: failed to allocate memory for new entry in list of failed packages."
  1666. msgstr ""
  1667. #: src/errors.c:77
  1668. #, c-format
  1669. msgid "dpkg: too many errors, stopping\n"
  1670. msgstr ""
  1671. #: src/errors.c:83
  1672. msgid "Errors were encountered while processing:\n"
  1673. msgstr ""
  1674. #: src/errors.c:90
  1675. msgid "Processing was halted because there were too many errors.\n"
  1676. msgstr ""
  1677. #: src/errors.c:101
  1678. #, c-format
  1679. msgid "Package %s was on hold, processing it anyway as you requested\n"
  1680. msgstr ""
  1681. #: src/errors.c:105
  1682. #, c-format
  1683. msgid ""
  1684. "Package %s is on hold, not touching it. Use --force-hold to override.\n"
  1685. msgstr ""
  1686. #: src/errors.c:114
  1687. msgid "overriding problem because --force enabled:"
  1688. msgstr ""
  1689. #: src/filesdb.c:215
  1690. #, c-format
  1691. msgid "unable to open files list file for package `%.250s'"
  1692. msgstr ""
  1693. #: src/filesdb.c:219
  1694. #, c-format
  1695. msgid ""
  1696. "files list file for package `%.250s' missing, assuming package has no files "
  1697. "currently installed."
  1698. msgstr ""
  1699. #: src/filesdb.c:230
  1700. #, c-format
  1701. msgid "unable to stat files list file for package '%.250s'"
  1702. msgstr ""
  1703. #: src/filesdb.c:237
  1704. #, c-format
  1705. msgid "files list for package `%.250s'"
  1706. msgstr ""
  1707. #: src/filesdb.c:243
  1708. #, c-format
  1709. msgid "files list file for package '%.250s' is missing final newline"
  1710. msgstr ""
  1711. #: src/filesdb.c:251
  1712. #, c-format
  1713. msgid "files list file for package `%.250s' contains empty filename"
  1714. msgstr ""
  1715. #: src/filesdb.c:259
  1716. #, c-format
  1717. msgid "error closing files list file for package `%.250s'"
  1718. msgstr ""
  1719. #: src/filesdb.c:369
  1720. msgid "(Reading database ... "
  1721. msgstr ""
  1722. #: src/filesdb.c:390
  1723. #, c-format
  1724. msgid "%d files and directories currently installed.)\n"
  1725. msgstr ""
  1726. #: src/filesdb.c:423
  1727. #, c-format
  1728. msgid "unable to create updated files list file for package %s"
  1729. msgstr ""
  1730. #: src/filesdb.c:433
  1731. #, c-format
  1732. msgid "failed to write to updated files list file for package %s"
  1733. msgstr ""
  1734. #: src/filesdb.c:435
  1735. #, c-format
  1736. msgid "failed to flush updated files list file for package %s"
  1737. msgstr ""
  1738. #: src/filesdb.c:437
  1739. #, c-format
  1740. msgid "failed to sync updated files list file for package %s"
  1741. msgstr ""
  1742. #: src/filesdb.c:440
  1743. #, c-format
  1744. msgid "failed to close updated files list file for package %s"
  1745. msgstr ""
  1746. #: src/filesdb.c:442
  1747. #, c-format
  1748. msgid "failed to install updated files list file for package %s"
  1749. msgstr ""
  1750. #: src/help.c:48
  1751. msgid "not installed"
  1752. msgstr ""
  1753. #: src/help.c:49
  1754. msgid "not installed but configs remain"
  1755. msgstr ""
  1756. #: src/help.c:50
  1757. msgid "broken due to failed removal or installation"
  1758. msgstr ""
  1759. #: src/help.c:51
  1760. msgid "unpacked but not configured"
  1761. msgstr ""
  1762. #: src/help.c:52
  1763. msgid "broken due to postinst failure"
  1764. msgstr ""
  1765. #: src/help.c:53
  1766. msgid "awaiting trigger processing by another package"
  1767. msgstr ""
  1768. #: src/help.c:54
  1769. msgid "triggered"
  1770. msgstr ""
  1771. #: src/help.c:55
  1772. msgid "installed"
  1773. msgstr ""
  1774. #: src/help.c:106
  1775. msgid "error: PATH is not set."
  1776. msgstr ""
  1777. #: src/help.c:128
  1778. #, c-format
  1779. msgid "'%s' not found in PATH or not executable."
  1780. msgstr ""
  1781. #: src/help.c:136
  1782. #, c-format
  1783. msgid ""
  1784. "%d expected program(s) not found in PATH or not executable.\n"
  1785. "NB: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin."
  1786. msgstr ""
  1787. #: src/help.c:184
  1788. #, c-format
  1789. msgid "failed to chroot to `%.250s'"
  1790. msgstr ""
  1791. #: src/help.c:186 dpkg-deb/build.c:415 dpkg-deb/build.c:488
  1792. #: dpkg-deb/build.c:511
  1793. #, c-format
  1794. msgid "failed to chdir to `%.255s'"
  1795. msgstr ""
  1796. #: src/help.c:246
  1797. #, c-format
  1798. msgid "unable to set execute permissions on `%.250s'"
  1799. msgstr ""
  1800. #: src/help.c:266
  1801. msgid "unable to setenv for maintainer script"
  1802. msgstr ""
  1803. #: src/help.c:290
  1804. #, c-format
  1805. msgid "installed %s script"
  1806. msgstr ""
  1807. #: src/help.c:303 src/help.c:369 src/help.c:428
  1808. #, c-format
  1809. msgid "unable to stat %s `%.250s'"
  1810. msgstr ""
  1811. #: src/help.c:355 src/help.c:415
  1812. #, c-format
  1813. msgid "new %s script"
  1814. msgstr ""
  1815. #: src/help.c:389
  1816. #, c-format
  1817. msgid "old %s script"
  1818. msgstr ""
  1819. #: src/help.c:403
  1820. #, c-format
  1821. msgid "unable to stat %s '%.250s': %s"
  1822. msgstr ""
  1823. #: src/help.c:412
  1824. #, c-format
  1825. msgid "dpkg - trying script from the new package instead ...\n"
  1826. msgstr ""
  1827. #: src/help.c:426
  1828. msgid "there is no script in the new version of the package - giving up"
  1829. msgstr ""
  1830. #: src/help.c:432
  1831. #, c-format
  1832. msgid "dpkg: ... it looks like that went OK.\n"
  1833. msgstr ""
  1834. #: src/help.c:578
  1835. #, c-format
  1836. msgid "unable to securely remove '%.255s'"
  1837. msgstr ""
  1838. #: src/help.c:583 dpkg-deb/info.c:63
  1839. msgid "failed to exec rm for cleanup"
  1840. msgstr ""
  1841. #: src/main.c:56
  1842. #, fuzzy, c-format
  1843. msgid "Debian `%s' package management program version %s.\n"
  1844. msgstr "Debianov `%s' program za rukovanje paketima."
  1845. #: src/main.c:59 src/query.c:574 src/statcmd.c:63 src/trigcmd.c:57
  1846. #: dpkg-deb/main.c:58 dpkg-split/main.c:50 scripts/dpkg-divert.pl:39
  1847. #: scripts/update-alternatives.pl:447
  1848. #, fuzzy, c-format
  1849. msgid ""
  1850. "This is free software; see the GNU General Public License version 2 or\n"
  1851. "later for copying conditions. There is NO warranty.\n"
  1852. msgstr ""
  1853. "Verzija %s.\n"
  1854. "Copyright (C) 1994-1996 Ian Jackson.\n"
  1855. "Copyright (C) 2000,2001 Wichert Akkerman.\n"
  1856. "Ovo je slobodan software; pogledajte GNU opštu javnu licencu verzije 2\n"
  1857. "ili kasniju za uslove kopiranja. NEMA garancije. Pogledajte\n"
  1858. "dselect --licence za detalje.\n"
  1859. #: src/main.c:74 src/query.c:586 src/statcmd.c:75 dpkg-deb/main.c:70
  1860. #: dpkg-split/main.c:62
  1861. #, c-format
  1862. msgid ""
  1863. "Usage: %s [<option> ...] <command>\n"
  1864. "\n"
  1865. msgstr ""
  1866. #: src/main.c:78
  1867. #, c-format
  1868. msgid ""
  1869. "Commands:\n"
  1870. " -i|--install <.deb file name> ... | -R|--recursive <directory> ...\n"
  1871. " --unpack <.deb file name> ... | -R|--recursive <directory> ...\n"
  1872. " -A|--record-avail <.deb file name> ... | -R|--recursive <directory> ...\n"
  1873. " --configure <package> ... | -a|--pending\n"
  1874. " --triggers-only <package> ... | -a|--pending\n"
  1875. " -r|--remove <package> ... | -a|--pending\n"
  1876. " -P|--purge <package> ... | -a|--pending\n"
  1877. " --get-selections [<pattern> ...] Get list of selections to stdout.\n"
  1878. " --set-selections Set package selections from stdin.\n"
  1879. " --clear-selections Deselect every non-essential package.\n"
  1880. " --update-avail <Packages-file> Replace available packages info.\n"
  1881. " --merge-avail <Packages-file> Merge with info from file.\n"
  1882. " --clear-avail Erase existing available info.\n"
  1883. " --forget-old-unavail Forget uninstalled unavailable pkgs.\n"
  1884. " -s|--status <package> ... Display package status details.\n"
  1885. " -p|--print-avail <package> ... Display available version details.\n"
  1886. " -L|--listfiles <package> ... List files `owned' by package(s).\n"
  1887. " -l|--list [<pattern> ...] List packages concisely.\n"
  1888. " -S|--search <pattern> ... Find package(s) owning file(s).\n"
  1889. " -C|--audit Check for broken package(s).\n"
  1890. " --print-architecture Print dpkg architecture.\n"
  1891. " --compare-versions <a> <op> <b> Compare version numbers - see below.\n"
  1892. " --force-help Show help on forcing.\n"
  1893. " -Dh|--debug=help Show help on debugging.\n"
  1894. "\n"
  1895. msgstr ""
  1896. #: src/main.c:106 src/query.c:602 src/trigcmd.c:79 dpkg-deb/main.c:87
  1897. #: dpkg-split/main.c:76
  1898. #, c-format
  1899. msgid ""
  1900. " -h|--help Show this help message.\n"
  1901. " --version Show the version.\n"
  1902. "\n"
  1903. msgstr ""
  1904. #: src/main.c:111
  1905. #, c-format
  1906. msgid ""
  1907. "Use dpkg -b|--build|-c|--contents|-e|--control|-I|--info|-f|--field|\n"
  1908. " -x|--extract|-X|--vextract|--fsys-tarfile on archives (type %s --help).\n"
  1909. "\n"
  1910. msgstr ""
  1911. #: src/main.c:116
  1912. #, c-format
  1913. msgid ""
  1914. "For internal use: dpkg --assert-support-predepends | --predep-package |\n"
  1915. " --assert-working-epoch | --assert-long-filenames | --assert-multi-conrep.\n"
  1916. "\n"
  1917. msgstr ""
  1918. #: src/main.c:121
  1919. #, c-format
  1920. msgid ""
  1921. "Options:\n"
  1922. " --admindir=<directory> Use <directory> instead of %s.\n"
  1923. " --root=<directory> Install on a different root directory.\n"
  1924. " --instdir=<directory> Change installation dir without changing admin "
  1925. "dir.\n"
  1926. " -O|--selected-only Skip packages not selected for install/"
  1927. "upgrade.\n"
  1928. " -E|--skip-same-version Skip packages whose same version is installed.\n"
  1929. " -G|--refuse-downgrade Skip packages with earlier version than "
  1930. "installed.\n"
  1931. " -B|--auto-deconfigure Install even if it would break some other "
  1932. "package.\n"
  1933. " --[no-]triggers Skip or force consequential trigger "
  1934. "processing.\n"
  1935. " --no-debsig Do not try to verify package signatures.\n"
  1936. " --no-act|--dry-run|--simulate\n"
  1937. " Just say what we would do - don't do it.\n"
  1938. " -D|--debug=<octal> Enable debugging (see -Dhelp or --debug=help).\n"
  1939. " --status-fd <n> Send status change updates to file descriptor "
  1940. "<n>.\n"
  1941. " --log=<filename> Log status changes and actions to <filename>.\n"
  1942. " --ignore-depends=<package>,...\n"
  1943. " Ignore dependencies involving <package>.\n"
  1944. " --force-... Override problems (see --force-help).\n"
  1945. " --no-force-...|--refuse-...\n"
  1946. " Stop when problems encountered.\n"
  1947. " --abort-after <n> Abort after encountering <n> errors.\n"
  1948. "\n"
  1949. msgstr ""
  1950. #: src/main.c:145
  1951. #, c-format
  1952. msgid ""
  1953. "Comparison operators for --compare-versions are:\n"
  1954. " lt le eq ne ge gt (treat empty version as earlier than any "
  1955. "version);\n"
  1956. " lt-nl le-nl ge-nl gt-nl (treat empty version as later than any version);\n"
  1957. " < << <= = >= >> > (only for compatibility with control file "
  1958. "syntax).\n"
  1959. "\n"
  1960. msgstr ""
  1961. #: src/main.c:152
  1962. #, c-format
  1963. msgid "Use `dselect' or `aptitude' for user-friendly package management.\n"
  1964. msgstr ""
  1965. #: src/main.c:162
  1966. msgid ""
  1967. "Type dpkg --help for help about installing and deinstalling packages [*];\n"
  1968. "Use `dselect' or `aptitude' for user-friendly package management;\n"
  1969. "Type dpkg -Dhelp for a list of dpkg debug flag values;\n"
  1970. "Type dpkg --force-help for a list of forcing options;\n"
  1971. "Type dpkg-deb --help for help about manipulating *.deb files;\n"
  1972. "\n"
  1973. "Options marked [*] produce a lot of output - pipe it through `less' or "
  1974. "`more' !"
  1975. msgstr ""
  1976. #: src/main.c:217 src/query.c:635 src/statcmd.c:112 dpkg-deb/main.c:198
  1977. #: dpkg-split/main.c:164
  1978. #, c-format
  1979. msgid "conflicting actions -%c (--%s) and -%c (--%s)"
  1980. msgstr ""
  1981. #: src/main.c:223
  1982. #, c-format
  1983. msgid "obsolete option '--%s'\n"
  1984. msgstr ""
  1985. #: src/main.c:231
  1986. #, c-format
  1987. msgid ""
  1988. "%s debugging option, --debug=<octal> or -D<octal>:\n"
  1989. "\n"
  1990. " number ref. in source description\n"
  1991. " 1 general Generally helpful progress information\n"
  1992. " 2 scripts Invocation and status of maintainer scripts\n"
  1993. " 10 eachfile Output for each file processed\n"
  1994. " 100 eachfiledetail Lots of output for each file processed\n"
  1995. " 20 conff Output for each configuration file\n"
  1996. " 200 conffdetail Lots of output for each configuration file\n"
  1997. " 40 depcon Dependencies and conflicts\n"
  1998. " 400 depcondetail Lots of dependencies/conflicts output\n"
  1999. " 10000 triggers Trigger activation and processing\n"
  2000. " 20000 triggersdetail Lots of output regarding triggers\n"
  2001. " 40000 triggersstupid Silly amounts of output regarding triggers\n"
  2002. " 1000 veryverbose Lots of drivel about eg the dpkg/info directory\n"
  2003. " 2000 stupidlyverbose Insane amounts of drivel\n"
  2004. "\n"
  2005. "Debugging options are be mixed using bitwise-or.\n"
  2006. "Note that the meanings and values are subject to change.\n"
  2007. msgstr ""
  2008. #: src/main.c:255
  2009. msgid "--debug requires an octal argument"
  2010. msgstr ""
  2011. #: src/main.c:278
  2012. #, c-format
  2013. msgid "null package name in --ignore-depends comma-separated list `%.250s'"
  2014. msgstr ""
  2015. #: src/main.c:284
  2016. #, c-format
  2017. msgid "--ignore-depends requires a legal package name. `%.250s' is not; %s"
  2018. msgstr ""
  2019. #: src/main.c:301 src/main.c:313 src/main.c:585 dpkg-split/main.c:123
  2020. #, c-format
  2021. msgid "invalid integer for --%s: `%.250s'"
  2022. msgstr ""
  2023. #: src/main.c:315
  2024. msgid "<package status and progress file descriptor>"
  2025. msgstr ""
  2026. #: src/main.c:386
  2027. #, c-format
  2028. msgid ""
  2029. "%s forcing options - control behaviour when problems found:\n"
  2030. " warn but continue: --force-<thing>,<thing>,...\n"
  2031. " stop with error: --refuse-<thing>,<thing>,... | --no-force-<thing>,...\n"
  2032. " Forcing things:\n"
  2033. " all [!] Set all force options\n"
  2034. " downgrade [*] Replace a package with a lower version\n"
  2035. " configure-any Configure any package which may help this one\n"
  2036. " hold Process incidental packages even when on hold\n"
  2037. " bad-path PATH is missing important programs, problems "
  2038. "likely\n"
  2039. " not-root Try to (de)install things even when not root\n"
  2040. " overwrite Overwrite a file from one package with another\n"
  2041. " overwrite-diverted Overwrite a diverted file with an undiverted "
  2042. "version\n"
  2043. " bad-verify Install a package even if it fails authenticity "
  2044. "check\n"
  2045. " depends-version [!] Turn dependency version problems into warnings\n"
  2046. " depends [!] Turn all dependency problems into warnings\n"
  2047. " confnew [!] Always use the new config files, don't prompt\n"
  2048. " confold [!] Always use the old config files, don't prompt\n"
  2049. " confdef [!] Use the default option for new config files if one\n"
  2050. " is available, don't prompt. If no default can be "
  2051. "found,\n"
  2052. " you will be prompted unless one of the confold or\n"
  2053. " confnew options is also given\n"
  2054. " confmiss [!] Always install missing config files\n"
  2055. " breaks [!] Install even if it would break another package\n"
  2056. " conflicts [!] Allow installation of conflicting packages\n"
  2057. " architecture [!] Process even packages with wrong architecture\n"
  2058. " overwrite-dir [!] Overwrite one package's directory with another's "
  2059. "file\n"
  2060. " remove-reinstreq [!] Remove packages which require installation\n"
  2061. " remove-essential [!] Remove an essential package\n"
  2062. "\n"
  2063. "WARNING - use of options marked [!] can seriously damage your installation.\n"
  2064. "Forcing options marked [*] are enabled by default.\n"
  2065. msgstr ""
  2066. #: src/main.c:432
  2067. #, c-format
  2068. msgid "unknown force/refuse option `%.*s'"
  2069. msgstr ""
  2070. #: src/main.c:438
  2071. #, c-format
  2072. msgid "obsolete force/refuse option '%s'\n"
  2073. msgstr ""
  2074. #: src/main.c:579
  2075. msgid "--command-fd takes one argument, not zero"
  2076. msgstr ""
  2077. #: src/main.c:581
  2078. msgid "--command-fd only takes one argument"
  2079. msgstr ""
  2080. #: src/main.c:587
  2081. #, c-format
  2082. msgid "couldn't open `%i' for stream"
  2083. msgstr ""
  2084. #: src/main.c:611
  2085. #, c-format
  2086. msgid "unexpected eof before end of line %d"
  2087. msgstr ""
  2088. #: src/main.c:655 src/main.c:677 src/query.c:676 src/statcmd.c:428
  2089. #: dpkg-deb/main.c:222 dpkg-split/main.c:183
  2090. msgid "need an action option"
  2091. msgstr ""
  2092. #: src/packages.c:113
  2093. msgid ""
  2094. "you must specify packages by their own names, not by quoting the names of "
  2095. "the files they come in"
  2096. msgstr ""
  2097. #: src/packages.c:134
  2098. #, c-format
  2099. msgid "--%s --pending does not take any non-option arguments"
  2100. msgstr ""
  2101. #: src/packages.c:139 src/query.c:301 src/query.c:538
  2102. #, c-format
  2103. msgid "--%s needs at least one package name argument"
  2104. msgstr ""
  2105. #: src/packages.c:178
  2106. #, c-format
  2107. msgid "Package %s listed more than once, only processing once.\n"
  2108. msgstr ""
  2109. #: src/packages.c:182
  2110. #, c-format
  2111. msgid ""
  2112. "More than one copy of package %s has been unpacked\n"
  2113. " in this run ! Only configuring it once.\n"
  2114. msgstr ""
  2115. #: src/packages.c:227
  2116. #, c-format
  2117. msgid ""
  2118. "package %.250s is not ready for trigger processing\n"
  2119. " (current status `%.250s' with no pending triggers)"
  2120. msgstr ""
  2121. #: src/packages.c:323
  2122. #, c-format
  2123. msgid " Package %s which provides %s is to be removed.\n"
  2124. msgstr ""
  2125. #: src/packages.c:326
  2126. #, c-format
  2127. msgid " Package %s is to be removed.\n"
  2128. msgstr ""
  2129. #: src/packages.c:343
  2130. #, c-format
  2131. msgid " Version of %s on system is %s.\n"
  2132. msgstr ""
  2133. #: src/packages.c:364
  2134. #, c-format
  2135. msgid " Package %s which provides %s awaits trigger processing.\n"
  2136. msgstr ""
  2137. #: src/packages.c:368
  2138. #, c-format
  2139. msgid " Package %s awaits trigger processing.\n"
  2140. msgstr ""
  2141. #: src/packages.c:399
  2142. #, c-format
  2143. msgid "dpkg: also configuring `%s' (required by `%s')\n"
  2144. msgstr ""
  2145. #: src/packages.c:405
  2146. #, c-format
  2147. msgid " Package %s which provides %s is not configured yet.\n"
  2148. msgstr ""
  2149. #: src/packages.c:408
  2150. #, c-format
  2151. msgid " Package %s is not configured yet.\n"
  2152. msgstr ""
  2153. #: src/packages.c:419
  2154. #, c-format
  2155. msgid " Package %s which provides %s is not installed.\n"
  2156. msgstr ""
  2157. #: src/packages.c:422
  2158. #, c-format
  2159. msgid " Package %s is not installed.\n"
  2160. msgstr ""
  2161. #: src/packages.c:459
  2162. #, c-format
  2163. msgid " %s (%s) breaks %s and is %s.\n"
  2164. msgstr ""
  2165. #: src/packages.c:467
  2166. #, c-format
  2167. msgid " %s (%s) provides %s.\n"
  2168. msgstr ""
  2169. #: src/packages.c:472
  2170. #, c-format
  2171. msgid " Version of %s to be configured is %s.\n"
  2172. msgstr ""
  2173. #: src/packages.c:571
  2174. msgid " depends on "
  2175. msgstr "zavisi o"
  2176. #: src/packages.c:577
  2177. msgid "; however:\n"
  2178. msgstr ""
  2179. #: src/pkg-show.c:41 src/query.c:93
  2180. msgid "(no description available)"
  2181. msgstr ""
  2182. #: src/processarc.c:134
  2183. msgid "cannot access archive"
  2184. msgstr ""
  2185. #: src/processarc.c:146
  2186. #, c-format
  2187. msgid "error ensuring `%.250s' doesn't exist"
  2188. msgstr ""
  2189. #: src/processarc.c:151
  2190. msgid "failed to exec dpkg-split to see if it's part of a multiparter"
  2191. msgstr ""
  2192. #: src/processarc.c:159
  2193. msgid "reassembled package file"
  2194. msgstr ""
  2195. #: src/processarc.c:174
  2196. #, c-format
  2197. msgid "Authenticating %s ...\n"
  2198. msgstr ""
  2199. #: src/processarc.c:179
  2200. msgid "failed to execl debsig-verify"
  2201. msgstr ""
  2202. #: src/processarc.c:186
  2203. #, c-format
  2204. msgid "Verification on package %s failed!"
  2205. msgstr ""
  2206. #: src/processarc.c:188
  2207. #, c-format
  2208. msgid ""
  2209. "Verification on package %s failed,\n"
  2210. "but installing anyway as you requested.\n"
  2211. msgstr ""
  2212. #: src/processarc.c:191
  2213. #, c-format
  2214. msgid "passed\n"
  2215. msgstr ""
  2216. #: src/processarc.c:202
  2217. msgid "unable to create temporary directory"
  2218. msgstr ""
  2219. #: src/processarc.c:229
  2220. msgid "failed to exec dpkg-deb to extract control information"
  2221. msgstr ""
  2222. #: src/processarc.c:255
  2223. #, c-format
  2224. msgid "Recorded info about %s from %s.\n"
  2225. msgstr ""
  2226. #: src/processarc.c:264
  2227. #, c-format
  2228. msgid "package architecture (%s) does not match system (%s)"
  2229. msgstr ""
  2230. #: src/processarc.c:319
  2231. #, c-format
  2232. msgid ""
  2233. "dpkg: regarding %s containing %s, pre-dependency problem:\n"
  2234. "%s"
  2235. msgstr ""
  2236. #: src/processarc.c:322
  2237. #, c-format
  2238. msgid "pre-dependency problem - not installing %.250s"
  2239. msgstr ""
  2240. #: src/processarc.c:323
  2241. msgid "ignoring pre-dependency problem!"
  2242. msgstr ""
  2243. #: src/processarc.c:338
  2244. #, c-format
  2245. msgid "Preparing to replace %s %s (using %s) ...\n"
  2246. msgstr ""
  2247. #: src/processarc.c:344
  2248. #, c-format
  2249. msgid "Unpacking %s (from %s) ...\n"
  2250. msgstr ""
  2251. #: src/processarc.c:373
  2252. #, c-format
  2253. msgid "name of conffile (starting `%.250s') is too long (>%d characters)"
  2254. msgstr ""
  2255. #: src/processarc.c:426
  2256. #, c-format
  2257. msgid "read error in %.250s"
  2258. msgstr ""
  2259. #: src/processarc.c:428
  2260. #, c-format
  2261. msgid "error closing %.250s"
  2262. msgstr ""
  2263. #: src/processarc.c:430
  2264. #, c-format
  2265. msgid "error trying to open %.250s"
  2266. msgstr ""
  2267. #: src/processarc.c:466
  2268. #, c-format
  2269. msgid "De-configuring %s, to allow removal of %s ...\n"
  2270. msgstr ""
  2271. #: src/processarc.c:469
  2272. #, c-format
  2273. msgid "De-configuring %s ...\n"
  2274. msgstr ""
  2275. #: src/processarc.c:544
  2276. #, c-format
  2277. msgid "Unpacking replacement %.250s ...\n"
  2278. msgstr ""
  2279. #: src/processarc.c:625
  2280. msgid "unable to exec dpkg-deb to get filesystem archive"
  2281. msgstr ""
  2282. #: src/processarc.c:639
  2283. msgid "error reading dpkg-deb tar output"
  2284. msgstr ""
  2285. #: src/processarc.c:641
  2286. msgid "corrupted filesystem tarfile - corrupted package archive"
  2287. msgstr ""
  2288. #: src/processarc.c:644
  2289. msgid "dpkg-deb: zap possible trailing zeros"
  2290. msgstr ""
  2291. #: src/processarc.c:706
  2292. #, c-format
  2293. msgid "could not stat old file '%.250s' so not deleting it: %s"
  2294. msgstr ""
  2295. #: src/processarc.c:712
  2296. #, c-format
  2297. msgid "unable to delete old directory '%.250s': %s"
  2298. msgstr ""
  2299. #: src/processarc.c:715
  2300. #, c-format
  2301. msgid "old conffile '%.250s' was an empty directory (and has now been deleted)"
  2302. msgstr ""
  2303. #: src/processarc.c:757
  2304. #, c-format
  2305. msgid "unable to stat other new file `%.250s'"
  2306. msgstr ""
  2307. #: src/processarc.c:768
  2308. #, c-format
  2309. msgid ""
  2310. "old file '%.250s' is the same as several new files! (both '%.250s' and "
  2311. "'%.250s')"
  2312. msgstr ""
  2313. #: src/processarc.c:807
  2314. #, c-format
  2315. msgid "unable to securely remove old file '%.250s': %s"
  2316. msgstr ""
  2317. #: src/processarc.c:841 src/processarc.c:1110 src/query.c:487 src/remove.c:272
  2318. msgid "cannot read info directory"
  2319. msgstr ""
  2320. #: src/processarc.c:854
  2321. #, c-format
  2322. msgid "old version of package has overly-long info file name starting `%.250s'"
  2323. msgstr ""
  2324. #: src/processarc.c:879
  2325. #, c-format
  2326. msgid "unable to remove obsolete info file `%.250s'"
  2327. msgstr ""
  2328. #: src/processarc.c:883
  2329. #, c-format
  2330. msgid "unable to install (supposed) new info file `%.250s'"
  2331. msgstr ""
  2332. #: src/processarc.c:894
  2333. msgid "unable to open temp control directory"
  2334. msgstr ""
  2335. #: src/processarc.c:903
  2336. #, c-format
  2337. msgid "package contains overly-long control info file name (starting `%.50s')"
  2338. msgstr ""
  2339. #: src/processarc.c:908
  2340. #, c-format
  2341. msgid "package control info contained directory `%.250s'"
  2342. msgstr ""
  2343. #: src/processarc.c:910
  2344. #, c-format
  2345. msgid "package control info rmdir of `%.250s' didn't say not a dir"
  2346. msgstr ""
  2347. #: src/processarc.c:916
  2348. #, c-format
  2349. msgid "package %s contained list as info file"
  2350. msgstr ""
  2351. #: src/processarc.c:922
  2352. #, c-format
  2353. msgid "unable to install new info file `%.250s' as `%.250s'"
  2354. msgstr ""
  2355. #: src/processarc.c:1089
  2356. #, c-format
  2357. msgid "(Noting disappearance of %s, which has been completely replaced.)\n"
  2358. msgstr ""
  2359. #: src/processarc.c:1126
  2360. #, c-format
  2361. msgid "unable to delete disappearing control info file `%.250s'"
  2362. msgstr ""
  2363. #: src/query.c:115
  2364. msgid ""
  2365. "Desired=Unknown/Install/Remove/Purge/Hold\n"
  2366. "| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-"
  2367. "pend\n"
  2368. "|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\n"
  2369. msgstr ""
  2370. #: src/query.c:119
  2371. msgid "Name"
  2372. msgstr "Naziv"
  2373. #: src/query.c:119
  2374. msgid "Version"
  2375. msgstr "Verzija"
  2376. #: src/query.c:119
  2377. msgid "Description"
  2378. msgstr "Opis"
  2379. #: src/query.c:181 src/query.c:436 src/select.c:73
  2380. #, c-format
  2381. msgid "No packages found matching %s.\n"
  2382. msgstr ""
  2383. #: src/query.c:205
  2384. #, c-format
  2385. msgid "diversion by %s from: %s\n"
  2386. msgstr ""
  2387. #: src/query.c:207
  2388. #, c-format
  2389. msgid "diversion by %s to: %s\n"
  2390. msgstr ""
  2391. #: src/query.c:210
  2392. #, c-format
  2393. msgid "local diversion from: %s\n"
  2394. msgstr ""
  2395. #: src/query.c:211
  2396. #, c-format
  2397. msgid "local diversion to: %s\n"
  2398. msgstr ""
  2399. #: src/query.c:239
  2400. msgid "--search needs at least one file name pattern argument"
  2401. msgstr ""
  2402. #: src/query.c:280
  2403. #, c-format
  2404. msgid "dpkg: %s not found.\n"
  2405. msgstr ""
  2406. #: src/query.c:320
  2407. #, c-format
  2408. msgid "Package `%s' is not installed and no info is available.\n"
  2409. msgstr ""
  2410. #: src/query.c:329
  2411. #, c-format
  2412. msgid "Package `%s' is not available.\n"
  2413. msgstr ""
  2414. #: src/query.c:339 src/query.c:558
  2415. #, c-format
  2416. msgid "Package `%s' is not installed.\n"
  2417. msgstr ""
  2418. #: src/query.c:348
  2419. #, c-format
  2420. msgid "Package `%s' does not contain any files (!)\n"
  2421. msgstr ""
  2422. #: src/query.c:355
  2423. #, c-format
  2424. msgid "locally diverted to: %s\n"
  2425. msgstr ""
  2426. #: src/query.c:358
  2427. #, c-format
  2428. msgid "package diverts others to: %s\n"
  2429. msgstr ""
  2430. #: src/query.c:361
  2431. #, c-format
  2432. msgid "diverted by %s to: %s\n"
  2433. msgstr ""
  2434. #: src/query.c:383
  2435. msgid ""
  2436. "Use dpkg --info (= dpkg-deb --info) to examine archive files,\n"
  2437. "and dpkg --contents (= dpkg-deb --contents) to list their contents.\n"
  2438. msgstr ""
  2439. #: src/query.c:543
  2440. #, c-format
  2441. msgid "--%s takes at most two arguments"
  2442. msgstr ""
  2443. #: src/query.c:551
  2444. #, c-format
  2445. msgid "control file contains %c"
  2446. msgstr ""
  2447. #: src/query.c:571
  2448. #, fuzzy, c-format
  2449. msgid "Debian %s package management program query tool version %s.\n"
  2450. msgstr "Debianov `%s' program za rukovanje paketima."
  2451. #: src/query.c:590
  2452. #, c-format
  2453. msgid ""
  2454. "Commands:\n"
  2455. " -s|--status <package> ... Display package status details.\n"
  2456. " -p|--print-avail <package> ... Display available version details.\n"
  2457. " -L|--listfiles <package> ... List files `owned' by package(s).\n"
  2458. " -l|--list [<pattern> ...] List packages concisely.\n"
  2459. " -W|--show <pattern> ... Show information on package(s).\n"
  2460. " -S|--search <pattern> ... Find package(s) owning file(s).\n"
  2461. " -c|--control-path <package> [<file>]\n"
  2462. " Print path for package control file.\n"
  2463. "\n"
  2464. msgstr ""
  2465. #: src/query.c:607
  2466. #, c-format
  2467. msgid ""
  2468. "Options:\n"
  2469. " --admindir=<directory> Use <directory> instead of %s.\n"
  2470. " -f|--showformat=<format> Use alternative format for --show.\n"
  2471. "\n"
  2472. msgstr ""
  2473. #: src/query.c:613 dpkg-deb/main.c:110
  2474. #, c-format
  2475. msgid ""
  2476. "Format syntax:\n"
  2477. " A format is a string that will be output for each package. The format\n"
  2478. " can include the standard escape sequences \\n (newline), \\r (carriage\n"
  2479. " return) or \\\\ (plain backslash). Package information can be included\n"
  2480. " by inserting variable references to package fields using the ${var[;"
  2481. "width]}\n"
  2482. " syntax. Fields will be right-aligned unless the width is negative in "
  2483. "which\n"
  2484. " case left alignment will be used.\n"
  2485. msgstr ""
  2486. #: src/query.c:627 src/statcmd.c:51
  2487. msgid "Use --help for help about querying packages."
  2488. msgstr ""
  2489. #: src/remove.c:83
  2490. #, c-format
  2491. msgid "ignoring request to remove %.250s which isn't installed."
  2492. msgstr ""
  2493. #: src/remove.c:90
  2494. #, c-format
  2495. msgid ""
  2496. "ignoring request to remove %.250s, only the config\n"
  2497. " files of which are on the system. Use --purge to remove them too."
  2498. msgstr ""
  2499. #: src/remove.c:99
  2500. msgid "This is an essential package - it should not be removed."
  2501. msgstr ""
  2502. #: src/remove.c:124
  2503. #, c-format
  2504. msgid ""
  2505. "dpkg: dependency problems prevent removal of %s:\n"
  2506. "%s"
  2507. msgstr ""
  2508. #: src/remove.c:126
  2509. msgid "dependency problems - not removing"
  2510. msgstr ""
  2511. #: src/remove.c:130
  2512. #, c-format
  2513. msgid ""
  2514. "dpkg: %s: dependency problems, but removing anyway as you requested:\n"
  2515. "%s"
  2516. msgstr ""
  2517. #: src/remove.c:138
  2518. msgid ""
  2519. "Package is in a very bad inconsistent state - you should\n"
  2520. " reinstall it before attempting a removal."
  2521. msgstr ""
  2522. #: src/remove.c:145
  2523. #, c-format
  2524. msgid "Would remove or purge %s ...\n"
  2525. msgstr ""
  2526. #: src/remove.c:153
  2527. #, c-format
  2528. msgid "Removing %s ...\n"
  2529. msgstr ""
  2530. #: src/remove.c:254 src/remove.c:364
  2531. #, c-format
  2532. msgid ""
  2533. "while removing %.250s, unable to remove directory '%.250s': %s - directory "
  2534. "may be a mount point?"
  2535. msgstr ""
  2536. #: src/remove.c:260 src/remove.c:370
  2537. #, c-format
  2538. msgid "cannot remove `%.250s'"
  2539. msgstr ""
  2540. #: src/remove.c:263
  2541. #, c-format
  2542. msgid "unable to securely remove '%.250s'"
  2543. msgstr ""
  2544. #: src/remove.c:298
  2545. #, c-format
  2546. msgid "unable to delete control info file `%.250s'"
  2547. msgstr ""
  2548. #: src/remove.c:359
  2549. #, c-format
  2550. msgid "while removing %.250s, directory '%.250s' not empty so not removed."
  2551. msgstr ""
  2552. #: src/remove.c:393
  2553. #, c-format
  2554. msgid "Purging configuration files for %s ...\n"
  2555. msgstr ""
  2556. #: src/remove.c:443
  2557. #, c-format
  2558. msgid "cannot remove old config file `%.250s' (= `%.250s')"
  2559. msgstr ""
  2560. #: src/remove.c:458
  2561. #, c-format
  2562. msgid "cannot read config file dir `%.250s' (from `%.250s')"
  2563. msgstr ""
  2564. #: src/remove.c:493
  2565. #, c-format
  2566. msgid "cannot remove old backup config file `%.250s' (of `%.250s')"
  2567. msgstr ""
  2568. #: src/remove.c:531
  2569. #, c-format
  2570. msgid "unable to check existence of `%.250s'"
  2571. msgstr ""
  2572. #: src/remove.c:566
  2573. msgid "cannot remove old files list"
  2574. msgstr ""
  2575. #: src/remove.c:572
  2576. msgid "can't remove old postrm script"
  2577. msgstr ""
  2578. #: src/select.c:109
  2579. #, c-format
  2580. msgid "unexpected eof in package name at line %d"
  2581. msgstr ""
  2582. #: src/select.c:110
  2583. #, c-format
  2584. msgid "unexpected end of line in package name at line %d"
  2585. msgstr ""
  2586. #: src/select.c:114
  2587. #, c-format
  2588. msgid "unexpected eof after package name at line %d"
  2589. msgstr ""
  2590. #: src/select.c:115
  2591. #, c-format
  2592. msgid "unexpected end of line after package name at line %d"
  2593. msgstr ""
  2594. #: src/select.c:124
  2595. #, c-format
  2596. msgid "unexpected data after package and selection at line %d"
  2597. msgstr ""
  2598. #: src/select.c:129
  2599. #, c-format
  2600. msgid "illegal package name at line %d: %.250s"
  2601. msgstr ""
  2602. #: src/select.c:131
  2603. #, c-format
  2604. msgid "unknown wanted status at line %d: %.250s"
  2605. msgstr ""
  2606. #: src/select.c:137
  2607. msgid "read error on standard input"
  2608. msgstr ""
  2609. #: src/statcmd.c:56 scripts/dpkg-divert.pl:32
  2610. #: scripts/update-alternatives.pl:439
  2611. #, fuzzy, c-format, perl-format
  2612. msgid "Debian %s version %s.\n"
  2613. msgstr "Debianov `%s' program za rukovanje paketima."
  2614. #: src/statcmd.c:59
  2615. #, c-format
  2616. msgid ""
  2617. "Copyright (C) 2000, 2001 Wichert Akkerman.\n"
  2618. "Copyright (C) 2006-2009 Guillem Jover.\n"
  2619. msgstr ""
  2620. #: src/statcmd.c:79
  2621. #, c-format
  2622. msgid ""
  2623. "Commands:\n"
  2624. " --add <owner> <group> <mode> <file>\n"
  2625. " add a new entry into the database.\n"
  2626. " --remove <file> remove file from the database.\n"
  2627. " --list [<glob-pattern>] list current overrides in the database.\n"
  2628. "\n"
  2629. msgstr ""
  2630. #: src/statcmd.c:87
  2631. #, c-format
  2632. msgid ""
  2633. "Options:\n"
  2634. " --admindir <directory> set the directory with the statoverride file.\n"
  2635. " --update immediately update file permissions.\n"
  2636. " --force force an action even if a sanity check fails.\n"
  2637. " --quiet quiet operation, minimal output.\n"
  2638. " --help show this help message.\n"
  2639. " --version show the version.\n"
  2640. "\n"
  2641. msgstr ""
  2642. #: src/statcmd.c:125
  2643. msgid "stripping trailing /"
  2644. msgstr ""
  2645. #: src/statcmd.c:226
  2646. msgid "cannot open new statoverride file"
  2647. msgstr ""
  2648. #: src/statcmd.c:234 dpkg-deb/build.c:564 dpkg-split/join.c:73
  2649. #: dpkg-split/queue.c:183
  2650. #, c-format
  2651. msgid "unable to flush file '%s'"
  2652. msgstr ""
  2653. #: src/statcmd.c:236 dpkg-deb/build.c:566 dpkg-split/join.c:75
  2654. #: dpkg-split/queue.c:185
  2655. #, c-format
  2656. msgid "unable to sync file '%s'"
  2657. msgstr ""
  2658. #: src/statcmd.c:241
  2659. msgid "error removing statoverride-old"
  2660. msgstr ""
  2661. #: src/statcmd.c:243
  2662. msgid "error creating new statoverride-old"
  2663. msgstr ""
  2664. #: src/statcmd.c:245
  2665. msgid "error installing new statoverride"
  2666. msgstr ""
  2667. #: src/statcmd.c:265
  2668. msgid "--add needs four arguments"
  2669. msgstr ""
  2670. #: src/statcmd.c:268 scripts/dpkg-divert.pl:163
  2671. msgid "file may not contain newlines"
  2672. msgstr ""
  2673. #: src/statcmd.c:275
  2674. #, c-format
  2675. msgid ""
  2676. "An override for '%s' already exists, but --force specified so will be "
  2677. "ignored."
  2678. msgstr ""
  2679. #: src/statcmd.c:279
  2680. #, c-format
  2681. msgid "An override for '%s' already exists, aborting."
  2682. msgstr ""
  2683. #: src/statcmd.c:291
  2684. #, c-format
  2685. msgid "--update given but %s does not exist"
  2686. msgstr ""
  2687. #: src/statcmd.c:309 scripts/dpkg-divert.pl:160 scripts/dpkg-divert.pl:189
  2688. #: scripts/dpkg-divert.pl:232 scripts/dpkg-divert.pl:242
  2689. #, c-format, perl-format
  2690. msgid "--%s needs a single argument"
  2691. msgstr ""
  2692. #: src/statcmd.c:315
  2693. msgid "No override present."
  2694. msgstr ""
  2695. #: src/statcmd.c:323
  2696. msgid "--update is useless for --remove"
  2697. msgstr ""
  2698. #: src/statdb.c:57
  2699. msgid "syntax error: invalid uid in statoverride file"
  2700. msgstr ""
  2701. #: src/statdb.c:62
  2702. #, c-format
  2703. msgid "syntax error: unknown user '%s' in statoverride file"
  2704. msgstr ""
  2705. #: src/statdb.c:81
  2706. msgid "syntax error: invalid gid in statoverride file"
  2707. msgstr ""
  2708. #: src/statdb.c:86
  2709. #, c-format
  2710. msgid "syntax error: unknown group '%s' in statoverride file"
  2711. msgstr ""
  2712. #: src/statdb.c:102
  2713. msgid "syntax error: invalid mode in statoverride file"
  2714. msgstr ""
  2715. #: src/statdb.c:128
  2716. msgid "failed to open statoverride file"
  2717. msgstr ""
  2718. #: src/statdb.c:135
  2719. msgid "failed to fstat statoverride file"
  2720. msgstr ""
  2721. #: src/statdb.c:138
  2722. msgid "failed to fstat previous statoverride file"
  2723. msgstr ""
  2724. #: src/statdb.c:163
  2725. #, c-format
  2726. msgid "statoverride file `%.250s'"
  2727. msgstr ""
  2728. #: src/statdb.c:170
  2729. msgid "statoverride file is missing final newline"
  2730. msgstr ""
  2731. #: src/statdb.c:174
  2732. msgid "statoverride file contains empty line"
  2733. msgstr ""
  2734. #: src/statdb.c:179 src/statdb.c:191 src/statdb.c:203
  2735. msgid "syntax error in statoverride file"
  2736. msgstr ""
  2737. #: src/statdb.c:187 src/statdb.c:199 src/statdb.c:211
  2738. msgid "unexpected end of line in statoverride file"
  2739. msgstr ""
  2740. #: src/statdb.c:215
  2741. #, c-format
  2742. msgid "multiple statusoverides present for file '%.250s'"
  2743. msgstr ""
  2744. #: src/trigcmd.c:48
  2745. msgid "Type dpkg-trigger --help for help about this utility."
  2746. msgstr ""
  2747. #: src/trigcmd.c:53
  2748. #, fuzzy, c-format
  2749. msgid "Debian %s package trigger utility version %s.\n"
  2750. msgstr "Debianov `%s' program za rukovanje paketima."
  2751. #: src/trigcmd.c:69
  2752. #, c-format
  2753. msgid ""
  2754. "Usage: %s [<options> ...] <trigger-name>\n"
  2755. " %s [<options> ...] <command>\n"
  2756. "\n"
  2757. msgstr ""
  2758. #: src/trigcmd.c:74
  2759. #, c-format
  2760. msgid ""
  2761. "Commands:\n"
  2762. " --check-supported Check if the running dpkg supports "
  2763. "triggers.\n"
  2764. "\n"
  2765. msgstr ""
  2766. #: src/trigcmd.c:84
  2767. #, c-format
  2768. msgid ""
  2769. "Options:\n"
  2770. " --admindir=<directory> Use <directory> instead of %s.\n"
  2771. " --by-package=<package> Override trigger awaiter (normally set\n"
  2772. " by dpkg).\n"
  2773. " --no-await No package needs to await the "
  2774. "processing.\n"
  2775. " --no-act Just test - don't actually change "
  2776. "anything.\n"
  2777. "\n"
  2778. msgstr ""
  2779. #: src/trigcmd.c:154
  2780. #, c-format
  2781. msgid "%s: triggers data directory not yet created\n"
  2782. msgstr ""
  2783. #: src/trigcmd.c:158
  2784. #, c-format
  2785. msgid "%s: trigger records not yet in existence\n"
  2786. msgstr ""
  2787. #: src/trigcmd.c:205
  2788. msgid "takes one argument, the trigger name"
  2789. msgstr ""
  2790. #: src/trigcmd.c:210
  2791. msgid ""
  2792. "dpkg-trigger must be called from a maintainer script (or with a --by-package "
  2793. "option)"
  2794. msgstr ""
  2795. #: src/trigcmd.c:215
  2796. #, c-format
  2797. msgid "dpkg-trigger: illegal awaited package name `%.250s': %.250s"
  2798. msgstr ""
  2799. #: src/trigcmd.c:220
  2800. #, c-format
  2801. msgid "invalid trigger name `%.250s': %.250s"
  2802. msgstr ""
  2803. #: src/trigproc.c:246
  2804. #, c-format
  2805. msgid ""
  2806. "%s: cycle found while processing triggers:\n"
  2807. " chain of packages whose triggers are or may be responsible:\n"
  2808. msgstr ""
  2809. #: src/trigproc.c:254
  2810. #, c-format
  2811. msgid ""
  2812. "\n"
  2813. " packages' pending triggers which are or may be unresolvable:\n"
  2814. msgstr ""
  2815. #: src/trigproc.c:277
  2816. msgid "triggers looping, abandoned"
  2817. msgstr ""
  2818. #: src/trigproc.c:304
  2819. #, c-format
  2820. msgid "Processing triggers for %s ...\n"
  2821. msgstr ""
  2822. #: src/update.c:48
  2823. #, c-format
  2824. msgid "--%s needs exactly one Packages file argument"
  2825. msgstr ""
  2826. #: src/update.c:57
  2827. msgid "unable to access dpkg status area for bulk available update"
  2828. msgstr ""
  2829. #: src/update.c:59
  2830. msgid "bulk available update requires write access to dpkg status area"
  2831. msgstr ""
  2832. #: src/update.c:66
  2833. #, c-format
  2834. msgid "Replacing available packages info, using %s.\n"
  2835. msgstr ""
  2836. #: src/update.c:69
  2837. #, c-format
  2838. msgid "Updating available packages info, using %s.\n"
  2839. msgstr ""
  2840. #: src/update.c:95
  2841. #, c-format
  2842. msgid "Information about %d package(s) was updated.\n"
  2843. msgstr ""
  2844. #: src/update.c:102
  2845. #, c-format
  2846. msgid ""
  2847. "obsolete '--%s' option, unavailable packages are automatically cleaned up."
  2848. msgstr ""
  2849. #: dpkg-deb/build.c:96
  2850. #, c-format
  2851. msgid "dpkg-deb - error: %s (`%s') doesn't contain any digits\n"
  2852. msgstr ""
  2853. #: dpkg-deb/build.c:174
  2854. #, c-format
  2855. msgid "file name '%.50s...' is too long"
  2856. msgstr ""
  2857. #: dpkg-deb/build.c:179
  2858. #, c-format
  2859. msgid "unable to stat file name '%.250s'"
  2860. msgstr ""
  2861. #: dpkg-deb/build.c:243 scripts/dpkg-divert.pl:138
  2862. #: scripts/update-alternatives.pl:128 scripts/update-alternatives.pl:132
  2863. #, c-format, perl-format
  2864. msgid "--%s needs a <directory> argument"
  2865. msgstr ""
  2866. #: dpkg-deb/build.c:247
  2867. msgid "--build takes at most two arguments"
  2868. msgstr ""
  2869. #: dpkg-deb/build.c:251
  2870. #, c-format
  2871. msgid "unable to check for existence of archive `%.250s'"
  2872. msgstr ""
  2873. #: dpkg-deb/build.c:268
  2874. msgid "target is directory - cannot skip control file check"
  2875. msgstr ""
  2876. #: dpkg-deb/build.c:269
  2877. msgid "not checking contents of control area."
  2878. msgstr ""
  2879. #: dpkg-deb/build.c:270
  2880. #, c-format
  2881. msgid "dpkg-deb: building an unknown package in '%s'.\n"
  2882. msgstr ""
  2883. #: dpkg-deb/build.c:287
  2884. msgid "package name has characters that aren't lowercase alphanums or `-+.'"
  2885. msgstr ""
  2886. #: dpkg-deb/build.c:289
  2887. #, c-format
  2888. msgid "'%s' contains user-defined Priority value '%s'"
  2889. msgstr ""
  2890. #: dpkg-deb/build.c:297
  2891. #, c-format
  2892. msgid "'%s' contains user-defined field '%s'"
  2893. msgstr ""
  2894. #: dpkg-deb/build.c:302
  2895. msgid "(upstream) version"
  2896. msgstr ""
  2897. #: dpkg-deb/build.c:304
  2898. #, fuzzy
  2899. msgid "Debian revision"
  2900. msgstr "Debianov `%s' program za rukovanje paketima."
  2901. #: dpkg-deb/build.c:305
  2902. #, c-format
  2903. msgid "%d errors in control file"
  2904. msgstr ""
  2905. #: dpkg-deb/build.c:316
  2906. #, c-format
  2907. msgid "dpkg-deb: building package `%s' in `%s'.\n"
  2908. msgstr ""
  2909. #: dpkg-deb/build.c:322
  2910. msgid "unable to stat control directory"
  2911. msgstr ""
  2912. #: dpkg-deb/build.c:324
  2913. msgid "control directory is not a directory"
  2914. msgstr ""
  2915. #: dpkg-deb/build.c:326
  2916. #, c-format
  2917. msgid "control directory has bad permissions %03lo (must be >=0755 and <=0775)"
  2918. msgstr ""
  2919. #: dpkg-deb/build.c:337
  2920. #, c-format
  2921. msgid "maintainer script `%.50s' is not a plain file or symlink"
  2922. msgstr ""
  2923. #: dpkg-deb/build.c:339
  2924. #, c-format
  2925. msgid ""
  2926. "maintainer script `%.50s' has bad permissions %03lo (must be >=0555 and "
  2927. "<=0775)"
  2928. msgstr ""
  2929. #: dpkg-deb/build.c:343
  2930. #, c-format
  2931. msgid "maintainer script `%.50s' is not stattable"
  2932. msgstr ""
  2933. #: dpkg-deb/build.c:356
  2934. msgid "empty string from fgets reading conffiles"
  2935. msgstr ""
  2936. #: dpkg-deb/build.c:358
  2937. #, c-format
  2938. msgid "conffile name '%.50s...' is too long, or missing final newline"
  2939. msgstr ""
  2940. #: dpkg-deb/build.c:371
  2941. #, c-format
  2942. msgid "conffile filename '%s' contains trailing white spaces"
  2943. msgstr ""
  2944. #: dpkg-deb/build.c:373
  2945. #, c-format
  2946. msgid "conffile `%.250s' does not appear in package"
  2947. msgstr ""
  2948. #: dpkg-deb/build.c:375
  2949. #, c-format
  2950. msgid "conffile `%.250s' is not stattable"
  2951. msgstr ""
  2952. #: dpkg-deb/build.c:377
  2953. #, c-format
  2954. msgid "conffile '%s' is not a plain file"
  2955. msgstr ""
  2956. #: dpkg-deb/build.c:382
  2957. #, c-format
  2958. msgid "conffile name '%s' is duplicated"
  2959. msgstr ""
  2960. #: dpkg-deb/build.c:393
  2961. msgid "error reading conffiles file"
  2962. msgstr ""
  2963. #: dpkg-deb/build.c:396
  2964. msgid "error opening conffiles file"
  2965. msgstr ""
  2966. #: dpkg-deb/build.c:399
  2967. #, c-format
  2968. msgid "ignoring %d warnings about the control file(s)\n"
  2969. msgstr ""
  2970. #: dpkg-deb/build.c:408
  2971. #, c-format
  2972. msgid "unable to unbuffer `%.255s'"
  2973. msgstr ""
  2974. #: dpkg-deb/build.c:416
  2975. msgid "failed to chdir to .../DEBIAN"
  2976. msgstr ""
  2977. #: dpkg-deb/build.c:418 dpkg-deb/build.c:490
  2978. msgid "failed to exec tar -cf"
  2979. msgstr ""
  2980. #: dpkg-deb/build.c:425
  2981. msgid "failed to make tmpfile (control)"
  2982. msgstr ""
  2983. #: dpkg-deb/build.c:427
  2984. #, c-format
  2985. msgid "failed to unlink tmpfile (control), %s"
  2986. msgstr ""
  2987. #: dpkg-deb/build.c:435 dpkg-deb/build.c:466
  2988. msgid "control"
  2989. msgstr ""
  2990. #: dpkg-deb/build.c:440
  2991. msgid "failed to fstat tmpfile (control)"
  2992. msgstr ""
  2993. #: dpkg-deb/build.c:465
  2994. msgid "failed to rewind tmpfile (control)"
  2995. msgstr ""
  2996. #: dpkg-deb/build.c:474
  2997. msgid "failed to make tmpfile (data)"
  2998. msgstr ""
  2999. #: dpkg-deb/build.c:476
  3000. #, c-format
  3001. msgid "failed to unlink tmpfile (data), %s"
  3002. msgstr ""
  3003. #: dpkg-deb/build.c:500 dpkg-deb/extract.c:298
  3004. msgid "data"
  3005. msgstr ""
  3006. #: dpkg-deb/build.c:514
  3007. msgid "failed to exec find"
  3008. msgstr ""
  3009. #: dpkg-deb/build.c:525 dpkg-deb/build.c:533
  3010. msgid "failed to write filename to tar pipe (data)"
  3011. msgstr ""
  3012. #: dpkg-deb/build.c:537
  3013. msgid "<compress> from tar -cf"
  3014. msgstr ""
  3015. #: dpkg-deb/build.c:546
  3016. msgid "failed to fstat tmpfile (data)"
  3017. msgstr ""
  3018. #: dpkg-deb/build.c:556
  3019. msgid "failed to rewind tmpfile (data)"
  3020. msgstr ""
  3021. #: dpkg-deb/build.c:557
  3022. msgid "cat (data)"
  3023. msgstr ""
  3024. #: dpkg-deb/extract.c:58
  3025. msgid "failed to exec sh -c mv foo/* &c"
  3026. msgstr ""
  3027. #: dpkg-deb/extract.c:67
  3028. #, c-format
  3029. msgid "error reading %s from file %.255s"
  3030. msgstr ""
  3031. #: dpkg-deb/extract.c:69
  3032. #, c-format
  3033. msgid "unexpected end of file in %s in %.255s"
  3034. msgstr ""
  3035. #: dpkg-deb/extract.c:82 dpkg-split/info.c:58
  3036. #, c-format
  3037. msgid "file `%.250s' is corrupt - %.250s length contains nulls"
  3038. msgstr ""
  3039. #: dpkg-deb/extract.c:89
  3040. #, c-format
  3041. msgid "file `%.250s' is corrupt - negative member length %zi"
  3042. msgstr ""
  3043. #: dpkg-deb/extract.c:91 dpkg-split/info.c:49
  3044. #, c-format
  3045. msgid "file `%.250s' is corrupt - bad digit (code %d) in %s"
  3046. msgstr ""
  3047. #: dpkg-deb/extract.c:104
  3048. msgid "failed getting the current file position"
  3049. msgstr ""
  3050. #: dpkg-deb/extract.c:107
  3051. msgid "failed setting the current file position"
  3052. msgstr ""
  3053. #: dpkg-deb/extract.c:132
  3054. #, c-format
  3055. msgid "failed to read archive `%.255s'"
  3056. msgstr ""
  3057. #: dpkg-deb/extract.c:133
  3058. msgid "failed to fstat archive"
  3059. msgstr ""
  3060. #: dpkg-deb/extract.c:134
  3061. msgid "version number"
  3062. msgstr "broj verzije"
  3063. #: dpkg-deb/extract.c:143
  3064. msgid "between members"
  3065. msgstr ""
  3066. #: dpkg-deb/extract.c:148 dpkg-split/info.c:105
  3067. #, c-format
  3068. msgid "file `%.250s' is corrupt - bad magic at end of first header"
  3069. msgstr ""
  3070. #: dpkg-deb/extract.c:150
  3071. msgid "member length"
  3072. msgstr ""
  3073. #: dpkg-deb/extract.c:155
  3074. #, c-format
  3075. msgid "file `%.250s' is not a debian binary archive (try dpkg-split?)"
  3076. msgstr ""
  3077. #: dpkg-deb/extract.c:158
  3078. msgid "header info member"
  3079. msgstr ""
  3080. #: dpkg-deb/extract.c:161
  3081. msgid "archive has no newlines in header"
  3082. msgstr ""
  3083. #: dpkg-deb/extract.c:164
  3084. msgid "archive has no dot in version number"
  3085. msgstr ""
  3086. #: dpkg-deb/extract.c:167
  3087. #, c-format
  3088. msgid "archive version %.250s not understood, get newer dpkg-deb"
  3089. msgstr ""
  3090. #: dpkg-deb/extract.c:178 dpkg-deb/extract.c:202
  3091. #, c-format
  3092. msgid "skipped member data from %s"
  3093. msgstr ""
  3094. #: dpkg-deb/extract.c:193
  3095. #, c-format
  3096. msgid "file `%.250s' contains ununderstood data member %.*s, giving up"
  3097. msgstr ""
  3098. #: dpkg-deb/extract.c:198
  3099. #, c-format
  3100. msgid "file `%.250s' contains two control members, giving up"
  3101. msgstr ""
  3102. #: dpkg-deb/extract.c:210
  3103. #, c-format
  3104. msgid ""
  3105. " new debian package, version %s.\n"
  3106. " size %ld bytes: control archive= %zi bytes.\n"
  3107. msgstr ""
  3108. #: dpkg-deb/extract.c:224
  3109. msgid "control information length"
  3110. msgstr ""
  3111. #: dpkg-deb/extract.c:226
  3112. #, c-format
  3113. msgid "archive has malformatted control length `%s'"
  3114. msgstr ""
  3115. #: dpkg-deb/extract.c:229
  3116. #, c-format
  3117. msgid ""
  3118. " old debian package, version %s.\n"
  3119. " size %ld bytes: control archive= %zi, main archive= %ld.\n"
  3120. msgstr ""
  3121. #: dpkg-deb/extract.c:239
  3122. msgid "control area"
  3123. msgstr ""
  3124. #: dpkg-deb/extract.c:245
  3125. #, c-format
  3126. msgid ""
  3127. "dpkg-deb: file looks like it might be an archive which has been\n"
  3128. "dpkg-deb: corrupted by being downloaded in ASCII mode\n"
  3129. msgstr ""
  3130. #: dpkg-deb/extract.c:249
  3131. #, c-format
  3132. msgid "`%.255s' is not a debian format archive"
  3133. msgstr ""
  3134. #: dpkg-deb/extract.c:263
  3135. msgid "failed to open pipe descriptor `1' in paste"
  3136. msgstr ""
  3137. #: dpkg-deb/extract.c:265
  3138. msgid "failed to write to gzip -dc"
  3139. msgstr ""
  3140. #: dpkg-deb/extract.c:266
  3141. msgid "failed to close gzip -dc"
  3142. msgstr ""
  3143. #: dpkg-deb/extract.c:273
  3144. msgid "failed to syscall lseek to files archive portion"
  3145. msgstr ""
  3146. #: dpkg-deb/extract.c:283
  3147. msgid "failed to write to pipe in copy"
  3148. msgstr ""
  3149. #: dpkg-deb/extract.c:284
  3150. msgid "failed to close pipe in copy"
  3151. msgstr ""
  3152. #: dpkg-deb/extract.c:307
  3153. msgid "failed to create directory"
  3154. msgstr ""
  3155. #: dpkg-deb/extract.c:308
  3156. msgid "failed to chdir to directory after creating it"
  3157. msgstr ""
  3158. #: dpkg-deb/extract.c:310
  3159. msgid "failed to chdir to directory"
  3160. msgstr ""
  3161. #: dpkg-deb/extract.c:329
  3162. msgid "failed to exec tar"
  3163. msgstr ""
  3164. #: dpkg-deb/extract.c:335
  3165. msgid "<decompress>"
  3166. msgstr ""
  3167. #: dpkg-deb/extract.c:337
  3168. msgid "paste"
  3169. msgstr ""
  3170. #: dpkg-deb/extract.c:353 dpkg-deb/extract.c:368 dpkg-deb/info.c:75
  3171. #, c-format
  3172. msgid "--%s needs a .deb filename argument"
  3173. msgstr ""
  3174. #: dpkg-deb/extract.c:356
  3175. #, c-format
  3176. msgid ""
  3177. "--%s needs a target directory.\n"
  3178. "Perhaps you should be using dpkg --install ?"
  3179. msgstr ""
  3180. #: dpkg-deb/extract.c:359
  3181. #, c-format
  3182. msgid "--%s takes at most two arguments (.deb and directory)"
  3183. msgstr ""
  3184. #: dpkg-deb/extract.c:370
  3185. #, c-format
  3186. msgid "--%s takes only one argument (.deb filename)"
  3187. msgstr ""
  3188. #: dpkg-deb/info.c:57
  3189. msgid "failed to chdir to `/' for cleanup"
  3190. msgstr ""
  3191. #: dpkg-deb/info.c:79
  3192. msgid "failed to create temporary directory"
  3193. msgstr ""
  3194. #: dpkg-deb/info.c:106
  3195. msgid "info_spew"
  3196. msgstr ""
  3197. #: dpkg-deb/info.c:110
  3198. #, c-format
  3199. msgid "dpkg-deb: `%.255s' contains no control component `%.255s'\n"
  3200. msgstr ""
  3201. #: dpkg-deb/info.c:114
  3202. #, c-format
  3203. msgid "open component `%.255s' (in %.255s) failed in an unexpected way"
  3204. msgstr ""
  3205. #: dpkg-deb/info.c:121
  3206. msgid "One requested control component is missing"
  3207. msgstr ""
  3208. #: dpkg-deb/info.c:123
  3209. #, c-format
  3210. msgid "%d requested control components are missing"
  3211. msgstr ""
  3212. #: dpkg-deb/info.c:136
  3213. #, c-format
  3214. msgid "cannot scan directory `%.255s'"
  3215. msgstr ""
  3216. #: dpkg-deb/info.c:141
  3217. #, c-format
  3218. msgid "cannot stat `%.255s' (in `%.255s')"
  3219. msgstr ""
  3220. #: dpkg-deb/info.c:144
  3221. #, c-format
  3222. msgid "cannot open `%.255s' (in `%.255s')"
  3223. msgstr ""
  3224. #: dpkg-deb/info.c:159 dpkg-deb/info.c:174 dpkg-deb/info.c:188
  3225. #, c-format
  3226. msgid "failed to read `%.255s' (in `%.255s')"
  3227. msgstr ""
  3228. #: dpkg-deb/info.c:162
  3229. #, c-format
  3230. msgid " %7ld bytes, %5d lines %c %-20.127s %.127s\n"
  3231. msgstr ""
  3232. #: dpkg-deb/info.c:166
  3233. #, c-format
  3234. msgid " not a plain file %.255s\n"
  3235. msgstr ""
  3236. #: dpkg-deb/info.c:175
  3237. msgid "(no `control' file in control archive!)\n"
  3238. msgstr ""
  3239. #: dpkg-deb/info.c:205
  3240. msgid "could not open the `control' component"
  3241. msgstr ""
  3242. #: dpkg-deb/info.c:244
  3243. msgid "failed during read of `control' component"
  3244. msgstr ""
  3245. #: dpkg-deb/info.c:246
  3246. #, c-format
  3247. msgid "error closing the '%s' component"
  3248. msgstr ""
  3249. #: dpkg-deb/info.c:257
  3250. msgid "Error in format"
  3251. msgstr "Greška u formatu"
  3252. #: dpkg-deb/info.c:293
  3253. msgid "--contents takes exactly one argument"
  3254. msgstr ""
  3255. #: dpkg-deb/main.c:55
  3256. #, fuzzy, c-format
  3257. msgid "Debian `%s' package archive backend version %s.\n"
  3258. msgstr "Debianov `%s' program za rukovanje paketima."
  3259. #: dpkg-deb/main.c:74
  3260. #, c-format
  3261. msgid ""
  3262. "Commands:\n"
  3263. " -b|--build <directory> [<deb>] Build an archive.\n"
  3264. " -c|--contents <deb> List contents.\n"
  3265. " -I|--info <deb> [<cfile> ...] Show info to stdout.\n"
  3266. " -W|--show <deb> Show information on package(s)\n"
  3267. " -f|--field <deb> [<cfield> ...] Show field(s) to stdout.\n"
  3268. " -e|--control <deb> [<directory>] Extract control info.\n"
  3269. " -x|--extract <deb> <directory> Extract files.\n"
  3270. " -X|--vextract <deb> <directory> Extract & list files.\n"
  3271. " --fsys-tarfile <deb> Output filesystem tarfile.\n"
  3272. "\n"
  3273. msgstr ""
  3274. #: dpkg-deb/main.c:92
  3275. #, c-format
  3276. msgid ""
  3277. "<deb> is the filename of a Debian format archive.\n"
  3278. "<cfile> is the name of an administrative file component.\n"
  3279. "<cfield> is the name of a field in the main `control' file.\n"
  3280. "\n"
  3281. msgstr ""
  3282. #: dpkg-deb/main.c:98
  3283. #, c-format
  3284. msgid ""
  3285. "Options:\n"
  3286. " --showformat=<format> Use alternative format for --show.\n"
  3287. " -D Enable debugging output.\n"
  3288. " --old, --new Select archive format.\n"
  3289. " --nocheck Suppress control file check (build bad\n"
  3290. " packages).\n"
  3291. " -z# Set the compression level when building.\n"
  3292. " -Z<type> Set the compression type used when "
  3293. "building.\n"
  3294. " Allowed types: gzip, xz, bzip2, lzma, "
  3295. "none.\n"
  3296. "\n"
  3297. msgstr ""
  3298. #: dpkg-deb/main.c:119
  3299. #, c-format
  3300. msgid ""
  3301. "\n"
  3302. "Use `dpkg' to install and remove packages from your system, or\n"
  3303. "`dselect' or `aptitude' for user-friendly package management. Packages\n"
  3304. "unpacked using `dpkg-deb --extract' will be incorrectly installed !\n"
  3305. msgstr ""
  3306. #: dpkg-deb/main.c:131
  3307. msgid ""
  3308. "Type dpkg-deb --help for help about manipulating *.deb files;\n"
  3309. "Type dpkg --help for help about installing and deinstalling packages."
  3310. msgstr ""
  3311. #: dpkg-deb/main.c:151
  3312. #, c-format
  3313. msgid "invalid integer for -%c: '%.250s'"
  3314. msgstr ""
  3315. #: dpkg-deb/main.c:154
  3316. #, c-format
  3317. msgid "invalid compression level for -%c: %ld'"
  3318. msgstr ""
  3319. #: dpkg-deb/main.c:208
  3320. #, c-format
  3321. msgid "unknown compression type `%s'!"
  3322. msgstr ""
  3323. #: dpkg-split/info.c:70
  3324. #, c-format
  3325. msgid "file `%.250s' is corrupt - %.250s missing"
  3326. msgstr ""
  3327. #: dpkg-split/info.c:73
  3328. #, c-format
  3329. msgid "file `%.250s' is corrupt - missing newline after %.250s"
  3330. msgstr ""
  3331. #: dpkg-split/info.c:107
  3332. msgid "info length"
  3333. msgstr ""
  3334. #: dpkg-split/info.c:116
  3335. #, c-format
  3336. msgid "file `%.250s' is corrupt - bad padding character (code %d)"
  3337. msgstr ""
  3338. #: dpkg-split/info.c:120
  3339. #, c-format
  3340. msgid "file `%.250s' is corrupt - nulls in info section"
  3341. msgstr ""
  3342. #: dpkg-split/info.c:125
  3343. #, fuzzy
  3344. msgid "format version number"
  3345. msgstr "broj verzije"
  3346. #: dpkg-split/info.c:127
  3347. #, c-format
  3348. msgid "file `%.250s' is format version `%.250s' - you need a newer dpkg-split"
  3349. msgstr ""
  3350. #: dpkg-split/info.c:130
  3351. msgid "package name"
  3352. msgstr ""
  3353. #: dpkg-split/info.c:131
  3354. #, fuzzy
  3355. msgid "package version number"
  3356. msgstr "broj verzije"
  3357. #: dpkg-split/info.c:132
  3358. msgid "package file MD5 checksum"
  3359. msgstr ""
  3360. #: dpkg-split/info.c:135
  3361. #, c-format
  3362. msgid "file `%.250s' is corrupt - bad MD5 checksum `%.250s'"
  3363. msgstr ""
  3364. #: dpkg-split/info.c:137 dpkg-split/info.c:138
  3365. msgid "total length"
  3366. msgstr ""
  3367. #: dpkg-split/info.c:139 dpkg-split/info.c:140
  3368. msgid "part offset"
  3369. msgstr ""
  3370. #: dpkg-split/info.c:142
  3371. #, fuzzy
  3372. msgid "part numbers"
  3373. msgstr "broj verzije"
  3374. #: dpkg-split/info.c:144
  3375. #, c-format
  3376. msgid "file `%.250s' is corrupt - no slash between part numbers"
  3377. msgstr ""
  3378. #: dpkg-split/info.c:147
  3379. msgid "number of parts"
  3380. msgstr ""
  3381. #: dpkg-split/info.c:149
  3382. #, c-format
  3383. msgid "file '%.250s' is corrupt - bad number of parts"
  3384. msgstr ""
  3385. #: dpkg-split/info.c:151
  3386. #, fuzzy
  3387. msgid "parts number"
  3388. msgstr "broj verzije"
  3389. #: dpkg-split/info.c:153
  3390. #, c-format
  3391. msgid "file `%.250s' is corrupt - bad part number"
  3392. msgstr ""
  3393. #: dpkg-split/info.c:161
  3394. #, c-format
  3395. msgid "file `%.250s' is corrupt - bad magic at end of second header"
  3396. msgstr ""
  3397. #: dpkg-split/info.c:163
  3398. #, c-format
  3399. msgid "file `%.250s' is corrupt - second member is not data member"
  3400. msgstr ""
  3401. #: dpkg-split/info.c:166
  3402. msgid "data length"
  3403. msgstr ""
  3404. #: dpkg-split/info.c:170
  3405. #, c-format
  3406. msgid "file `%.250s' is corrupt - wrong number of parts for quoted sizes"
  3407. msgstr ""
  3408. #: dpkg-split/info.c:174
  3409. #, c-format
  3410. msgid "file `%.250s' is corrupt - size is wrong for quoted part number"
  3411. msgstr ""
  3412. #: dpkg-split/info.c:180
  3413. #, c-format
  3414. msgid "unable to fstat part file `%.250s'"
  3415. msgstr ""
  3416. #: dpkg-split/info.c:186
  3417. #, c-format
  3418. msgid "file `%.250s' is corrupt - too short"
  3419. msgstr ""
  3420. #: dpkg-split/info.c:198 dpkg-split/info.c:241
  3421. #, c-format
  3422. msgid "cannot open archive part file `%.250s'"
  3423. msgstr ""
  3424. #: dpkg-split/info.c:200
  3425. #, c-format
  3426. msgid "file `%.250s' is not an archive part"
  3427. msgstr ""
  3428. #: dpkg-split/info.c:205
  3429. #, c-format
  3430. msgid ""
  3431. "%s:\n"
  3432. " Part format version: %s\n"
  3433. " Part of package: %s\n"
  3434. " ... version: %s\n"
  3435. " ... MD5 checksum: %s\n"
  3436. " ... length: %lu bytes\n"
  3437. " ... split every: %lu bytes\n"
  3438. " Part number: %d/%d\n"
  3439. " Part length: %zi bytes\n"
  3440. " Part offset: %lu bytes\n"
  3441. " Part file size (used portion): %lu bytes\n"
  3442. "\n"
  3443. msgstr ""
  3444. #: dpkg-split/info.c:236 dpkg-split/join.c:113
  3445. #, c-format
  3446. msgid "--%s requires one or more part file arguments"
  3447. msgstr ""
  3448. #: dpkg-split/info.c:247
  3449. #, c-format
  3450. msgid "file `%s' is not an archive part\n"
  3451. msgstr ""
  3452. #: dpkg-split/join.c:45
  3453. #, c-format
  3454. msgid "Putting package %s together from %d parts: "
  3455. msgstr ""
  3456. #: dpkg-split/join.c:53
  3457. #, c-format
  3458. msgid "unable to open output file `%.250s'"
  3459. msgstr ""
  3460. #: dpkg-split/join.c:57
  3461. #, c-format
  3462. msgid "unable to (re)open input part file `%.250s'"
  3463. msgstr ""
  3464. #: dpkg-split/join.c:78
  3465. #, c-format
  3466. msgid "done\n"
  3467. msgstr "urađeno\n"
  3468. #: dpkg-split/join.c:94
  3469. #, c-format
  3470. msgid "files `%.250s' and `%.250s' are not parts of the same file"
  3471. msgstr ""
  3472. #: dpkg-split/join.c:99
  3473. #, c-format
  3474. msgid "there are several versions of part %d - at least `%.250s' and `%.250s'"
  3475. msgstr ""
  3476. #: dpkg-split/join.c:136
  3477. #, c-format
  3478. msgid "part %d is missing"
  3479. msgstr ""
  3480. #: dpkg-split/main.c:46
  3481. #, fuzzy, c-format
  3482. msgid "Debian `%s' package split/join tool; version %s.\n"
  3483. msgstr "Debianov `%s' program za rukovanje paketima."
  3484. #: dpkg-split/main.c:48
  3485. #, c-format
  3486. msgid "Copyright (C) 1994-1996 Ian Jackson.\n"
  3487. msgstr ""
  3488. #: dpkg-split/main.c:66
  3489. #, c-format
  3490. msgid ""
  3491. "Commands:\n"
  3492. " -s|--split <file> [<prefix>] Split an archive.\n"
  3493. " -j|--join <part> <part> ... Join parts together.\n"
  3494. " -I|--info <part> ... Display info about a part.\n"
  3495. " -a|--auto -o <complete> <part> Auto-accumulate parts.\n"
  3496. " -l|--listq List unmatched pieces.\n"
  3497. " -d|--discard [<filename> ...] Discard unmatched pieces.\n"
  3498. "\n"
  3499. msgstr ""
  3500. #: dpkg-split/main.c:81
  3501. #, c-format
  3502. msgid ""
  3503. "Options:\n"
  3504. " --depotdir <directory> Use <directory> instead of %s/%s.\n"
  3505. " -S|--partsize <size> In KiB, for -s (default is 450).\n"
  3506. " -o|--output <file> For -j (default is <package>-<version>."
  3507. "deb).\n"
  3508. " -Q|--npquiet Be quiet when -a is not a part.\n"
  3509. " --msdos Generate 8.3 filenames.\n"
  3510. "\n"
  3511. "Exit status: 0 = OK; 1 = -a is not a part; 2 = trouble!\n"
  3512. msgstr ""
  3513. #: dpkg-split/main.c:97
  3514. msgid "Type dpkg-split --help for help."
  3515. msgstr ""
  3516. #: dpkg-split/main.c:107 dpkg-split/main.c:111
  3517. #, c-format
  3518. msgid "error reading %.250s"
  3519. msgstr ""
  3520. #: dpkg-split/main.c:112
  3521. #, c-format
  3522. msgid "unexpected end of file in %.250s"
  3523. msgstr ""
  3524. #: dpkg-split/main.c:125
  3525. msgid "part size is far too large or is not positive"
  3526. msgstr ""
  3527. #: dpkg-split/main.c:129
  3528. #, c-format
  3529. msgid "part size must be at least %d KiB (to allow for header)"
  3530. msgstr ""
  3531. #: dpkg-split/queue.c:88
  3532. #, c-format
  3533. msgid "unable to read depot directory `%.250s'"
  3534. msgstr ""
  3535. #: dpkg-split/queue.c:129
  3536. msgid "--auto requires the use of the --output option"
  3537. msgstr ""
  3538. #: dpkg-split/queue.c:131
  3539. msgid "--auto requires exactly one part file argument"
  3540. msgstr ""
  3541. #: dpkg-split/queue.c:135
  3542. #, c-format
  3543. msgid "unable to read part file `%.250s'"
  3544. msgstr ""
  3545. #: dpkg-split/queue.c:138
  3546. #, c-format
  3547. msgid "File `%.250s' is not part of a multipart archive.\n"
  3548. msgstr ""
  3549. #: dpkg-split/queue.c:166
  3550. #, c-format
  3551. msgid "unable to reopen part file `%.250s'"
  3552. msgstr ""
  3553. #: dpkg-split/queue.c:170
  3554. #, c-format
  3555. msgid "part file `%.250s' has trailing garbage"
  3556. msgstr ""
  3557. #: dpkg-split/queue.c:179
  3558. #, c-format
  3559. msgid "unable to open new depot file `%.250s'"
  3560. msgstr ""
  3561. #: dpkg-split/queue.c:187
  3562. #, c-format
  3563. msgid "unable to rename new depot file `%.250s' to `%.250s'"
  3564. msgstr ""
  3565. #: dpkg-split/queue.c:189
  3566. #, c-format
  3567. msgid "Part %d of package %s filed (still want "
  3568. msgstr ""
  3569. #: dpkg-split/queue.c:193
  3570. msgid " and "
  3571. msgstr ""
  3572. #: dpkg-split/queue.c:207
  3573. #, c-format
  3574. msgid "unable to delete used-up depot file `%.250s'"
  3575. msgstr ""
  3576. #: dpkg-split/queue.c:226
  3577. msgid "Junk files left around in the depot directory:\n"
  3578. msgstr ""
  3579. #: dpkg-split/queue.c:231 dpkg-split/queue.c:255
  3580. #, c-format
  3581. msgid "unable to stat `%.250s'"
  3582. msgstr ""
  3583. #: dpkg-split/queue.c:234
  3584. #, c-format
  3585. msgid " %s (%lu bytes)\n"
  3586. msgstr ""
  3587. #: dpkg-split/queue.c:236
  3588. #, c-format
  3589. msgid " %s (not a plain file)\n"
  3590. msgstr ""
  3591. #: dpkg-split/queue.c:241
  3592. msgid "Packages not yet reassembled:\n"
  3593. msgstr ""
  3594. #: dpkg-split/queue.c:246
  3595. #, c-format
  3596. msgid " Package %s: part(s) "
  3597. msgstr ""
  3598. #: dpkg-split/queue.c:257
  3599. #, c-format
  3600. msgid "part file `%.250s' is not a plain file"
  3601. msgstr ""
  3602. #: dpkg-split/queue.c:262
  3603. #, c-format
  3604. msgid "(total %lu bytes)\n"
  3605. msgstr ""
  3606. #: dpkg-split/queue.c:286
  3607. #, c-format
  3608. msgid "unable to discard `%.250s'"
  3609. msgstr ""
  3610. #: dpkg-split/queue.c:287
  3611. #, c-format
  3612. msgid "Deleted %s.\n"
  3613. msgstr ""
  3614. #: dpkg-split/split.c:49
  3615. msgid "--split needs a source filename argument"
  3616. msgstr ""
  3617. #: dpkg-split/split.c:52
  3618. msgid "--split takes at most a source filename and destination prefix"
  3619. msgstr ""
  3620. #: dpkg-split/split.c:67
  3621. #, c-format
  3622. msgid "unable to open source file `%.250s'"
  3623. msgstr ""
  3624. #: dpkg-split/split.c:68
  3625. msgid "unable to fstat source file"
  3626. msgstr ""
  3627. #: dpkg-split/split.c:69
  3628. #, c-format
  3629. msgid "source file `%.250s' not a plain file"
  3630. msgstr ""
  3631. #: dpkg-split/split.c:75
  3632. msgid "unable to exec mksplit"
  3633. msgstr ""
  3634. #: scripts/dpkg-divert.pl:34
  3635. msgid ""
  3636. "\n"
  3637. "Copyright (C) 1995 Ian Jackson.\n"
  3638. "Copyright (C) 2000,2001 Wichert Akkerman."
  3639. msgstr ""
  3640. #: scripts/dpkg-divert.pl:46
  3641. #, perl-format
  3642. msgid ""
  3643. "Usage: %s [<option> ...] <command>\n"
  3644. "\n"
  3645. "Commands:\n"
  3646. " [--add] <file> add a diversion.\n"
  3647. " --remove <file> remove the diversion.\n"
  3648. " --list [<glob-pattern>] show file diversions.\n"
  3649. " --listpackage <file> show what package diverts the file.\n"
  3650. " --truename <file> return the diverted file.\n"
  3651. "\n"
  3652. "Options:\n"
  3653. " --package <package> name of the package whose copy of <file> will "
  3654. "not\n"
  3655. " be diverted.\n"
  3656. " --local all packages' versions are diverted.\n"
  3657. " --divert <divert-to> the name used by other packages' versions.\n"
  3658. " --rename actually move the file aside (or back).\n"
  3659. " --admindir <directory> set the directory with the diversions file.\n"
  3660. " --test don't do anything, just demonstrate.\n"
  3661. " --quiet quiet operation, minimal output.\n"
  3662. " --help show this help message.\n"
  3663. " --version show the version.\n"
  3664. "\n"
  3665. "When adding, default is --local and --divert <original>.distrib.\n"
  3666. "When removing, --package or --local and --divert must match if specified.\n"
  3667. "Package preinst/postrm scripts should always specify --package and --"
  3668. "divert.\n"
  3669. msgstr ""
  3670. #: scripts/dpkg-divert.pl:92
  3671. #, perl-format
  3672. msgid "two commands specified: %s and --%s"
  3673. msgstr ""
  3674. #: scripts/dpkg-divert.pl:130
  3675. #, perl-format
  3676. msgid "--%s needs a divert-to argument"
  3677. msgstr ""
  3678. #: scripts/dpkg-divert.pl:132
  3679. msgid "divert-to may not contain newlines"
  3680. msgstr ""
  3681. #: scripts/dpkg-divert.pl:134
  3682. #, perl-format
  3683. msgid "--%s needs a <package> argument"
  3684. msgstr ""
  3685. #: scripts/dpkg-divert.pl:136
  3686. msgid "package may not contain newlines"
  3687. msgstr ""
  3688. #: scripts/dpkg-divert.pl:141 scripts/update-alternatives.pl:142
  3689. #, perl-format
  3690. msgid "unknown option `%s'"
  3691. msgstr ""
  3692. #: scripts/dpkg-divert.pl:147
  3693. #, perl-format
  3694. msgid "cannot open diversions: %s"
  3695. msgstr ""
  3696. #: scripts/dpkg-divert.pl:151
  3697. msgid "missing altname"
  3698. msgstr ""
  3699. #: scripts/dpkg-divert.pl:154
  3700. msgid "missing package"
  3701. msgstr ""
  3702. #: scripts/dpkg-divert.pl:162 scripts/dpkg-divert.pl:166
  3703. #, perl-format
  3704. msgid "filename \"%s\" is not absolute"
  3705. msgstr ""
  3706. #: scripts/dpkg-divert.pl:164
  3707. msgid "Cannot divert directories"
  3708. msgstr ""
  3709. #: scripts/dpkg-divert.pl:167
  3710. #, perl-format
  3711. msgid "cannot divert file '%s' to itself"
  3712. msgstr ""
  3713. #: scripts/dpkg-divert.pl:174
  3714. #, perl-format
  3715. msgid "Leaving `%s'"
  3716. msgstr ""
  3717. #: scripts/dpkg-divert.pl:177
  3718. #, perl-format
  3719. msgid "`%s' clashes with `%s'"
  3720. msgstr ""
  3721. #: scripts/dpkg-divert.pl:183
  3722. #, perl-format
  3723. msgid "Adding `%s'"
  3724. msgstr ""
  3725. #: scripts/dpkg-divert.pl:193
  3726. #, perl-format
  3727. msgid ""
  3728. "mismatch on divert-to\n"
  3729. " when removing `%s'\n"
  3730. " found `%s'"
  3731. msgstr ""
  3732. #: scripts/dpkg-divert.pl:195
  3733. #, perl-format
  3734. msgid ""
  3735. "mismatch on package\n"
  3736. " when removing `%s'\n"
  3737. " found `%s'"
  3738. msgstr ""
  3739. #: scripts/dpkg-divert.pl:197
  3740. #, perl-format
  3741. msgid "Removing `%s'"
  3742. msgstr ""
  3743. #: scripts/dpkg-divert.pl:211
  3744. #, perl-format
  3745. msgid "No diversion `%s', none removed"
  3746. msgstr ""
  3747. #: scripts/dpkg-divert.pl:257
  3748. #, perl-format
  3749. msgid "internal error - bad mode `%s'"
  3750. msgstr ""
  3751. #: scripts/dpkg-divert.pl:271
  3752. #, perl-format
  3753. msgid "cannot stat old name `%s': %s"
  3754. msgstr ""
  3755. #: scripts/dpkg-divert.pl:273
  3756. #, perl-format
  3757. msgid "cannot stat new name `%s': %s"
  3758. msgstr ""
  3759. #: scripts/dpkg-divert.pl:290 scripts/dpkg-divert.pl:297
  3760. #, perl-format
  3761. msgid "error checking `%s': %s"
  3762. msgstr ""
  3763. #: scripts/dpkg-divert.pl:301
  3764. #, perl-format
  3765. msgid ""
  3766. "rename involves overwriting `%s' with\n"
  3767. " different file `%s', not allowed"
  3768. msgstr ""
  3769. #: scripts/dpkg-divert.pl:316
  3770. #, perl-format
  3771. msgid "rename: remove duplicate old link `%s': %s"
  3772. msgstr ""
  3773. #: scripts/dpkg-divert.pl:319
  3774. #, perl-format
  3775. msgid "rename: rename `%s' to `%s': %s"
  3776. msgstr ""
  3777. #: scripts/dpkg-divert.pl:326
  3778. #, perl-format
  3779. msgid "create diversions-new: %s"
  3780. msgstr ""
  3781. #: scripts/dpkg-divert.pl:330
  3782. #, perl-format
  3783. msgid "write diversions-new: %s"
  3784. msgstr ""
  3785. #: scripts/dpkg-divert.pl:332
  3786. #, perl-format
  3787. msgid "close diversions-new: %s"
  3788. msgstr ""
  3789. #: scripts/dpkg-divert.pl:334
  3790. #, perl-format
  3791. msgid "remove old diversions-old: %s"
  3792. msgstr ""
  3793. #: scripts/dpkg-divert.pl:336
  3794. #, perl-format
  3795. msgid "create new diversions-old: %s"
  3796. msgstr ""
  3797. #: scripts/dpkg-divert.pl:338
  3798. #, perl-format
  3799. msgid "install new diversions: %s"
  3800. msgstr ""
  3801. #: scripts/dpkg-divert.pl:367
  3802. #, perl-format
  3803. msgid "internal error: %s corrupt: %s"
  3804. msgstr ""
  3805. #: scripts/update-alternatives.pl:64
  3806. #, perl-format
  3807. msgid "unknown argument `%s'"
  3808. msgstr ""
  3809. #: scripts/update-alternatives.pl:79
  3810. msgid "--install needs <link> <name> <path> <priority>"
  3811. msgstr ""
  3812. #: scripts/update-alternatives.pl:84 scripts/update-alternatives.pl:109
  3813. msgid "<link> and <path> can't be the same"
  3814. msgstr ""
  3815. #: scripts/update-alternatives.pl:85
  3816. msgid "priority must be an integer"
  3817. msgstr ""
  3818. #: scripts/update-alternatives.pl:93
  3819. #, perl-format
  3820. msgid "--%s needs <name> <path>"
  3821. msgstr ""
  3822. #: scripts/update-alternatives.pl:98
  3823. #, perl-format
  3824. msgid "--%s needs <name>"
  3825. msgstr ""
  3826. #: scripts/update-alternatives.pl:103
  3827. msgid "--slave only allowed with --install"
  3828. msgstr ""
  3829. #: scripts/update-alternatives.pl:105
  3830. msgid "--slave needs <link> <name> <path>"
  3831. msgstr ""
  3832. #: scripts/update-alternatives.pl:110
  3833. #, perl-format
  3834. msgid "name %s is both primary and slave"
  3835. msgstr ""
  3836. #: scripts/update-alternatives.pl:113
  3837. #, perl-format
  3838. msgid "slave name %s duplicated"
  3839. msgstr ""
  3840. #: scripts/update-alternatives.pl:117
  3841. #, perl-format
  3842. msgid "slave link %s duplicated"
  3843. msgstr ""
  3844. #: scripts/update-alternatives.pl:118
  3845. #, perl-format
  3846. msgid "link %s is both primary and slave"
  3847. msgstr ""
  3848. #: scripts/update-alternatives.pl:124
  3849. #, perl-format
  3850. msgid "--%s needs a <file> argument"
  3851. msgstr ""
  3852. #: scripts/update-alternatives.pl:146
  3853. msgid ""
  3854. "need --display, --query, --list, --get-selections, --config,--set, --set-"
  3855. "selections, --install, --remove, --all, --remove-all or --auto"
  3856. msgstr ""
  3857. #: scripts/update-alternatives.pl:170
  3858. #, perl-format
  3859. msgid "alternative %s can't be master: %s"
  3860. msgstr ""
  3861. #: scripts/update-alternatives.pl:171 scripts/update-alternatives.pl:192
  3862. #, perl-format
  3863. msgid "it is a slave of %s"
  3864. msgstr ""
  3865. #: scripts/update-alternatives.pl:174 scripts/update-alternatives.pl:196
  3866. #, perl-format
  3867. msgid "alternative link %s is already managed by %s."
  3868. msgstr ""
  3869. #: scripts/update-alternatives.pl:177 scripts/update-alternatives.pl:199
  3870. #, perl-format
  3871. msgid "alternative link is not absolute as it should be: %s"
  3872. msgstr ""
  3873. #: scripts/update-alternatives.pl:179 scripts/update-alternatives.pl:201
  3874. #, perl-format
  3875. msgid "alternative path is not absolute as it should be: %s"
  3876. msgstr ""
  3877. #: scripts/update-alternatives.pl:181
  3878. #, perl-format
  3879. msgid "alternative path %s doesn't exist."
  3880. msgstr ""
  3881. #: scripts/update-alternatives.pl:183 scripts/update-alternatives.pl:203
  3882. #, perl-format
  3883. msgid "alternative name (%s) must not contain '/' and spaces."
  3884. msgstr ""
  3885. #: scripts/update-alternatives.pl:189
  3886. #, perl-format
  3887. msgid "alternative %s can't be slave of %s: %s"
  3888. msgstr ""
  3889. #: scripts/update-alternatives.pl:191
  3890. msgid "it is a master alternative."
  3891. msgstr ""
  3892. #: scripts/update-alternatives.pl:228 scripts/update-alternatives.pl:233
  3893. #, perl-format
  3894. msgid "Call %s."
  3895. msgstr ""
  3896. #: scripts/update-alternatives.pl:237
  3897. #, perl-format
  3898. msgid "Alternative %s unchanged because choice %s is not available."
  3899. msgstr ""
  3900. #: scripts/update-alternatives.pl:242
  3901. #, perl-format
  3902. msgid "Skip unknown alternative %s."
  3903. msgstr ""
  3904. #: scripts/update-alternatives.pl:256 scripts/update-alternatives.pl:259
  3905. #, perl-format
  3906. msgid "no alternatives for %s."
  3907. msgstr ""
  3908. #: scripts/update-alternatives.pl:282
  3909. #, perl-format
  3910. msgid "%s is dangling, it will be updated with best choice."
  3911. msgstr ""
  3912. #: scripts/update-alternatives.pl:286
  3913. #, perl-format
  3914. msgid ""
  3915. "%s has been changed (manually or by a script). Switching to manual updates "
  3916. "only."
  3917. msgstr ""
  3918. #: scripts/update-alternatives.pl:294
  3919. #, perl-format
  3920. msgid "setting up automatic selection of %s."
  3921. msgstr ""
  3922. #: scripts/update-alternatives.pl:303
  3923. #, perl-format
  3924. msgid "alternative %s for %s not registered, not setting."
  3925. msgstr ""
  3926. #: scripts/update-alternatives.pl:312
  3927. #, perl-format
  3928. msgid "There is no program which provides %s."
  3929. msgstr ""
  3930. #: scripts/update-alternatives.pl:313 scripts/update-alternatives.pl:321
  3931. msgid "Nothing to configure."
  3932. msgstr ""
  3933. #: scripts/update-alternatives.pl:319
  3934. #, perl-format
  3935. msgid "There is only one alternative in link group %s: %s"
  3936. msgstr ""
  3937. #: scripts/update-alternatives.pl:329
  3938. #, perl-format
  3939. msgid "alternative %s for %s not registered, not removing."
  3940. msgstr ""
  3941. #: scripts/update-alternatives.pl:336
  3942. #, perl-format
  3943. msgid "removing manually selected alternative - switching %s to auto mode"
  3944. msgstr ""
  3945. #: scripts/update-alternatives.pl:352
  3946. #, perl-format
  3947. msgid "renaming %s link from %s to %s."
  3948. msgstr ""
  3949. #: scripts/update-alternatives.pl:370
  3950. #, perl-format
  3951. msgid "renaming %s slave link from %s to %s."
  3952. msgstr ""
  3953. #: scripts/update-alternatives.pl:387
  3954. #, perl-format
  3955. msgid "automatic updates of %s are disabled, leaving it alone."
  3956. msgstr ""
  3957. #: scripts/update-alternatives.pl:389
  3958. #, perl-format
  3959. msgid "to return to automatic updates use `update-alternatives --auto %s'."
  3960. msgstr ""
  3961. #: scripts/update-alternatives.pl:405
  3962. #, perl-format
  3963. msgid "using %s to provide %s (%s) in %s."
  3964. msgstr ""
  3965. #: scripts/update-alternatives.pl:407 scripts/update-alternatives.pl:924
  3966. #: scripts/update-alternatives.pl:970
  3967. msgid "auto mode"
  3968. msgstr ""
  3969. #: scripts/update-alternatives.pl:407 scripts/update-alternatives.pl:924
  3970. #: scripts/update-alternatives.pl:979
  3971. msgid "manual mode"
  3972. msgstr ""
  3973. #: scripts/update-alternatives.pl:411
  3974. #, perl-format
  3975. msgid ""
  3976. "forcing reinstallation of alternative %s because link group %s is broken."
  3977. msgstr ""
  3978. #: scripts/update-alternatives.pl:416
  3979. #, perl-format
  3980. msgid "current alternative %s is unknown, switching to %s for link group %s."
  3981. msgstr ""
  3982. #: scripts/update-alternatives.pl:441
  3983. msgid ""
  3984. "\n"
  3985. "Copyright (C) 1995 Ian Jackson.\n"
  3986. "Copyright (C) 2000-2002 Wichert Akkerman.\n"
  3987. "Copyright (C) 2009 Raphael Hertzog."
  3988. msgstr ""
  3989. #: scripts/update-alternatives.pl:454
  3990. #, perl-format
  3991. msgid ""
  3992. "Usage: %s [<option> ...] <command>\n"
  3993. "\n"
  3994. "Commands:\n"
  3995. " --install <link> <name> <path> <priority>\n"
  3996. " [--slave <link> <name> <path>] ...\n"
  3997. " add a group of alternatives to the system.\n"
  3998. " --remove <name> <path> remove <path> from the <name> group alternative.\n"
  3999. " --remove-all <name> remove <name> group from the alternatives "
  4000. "system.\n"
  4001. " --auto <name> switch the master link <name> to automatic mode.\n"
  4002. " --display <name> display information about the <name> group.\n"
  4003. " --query <name> machine parseable version of --display <name>.\n"
  4004. " --list <name> display all targets of the <name> group.\n"
  4005. " --config <name> show alternatives for the <name> group and ask "
  4006. "the\n"
  4007. " user to select which one to use.\n"
  4008. " --set <name> <path> set <path> as alternative for <name>.\n"
  4009. " --all call --config on all alternatives.\n"
  4010. "\n"
  4011. "<link> is the symlink pointing to %s/<name>.\n"
  4012. " (e.g. /usr/bin/pager)\n"
  4013. "<name> is the master name for this link group.\n"
  4014. " (e.g. pager)\n"
  4015. "<path> is the location of one of the alternative target files.\n"
  4016. " (e.g. /usr/bin/less)\n"
  4017. "<priority> is an integer; options with higher numbers have higher priority "
  4018. "in\n"
  4019. " automatic mode.\n"
  4020. "\n"
  4021. "Options:\n"
  4022. " --altdir <directory> change the alternatives directory.\n"
  4023. " --admindir <directory> change the administrative directory.\n"
  4024. " --skip-auto skip prompt for alternatives correctly "
  4025. "configured\n"
  4026. " in automatic mode (relevant for --config only)\n"
  4027. " --verbose verbose operation, more output.\n"
  4028. " --quiet quiet operation, minimal output.\n"
  4029. " --help show this help message.\n"
  4030. " --version show the version.\n"
  4031. msgstr ""
  4032. #: scripts/update-alternatives.pl:495
  4033. msgid "error"
  4034. msgstr ""
  4035. #: scripts/update-alternatives.pl:537
  4036. #, perl-format
  4037. msgid "two commands specified: --%s and --%s"
  4038. msgstr ""
  4039. #: scripts/update-alternatives.pl:550
  4040. #, perl-format
  4041. msgid "Can't append to %s"
  4042. msgstr ""
  4043. #: scripts/update-alternatives.pl:562
  4044. #, perl-format
  4045. msgid "can't readdir %s: %s"
  4046. msgstr ""
  4047. #: scripts/update-alternatives.pl:591
  4048. #, perl-format
  4049. msgid "unable to make %s a symlink to %s: %s"
  4050. msgstr ""
  4051. #: scripts/update-alternatives.pl:597
  4052. #, perl-format
  4053. msgid "unable to install %s as %s: %s"
  4054. msgstr ""
  4055. #: scripts/update-alternatives.pl:602
  4056. #, perl-format
  4057. msgid "unable to remove %s: %s"
  4058. msgstr ""
  4059. #: scripts/update-alternatives.pl:765
  4060. #, perl-format
  4061. msgid "while reading %s: %s"
  4062. msgstr ""
  4063. #: scripts/update-alternatives.pl:766
  4064. #, perl-format
  4065. msgid "unexpected end of file in %s while trying to read %s"
  4066. msgstr ""
  4067. #: scripts/update-alternatives.pl:774
  4068. #, perl-format
  4069. msgid "%s corrupt: %s"
  4070. msgstr ""
  4071. #: scripts/update-alternatives.pl:779
  4072. #, perl-format
  4073. msgid "newlines prohibited in update-alternatives files (%s)"
  4074. msgstr ""
  4075. #: scripts/update-alternatives.pl:781
  4076. #, perl-format
  4077. msgid "while writing %s: %s"
  4078. msgstr ""
  4079. #: scripts/update-alternatives.pl:789
  4080. #, perl-format
  4081. msgid "unable to read %s: %s"
  4082. msgstr ""
  4083. #: scripts/update-alternatives.pl:791
  4084. msgid "status"
  4085. msgstr ""
  4086. #: scripts/update-alternatives.pl:792
  4087. msgid "invalid status"
  4088. msgstr ""
  4089. #: scripts/update-alternatives.pl:793
  4090. msgid "master link"
  4091. msgstr ""
  4092. #: scripts/update-alternatives.pl:795
  4093. msgid "slave name"
  4094. msgstr ""
  4095. #: scripts/update-alternatives.pl:796
  4096. msgid "slave link"
  4097. msgstr ""
  4098. #: scripts/update-alternatives.pl:797
  4099. #, perl-format
  4100. msgid "duplicate slave %s"
  4101. msgstr ""
  4102. #: scripts/update-alternatives.pl:799
  4103. #, perl-format
  4104. msgid "slave link same as main link %s"
  4105. msgstr ""
  4106. #: scripts/update-alternatives.pl:801
  4107. #, perl-format
  4108. msgid "duplicate slave link %s"
  4109. msgstr ""
  4110. #: scripts/update-alternatives.pl:808
  4111. msgid "master file"
  4112. msgstr ""
  4113. #: scripts/update-alternatives.pl:809
  4114. #, perl-format
  4115. msgid "duplicate path %s"
  4116. msgstr ""
  4117. #: scripts/update-alternatives.pl:812 scripts/update-alternatives.pl:826
  4118. msgid "priority"
  4119. msgstr ""
  4120. #: scripts/update-alternatives.pl:813
  4121. #, perl-format
  4122. msgid "priority of %s: %s"
  4123. msgstr ""
  4124. #: scripts/update-alternatives.pl:817 scripts/update-alternatives.pl:828
  4125. msgid "slave file"
  4126. msgstr ""
  4127. #: scripts/update-alternatives.pl:822
  4128. #, perl-format
  4129. msgid ""
  4130. "alternative %s (part of link group %s) doesn't exist. Removing from list of "
  4131. "alternatives."
  4132. msgstr ""
  4133. #: scripts/update-alternatives.pl:861
  4134. #, perl-format
  4135. msgid "discarding obsolete slave link %s (%s)."
  4136. msgstr ""
  4137. #: scripts/update-alternatives.pl:867
  4138. #, perl-format
  4139. msgid "unable to write %s: %s"
  4140. msgstr ""
  4141. #: scripts/update-alternatives.pl:889
  4142. #, perl-format
  4143. msgid "unable to close %s: %s"
  4144. msgstr ""
  4145. #: scripts/update-alternatives.pl:927
  4146. #, perl-format
  4147. msgid " link currently points to %s"
  4148. msgstr ""
  4149. #: scripts/update-alternatives.pl:929
  4150. msgid " link currently absent"
  4151. msgstr ""
  4152. #: scripts/update-alternatives.pl:933
  4153. #, perl-format
  4154. msgid "%s - priority %s"
  4155. msgstr ""
  4156. #: scripts/update-alternatives.pl:936
  4157. #, perl-format
  4158. msgid " slave %s: %s"
  4159. msgstr ""
  4160. #: scripts/update-alternatives.pl:943
  4161. #, fuzzy, perl-format
  4162. msgid "Current 'best' version is '%s'."
  4163. msgstr "Debianov `%s' program za rukovanje paketima."
  4164. #: scripts/update-alternatives.pl:945
  4165. msgid "No versions available."
  4166. msgstr ""
  4167. #: scripts/update-alternatives.pl:959
  4168. #, perl-format
  4169. msgid "There are %s choices for the alternative %s (providing %s)."
  4170. msgstr ""
  4171. #: scripts/update-alternatives.pl:965
  4172. #, fuzzy
  4173. msgid "Selection"
  4174. msgstr "Opis"
  4175. #: scripts/update-alternatives.pl:966
  4176. msgid "Path"
  4177. msgstr ""
  4178. #: scripts/update-alternatives.pl:966
  4179. msgid "Priority"
  4180. msgstr ""
  4181. #: scripts/update-alternatives.pl:966
  4182. msgid "Status"
  4183. msgstr ""
  4184. #: scripts/update-alternatives.pl:983
  4185. msgid "Press enter to keep the current choice[*], or type selection number: "
  4186. msgstr ""
  4187. #: scripts/update-alternatives.pl:1017
  4188. #, perl-format
  4189. msgid "readlink(%s) failed: %s"
  4190. msgstr ""
  4191. #: scripts/update-alternatives.pl:1030
  4192. #, perl-format
  4193. msgid "can't install unknown choice %s"
  4194. msgstr ""
  4195. #: scripts/update-alternatives.pl:1047 scripts/update-alternatives.pl:1068
  4196. #, perl-format
  4197. msgid "not replacing %s with a link."
  4198. msgstr ""
  4199. #: scripts/update-alternatives.pl:1071
  4200. #, perl-format
  4201. msgid ""
  4202. "skip creation of %s because associated file %s (of link group %s) doesn't "
  4203. "exist."
  4204. msgstr ""
  4205. #, fuzzy
  4206. #~ msgid ""
  4207. #~ "This is free software; see the GNU General Public Licence version 2 or\n"
  4208. #~ "later for copying conditions. There is NO warranty.\n"
  4209. #~ msgstr ""
  4210. #~ "Verzija %s.\n"
  4211. #~ "Copyright (C) 1994-1996 Ian Jackson.\n"
  4212. #~ "Copyright (C) 2000,2001 Wichert Akkerman.\n"
  4213. #~ "Ovo je slobodan software; pogledajte GNU opštu javnu licencu verzije 2\n"
  4214. #~ "ili kasniju za uslove kopiranja. NEMA garancije. Pogledajte\n"
  4215. #~ "dselect --licence za detalje.\n"
  4216. #, fuzzy
  4217. #~ msgid ""
  4218. #~ "\n"
  4219. #~ "This is free software; see the GNU General Public Licence version 2 or\n"
  4220. #~ "later for copying conditions. There is NO warranty.\n"
  4221. #~ msgstr ""
  4222. #~ "Verzija %s.\n"
  4223. #~ "Copyright (C) 1994-1996 Ian Jackson.\n"
  4224. #~ "Copyright (C) 2000,2001 Wichert Akkerman.\n"
  4225. #~ "Ovo je slobodan software; pogledajte GNU opštu javnu licencu verzije 2\n"
  4226. #~ "ili kasniju za uslove kopiranja. NEMA garancije. Pogledajte\n"
  4227. #~ "dselect --licence za detalje.\n"
  4228. #, fuzzy
  4229. #~ msgid ""
  4230. #~ "This is free software; see the GNU General Public License version 2 or\n"
  4231. #~ "later for copying conditions. There is NO warranty.\n"
  4232. #~ "See %s --license for copyright and license details.\n"
  4233. #~ msgstr ""
  4234. #~ "Verzija %s.\n"
  4235. #~ "Copyright (C) 1994-1996 Ian Jackson.\n"
  4236. #~ "Copyright (C) 2000,2001 Wichert Akkerman.\n"
  4237. #~ "Ovo je slobodan software; pogledajte GNU opštu javnu licencu verzije 2\n"
  4238. #~ "ili kasniju za uslove kopiranja. NEMA garancije. Pogledajte\n"
  4239. #~ "dselect --licence za detalje.\n"
  4240. #, fuzzy
  4241. #~ msgid "Debian `%s' package management program query tool\n"
  4242. #~ msgstr "Debianov `%s' program za rukovanje paketima."
  4243. #, fuzzy
  4244. #~ msgid "chmod"
  4245. #~ msgstr "zadrži"
  4246. #, fuzzy
  4247. #~ msgid "aborting"
  4248. #~ msgstr "upozorenje"
  4249. #~ msgid "System error no.%d"
  4250. #~ msgstr "Sistemska greška br.%d"
  4251. #~ msgid "Signal no.%d"
  4252. #~ msgstr "Signal br.%d"
  4253. #~ msgid "to"
  4254. #~ msgstr "za"
  4255. #~ msgid "from"
  4256. #~ msgstr "od"