ru.po 139 KB

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