ro.po 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152
  1. # translation of ro.po to Romanian
  2. # This file is put in the public domain.
  3. #
  4. # Sorin Batariuc <sorin@bonbon.net>, 2004, 2005, 2006.
  5. # Eddy Petrișor <eddy.petrisor@gmail.com>, 2008.
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt 1.0.5\n"
  9. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  10. "POT-Creation-Date: 2015-10-27 10:30+0100\n"
  11. "PO-Revision-Date: 2008-11-15 02:21+0200\n"
  12. "Last-Translator: Eddy Petrișor <eddy.petrisor@gmail.com>\n"
  13. "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
  14. "Language: ro\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: KBabel 1.11.4\n"
  19. "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
  20. "20)) ? 1 : 2;\n"
  21. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  22. #: apt-private/acqprogress.cc
  23. #, c-format
  24. msgid "Hit:%lu %s"
  25. msgstr "Atins:%lu %s"
  26. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  27. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  28. #: apt-private/acqprogress.cc
  29. #, c-format
  30. msgid "Get:%lu %s"
  31. msgstr "Luat:%lu %s"
  32. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  33. #. which failed to download, but the error is ignored (compare "Err:")
  34. #: apt-private/acqprogress.cc
  35. #, c-format
  36. msgid "Ign:%lu %s"
  37. msgstr "Ignorat:%lu %s"
  38. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  39. #. which failed to download and the error is critical (compare "Ign:")
  40. #: apt-private/acqprogress.cc
  41. #, c-format
  42. msgid "Err:%lu %s"
  43. msgstr "Eroare:%lu %s"
  44. #: apt-private/acqprogress.cc
  45. #, c-format
  46. msgid "Fetched %sB in %s (%sB/s)\n"
  47. msgstr "Aduși: %sB în %s (%sB/s)\n"
  48. #: apt-private/acqprogress.cc
  49. msgid " [Working]"
  50. msgstr " [În lucru]"
  51. #: apt-private/acqprogress.cc
  52. #, fuzzy, c-format
  53. msgid ""
  54. "Media change: please insert the disc labeled\n"
  55. " '%s'\n"
  56. "in the drive '%s' and press [Enter]\n"
  57. msgstr ""
  58. "Schimbare de mediu: introduceți discul numit\n"
  59. " „%s”\n"
  60. "în unitatea „%s” și apăsați Enter\n"
  61. #: apt-private/private-cachefile.cc
  62. msgid "Correcting dependencies..."
  63. msgstr "Corectez dependențele..."
  64. #: apt-private/private-cachefile.cc
  65. msgid " failed."
  66. msgstr " eșec."
  67. #: apt-private/private-cachefile.cc
  68. msgid "Unable to correct dependencies"
  69. msgstr "Nu s-au putut corecta dependențele"
  70. #: apt-private/private-cachefile.cc
  71. msgid "Unable to minimize the upgrade set"
  72. msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit"
  73. #: apt-private/private-cachefile.cc
  74. msgid " Done"
  75. msgstr " Terminat"
  76. #: apt-private/private-cachefile.cc
  77. msgid "You might want to run 'apt-get -f install' to correct these."
  78. msgstr "Ați putea să porniți 'apt-get -f install' pentru a corecta acestea."
  79. #: apt-private/private-cachefile.cc
  80. msgid "Unmet dependencies. Try using -f."
  81. msgstr "Dependențe neîndeplinite. Încercați să folosiți -f."
  82. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  83. msgid "Sorting"
  84. msgstr ""
  85. #: apt-private/private-cacheset.cc
  86. #, fuzzy, c-format
  87. msgid "Note, selecting '%s' for task '%s'\n"
  88. msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
  89. #: apt-private/private-cacheset.cc
  90. #, fuzzy, c-format
  91. msgid "Note, selecting '%s' for glob '%s'\n"
  92. msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
  93. #: apt-private/private-cacheset.cc
  94. #, fuzzy, c-format
  95. msgid "Note, selecting '%s' for regex '%s'\n"
  96. msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
  97. #: apt-private/private-cacheset.cc
  98. #, c-format
  99. msgid "Package %s is a virtual package provided by:\n"
  100. msgstr "Pachetul %s este un pachet virtual furnizat de către:\n"
  101. #: apt-private/private-cacheset.cc
  102. #, fuzzy
  103. msgid " [Installed]"
  104. msgstr " [Instalat]"
  105. #: apt-private/private-cacheset.cc
  106. #, fuzzy
  107. msgid " [Not candidate version]"
  108. msgstr "Versiuni candidat"
  109. #: apt-private/private-cacheset.cc
  110. msgid "You should explicitly select one to install."
  111. msgstr "Ar trebui să alegeți în mod explicit unul pentru instalare."
  112. #: apt-private/private-cacheset.cc
  113. #, c-format
  114. msgid ""
  115. "Package %s is not available, but is referred to by another package.\n"
  116. "This may mean that the package is missing, has been obsoleted, or\n"
  117. "is only available from another source\n"
  118. msgstr ""
  119. "Pachetul %s nu este disponibil, dar este menționat de către alt pachet.\n"
  120. "Aceasta ar putea însemna că pachetul lipsește, s-a învechit, sau\n"
  121. "este disponibil numai din altă sursă\n"
  122. #: apt-private/private-cacheset.cc
  123. msgid "However the following packages replace it:"
  124. msgstr "Oricum următoarele pachete îl înlocuiesc:"
  125. #: apt-private/private-cacheset.cc
  126. #, fuzzy, c-format
  127. msgid "Package '%s' has no installation candidate"
  128. msgstr "Pachetul %s nu are nici un candidat la instalare"
  129. #: apt-private/private-cacheset.cc
  130. #, c-format
  131. msgid "Virtual packages like '%s' can't be removed\n"
  132. msgstr ""
  133. #. TRANSLATORS: Note, this is not an interactive question
  134. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  135. #, fuzzy, c-format
  136. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  137. msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n"
  138. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  139. #, fuzzy, c-format
  140. msgid "Package '%s' is not installed, so not removed\n"
  141. msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n"
  142. #: apt-private/private-cacheset.cc
  143. #, fuzzy, c-format
  144. msgid "Note, selecting '%s' instead of '%s'\n"
  145. msgstr "Notă, se selectează %s în locul lui %s\n"
  146. #: apt-private/private-cmndline.cc
  147. msgid "Most used commands:"
  148. msgstr ""
  149. #: apt-private/private-cmndline.cc
  150. #, c-format
  151. msgid "See %s for more information about the available commands."
  152. msgstr ""
  153. #: apt-private/private-cmndline.cc
  154. msgid ""
  155. "Configuration options and syntax is detailed in apt.conf(5).\n"
  156. "Information about how to configure sources can be found in sources.list(5).\n"
  157. "Package and version choices can be expressed via apt_preferences(5).\n"
  158. "Security details are available in apt-secure(8).\n"
  159. msgstr ""
  160. #: apt-private/private-cmndline.cc
  161. msgid "This APT has Super Cow Powers."
  162. msgstr "Acest APT are puterile unei Super Vaci."
  163. #: apt-private/private-cmndline.cc
  164. msgid "This APT helper has Super Meep Powers."
  165. msgstr ""
  166. #: apt-private/private-depends.cc apt-private/private-show.cc
  167. #: cmdline/apt-mark.cc
  168. msgid "No packages found"
  169. msgstr "Nu s-au găsit pachete"
  170. #: apt-private/private-download.cc
  171. msgid "WARNING: The following packages cannot be authenticated!"
  172. msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!"
  173. #: apt-private/private-download.cc
  174. msgid "Authentication warning overridden.\n"
  175. msgstr "Avertisment de autentificare înlocuit.\n"
  176. #: apt-private/private-download.cc
  177. msgid "Some packages could not be authenticated"
  178. msgstr "Unele pachete n-au putut fi autentificate"
  179. #: apt-private/private-download.cc
  180. msgid "Install these packages without verification?"
  181. msgstr "Instalați aceste pachete fără verificare?"
  182. #: apt-private/private-download.cc apt-private/private-install.cc
  183. msgid ""
  184. "--force-yes is deprecated, use one of the options starting with --allow "
  185. "instead."
  186. msgstr ""
  187. #: apt-private/private-download.cc
  188. #, fuzzy
  189. msgid ""
  190. "There were unauthenticated packages and -y was used without --allow-"
  191. "unauthenticated"
  192. msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes"
  193. #: apt-private/private-download.cc
  194. #, c-format
  195. msgid "Failed to fetch %s %s\n"
  196. msgstr "Eșec la aducerea lui %s %s\n"
  197. #: apt-private/private-download.cc
  198. #, c-format
  199. msgid "Couldn't determine free space in %s"
  200. msgstr "N-am putut determina spațiul disponibil în %s"
  201. #: apt-private/private-download.cc
  202. #, c-format
  203. msgid "You don't have enough free space in %s."
  204. msgstr "Nu aveți suficient spațiu în %s."
  205. #: apt-private/private-download.cc
  206. msgid "Unable to lock the download directory"
  207. msgstr "Nu s-a putut bloca directorul de descărcare"
  208. #: apt-private/private-install.cc
  209. msgid "Internal error, InstallPackages was called with broken packages!"
  210. msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!"
  211. #: apt-private/private-install.cc
  212. msgid "Packages need to be removed but remove is disabled."
  213. msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată."
  214. #: apt-private/private-install.cc
  215. #, fuzzy
  216. msgid ""
  217. "Essential packages were removed and -y was used without --allow-remove-"
  218. "essential."
  219. msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes"
  220. #: apt-private/private-install.cc
  221. #, fuzzy
  222. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  223. msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes"
  224. #: apt-private/private-install.cc
  225. msgid ""
  226. "Held packages were changed and -y was used without --allow-change-held-"
  227. "packages."
  228. msgstr ""
  229. #: apt-private/private-install.cc
  230. msgid "Internal error, Ordering didn't finish"
  231. msgstr "Eroare internă, Ordering nu s-a terminat"
  232. #: apt-private/private-install.cc
  233. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  234. msgstr ""
  235. "Ce ciudat... Dimensiunile nu se potrivesc, scrieți la apt@packages.debian.org"
  236. #. TRANSLATOR: The required space between number and unit is already included
  237. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  238. #: apt-private/private-install.cc
  239. #, c-format
  240. msgid "Need to get %sB/%sB of archives.\n"
  241. msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n"
  242. #. TRANSLATOR: The required space between number and unit is already included
  243. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  244. #: apt-private/private-install.cc
  245. #, c-format
  246. msgid "Need to get %sB of archives.\n"
  247. msgstr "Este nevoie să descărcați %sB de arhive.\n"
  248. #. TRANSLATOR: The required space between number and unit is already included
  249. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  250. #: apt-private/private-install.cc
  251. #, c-format
  252. msgid "After this operation, %sB of additional disk space will be used.\n"
  253. msgstr "După această operație vor fi folosiți din disc încă %sB.\n"
  254. #. TRANSLATOR: The required space between number and unit is already included
  255. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  256. #: apt-private/private-install.cc
  257. #, c-format
  258. msgid "After this operation, %sB disk space will be freed.\n"
  259. msgstr "După această operație se vor elibera %sB din spațiul ocupat pe disc.\n"
  260. #: apt-private/private-install.cc
  261. msgid "Trivial Only specified but this is not a trivial operation."
  262. msgstr ""
  263. "A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă."
  264. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  265. #. careful with hard to type or special characters (like non-breaking spaces)
  266. #: apt-private/private-install.cc
  267. msgid "Yes, do as I say!"
  268. msgstr "Da, fă cum îți spun!"
  269. #: apt-private/private-install.cc
  270. #, c-format
  271. msgid ""
  272. "You are about to do something potentially harmful.\n"
  273. "To continue type in the phrase '%s'\n"
  274. " ?] "
  275. msgstr ""
  276. "Sunteți pe cale de a face ceva cu potențial distructiv.\n"
  277. "Pentru a continua tastați fraza '%s'\n"
  278. " ?] "
  279. #: apt-private/private-install.cc
  280. msgid "Abort."
  281. msgstr "Renunțare."
  282. #: apt-private/private-install.cc
  283. msgid "Do you want to continue?"
  284. msgstr "Vreți să continuați?"
  285. #: apt-private/private-install.cc
  286. msgid "Some files failed to download"
  287. msgstr "Descărcarea unor fișiere a eșuat"
  288. #: apt-private/private-install.cc apt-private/private-source.cc
  289. msgid "Download complete and in download only mode"
  290. msgstr "Descărcare completă și în modul doar descărcare"
  291. #: apt-private/private-install.cc
  292. msgid ""
  293. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  294. "missing?"
  295. msgstr ""
  296. "Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulați 'apt-get "
  297. "update' sau încercați cu --fix-missing?"
  298. #: apt-private/private-install.cc
  299. msgid "--fix-missing and media swapping is not currently supported"
  300. msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat"
  301. #: apt-private/private-install.cc
  302. msgid "Unable to correct missing packages."
  303. msgstr "Nu pot corecta pachetele lipsă."
  304. #: apt-private/private-install.cc
  305. msgid "Aborting install."
  306. msgstr "Abandonez instalarea."
  307. #: apt-private/private-install.cc
  308. msgid ""
  309. "The following package disappeared from your system as\n"
  310. "all files have been overwritten by other packages:"
  311. msgid_plural ""
  312. "The following packages disappeared from your system as\n"
  313. "all files have been overwritten by other packages:"
  314. msgstr[0] ""
  315. msgstr[1] ""
  316. msgstr[2] ""
  317. #: apt-private/private-install.cc
  318. msgid "Note: This is done automatically and on purpose by dpkg."
  319. msgstr ""
  320. # XXX: orice sugestie este bine-venită
  321. #: apt-private/private-install.cc
  322. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  323. msgstr "Nu este voie să se șteargă lucruri, nu se poate porni AutoRemover"
  324. #: apt-private/private-install.cc
  325. msgid ""
  326. "Hmm, seems like the AutoRemover destroyed something which really\n"
  327. "shouldn't happen. Please file a bug report against apt."
  328. msgstr ""
  329. "Hmm, se pare că AutoRemover a distrus ceva, lucru care n-ar trebui să se "
  330. "întâmple. Sunteți rugat să trimiteți un raportați de defect pentru pachetul "
  331. "apt."
  332. #.
  333. #. if (Packages == 1)
  334. #. {
  335. #. c1out << std::endl;
  336. #. c1out <<
  337. #. _("Since you only requested a single operation it is extremely likely that\n"
  338. #. "the package is simply not installable and a bug report against\n"
  339. #. "that package should be filed.") << std::endl;
  340. #. }
  341. #.
  342. #: apt-private/private-install.cc
  343. msgid "The following information may help to resolve the situation:"
  344. msgstr "Următoarele informații ar putea să vă ajute la rezolvarea situației:"
  345. #: apt-private/private-install.cc
  346. msgid "Internal Error, AutoRemover broke stuff"
  347. msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni"
  348. #: apt-private/private-install.cc
  349. #, fuzzy
  350. msgid ""
  351. "The following package was automatically installed and is no longer required:"
  352. msgid_plural ""
  353. "The following packages were automatically installed and are no longer "
  354. "required:"
  355. msgstr[0] ""
  356. "Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
  357. msgstr[1] ""
  358. "Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
  359. msgstr[2] ""
  360. "Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
  361. #: apt-private/private-install.cc
  362. #, fuzzy, c-format
  363. msgid "%lu package was automatically installed and is no longer required.\n"
  364. msgid_plural ""
  365. "%lu packages were automatically installed and are no longer required.\n"
  366. msgstr[0] ""
  367. "Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
  368. msgstr[1] ""
  369. "Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
  370. msgstr[2] ""
  371. "Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
  372. #: apt-private/private-install.cc
  373. #, fuzzy, c-format
  374. msgid "Use '%s' to remove it."
  375. msgid_plural "Use '%s' to remove them."
  376. msgstr[0] "Folosiți '%s' pentru a le șterge."
  377. msgstr[1] "Folosiți '%s' pentru a le șterge."
  378. msgstr[2] "Folosiți '%s' pentru a le șterge."
  379. #: apt-private/private-install.cc
  380. msgid "You might want to run 'apt-get -f install' to correct these:"
  381. msgstr "Ați putea porni 'apt-get -f install' pentru a corecta acestea:"
  382. #: apt-private/private-install.cc
  383. msgid ""
  384. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  385. "solution)."
  386. msgstr ""
  387. "Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet "
  388. "(sau oferiți o altă soluție)."
  389. #: apt-private/private-install.cc
  390. msgid ""
  391. "Some packages could not be installed. This may mean that you have\n"
  392. "requested an impossible situation or if you are using the unstable\n"
  393. "distribution that some required packages have not yet been created\n"
  394. "or been moved out of Incoming."
  395. msgstr ""
  396. "Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că ați "
  397. "cerut\n"
  398. "o situație imposibilă sau că folosiți distribuția instabilă în care unele "
  399. "pachete\n"
  400. "cerute n-au fost create încă sau au fost mutate din Incoming."
  401. #: apt-private/private-install.cc
  402. msgid "Broken packages"
  403. msgstr "Pachete deteriorate"
  404. #: apt-private/private-install.cc
  405. #, fuzzy
  406. msgid "The following additional packages will be installed:"
  407. msgstr "Următoarele extra pachete vor fi instalate:"
  408. #: apt-private/private-install.cc
  409. msgid "Suggested packages:"
  410. msgstr "Pachete sugerate:"
  411. #: apt-private/private-install.cc
  412. msgid "Recommended packages:"
  413. msgstr "Pachete recomandate:"
  414. #: apt-private/private-install.cc
  415. #, c-format
  416. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  417. msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n"
  418. #: apt-private/private-install.cc
  419. #, fuzzy, c-format
  420. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  421. msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n"
  422. #: apt-private/private-install.cc
  423. #, c-format
  424. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  425. msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n"
  426. #. TRANSLATORS: First string is package name, second is version
  427. #: apt-private/private-install.cc
  428. #, fuzzy, c-format
  429. msgid "%s is already the newest version (%s).\n"
  430. msgstr "%s este deja la cea mai nouă versiune.\n"
  431. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  432. #, c-format
  433. msgid "%s set to manually installed.\n"
  434. msgstr "%s este marcat ca fiind instalat manual.\n"
  435. #: apt-private/private-install.cc
  436. #, fuzzy, c-format
  437. msgid "Selected version '%s' (%s) for '%s'\n"
  438. msgstr "Versiune selectată %s (%s) pentru %s\n"
  439. #: apt-private/private-install.cc
  440. #, fuzzy, c-format
  441. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  442. msgstr "Versiune selectată %s (%s) pentru %s\n"
  443. #: apt-private/private-list.cc
  444. msgid "Listing"
  445. msgstr ""
  446. #: apt-private/private-list.cc
  447. #, c-format
  448. msgid "There is %i additional version. Please use the '-a' switch to see it"
  449. msgid_plural ""
  450. "There are %i additional versions. Please use the '-a' switch to see them."
  451. msgstr[0] ""
  452. msgstr[1] ""
  453. msgstr[2] ""
  454. #: apt-private/private-main.cc
  455. msgid ""
  456. "NOTE: This is only a simulation!\n"
  457. " apt-get needs root privileges for real execution.\n"
  458. " Keep also in mind that locking is deactivated,\n"
  459. " so don't depend on the relevance to the real current situation!"
  460. msgstr ""
  461. #: apt-private/private-output.cc apt-private/private-show.cc
  462. msgid "unknown"
  463. msgstr ""
  464. #: apt-private/private-output.cc
  465. #, fuzzy, c-format
  466. msgid "[installed,upgradable to: %s]"
  467. msgstr " [Instalat]"
  468. #: apt-private/private-output.cc
  469. #, fuzzy
  470. msgid "[installed,local]"
  471. msgstr " [Instalat]"
  472. #: apt-private/private-output.cc
  473. msgid "[installed,auto-removable]"
  474. msgstr ""
  475. #: apt-private/private-output.cc
  476. #, fuzzy
  477. msgid "[installed,automatic]"
  478. msgstr " [Instalat]"
  479. #: apt-private/private-output.cc
  480. #, fuzzy
  481. msgid "[installed]"
  482. msgstr " [Instalat]"
  483. #: apt-private/private-output.cc
  484. #, c-format
  485. msgid "[upgradable from: %s]"
  486. msgstr ""
  487. #: apt-private/private-output.cc
  488. msgid "[residual-config]"
  489. msgstr ""
  490. #: apt-private/private-output.cc
  491. #, c-format
  492. msgid "but %s is installed"
  493. msgstr "dar %s este instalat"
  494. #: apt-private/private-output.cc
  495. #, c-format
  496. msgid "but %s is to be installed"
  497. msgstr "dar %s este pe cale de a fi instalat"
  498. #: apt-private/private-output.cc
  499. msgid "but it is not installable"
  500. msgstr "dar nu este instalabil"
  501. #: apt-private/private-output.cc
  502. msgid "but it is a virtual package"
  503. msgstr "dar este un pachet virtual"
  504. #: apt-private/private-output.cc
  505. msgid "but it is not installed"
  506. msgstr "dar nu este instalat"
  507. #: apt-private/private-output.cc
  508. msgid "but it is not going to be installed"
  509. msgstr "dar nu este pe cale să fie instalat"
  510. #: apt-private/private-output.cc
  511. msgid " or"
  512. msgstr " sau"
  513. #: apt-private/private-output.cc
  514. msgid "The following packages have unmet dependencies:"
  515. msgstr "Următoarele pachete au dependențe neîndeplinite:"
  516. #: apt-private/private-output.cc
  517. msgid "The following NEW packages will be installed:"
  518. msgstr "Următoarele pachete NOI vor fi instalate:"
  519. #: apt-private/private-output.cc
  520. msgid "The following packages will be REMOVED:"
  521. msgstr "Următoarele pachete vor fi ȘTERSE:"
  522. #: apt-private/private-output.cc
  523. msgid "The following packages have been kept back:"
  524. msgstr "Următoarele pachete au fost reținute:"
  525. #: apt-private/private-output.cc
  526. msgid "The following packages will be upgraded:"
  527. msgstr "Următoarele pachete vor fi ÎNNOITE:"
  528. #: apt-private/private-output.cc
  529. msgid "The following packages will be DOWNGRADED:"
  530. msgstr "Următoarele pachete vor fi DE-GRADATE:"
  531. #: apt-private/private-output.cc
  532. msgid "The following held packages will be changed:"
  533. msgstr "Următoarele pachete ținute vor fi schimbate:"
  534. #: apt-private/private-output.cc
  535. #, c-format
  536. msgid "%s (due to %s)"
  537. msgstr "%s (datorită %s)"
  538. #: apt-private/private-output.cc
  539. msgid ""
  540. "WARNING: The following essential packages will be removed.\n"
  541. "This should NOT be done unless you know exactly what you are doing!"
  542. msgstr ""
  543. "AVERTISMENT: Următoarele pachete esențiale vor fi șterse.\n"
  544. "Aceasta NU ar trebui făcută decât dacă știți exact ce vreți!"
  545. #: apt-private/private-output.cc
  546. #, c-format
  547. msgid "%lu upgraded, %lu newly installed, "
  548. msgstr "%lu înnoite, %lu nou instalate, "
  549. #: apt-private/private-output.cc
  550. #, c-format
  551. msgid "%lu reinstalled, "
  552. msgstr "%lu reinstalate, "
  553. #: apt-private/private-output.cc
  554. #, c-format
  555. msgid "%lu downgraded, "
  556. msgstr "%lu de-gradate, "
  557. #: apt-private/private-output.cc
  558. #, c-format
  559. msgid "%lu to remove and %lu not upgraded.\n"
  560. msgstr "%lu de șters și %lu neînnoite.\n"
  561. #: apt-private/private-output.cc
  562. #, c-format
  563. msgid "%lu not fully installed or removed.\n"
  564. msgstr "%lu instalate sau șterse incomplet.\n"
  565. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  566. #. e.g. "Do you want to continue? [Y/n] "
  567. #. The user has to answer with an input matching the
  568. #. YESEXPR/NOEXPR defined in your l10n.
  569. #: apt-private/private-output.cc
  570. msgid "[Y/n]"
  571. msgstr ""
  572. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  573. #. e.g. "Should this file be removed? [y/N] "
  574. #. The user has to answer with an input matching the
  575. #. YESEXPR/NOEXPR defined in your l10n.
  576. #: apt-private/private-output.cc
  577. msgid "[y/N]"
  578. msgstr ""
  579. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  580. #: apt-private/private-output.cc
  581. msgid "Y"
  582. msgstr "Y"
  583. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  584. #: apt-private/private-output.cc
  585. msgid "N"
  586. msgstr ""
  587. #: apt-private/private-output.cc apt-pkg/cachefilter.cc
  588. #, c-format
  589. msgid "Regex compilation error - %s"
  590. msgstr "Eroare de compilare expresie regulată - %s"
  591. #: apt-private/private-search.cc
  592. #, fuzzy
  593. msgid "You must give at least one search pattern"
  594. msgstr "Trebuie să dați exact un șablon"
  595. #: apt-private/private-search.cc
  596. msgid "Full Text Search"
  597. msgstr ""
  598. #: apt-private/private-show.cc cmdline/apt-cache.cc
  599. #, c-format
  600. msgid "Package file %s is out of sync."
  601. msgstr "Fișierul pachetului %s este desincronizat."
  602. #: apt-private/private-show.cc
  603. #, c-format
  604. msgid "There is %i additional record. Please use the '-a' switch to see it"
  605. msgid_plural ""
  606. "There are %i additional records. Please use the '-a' switch to see them."
  607. msgstr[0] ""
  608. msgstr[1] ""
  609. msgstr[2] ""
  610. #: apt-private/private-show.cc
  611. msgid "not a real package (virtual)"
  612. msgstr ""
  613. #: apt-private/private-show.cc apt-pkg/cacheset.cc
  614. #, c-format
  615. msgid "Unable to locate package %s"
  616. msgstr "Nu s-a putut localiza pachetul %s"
  617. #: apt-private/private-show.cc
  618. msgid "Package files:"
  619. msgstr "Fișiere pachet: "
  620. #: apt-private/private-show.cc
  621. msgid "Cache is out of sync, can't x-ref a package file"
  622. msgstr ""
  623. "Cache-ul este desincronizat, nu se poate executa x-ref pe un fișier pachet"
  624. #. Show any packages have explicit pins
  625. #: apt-private/private-show.cc
  626. msgid "Pinned packages:"
  627. msgstr "Pachete alese special:"
  628. #: apt-private/private-show.cc
  629. msgid "(not found)"
  630. msgstr "(negăsit)"
  631. #. Print the package name and the version we are forcing to
  632. #: apt-private/private-show.cc
  633. #, c-format
  634. msgid "%s -> %s with priority %d\n"
  635. msgstr ""
  636. #: apt-private/private-show.cc
  637. msgid " Installed: "
  638. msgstr " Instalat: "
  639. #: apt-private/private-show.cc
  640. msgid " Candidate: "
  641. msgstr " Candidează: "
  642. #: apt-private/private-show.cc
  643. msgid "(none)"
  644. msgstr "(niciunul)"
  645. #: apt-private/private-show.cc
  646. msgid " Package pin: "
  647. msgstr " Pachet ales special: "
  648. #. Show the priority tables
  649. #: apt-private/private-show.cc
  650. msgid " Version table:"
  651. msgstr " Tabela de versiuni:"
  652. #: apt-private/private-source.cc
  653. #, fuzzy, c-format
  654. msgid "Can not find a package for architecture '%s'"
  655. msgstr "Nu pot găsi pachetul %s"
  656. #: apt-private/private-source.cc
  657. #, fuzzy, c-format
  658. msgid "Can not find a package '%s' with version '%s'"
  659. msgstr "Nu pot găsi pachetul %s"
  660. #: apt-private/private-source.cc
  661. #, fuzzy, c-format
  662. msgid "Can not find a package '%s' with release '%s'"
  663. msgstr "Nu pot găsi pachetul %s"
  664. #: apt-private/private-source.cc
  665. #, fuzzy, c-format
  666. msgid "Picking '%s' as source package instead of '%s'\n"
  667. msgstr "Nu pot determina starea listei surse de pachete %s"
  668. #: apt-private/private-source.cc
  669. #, c-format
  670. msgid "Can not find version '%s' of package '%s'"
  671. msgstr ""
  672. #: apt-private/private-source.cc
  673. msgid "Must specify at least one package to fetch source for"
  674. msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa"
  675. #: apt-private/private-source.cc
  676. #, c-format
  677. msgid "Unable to find a source package for %s"
  678. msgstr "Nu s-a putut găsi o sursă pachet pentru %s"
  679. #: apt-private/private-source.cc
  680. #, c-format
  681. msgid ""
  682. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  683. "%s\n"
  684. msgstr ""
  685. #: apt-private/private-source.cc
  686. #, c-format
  687. msgid ""
  688. "Please use:\n"
  689. "%s\n"
  690. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  691. msgstr ""
  692. #: apt-private/private-source.cc
  693. #, c-format
  694. msgid "Skipping already downloaded file '%s'\n"
  695. msgstr "Sar peste fișierul deja descărcat '%s'\n"
  696. #. TRANSLATOR: The required space between number and unit is already included
  697. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  698. #: apt-private/private-source.cc
  699. #, c-format
  700. msgid "Need to get %sB/%sB of source archives.\n"
  701. msgstr "Este nevoie să descărcați %sB/%sB din arhivele surselor.\n"
  702. #. TRANSLATOR: The required space between number and unit is already included
  703. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  704. #: apt-private/private-source.cc
  705. #, c-format
  706. msgid "Need to get %sB of source archives.\n"
  707. msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n"
  708. #: apt-private/private-source.cc
  709. #, c-format
  710. msgid "Fetch source %s\n"
  711. msgstr "Aducere sursa %s\n"
  712. #: apt-private/private-source.cc
  713. msgid "Failed to fetch some archives."
  714. msgstr "Eșec la aducerea unor arhive."
  715. #: apt-private/private-source.cc
  716. #, c-format
  717. msgid "Skipping unpack of already unpacked source in %s\n"
  718. msgstr "Sar peste despachetarea sursei deja despachetate în %s\n"
  719. #: apt-private/private-source.cc
  720. #, c-format
  721. msgid "Unpack command '%s' failed.\n"
  722. msgstr "Comanda de despachetare '%s' eșuată.\n"
  723. #: apt-private/private-source.cc
  724. #, c-format
  725. msgid "Check if the 'dpkg-dev' package is installed.\n"
  726. msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n"
  727. #: apt-private/private-source.cc
  728. #, c-format
  729. msgid "Build command '%s' failed.\n"
  730. msgstr "Comanda de construire '%s' eșuată.\n"
  731. #: apt-private/private-source.cc
  732. msgid "Must specify at least one package to check builddeps for"
  733. msgstr ""
  734. "Trebuie specificat cel puțin un pachet pentru a-i verifica dependențele "
  735. "înglobate"
  736. #: apt-private/private-source.cc
  737. #, c-format
  738. msgid ""
  739. "No architecture information available for %s. See apt.conf(5) APT::"
  740. "Architectures for setup"
  741. msgstr ""
  742. #: apt-private/private-source.cc
  743. #, c-format
  744. msgid "Note, using directory '%s' to get the build dependencies\n"
  745. msgstr ""
  746. #: apt-private/private-source.cc
  747. #, fuzzy, c-format
  748. msgid "Note, using file '%s' to get the build dependencies\n"
  749. msgstr "Eșec la prelucrarea dependențelor de compilare"
  750. #: apt-private/private-source.cc
  751. #, c-format
  752. msgid "Unable to get build-dependency information for %s"
  753. msgstr "Nu pot prelua informațiile despre dependențele înglobate ale lui %s"
  754. #: apt-private/private-source.cc
  755. #, c-format
  756. msgid "%s has no build depends.\n"
  757. msgstr "%s nu are dependențe înglobate.\n"
  758. #: apt-private/private-source.cc
  759. #, fuzzy, c-format
  760. msgid ""
  761. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  762. "packages"
  763. msgstr ""
  764. "Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
  765. "poate fi găsit"
  766. #: apt-private/private-source.cc
  767. #, c-format
  768. msgid ""
  769. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  770. "found"
  771. msgstr ""
  772. "Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
  773. "poate fi găsit"
  774. #: apt-private/private-source.cc
  775. #, c-format
  776. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  777. msgstr ""
  778. "Eșec la satisfacerea dependenței %s pentru %s: Pachetul instalat %s este "
  779. "prea nou"
  780. #: apt-private/private-source.cc
  781. #, fuzzy, c-format
  782. msgid ""
  783. "%s dependency for %s cannot be satisfied because candidate version of "
  784. "package %s can't satisfy version requirements"
  785. msgstr ""
  786. "Dependența lui %s de %s nu poate fi satisfăcută deoarece nici o versiune "
  787. "disponibilă a pachetului %s nu poate satisface versiunile cerute"
  788. #: apt-private/private-source.cc
  789. #, fuzzy, c-format
  790. msgid ""
  791. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  792. "version"
  793. msgstr ""
  794. "Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
  795. "poate fi găsit"
  796. #: apt-private/private-source.cc
  797. #, c-format
  798. msgid "Failed to satisfy %s dependency for %s: %s"
  799. msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s"
  800. #: apt-private/private-source.cc
  801. #, c-format
  802. msgid "Build-dependencies for %s could not be satisfied."
  803. msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute."
  804. #: apt-private/private-source.cc
  805. msgid "Failed to process build dependencies"
  806. msgstr "Eșec la prelucrarea dependențelor de compilare"
  807. #: apt-private/private-sources.cc
  808. #, fuzzy, c-format
  809. msgid "Failed to parse %s. Edit again? "
  810. msgstr "Eșec la redenumirea lui %s în %s"
  811. #: apt-private/private-sources.cc
  812. #, c-format
  813. msgid "Your '%s' file changed, please run 'apt-get update'."
  814. msgstr ""
  815. #: apt-private/private-update.cc
  816. msgid "The update command takes no arguments"
  817. msgstr "Comanda de actualizare nu are argumente"
  818. #: apt-private/private-update.cc
  819. #, c-format
  820. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  821. msgid_plural ""
  822. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  823. msgstr[0] ""
  824. msgstr[1] ""
  825. msgstr[2] ""
  826. #: apt-private/private-update.cc
  827. msgid "All packages are up to date."
  828. msgstr ""
  829. #: cmdline/apt-cache.cc
  830. #, c-format
  831. msgid "Package %s version %s has an unmet dep:\n"
  832. msgstr "Pachetul %s versiunea %s are o dependență neîndeplinită:\n"
  833. #: cmdline/apt-cache.cc
  834. #, fuzzy
  835. msgid "apt-cache stats does not take any arguments"
  836. msgstr "Comanda de actualizare nu are argumente"
  837. #: cmdline/apt-cache.cc
  838. msgid "Total package names: "
  839. msgstr "Total nume pachete : "
  840. #: cmdline/apt-cache.cc
  841. #, fuzzy
  842. msgid "Total package structures: "
  843. msgstr "Total nume pachete : "
  844. #: cmdline/apt-cache.cc
  845. msgid " Normal packages: "
  846. msgstr " Pachete normale: "
  847. #: cmdline/apt-cache.cc
  848. msgid " Pure virtual packages: "
  849. msgstr " Pachete virtuale pure: "
  850. #: cmdline/apt-cache.cc
  851. msgid " Single virtual packages: "
  852. msgstr " Pachete virtuale singulare: "
  853. #: cmdline/apt-cache.cc
  854. msgid " Mixed virtual packages: "
  855. msgstr " Pachete virtuale mixte: "
  856. #: cmdline/apt-cache.cc
  857. msgid " Missing: "
  858. msgstr " Lipsă: "
  859. #: cmdline/apt-cache.cc
  860. msgid "Total distinct versions: "
  861. msgstr "Total versiuni distincte: "
  862. #: cmdline/apt-cache.cc
  863. msgid "Total distinct descriptions: "
  864. msgstr "Numărul total de descrieri distincte: "
  865. #: cmdline/apt-cache.cc
  866. msgid "Total dependencies: "
  867. msgstr "Total dependențe: "
  868. #: cmdline/apt-cache.cc
  869. msgid "Total ver/file relations: "
  870. msgstr "Total relații versiune/fișier: "
  871. #: cmdline/apt-cache.cc
  872. msgid "Total Desc/File relations: "
  873. msgstr "Total relații desc/fișier: "
  874. #: cmdline/apt-cache.cc
  875. msgid "Total Provides mappings: "
  876. msgstr "Total cartări Furnizează: "
  877. #: cmdline/apt-cache.cc
  878. msgid "Total globbed strings: "
  879. msgstr "Total șiruri înglobate: "
  880. #: cmdline/apt-cache.cc
  881. msgid "Total slack space: "
  882. msgstr "Total spațiu intern: "
  883. #: cmdline/apt-cache.cc
  884. msgid "Total space accounted for: "
  885. msgstr "Total spațiu contorizat pentru: "
  886. #: cmdline/apt-cache.cc
  887. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  888. msgstr ""
  889. #: cmdline/apt-cache.cc
  890. msgid ""
  891. "Usage: apt-cache [options] command\n"
  892. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  893. "\n"
  894. "apt-cache queries and displays available information about installed\n"
  895. "as well as installable packages. It works exclusively on the data\n"
  896. "acquired via the 'update' command of e.g. apt-get to the local cache.\n"
  897. "The displayed information can therefore be outdated if the last update\n"
  898. "is too long ago, but in exchange apt-cache works independently of the\n"
  899. "availability of the configured sources (e.g. offline).\n"
  900. msgstr ""
  901. #: cmdline/apt-cache.cc
  902. msgid "Show source records"
  903. msgstr "Arată înregistrările despre sursă"
  904. #: cmdline/apt-cache.cc
  905. msgid "Search the package list for a regex pattern"
  906. msgstr "Caută în lista de pachete folosind un șablon regex"
  907. #: cmdline/apt-cache.cc
  908. msgid "Show raw dependency information for a package"
  909. msgstr "Arată informații brute de dependențe pentru un pachet"
  910. #: cmdline/apt-cache.cc
  911. msgid "Show reverse dependency information for a package"
  912. msgstr "Arată dependențele inverse pentru un pachet"
  913. #: cmdline/apt-cache.cc
  914. msgid "Show a readable record for the package"
  915. msgstr "Arată o înregistrare lizibilă pentru pachet"
  916. #: cmdline/apt-cache.cc
  917. msgid "List the names of all packages in the system"
  918. msgstr "Afișează numele tuturor pachetelor din sistem"
  919. #: cmdline/apt-cache.cc
  920. msgid "Show policy settings"
  921. msgstr "Arată configurațiile de politici"
  922. #: cmdline/apt.cc
  923. msgid ""
  924. "Usage: apt [options] command\n"
  925. "\n"
  926. "apt is a commandline package manager and provides commands for\n"
  927. "searching and managing as well as querying information about packages.\n"
  928. "It provides the same functionality as the specialized APT tools,\n"
  929. "like apt-get and apt-cache, but enables options more suitable for\n"
  930. "interactive use by default.\n"
  931. msgstr ""
  932. #. query
  933. #: cmdline/apt.cc
  934. msgid "list packages based on package names"
  935. msgstr ""
  936. #: cmdline/apt.cc
  937. #, fuzzy
  938. msgid "search in package descriptions"
  939. msgstr "Citire liste de pachete"
  940. #: cmdline/apt.cc
  941. msgid "show package details"
  942. msgstr ""
  943. #. package stuff
  944. #: cmdline/apt.cc
  945. #, fuzzy
  946. msgid "install packages"
  947. msgstr "Pachete alese special:"
  948. #: cmdline/apt.cc
  949. #, fuzzy
  950. msgid "remove packages"
  951. msgstr "Pachete deteriorate"
  952. #: cmdline/apt.cc cmdline/apt-get.cc
  953. msgid "Remove automatically all unused packages"
  954. msgstr "Șterge automat toate pachetele nefolosite"
  955. #. system wide stuff
  956. #: cmdline/apt.cc
  957. #, fuzzy
  958. msgid "update list of available packages"
  959. msgstr "%s este marcat ca fiind instalat manual.\n"
  960. #: cmdline/apt.cc
  961. msgid "upgrade the system by installing/upgrading packages"
  962. msgstr ""
  963. #: cmdline/apt.cc
  964. msgid "upgrade the system by removing/installing/upgrading packages"
  965. msgstr ""
  966. #. misc
  967. #: cmdline/apt.cc
  968. #, fuzzy
  969. msgid "edit the source information file"
  970. msgstr "Se citesc informațiile de stare"
  971. #: cmdline/apt-cdrom.cc
  972. #, fuzzy
  973. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  974. msgstr "Furnizați un nume pentru acest disc, de exemplu „Debian 2.1r1 Disk 1”"
  975. #: cmdline/apt-cdrom.cc
  976. #, fuzzy
  977. msgid "Please insert a Disc in the drive and press [Enter]"
  978. msgstr "Introduceți un disc în unitate și apăsați Enter"
  979. #: cmdline/apt-cdrom.cc
  980. #, fuzzy, c-format
  981. msgid "Failed to mount '%s' to '%s'"
  982. msgstr "Eșec la redenumirea lui %s în %s"
  983. #: cmdline/apt-cdrom.cc
  984. msgid ""
  985. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  986. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  987. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  988. "mount point."
  989. msgstr ""
  990. #: cmdline/apt-cdrom.cc
  991. msgid "Repeat this process for the rest of the CDs in your set."
  992. msgstr "Repetați această procedură pentru restul CD-urilor din set."
  993. #: cmdline/apt-cdrom.cc
  994. msgid ""
  995. "Usage: apt-cdrom [options] command\n"
  996. "\n"
  997. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  998. "media types as package sources to APT. The mount point and device\n"
  999. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  1000. msgstr ""
  1001. #: cmdline/apt-config.cc
  1002. msgid "Arguments not in pairs"
  1003. msgstr "Argumentele nu sunt perechi"
  1004. #: cmdline/apt-config.cc
  1005. msgid ""
  1006. "Usage: apt-config [options] command\n"
  1007. "\n"
  1008. "apt-config is an interface to the configuration settings used by\n"
  1009. "all APT tools to be used mainly in debugging and shell scripting.\n"
  1010. msgstr ""
  1011. #: cmdline/apt-config.cc
  1012. msgid "get configuration values via shell evaluation"
  1013. msgstr ""
  1014. #: cmdline/apt-config.cc
  1015. msgid "show the active configuration setting"
  1016. msgstr ""
  1017. #: cmdline/apt-get.cc
  1018. #, c-format
  1019. msgid "Couldn't find package %s"
  1020. msgstr "Nu pot găsi pachetul %s"
  1021. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  1022. #, fuzzy, c-format
  1023. msgid "%s set to automatically installed.\n"
  1024. msgstr "%s este marcat ca fiind instalat manual.\n"
  1025. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  1026. msgid ""
  1027. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  1028. "instead."
  1029. msgstr ""
  1030. #: cmdline/apt-get.cc
  1031. msgid "Internal error, problem resolver broke stuff"
  1032. msgstr ""
  1033. "Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
  1034. #: cmdline/apt-get.cc
  1035. msgid "Supported modules:"
  1036. msgstr "Module suportate:"
  1037. #: cmdline/apt-get.cc
  1038. #, fuzzy
  1039. msgid ""
  1040. "Usage: apt-get [options] command\n"
  1041. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1042. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1043. "\n"
  1044. "apt-get is a command line interface for retrieval of packages\n"
  1045. "and information about them from authenticated sources and\n"
  1046. "for installation, upgrade and removal of packages together\n"
  1047. "with their dependencies.\n"
  1048. msgstr ""
  1049. "Utilizare: apt-get [opțiuni] comanda\n"
  1050. " apt-get [opțiuni] install|remove pachet1 [pachet2 ...]\n"
  1051. " apt-get [opțiuni] source pachet1 [pachet2 ...]\n"
  1052. "\n"
  1053. "apt-get este o simplă interfață în linie de comandă pentru descărcarea și\n"
  1054. "instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n"
  1055. "și install.\n"
  1056. #: cmdline/apt-get.cc
  1057. msgid "Retrieve new lists of packages"
  1058. msgstr "Aduce listele noi de pachete"
  1059. #: cmdline/apt-get.cc
  1060. msgid "Perform an upgrade"
  1061. msgstr "Realizează o înnoire"
  1062. #: cmdline/apt-get.cc
  1063. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  1064. msgstr "Instalează pachete noi (pachet este libc6, nu libc6.deb)"
  1065. #: cmdline/apt-get.cc
  1066. msgid "Remove packages"
  1067. msgstr "Șterge pachete"
  1068. #: cmdline/apt-get.cc
  1069. msgid "Remove packages and config files"
  1070. msgstr "Șterge și curăță pachete"
  1071. #: cmdline/apt-get.cc
  1072. msgid "Distribution upgrade, see apt-get(8)"
  1073. msgstr "Înnoirea distribuției, a se vedea apt-get(8)"
  1074. #: cmdline/apt-get.cc
  1075. msgid "Follow dselect selections"
  1076. msgstr "Urmează selecțiile dselect"
  1077. #: cmdline/apt-get.cc
  1078. msgid "Configure build-dependencies for source packages"
  1079. msgstr "Configurează dependențele de compilare pentru pachetele-sursă"
  1080. #: cmdline/apt-get.cc
  1081. msgid "Erase downloaded archive files"
  1082. msgstr "Șterge fișierele-arhivă descărcate"
  1083. #: cmdline/apt-get.cc
  1084. msgid "Erase old downloaded archive files"
  1085. msgstr "Șterge fișiere-arhivă descărcate învechite"
  1086. #: cmdline/apt-get.cc
  1087. msgid "Verify that there are no broken dependencies"
  1088. msgstr "Verifică dacă există dependențe neîndeplinite"
  1089. #: cmdline/apt-get.cc
  1090. msgid "Download source archives"
  1091. msgstr "Descarcă pachete-sursă"
  1092. #: cmdline/apt-get.cc
  1093. msgid "Download the binary package into the current directory"
  1094. msgstr ""
  1095. #: cmdline/apt-get.cc
  1096. msgid "Download and display the changelog for the given package"
  1097. msgstr ""
  1098. #: cmdline/apt-helper.cc
  1099. msgid "Need one URL as argument"
  1100. msgstr ""
  1101. #: cmdline/apt-helper.cc
  1102. #, fuzzy
  1103. msgid "Must specify at least one pair url/filename"
  1104. msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa"
  1105. #: cmdline/apt-helper.cc
  1106. msgid "Download Failed"
  1107. msgstr ""
  1108. #: cmdline/apt-helper.cc
  1109. #, c-format
  1110. msgid "GetSrvRec failed for %s"
  1111. msgstr ""
  1112. #: cmdline/apt-helper.cc
  1113. msgid ""
  1114. "Usage: apt-helper [options] command\n"
  1115. " apt-helper [options] download-file uri target-path\n"
  1116. "\n"
  1117. "apt-helper bundles a variety of commands for shell scripts to use\n"
  1118. "e.g. the same proxy configuration or acquire system as APT would do.\n"
  1119. msgstr ""
  1120. #: cmdline/apt-helper.cc
  1121. msgid "download the given uri to the target-path"
  1122. msgstr ""
  1123. #: cmdline/apt-helper.cc
  1124. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  1125. msgstr ""
  1126. #: cmdline/apt-helper.cc
  1127. msgid "detect proxy using apt.conf"
  1128. msgstr ""
  1129. #: cmdline/apt-mark.cc
  1130. #, fuzzy, c-format
  1131. msgid "%s can not be marked as it is not installed.\n"
  1132. msgstr "dar nu este instalat"
  1133. #: cmdline/apt-mark.cc
  1134. #, fuzzy, c-format
  1135. msgid "%s was already set to manually installed.\n"
  1136. msgstr "%s este marcat ca fiind instalat manual.\n"
  1137. #: cmdline/apt-mark.cc
  1138. #, fuzzy, c-format
  1139. msgid "%s was already set to automatically installed.\n"
  1140. msgstr "%s este marcat ca fiind instalat manual.\n"
  1141. #: cmdline/apt-mark.cc
  1142. #, fuzzy, c-format
  1143. msgid "%s was already set on hold.\n"
  1144. msgstr "%s este deja la cea mai nouă versiune.\n"
  1145. #: cmdline/apt-mark.cc
  1146. #, fuzzy, c-format
  1147. msgid "%s was already not hold.\n"
  1148. msgstr "%s este deja la cea mai nouă versiune.\n"
  1149. #: cmdline/apt-mark.cc
  1150. msgid "Executing dpkg failed. Are you root?"
  1151. msgstr ""
  1152. #: cmdline/apt-mark.cc
  1153. #, fuzzy, c-format
  1154. msgid "%s set on hold.\n"
  1155. msgstr "%s este marcat ca fiind instalat manual.\n"
  1156. #: cmdline/apt-mark.cc
  1157. #, fuzzy, c-format
  1158. msgid "Canceled hold on %s.\n"
  1159. msgstr "Eșec la „open” pentru %s"
  1160. #: cmdline/apt-mark.cc
  1161. #, c-format
  1162. msgid "Selected %s for purge.\n"
  1163. msgstr ""
  1164. #: cmdline/apt-mark.cc
  1165. #, c-format
  1166. msgid "Selected %s for removal.\n"
  1167. msgstr ""
  1168. #: cmdline/apt-mark.cc
  1169. #, c-format
  1170. msgid "Selected %s for installation.\n"
  1171. msgstr ""
  1172. #: cmdline/apt-mark.cc
  1173. msgid ""
  1174. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1175. "\n"
  1176. "apt-mark is a simple command line interface for marking packages\n"
  1177. "as manually or automatically installed. It is also possible to\n"
  1178. "manipulate the dpkg(1) selection states of packages with it.\n"
  1179. "It can also list all packages with or without a certain marking.\n"
  1180. msgstr ""
  1181. #: cmdline/apt-mark.cc
  1182. #, fuzzy
  1183. msgid "Mark the given packages as automatically installed"
  1184. msgstr "%s este marcat ca fiind instalat manual.\n"
  1185. #: cmdline/apt-mark.cc
  1186. #, fuzzy
  1187. msgid "Mark the given packages as manually installed"
  1188. msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n"
  1189. #: cmdline/apt-mark.cc
  1190. msgid "Mark a package as held back"
  1191. msgstr ""
  1192. #: cmdline/apt-mark.cc
  1193. msgid "Unset a package set as held back"
  1194. msgstr ""
  1195. #: cmdline/apt-mark.cc
  1196. #, fuzzy
  1197. msgid "Print the list of automatically installed packages"
  1198. msgstr "%s este marcat ca fiind instalat manual.\n"
  1199. #: cmdline/apt-mark.cc
  1200. #, fuzzy
  1201. msgid "Print the list of manually installed packages"
  1202. msgstr "%s este marcat ca fiind instalat manual.\n"
  1203. #: cmdline/apt-mark.cc
  1204. msgid "Print the list of package on hold"
  1205. msgstr ""
  1206. #: methods/cdrom.cc
  1207. #, c-format
  1208. msgid "Unable to read the cdrom database %s"
  1209. msgstr "Nu s-a putut citi baza de date de CD %s"
  1210. #: methods/cdrom.cc
  1211. msgid ""
  1212. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1213. "cannot be used to add new CD-ROMs"
  1214. msgstr ""
  1215. "Folosiți apt-cdrom pentru a-l face pe APT să recunoască acest CD. „apt-get "
  1216. "update” nu poate fi folosit pentru adăugarea de noi CD-uri"
  1217. #: methods/cdrom.cc
  1218. msgid "Wrong CD-ROM"
  1219. msgstr "CD-ROM necorespunzător"
  1220. #: methods/cdrom.cc
  1221. #, c-format
  1222. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1223. msgstr "Nu se poate demonta CD-ul din %s, poate este încă utilizat."
  1224. #: methods/cdrom.cc
  1225. msgid "Disk not found."
  1226. msgstr "Disc negăsit."
  1227. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  1228. msgid "File not found"
  1229. msgstr "Fișier negăsit"
  1230. #: methods/connect.cc
  1231. #, c-format
  1232. msgid "Connecting to %s (%s)"
  1233. msgstr "Conectare la %s (%s)"
  1234. #: methods/connect.cc
  1235. #, c-format
  1236. msgid "[IP: %s %s]"
  1237. msgstr "[IP: %s %s]"
  1238. #: methods/connect.cc
  1239. #, c-format
  1240. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1241. msgstr "Nu s-a putut crea un socket pentru %s (f=%u t=%u p=%u)"
  1242. #: methods/connect.cc
  1243. #, c-format
  1244. msgid "Cannot initiate the connection to %s:%s (%s)."
  1245. msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)."
  1246. #: methods/connect.cc
  1247. #, c-format
  1248. msgid "Could not connect to %s:%s (%s), connection timed out"
  1249. msgstr ""
  1250. "Nu s-a putut realiza conexiunea cu %s:%s (%s), timpul de conectare expirat"
  1251. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  1252. msgid "Failed"
  1253. msgstr "Eșec"
  1254. #: methods/connect.cc
  1255. #, c-format
  1256. msgid "Could not connect to %s:%s (%s)."
  1257. msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)."
  1258. #. We say this mainly because the pause here is for the
  1259. #. ssh connection that is still going
  1260. #: methods/connect.cc methods/rsh.cc
  1261. #, c-format
  1262. msgid "Connecting to %s"
  1263. msgstr "Conectare la %s"
  1264. #: methods/connect.cc
  1265. #, c-format
  1266. msgid "Could not resolve '%s'"
  1267. msgstr "Nu s-a putut rezolva „%s”"
  1268. #: methods/connect.cc
  1269. #, c-format
  1270. msgid "Temporary failure resolving '%s'"
  1271. msgstr "Eșec temporar la rezolvarea lui „%s”"
  1272. #: methods/connect.cc
  1273. #, fuzzy, c-format
  1274. msgid "System error resolving '%s:%s'"
  1275. msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)"
  1276. #: methods/connect.cc
  1277. #, fuzzy, c-format
  1278. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1279. msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)"
  1280. #: methods/connect.cc
  1281. #, fuzzy, c-format
  1282. msgid "Unable to connect to %s:%s:"
  1283. msgstr "Nu s-a putut realiza conexiunea cu %s %s:"
  1284. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1285. msgid "Failed to stat"
  1286. msgstr "Eșec la „stat”"
  1287. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1288. msgid "Failed to set modification time"
  1289. msgstr "Eșec la ajustarea timpului de modificare"
  1290. #: methods/file.cc
  1291. msgid "Invalid URI, local URIS must not start with //"
  1292. msgstr "URI invalid, URI-uile locale trebuie să nu înceapă cu //"
  1293. #. Login must be before getpeername otherwise dante won't work.
  1294. #: methods/ftp.cc
  1295. msgid "Logging in"
  1296. msgstr "Se autentifică"
  1297. #: methods/ftp.cc
  1298. msgid "Unable to determine the peer name"
  1299. msgstr "Nu se poate detecta numele perechii"
  1300. #: methods/ftp.cc
  1301. msgid "Unable to determine the local name"
  1302. msgstr "Nu s-a putut detecta numele local"
  1303. #: methods/ftp.cc
  1304. #, c-format
  1305. msgid "The server refused the connection and said: %s"
  1306. msgstr "Serverul a refuzat conexiunea și a spus: %s"
  1307. #: methods/ftp.cc
  1308. #, c-format
  1309. msgid "USER failed, server said: %s"
  1310. msgstr "„USER” a eșuat, serverul a spus: %s"
  1311. #: methods/ftp.cc
  1312. #, c-format
  1313. msgid "PASS failed, server said: %s"
  1314. msgstr "„PASS” a eșuat, serverul a spus: %s"
  1315. #: methods/ftp.cc
  1316. msgid ""
  1317. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1318. "is empty."
  1319. msgstr ""
  1320. "Un server proxy a fost precizat, dar nu există nici un script de conectare, "
  1321. "Acquire::ftp::ProxyLogin este gol."
  1322. #: methods/ftp.cc
  1323. #, c-format
  1324. msgid "Login script command '%s' failed, server said: %s"
  1325. msgstr "Scriptul „%s” cu comenzile de conectare a eșuat, serverul a spus: %s"
  1326. #: methods/ftp.cc
  1327. #, c-format
  1328. msgid "TYPE failed, server said: %s"
  1329. msgstr "„TYPE” a eșuat, serverul a spus: %s"
  1330. #: methods/ftp.cc methods/rsh.cc
  1331. msgid "Connection timeout"
  1332. msgstr "Timpul de conectare a expirat"
  1333. #: methods/ftp.cc
  1334. msgid "Server closed the connection"
  1335. msgstr "Serverul a închis conexiunea"
  1336. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1337. msgid "Read error"
  1338. msgstr "Eroare de citire"
  1339. #: methods/ftp.cc methods/rsh.cc
  1340. msgid "A response overflowed the buffer."
  1341. msgstr "Un răspuns a depășit zona de tampon."
  1342. #: methods/ftp.cc
  1343. msgid "Protocol corruption"
  1344. msgstr "Protocol corupt"
  1345. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1346. msgid "Write error"
  1347. msgstr "Eroare de scriere"
  1348. #: methods/ftp.cc
  1349. msgid "Could not create a socket"
  1350. msgstr "Nu s-a putut crea un socket"
  1351. #: methods/ftp.cc
  1352. msgid "Could not connect data socket, connection timed out"
  1353. msgstr ""
  1354. "Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a "
  1355. "expirat"
  1356. #: methods/ftp.cc
  1357. msgid "Could not connect passive socket."
  1358. msgstr "Nu s-a putut realiza conectarea la un socket pasiv"
  1359. #: methods/ftp.cc
  1360. msgid "getaddrinfo was unable to get a listening socket"
  1361. msgstr "„getaddrinfo” n-a reușit să obțină un socket de ascultare"
  1362. #: methods/ftp.cc
  1363. msgid "Could not bind a socket"
  1364. msgstr "Nu s-a putut realiza asocierea la un socket"
  1365. #: methods/ftp.cc
  1366. msgid "Could not listen on the socket"
  1367. msgstr "Nu s-a putut asculta pe socket"
  1368. #: methods/ftp.cc
  1369. msgid "Could not determine the socket's name"
  1370. msgstr "Nu s-a putut detecta numele socket-ului"
  1371. #: methods/ftp.cc
  1372. msgid "Unable to send PORT command"
  1373. msgstr "Nu s-a putut trimite comanda PORT"
  1374. #: methods/ftp.cc
  1375. #, c-format
  1376. msgid "Unknown address family %u (AF_*)"
  1377. msgstr "Familie de adrese necunoscută %u (AF_*)"
  1378. #: methods/ftp.cc
  1379. #, c-format
  1380. msgid "EPRT failed, server said: %s"
  1381. msgstr "„EPRT” a eșuat, serverul a spus: %s"
  1382. #: methods/ftp.cc
  1383. msgid "Data socket connect timed out"
  1384. msgstr "Timpul de conectare la socket-ul de date expirat"
  1385. #: methods/ftp.cc
  1386. msgid "Unable to accept connection"
  1387. msgstr "Nu s-a putut accepta conexiune"
  1388. #: methods/ftp.cc methods/rsh.cc methods/server.cc
  1389. msgid "Problem hashing file"
  1390. msgstr "Problemă la calcularea dispersiei pentru fișierul"
  1391. #: methods/ftp.cc
  1392. #, c-format
  1393. msgid "Unable to fetch file, server said '%s'"
  1394. msgstr "Nu s-a putut aduce fișierul, serverul a spus „%s”"
  1395. #: methods/ftp.cc methods/rsh.cc
  1396. msgid "Data socket timed out"
  1397. msgstr "Timp expirat pentru socket-ul de date"
  1398. #: methods/ftp.cc
  1399. #, c-format
  1400. msgid "Data transfer failed, server said '%s'"
  1401. msgstr "Transferul de date a eșuat, serverul a spus: '%s'"
  1402. #. Get the files information
  1403. #: methods/ftp.cc
  1404. msgid "Query"
  1405. msgstr "Interogare"
  1406. #: methods/ftp.cc
  1407. msgid "Unable to invoke "
  1408. msgstr "Nu s-a putut invoca"
  1409. #: methods/gpgv.cc
  1410. msgid "At least one invalid signature was encountered."
  1411. msgstr "Cel puțin o semnătură nevalidă a fost întâlnită."
  1412. #: methods/gpgv.cc
  1413. msgid ""
  1414. "Internal error: Good signature, but could not determine key fingerprint?!"
  1415. msgstr ""
  1416. "Eroare internă: Semnătură corespunzătoare, dar nu s-a putut determina "
  1417. "amprenta digitale a cheii?!"
  1418. #: methods/gpgv.cc
  1419. #, fuzzy
  1420. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  1421. msgstr ""
  1422. "Nu s-a putut executa „%s” pentru verificarea semnăturii (gnupg este "
  1423. "instalat?)"
  1424. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1425. #: methods/gpgv.cc apt-pkg/acquire-item.cc
  1426. #, c-format
  1427. msgid ""
  1428. "Clearsigned file isn't valid, got '%s' (does the network require "
  1429. "authentication?)"
  1430. msgstr ""
  1431. #: methods/gpgv.cc
  1432. msgid "Unknown error executing apt-key"
  1433. msgstr "Eroare necunoscută în timp ce se execută apt-key"
  1434. #: methods/gpgv.cc
  1435. msgid "The following signatures were invalid:\n"
  1436. msgstr "Următoarele semnături nu au fost valide:\n"
  1437. #: methods/gpgv.cc
  1438. msgid ""
  1439. "The following signatures couldn't be verified because the public key is not "
  1440. "available:\n"
  1441. msgstr ""
  1442. "Următoarele semnături n-au putut fi verificate, deoarece cheia publică nu "
  1443. "este disponibilă:\n"
  1444. #: methods/gzip.cc
  1445. msgid "Empty files can't be valid archives"
  1446. msgstr ""
  1447. #: methods/http.cc
  1448. msgid "Error writing to the file"
  1449. msgstr "Eroare la scrierea în fișierul"
  1450. #: methods/http.cc
  1451. msgid "Error reading from server. Remote end closed connection"
  1452. msgstr ""
  1453. "Eroare la citirea de la server. Conexiunea a fost închisă de la distanță"
  1454. #: methods/http.cc
  1455. msgid "Error reading from server"
  1456. msgstr "Eroare la citirea de la server"
  1457. #: methods/http.cc
  1458. msgid "Error writing to file"
  1459. msgstr "Eroare la scrierea în fișier"
  1460. #: methods/http.cc
  1461. msgid "Select failed"
  1462. msgstr "Selecția a eșuat"
  1463. #: methods/http.cc
  1464. msgid "Connection timed out"
  1465. msgstr "Timp de conectare expirat"
  1466. #: methods/http.cc
  1467. msgid "Error writing to output file"
  1468. msgstr "Eroare la scrierea fișierului de rezultat"
  1469. #. Only warn if there are no sources.list.d.
  1470. #. Only warn if there is no sources.list file.
  1471. #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1472. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
  1473. #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
  1474. #, c-format
  1475. msgid "Unable to read %s"
  1476. msgstr "Nu s-a putut citi %s"
  1477. #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1478. #: apt-pkg/contrib/cdromutl.cc
  1479. #, c-format
  1480. msgid "Unable to change to %s"
  1481. msgstr "Nu pot schimba la %s"
  1482. #. FIXME: fallback to a default mirror here instead
  1483. #. and provide a config option to define that default
  1484. #: methods/mirror.cc
  1485. #, c-format
  1486. msgid "No mirror file '%s' found "
  1487. msgstr ""
  1488. #. FIXME: fallback to a default mirror here instead
  1489. #. and provide a config option to define that default
  1490. #: methods/mirror.cc
  1491. #, fuzzy, c-format
  1492. msgid "Can not read mirror file '%s'"
  1493. msgstr "Nu s-a putut deschide fișierul %s"
  1494. #: methods/mirror.cc
  1495. #, fuzzy, c-format
  1496. msgid "No entry found in mirror file '%s'"
  1497. msgstr "Nu s-a putut deschide fișierul %s"
  1498. #: methods/mirror.cc
  1499. #, c-format
  1500. msgid "[Mirror: %s]"
  1501. msgstr ""
  1502. #: methods/rsh.cc ftparchive/multicompress.cc
  1503. msgid "Failed to create IPC pipe to subprocess"
  1504. msgstr "Eșec la crearea conexiunii IPC către subproces"
  1505. #: methods/rsh.cc
  1506. msgid "Connection closed prematurely"
  1507. msgstr "Conexiune închisă prematur"
  1508. #: methods/server.cc
  1509. msgid "Waiting for headers"
  1510. msgstr "În așteptarea antetelor"
  1511. #: methods/server.cc
  1512. msgid "Bad header line"
  1513. msgstr "Linie de antet necorespunzătoare"
  1514. #: methods/server.cc
  1515. msgid "The HTTP server sent an invalid reply header"
  1516. msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător"
  1517. #: methods/server.cc
  1518. msgid "The HTTP server sent an invalid Content-Length header"
  1519. msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător"
  1520. #: methods/server.cc
  1521. msgid "The HTTP server sent an invalid Content-Range header"
  1522. msgstr "Serverul HTTP a trimis un antet zonă de conținut necorespunzător"
  1523. #: methods/server.cc
  1524. msgid "This HTTP server has broken range support"
  1525. msgstr "Acest server HTTP are un suport defect de intervale"
  1526. #: methods/server.cc
  1527. msgid "Unknown date format"
  1528. msgstr "Format dată necunoscut"
  1529. #: methods/server.cc
  1530. msgid "Bad header data"
  1531. msgstr "Antet de date necorespunzător"
  1532. #: methods/server.cc
  1533. msgid "Connection failed"
  1534. msgstr "Conectare eșuată"
  1535. #: methods/server.cc
  1536. #, c-format
  1537. msgid ""
  1538. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1539. "5 apt.conf)"
  1540. msgstr ""
  1541. #: methods/server.cc
  1542. msgid "Internal error"
  1543. msgstr "Eroare internă"
  1544. #: dselect/install:33
  1545. msgid "Bad default setting!"
  1546. msgstr "Configurări implicite necorespunzătoare!"
  1547. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1548. #: dselect/install:106 dselect/update:45
  1549. #, fuzzy
  1550. msgid "Press [Enter] to continue."
  1551. msgstr "Apăsați Enter pentru a continua."
  1552. #: dselect/install:92
  1553. msgid "Do you want to erase any previously downloaded .deb files?"
  1554. msgstr "Doriți să ștergeți eventualele fișiere .deb descărcate anterior?"
  1555. #: dselect/install:102
  1556. #, fuzzy
  1557. msgid "Some errors occurred while unpacking. Packages that were installed"
  1558. msgstr "S-au produs unele erori în timpul despachetării. Se vor configura"
  1559. #: dselect/install:103
  1560. #, fuzzy
  1561. msgid "will be configured. This may result in duplicate errors"
  1562. msgstr ""
  1563. "pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate"
  1564. #: dselect/install:104
  1565. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1566. msgstr "sau erori cauzate de dependențe lipsă. Fiind normal, doar erorile de"
  1567. #: dselect/install:105
  1568. msgid ""
  1569. "above this message are important. Please fix them and run [I]nstall again"
  1570. msgstr ""
  1571. "deasupra acestui mesaj sunt importante. Corectați-le și reporniți "
  1572. "[I]nstalarea"
  1573. #: dselect/update:30
  1574. msgid "Merging available information"
  1575. msgstr "Se combină informațiile disponibile"
  1576. #: cmdline/apt-extracttemplates.cc
  1577. #, fuzzy
  1578. msgid ""
  1579. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1580. "\n"
  1581. "apt-extracttemplates is used to extract config and template files\n"
  1582. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  1583. "configuration questions before installation of packages.\n"
  1584. msgstr ""
  1585. "Utilizare: apt-extracttemplates fișier1 [fișier2 ...]\n"
  1586. "\n"
  1587. "apt-extracttemplates este o unealtă pentru extragerea informațiilor \n"
  1588. "de configurare și a șabloanelor dintr-un pachet Debian\n"
  1589. "\n"
  1590. "Opțiuni\n"
  1591. " -h Acest text de ajutor.\n"
  1592. " -t Impune directorul temporar\n"
  1593. " -c=? Citește acest fișier de configurare\n"
  1594. " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
  1595. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1596. #, fuzzy, c-format
  1597. msgid "Unable to mkstemp %s"
  1598. msgstr "Nu se poate executa „stat” pe %s"
  1599. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1600. #, c-format
  1601. msgid "Unable to write to %s"
  1602. msgstr "Nu s-a putut scrie în %s"
  1603. #: cmdline/apt-extracttemplates.cc
  1604. msgid "Cannot get debconf version. Is debconf installed?"
  1605. msgstr "Nu s-a putut citi versiunea debconf. Este instalat debconf?"
  1606. #: cmdline/apt-internal-solver.cc
  1607. #, fuzzy
  1608. msgid ""
  1609. "Usage: apt-internal-solver\n"
  1610. "\n"
  1611. "apt-internal-solver is an interface to use the current internal\n"
  1612. "like an external resolver for the APT family for debugging or alike.\n"
  1613. msgstr ""
  1614. "Utilizare: apt-extracttemplates fișier1 [fișier2 ...]\n"
  1615. "\n"
  1616. "apt-extracttemplates este o unealtă pentru extragerea informațiilor \n"
  1617. "de configurare și a șabloanelor dintr-un pachet Debian\n"
  1618. "\n"
  1619. "Opțiuni\n"
  1620. " -h Acest text de ajutor.\n"
  1621. " -t Impune directorul temporar\n"
  1622. " -c=? Citește acest fișier de configurare\n"
  1623. " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
  1624. #: cmdline/apt-sortpkgs.cc
  1625. msgid "Unknown package record!"
  1626. msgstr "Înregistrare de pachet necunoscut!"
  1627. #: cmdline/apt-sortpkgs.cc
  1628. msgid ""
  1629. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1630. "\n"
  1631. "apt-sortpkgs is a simple tool to sort package information files.\n"
  1632. "It sorts by default by binary package information, but the -s option\n"
  1633. "can be used to switch to source package ordering instead.\n"
  1634. msgstr ""
  1635. #: ftparchive/apt-ftparchive.cc
  1636. msgid "Package extension list is too long"
  1637. msgstr "Lista de extensii pentru pachet este prea lungă"
  1638. #: ftparchive/apt-ftparchive.cc
  1639. #, c-format
  1640. msgid "Error processing directory %s"
  1641. msgstr "Eroare la prelucrarea directorului %s"
  1642. #: ftparchive/apt-ftparchive.cc
  1643. msgid "Source extension list is too long"
  1644. msgstr "Lista de extensii pentru sursă este prea lungă"
  1645. #: ftparchive/apt-ftparchive.cc
  1646. msgid "Error writing header to contents file"
  1647. msgstr "Eroare la scrierea antetului în fișierul index"
  1648. #: ftparchive/apt-ftparchive.cc
  1649. #, c-format
  1650. msgid "Error processing contents %s"
  1651. msgstr "Eroare la prelucrarea conținutului %s"
  1652. #: ftparchive/apt-ftparchive.cc
  1653. msgid ""
  1654. "Usage: apt-ftparchive [options] command\n"
  1655. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1656. " sources srcpath [overridefile [pathprefix]]\n"
  1657. " contents path\n"
  1658. " release path\n"
  1659. " generate config [groups]\n"
  1660. " clean config\n"
  1661. "\n"
  1662. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1663. "many styles of generation from fully automated to functional replacements\n"
  1664. "for dpkg-scanpackages and dpkg-scansources\n"
  1665. "\n"
  1666. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1667. "Package file contains the contents of all the control fields from\n"
  1668. "each package as well as the MD5 hash and filesize. An override file\n"
  1669. "is supported to force the value of Priority and Section.\n"
  1670. "\n"
  1671. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1672. "The --source-override option can be used to specify a src override file\n"
  1673. "\n"
  1674. "The 'packages' and 'sources' command should be run in the root of the\n"
  1675. "tree. BinaryPath should point to the base of the recursive search and \n"
  1676. "override file should contain the override flags. Pathprefix is\n"
  1677. "appended to the filename fields if present. Example usage from the \n"
  1678. "Debian archive:\n"
  1679. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1680. " dists/potato/main/binary-i386/Packages\n"
  1681. "\n"
  1682. "Options:\n"
  1683. " -h This help text\n"
  1684. " --md5 Control MD5 generation\n"
  1685. " -s=? Source override file\n"
  1686. " -q Quiet\n"
  1687. " -d=? Select the optional caching database\n"
  1688. " --no-delink Enable delinking debug mode\n"
  1689. " --contents Control contents file generation\n"
  1690. " -c=? Read this configuration file\n"
  1691. " -o=? Set an arbitrary configuration option"
  1692. msgstr ""
  1693. "Utilizare: apt-ftparchive [opțiuni] comanda\n"
  1694. "Comenzi: packages cale_binare [fișier_înlocuire [prefix_cale]]\n"
  1695. " sources cale_src [fișier_înlocuire [prefix_cale]]\n"
  1696. " contents cale\n"
  1697. " release cale\n"
  1698. " generate config [grupuri]\n"
  1699. " clean config\n"
  1700. "\n"
  1701. "apt-ftparchive generează fișiere de indexare pentru arhivele Debian. "
  1702. "Suportă\n"
  1703. "multe stiluri de generare de la complet automat la înlocuiri funcționale\n"
  1704. "pentru dpkg-scanpackage și dpkg-scansources\n"
  1705. "\n"
  1706. "apt-ftparchive generează fișierele Package dintr-un arbore de .deb-uri.\n"
  1707. "Fișierul Pachet înglobează conținutul tuturor câmpurilor de control din "
  1708. "fiecare\n"
  1709. "pachet cât și MD5 hash și dimensiunea fișierului. Un fișier de înlocuire "
  1710. "este\n"
  1711. "furnizat pentru a forța valoarea Priorității și Secțiunii.\n"
  1712. "\n"
  1713. "În mod asemănator apt-ftparchive generează fișierele Sources dintr-un arbore "
  1714. "de .dsc-uri.\n"
  1715. "Opțiunea --source-override poate fi folosită pentru a specifica fișierul de "
  1716. "înlocuire\n"
  1717. "\n"
  1718. "Comenzile 'packages' și 'sources' ar trebui executate în rădăcina "
  1719. "arborelui.\n"
  1720. "Cale_binare ar trebui să indice baza căutării recursive și fișierul de "
  1721. "înlocuire ar\n"
  1722. "trebui să conțină semnalizatorul de înlocuire. Prefix_cale este adăugat "
  1723. "câmpului\n"
  1724. "de nume fișier dacă acesta este prezent. Exemplu de utilizare din arhiva\n"
  1725. "Debian:\n"
  1726. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1727. " dists/potato/main/binary-i386/Packages\n"
  1728. "\n"
  1729. "Opțiuni:\n"
  1730. " -h Acest text de ajutor.\n"
  1731. " --md5 Generarea controlului MD5\n"
  1732. " -s=? Fișierul de înlocuire pentru surse\n"
  1733. " -q În liniște\n"
  1734. " -d=? Selectează baza de date de cache opțională\n"
  1735. " --no-delink Activează modul de depanare dezlegare\n"
  1736. " --contents Generarea fișierului cu sumarul de control\n"
  1737. " -c=? Citește acest fișier de configurare\n"
  1738. " -o=? Ajustează o opțiune de configurare arbitrară"
  1739. #: ftparchive/apt-ftparchive.cc
  1740. msgid "No selections matched"
  1741. msgstr "Nu s-a potrivit nici o selecție"
  1742. #: ftparchive/apt-ftparchive.cc
  1743. #, c-format
  1744. msgid "Some files are missing in the package file group `%s'"
  1745. msgstr "Unele fișiere lipsesc din grupul fișierului pachet '%s'"
  1746. #: ftparchive/cachedb.cc
  1747. #, c-format
  1748. msgid "DB was corrupted, file renamed to %s.old"
  1749. msgstr "DB a fost corupt, fișierul a fost redenumit %s.old"
  1750. #: ftparchive/cachedb.cc
  1751. #, c-format
  1752. msgid "DB is old, attempting to upgrade %s"
  1753. msgstr "DB este vechi, se încearcă înnoirea %s"
  1754. #: ftparchive/cachedb.cc
  1755. #, fuzzy
  1756. msgid ""
  1757. "DB format is invalid. If you upgraded from an older version of apt, please "
  1758. "remove and re-create the database."
  1759. msgstr ""
  1760. "Formatul DB este nevalid. Dacă l-ați înnoit pe apt de la o versiune mai "
  1761. "veche, ștergeți și recreați baza de date."
  1762. #: ftparchive/cachedb.cc
  1763. #, c-format
  1764. msgid "Unable to open DB file %s: %s"
  1765. msgstr "Nu s-a putut deschide fișierul DB %s: %s"
  1766. #: ftparchive/cachedb.cc apt-inst/extract.cc
  1767. #, c-format
  1768. msgid "Failed to stat %s"
  1769. msgstr "Eșec la „stat” pentru %s"
  1770. #: ftparchive/cachedb.cc
  1771. #, fuzzy
  1772. msgid "Failed to read .dsc"
  1773. msgstr "Eșec la „readlink” pentru %s"
  1774. #: ftparchive/cachedb.cc
  1775. msgid "Archive has no control record"
  1776. msgstr "Arhiva nu are înregistrare de control"
  1777. #: ftparchive/cachedb.cc
  1778. msgid "Unable to get a cursor"
  1779. msgstr "Nu s-a putut obține un cursor"
  1780. #: ftparchive/contents.cc
  1781. msgid "realloc - Failed to allocate memory"
  1782. msgstr "realloc - Eșec la alocarea memoriei"
  1783. #: ftparchive/multicompress.cc
  1784. #, c-format
  1785. msgid "Unknown compression algorithm '%s'"
  1786. msgstr "Algoritm de compresie necunoscut '%s'"
  1787. #: ftparchive/multicompress.cc
  1788. #, c-format
  1789. msgid "Compressed output %s needs a compression set"
  1790. msgstr "Rezultatul comprimat %s are nevoie de o ajustare a compresiei"
  1791. #: ftparchive/multicompress.cc
  1792. msgid "Failed to fork"
  1793. msgstr "Eșec la „fork”"
  1794. #: ftparchive/multicompress.cc
  1795. msgid "Compress child"
  1796. msgstr "Comprimare copil"
  1797. #: ftparchive/multicompress.cc
  1798. #, c-format
  1799. msgid "Internal error, failed to create %s"
  1800. msgstr "Eroare internă, eșec la crearea lui %s"
  1801. #: ftparchive/multicompress.cc
  1802. msgid "IO to subprocess/file failed"
  1803. msgstr "IE către subproces/fișier eșuat"
  1804. #: ftparchive/multicompress.cc
  1805. msgid "Failed to read while computing MD5"
  1806. msgstr "Eșec la citire în timpul calculului sumei MD5"
  1807. #: ftparchive/multicompress.cc
  1808. #, c-format
  1809. msgid "Problem unlinking %s"
  1810. msgstr "Problemă la desfacerea %s"
  1811. #: ftparchive/multicompress.cc apt-inst/extract.cc
  1812. #, c-format
  1813. msgid "Failed to rename %s to %s"
  1814. msgstr "Eșec la redenumirea lui %s în %s"
  1815. #: ftparchive/override.cc
  1816. #, c-format
  1817. msgid "Unable to open %s"
  1818. msgstr "Nu s-a putut deschide %s"
  1819. #. skip spaces
  1820. #. find end of word
  1821. #: ftparchive/override.cc
  1822. #, fuzzy, c-format
  1823. msgid "Malformed override %s line %llu (%s)"
  1824. msgstr "Înlocuire greșită %s linia %lu #1"
  1825. #: ftparchive/override.cc
  1826. #, c-format
  1827. msgid "Failed to read the override file %s"
  1828. msgstr "Eșec la citirea fișierului de înlocuire a permisiunilor %s"
  1829. #: ftparchive/override.cc
  1830. #, fuzzy, c-format
  1831. msgid "Malformed override %s line %llu #1"
  1832. msgstr "Înlocuire greșită %s linia %lu #1"
  1833. #: ftparchive/override.cc
  1834. #, fuzzy, c-format
  1835. msgid "Malformed override %s line %llu #2"
  1836. msgstr "Înlocuire greșită %s linia %lu #2"
  1837. #: ftparchive/override.cc
  1838. #, fuzzy, c-format
  1839. msgid "Malformed override %s line %llu #3"
  1840. msgstr "Înlocuire greșită %s linia %lu #3"
  1841. #: ftparchive/writer.cc
  1842. #, c-format
  1843. msgid "W: Unable to read directory %s\n"
  1844. msgstr "A: Nu s-a putut citi directorul %s\n"
  1845. #: ftparchive/writer.cc
  1846. #, c-format
  1847. msgid "W: Unable to stat %s\n"
  1848. msgstr "A: Nu s-a putut efectua „stat” pentru %s\n"
  1849. #: ftparchive/writer.cc
  1850. msgid "E: "
  1851. msgstr "E: "
  1852. #: ftparchive/writer.cc
  1853. msgid "W: "
  1854. msgstr "A: "
  1855. #: ftparchive/writer.cc
  1856. msgid "E: Errors apply to file "
  1857. msgstr "E: Erori la fișierul "
  1858. #: ftparchive/writer.cc
  1859. #, c-format
  1860. msgid "Failed to resolve %s"
  1861. msgstr "Eșec la „resolve” pentru %s"
  1862. #: ftparchive/writer.cc
  1863. msgid "Tree walking failed"
  1864. msgstr "Parcurgerea arborelui a eșuat"
  1865. #: ftparchive/writer.cc
  1866. #, c-format
  1867. msgid "Failed to open %s"
  1868. msgstr "Eșec la „open” pentru %s"
  1869. #: ftparchive/writer.cc
  1870. #, c-format
  1871. msgid " DeLink %s [%s]\n"
  1872. msgstr " Dezlegare %s [%s]\n"
  1873. #: ftparchive/writer.cc
  1874. #, c-format
  1875. msgid "Failed to readlink %s"
  1876. msgstr "Eșec la „readlink” pentru %s"
  1877. #: ftparchive/writer.cc
  1878. #, c-format
  1879. msgid "Failed to unlink %s"
  1880. msgstr "Eșec la „unlink” pentru %s"
  1881. #: ftparchive/writer.cc
  1882. #, c-format
  1883. msgid "*** Failed to link %s to %s"
  1884. msgstr "*** Eșec la „link” între %s și %s"
  1885. #: ftparchive/writer.cc
  1886. #, c-format
  1887. msgid " DeLink limit of %sB hit.\n"
  1888. msgstr " Limita de %sB a dezlegării a fost atinsă.\n"
  1889. #: ftparchive/writer.cc
  1890. msgid "Archive had no package field"
  1891. msgstr "Arhiva nu are câmp de pachet"
  1892. #: ftparchive/writer.cc
  1893. #, c-format
  1894. msgid " %s has no override entry\n"
  1895. msgstr " %s nu are intrare de înlocuire\n"
  1896. #: ftparchive/writer.cc
  1897. #, c-format
  1898. msgid " %s maintainer is %s not %s\n"
  1899. msgstr " %s responsabil este %s nu %s\n"
  1900. #: ftparchive/writer.cc
  1901. #, c-format
  1902. msgid " %s has no source override entry\n"
  1903. msgstr " %s nu are nici o intrare sursă de înlocuire\n"
  1904. #: ftparchive/writer.cc
  1905. #, c-format
  1906. msgid " %s has no binary override entry either\n"
  1907. msgstr " %s nu are nici intrare binară de înlocuire\n"
  1908. #: apt-inst/contrib/arfile.cc
  1909. msgid "Invalid archive signature"
  1910. msgstr "Semnătură de arhivă necorespunzătoare"
  1911. #: apt-inst/contrib/arfile.cc
  1912. msgid "Error reading archive member header"
  1913. msgstr "Eroare la citirea antetului membrului arhivei"
  1914. #: apt-inst/contrib/arfile.cc
  1915. #, fuzzy, c-format
  1916. msgid "Invalid archive member header %s"
  1917. msgstr "Antet de membru de arhivă necorespunzător"
  1918. #: apt-inst/contrib/arfile.cc
  1919. msgid "Invalid archive member header"
  1920. msgstr "Antet de membru de arhivă necorespunzător"
  1921. #: apt-inst/contrib/arfile.cc
  1922. msgid "Archive is too short"
  1923. msgstr "Arhiva este prea scurtă"
  1924. #: apt-inst/contrib/arfile.cc
  1925. msgid "Failed to read the archive headers"
  1926. msgstr "Eșec la citirea antetelor arhivei"
  1927. #: apt-inst/contrib/extracttar.cc
  1928. #, fuzzy, c-format
  1929. msgid "Cannot find a configured compressor for '%s'"
  1930. msgstr "Nu pot găsi pachetul %s"
  1931. #: apt-inst/contrib/extracttar.cc
  1932. msgid "Corrupted archive"
  1933. msgstr "Arhivă deteriorată"
  1934. #: apt-inst/contrib/extracttar.cc
  1935. msgid "Tar checksum failed, archive corrupted"
  1936. msgstr ""
  1937. "Suma de control a arhivei tar nu s-a verificat, arhiva este deteriorată"
  1938. #: apt-inst/contrib/extracttar.cc
  1939. #, c-format
  1940. msgid "Unknown TAR header type %u, member %s"
  1941. msgstr "Tip antet TAR %u necunoscut, membrul %s"
  1942. #: apt-inst/deb/debfile.cc
  1943. #, c-format
  1944. msgid "This is not a valid DEB archive, missing '%s' member"
  1945. msgstr "Aceasta nu este o arhivă DEB validă, lipsește membrul „%s”"
  1946. #: apt-inst/deb/debfile.cc
  1947. #, c-format
  1948. msgid "Internal error, could not locate member %s"
  1949. msgstr "Eroare internă, nu pot localiza membrul %s"
  1950. #: apt-inst/deb/debfile.cc
  1951. msgid "Unparsable control file"
  1952. msgstr "Fișier de control neanalizabil"
  1953. #: apt-inst/dirstream.cc
  1954. #, c-format
  1955. msgid "Failed to write file %s"
  1956. msgstr "Eșec la scrierea fișierului %s"
  1957. #: apt-inst/dirstream.cc
  1958. #, c-format
  1959. msgid "Failed to close file %s"
  1960. msgstr "Eșec la închiderea fișierului %s"
  1961. #: apt-inst/extract.cc
  1962. #, c-format
  1963. msgid "The path %s is too long"
  1964. msgstr "Calea %s este prea lungă"
  1965. #: apt-inst/extract.cc
  1966. #, c-format
  1967. msgid "Unpacking %s more than once"
  1968. msgstr "Se despachetează %s de mai multe ori"
  1969. #: apt-inst/extract.cc
  1970. #, c-format
  1971. msgid "The directory %s is diverted"
  1972. msgstr "Directorul %s este redirectat"
  1973. #: apt-inst/extract.cc
  1974. #, c-format
  1975. msgid "The package is trying to write to the diversion target %s/%s"
  1976. msgstr "Pachetul încearcă să scrie în ținta redirectării %s/%s"
  1977. #: apt-inst/extract.cc
  1978. msgid "The diversion path is too long"
  1979. msgstr "Calea de redirectare este prea lungă"
  1980. #: apt-inst/extract.cc
  1981. #, c-format
  1982. msgid "The directory %s is being replaced by a non-directory"
  1983. msgstr "Directorul %s este înlocuit de un non-director"
  1984. # XXX: nu-mi place, hash bucket ar trebui tradus mai elegant
  1985. #: apt-inst/extract.cc
  1986. msgid "Failed to locate node in its hash bucket"
  1987. msgstr "Eșec la localizarea nodului în clasa lui din tabela de dispersie"
  1988. #: apt-inst/extract.cc
  1989. msgid "The path is too long"
  1990. msgstr "Calea este prea lungă"
  1991. #: apt-inst/extract.cc
  1992. #, c-format
  1993. msgid "Overwrite package match with no version for %s"
  1994. msgstr "Pachet suprascris fără nici o versiune pentru %s"
  1995. #: apt-inst/extract.cc
  1996. #, c-format
  1997. msgid "File %s/%s overwrites the one in the package %s"
  1998. msgstr "Fișierul %s/%s îl suprascrie pe cel din pachetul %s"
  1999. #: apt-inst/extract.cc
  2000. #, c-format
  2001. msgid "Unable to stat %s"
  2002. msgstr "Nu se poate executa „stat” pe %s"
  2003. #: apt-inst/filelist.cc
  2004. msgid "DropNode called on still linked node"
  2005. msgstr "S-a chemat DropNode pe un nod încă „legat”"
  2006. # XXX: nu-mi place, fie e hash, fie „element de dispersie”
  2007. #: apt-inst/filelist.cc
  2008. msgid "Failed to locate the hash element!"
  2009. msgstr "Eșec la localizarea elementului de dispersie!"
  2010. #: apt-inst/filelist.cc
  2011. msgid "Failed to allocate diversion"
  2012. msgstr "Eșec la alocarea redirectării"
  2013. #: apt-inst/filelist.cc
  2014. msgid "Internal error in AddDiversion"
  2015. msgstr "Eroare internă în „AddDiversion”"
  2016. #: apt-inst/filelist.cc
  2017. #, c-format
  2018. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  2019. msgstr "Încercare de suprascriere a redirectării, %s -> %s și %s/%s"
  2020. #: apt-inst/filelist.cc
  2021. #, c-format
  2022. msgid "Double add of diversion %s -> %s"
  2023. msgstr "Adăugare dublă de redirectare %s -> %s"
  2024. #: apt-inst/filelist.cc
  2025. #, c-format
  2026. msgid "Duplicate conf file %s/%s"
  2027. msgstr "Fișier „conf” duplicat %s/%s"
  2028. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  2029. #, fuzzy, c-format
  2030. msgid "List directory %spartial is missing."
  2031. msgstr "Directorul de liste %spartial lipsește."
  2032. #: apt-pkg/acquire.cc
  2033. #, fuzzy, c-format
  2034. msgid "Archives directory %spartial is missing."
  2035. msgstr "Directorul de arhive %spartial lipsește."
  2036. #: apt-pkg/acquire.cc
  2037. #, fuzzy, c-format
  2038. msgid "Unable to lock directory %s"
  2039. msgstr "Nu pot încuia directorul cu lista"
  2040. #: apt-pkg/acquire.cc
  2041. #, c-format
  2042. msgid ""
  2043. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  2044. "user '%s'."
  2045. msgstr ""
  2046. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  2047. #, fuzzy, c-format
  2048. msgid "Clean of %s is not supported"
  2049. msgstr "Tipul de fișier index '%s' nu este suportat"
  2050. #. only show the ETA if it makes sense
  2051. #. two days
  2052. #: apt-pkg/acquire.cc
  2053. #, c-format
  2054. msgid "Retrieving file %li of %li (%s remaining)"
  2055. msgstr "Se descarcă fișierul %li din %li (%s rămas)"
  2056. #: apt-pkg/acquire.cc
  2057. #, c-format
  2058. msgid "Retrieving file %li of %li"
  2059. msgstr "Se descarcă fișierul %li din %li"
  2060. #: apt-pkg/acquire-item.cc
  2061. msgid ""
  2062. "Updating such a repository securily is impossible and therefore disabled by "
  2063. "default."
  2064. msgstr ""
  2065. #: apt-pkg/acquire-item.cc
  2066. msgid ""
  2067. "Data from such a repository can not be authenticated and is therefore "
  2068. "potentially dangerous to use."
  2069. msgstr ""
  2070. #: apt-pkg/acquire-item.cc
  2071. msgid ""
  2072. "See apt-secure(8) manpage for repository creation and user configuration "
  2073. "details."
  2074. msgstr ""
  2075. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  2076. #, c-format
  2077. msgid "rename failed, %s (%s -> %s)."
  2078. msgstr "redenumire eșuată, %s (%s -> %s)."
  2079. #: apt-pkg/acquire-item.cc
  2080. msgid "Hash Sum mismatch"
  2081. msgstr "Nepotrivire la suma de căutare"
  2082. #: apt-pkg/acquire-item.cc
  2083. msgid "Size mismatch"
  2084. msgstr "Nepotrivire dimensiune"
  2085. #: apt-pkg/acquire-item.cc
  2086. #, fuzzy
  2087. msgid "Invalid file format"
  2088. msgstr "Operațiune invalidă %s"
  2089. #: apt-pkg/acquire-item.cc
  2090. #, fuzzy
  2091. msgid "Signature error"
  2092. msgstr "Eroare de scriere"
  2093. #: apt-pkg/acquire-item.cc
  2094. #, c-format
  2095. msgid ""
  2096. "An error occurred during the signature verification. The repository is not "
  2097. "updated and the previous index files will be used. GPG error: %s: %s"
  2098. msgstr ""
  2099. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2100. #: apt-pkg/acquire-item.cc
  2101. #, c-format
  2102. msgid "GPG error: %s: %s"
  2103. msgstr ""
  2104. #: apt-pkg/acquire-item.cc
  2105. #, c-format
  2106. msgid ""
  2107. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2108. "or malformed file)"
  2109. msgstr ""
  2110. #: apt-pkg/acquire-item.cc
  2111. msgid "There is no public key available for the following key IDs:\n"
  2112. msgstr ""
  2113. "Nu există nici o cheie publică disponibilă pentru următoarele "
  2114. "identificatoare de chei:\n"
  2115. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2116. #. the time since then the file is invalid - formatted in the same way as in
  2117. #. the download progress display (e.g. 7d 3h 42min 1s)
  2118. #: apt-pkg/acquire-item.cc
  2119. #, c-format
  2120. msgid ""
  2121. "Release file for %s is expired (invalid since %s). Updates for this "
  2122. "repository will not be applied."
  2123. msgstr ""
  2124. #: apt-pkg/acquire-item.cc
  2125. #, c-format
  2126. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2127. msgstr ""
  2128. #. No Release file was present, or verification failed, so fall
  2129. #. back to queueing Packages files without verification
  2130. #. only allow going further if the users explicitely wants it
  2131. #: apt-pkg/acquire-item.cc
  2132. #, fuzzy, c-format
  2133. msgid "The repository '%s' is not signed."
  2134. msgstr "Directorul %s este redirectat"
  2135. #. No Release file was present so fall
  2136. #. back to queueing Packages files without verification
  2137. #. only allow going further if the users explicitely wants it
  2138. #: apt-pkg/acquire-item.cc
  2139. #, fuzzy, c-format
  2140. msgid "The repository '%s' does not have a Release file."
  2141. msgstr "Directorul %s este redirectat"
  2142. #: apt-pkg/acquire-item.cc
  2143. #, fuzzy, c-format
  2144. msgid "The repository '%s' is no longer signed."
  2145. msgstr "Directorul %s este redirectat"
  2146. #: apt-pkg/acquire-item.cc
  2147. msgid ""
  2148. "This is normally not allowed, but the option Acquire::"
  2149. "AllowDowngradeToInsecureRepositories was given to override it."
  2150. msgstr ""
  2151. #: apt-pkg/acquire-item.cc
  2152. #, c-format
  2153. msgid ""
  2154. "I wasn't able to locate a file for the %s package. This might mean you need "
  2155. "to manually fix this package. (due to missing arch)"
  2156. msgstr ""
  2157. "N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna "
  2158. "că aveți nevoie să reparați manual acest pachet (din pricina unui arch lipsă)"
  2159. #: apt-pkg/acquire-item.cc
  2160. #, c-format
  2161. msgid "Can't find a source to download version '%s' of '%s'"
  2162. msgstr ""
  2163. #: apt-pkg/acquire-item.cc
  2164. #, c-format
  2165. msgid ""
  2166. "The package index files are corrupted. No Filename: field for package %s."
  2167. msgstr ""
  2168. "Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la "
  2169. "pachetul %s."
  2170. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  2171. #: apt-pkg/acquire-item.cc
  2172. #, fuzzy, c-format
  2173. msgid "Changelog unavailable for %s=%s"
  2174. msgstr "Conectare la %s (%s)"
  2175. #: apt-pkg/acquire-worker.cc
  2176. #, c-format
  2177. msgid "The method driver %s could not be found."
  2178. msgstr "Metoda driver %s nu poate fi găsită."
  2179. #: apt-pkg/acquire-worker.cc
  2180. #, fuzzy, c-format
  2181. msgid "Is the package %s installed?"
  2182. msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n"
  2183. #: apt-pkg/acquire-worker.cc
  2184. #, c-format
  2185. msgid "Method %s did not start correctly"
  2186. msgstr "Metoda %s nu s-a lansat corect"
  2187. #: apt-pkg/acquire-worker.cc
  2188. #, fuzzy, c-format
  2189. msgid ""
  2190. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  2191. msgstr ""
  2192. "Vă rog introduceți discul numit: '%s' în unitatea '%s' și apăsați Enter."
  2193. #: apt-pkg/algorithms.cc
  2194. #, c-format
  2195. msgid ""
  2196. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2197. msgstr ""
  2198. "Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el."
  2199. #: apt-pkg/algorithms.cc
  2200. msgid ""
  2201. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2202. "held packages."
  2203. msgstr ""
  2204. "Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi "
  2205. "cauzată de pachete ținute."
  2206. #: apt-pkg/algorithms.cc
  2207. msgid "Unable to correct problems, you have held broken packages."
  2208. msgstr "Nu pot corecta problema, ați ținut pachete deteriorate."
  2209. #: apt-pkg/cachefile.cc
  2210. msgid "The package lists or status file could not be parsed or opened."
  2211. msgstr ""
  2212. "Listele de pachete sau fișierul de stare n-au putut fi analizate sau "
  2213. "deschise."
  2214. #: apt-pkg/cachefile.cc
  2215. msgid "You may want to run apt-get update to correct these problems"
  2216. msgstr ""
  2217. "Ați putea vrea să porniți 'apt-get update' pentru a corecta aceste probleme."
  2218. #: apt-pkg/cachefile.cc
  2219. msgid "The list of sources could not be read."
  2220. msgstr "Lista surselor nu poate fi citită."
  2221. #: apt-pkg/cacheset.cc
  2222. #, c-format
  2223. msgid "Release '%s' for '%s' was not found"
  2224. msgstr "Release '%s' pentru '%s' n-a fost găsită"
  2225. #: apt-pkg/cacheset.cc
  2226. #, c-format
  2227. msgid "Version '%s' for '%s' was not found"
  2228. msgstr "Versiunea '%s' pentru '%s' n-a fost găsită"
  2229. #: apt-pkg/cacheset.cc
  2230. #, fuzzy, c-format
  2231. msgid "Couldn't find task '%s'"
  2232. msgstr "Nu s-a putut găsi sarcina %s"
  2233. #: apt-pkg/cacheset.cc
  2234. #, fuzzy, c-format
  2235. msgid "Couldn't find any package by regex '%s'"
  2236. msgstr "Nu pot găsi pachetul %s"
  2237. #: apt-pkg/cacheset.cc
  2238. #, fuzzy, c-format
  2239. msgid "Couldn't find any package by glob '%s'"
  2240. msgstr "Nu pot găsi pachetul %s"
  2241. #: apt-pkg/cacheset.cc
  2242. #, c-format
  2243. msgid "Can't select versions from package '%s' as it is purely virtual"
  2244. msgstr ""
  2245. #: apt-pkg/cacheset.cc
  2246. #, c-format
  2247. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2248. msgstr ""
  2249. #: apt-pkg/cacheset.cc
  2250. #, c-format
  2251. msgid "Can't select candidate version from package %s as it has no candidate"
  2252. msgstr ""
  2253. #: apt-pkg/cacheset.cc
  2254. #, c-format
  2255. msgid "Can't select installed version from package %s as it is not installed"
  2256. msgstr ""
  2257. #: apt-pkg/cacheset.cc
  2258. #, c-format
  2259. msgid ""
  2260. "Can't select installed nor candidate version from package '%s' as it has "
  2261. "neither of them"
  2262. msgstr ""
  2263. #: apt-pkg/cdrom.cc
  2264. #, c-format
  2265. msgid "Line %u too long in source list %s."
  2266. msgstr "Linia %u prea lungă în lista sursă %s."
  2267. #: apt-pkg/cdrom.cc
  2268. msgid "Unmounting CD-ROM...\n"
  2269. msgstr "Se demontează CD-ul...\n"
  2270. #: apt-pkg/cdrom.cc
  2271. #, c-format
  2272. msgid "Using CD-ROM mount point %s\n"
  2273. msgstr "Utilizare punct de montare CD-ROM %s\n"
  2274. #: apt-pkg/cdrom.cc
  2275. msgid "Waiting for disc...\n"
  2276. msgstr "Aștept discul...\n"
  2277. #: apt-pkg/cdrom.cc
  2278. msgid "Mounting CD-ROM...\n"
  2279. msgstr "Montez CD-ROM...\n"
  2280. #: apt-pkg/cdrom.cc
  2281. msgid "Identifying... "
  2282. msgstr "Identificare... "
  2283. #: apt-pkg/cdrom.cc
  2284. #, c-format
  2285. msgid "Stored label: %s\n"
  2286. msgstr "Etichetă memorată: %s \n"
  2287. #: apt-pkg/cdrom.cc
  2288. msgid "Scanning disc for index files...\n"
  2289. msgstr "Scanez discul de fișierele index...\n"
  2290. # DEVELOPERS: please consider using somehow plural forms
  2291. #: apt-pkg/cdrom.cc
  2292. #, c-format
  2293. msgid ""
  2294. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2295. "%zu signatures\n"
  2296. msgstr ""
  2297. "Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri "
  2298. "de traduceri și %zu semnături\n"
  2299. #: apt-pkg/cdrom.cc
  2300. msgid ""
  2301. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2302. "wrong architecture?"
  2303. msgstr ""
  2304. #: apt-pkg/cdrom.cc
  2305. #, c-format
  2306. msgid "Found label '%s'\n"
  2307. msgstr "A fost găsită eticheta „%s”\n"
  2308. #: apt-pkg/cdrom.cc
  2309. msgid "That is not a valid name, try again.\n"
  2310. msgstr "Acesta nu este un nume valid, mai încercați.\n"
  2311. #: apt-pkg/cdrom.cc
  2312. #, c-format
  2313. msgid ""
  2314. "This disc is called: \n"
  2315. "'%s'\n"
  2316. msgstr ""
  2317. "Acest disc este numit: \n"
  2318. "'%s'\n"
  2319. #: apt-pkg/cdrom.cc
  2320. msgid "Copying package lists..."
  2321. msgstr "Copiez listele de pachete.."
  2322. #: apt-pkg/cdrom.cc
  2323. msgid "Writing new source list\n"
  2324. msgstr "Scriere noua listă sursă\n"
  2325. #: apt-pkg/cdrom.cc
  2326. msgid "Source list entries for this disc are:\n"
  2327. msgstr "Intrările listei surselor pentru acest disc sunt:\n"
  2328. #: apt-pkg/clean.cc
  2329. #, c-format
  2330. msgid "Unable to stat %s."
  2331. msgstr "Nu pot determina starea %s."
  2332. #: apt-pkg/contrib/cdromutl.cc
  2333. #, c-format
  2334. msgid "Unable to stat the mount point %s"
  2335. msgstr "Nu pot determina starea punctului de montare %s"
  2336. #: apt-pkg/contrib/cdromutl.cc
  2337. msgid "Failed to stat the cdrom"
  2338. msgstr "Eșec la „stat” pentru CD"
  2339. #: apt-pkg/contrib/cmndline.cc
  2340. #, fuzzy, c-format
  2341. msgid ""
  2342. "Command line option '%c' [from %s] is not understood in combination with the "
  2343. "other options."
  2344. msgstr "Opțiunea linie de comandă '%c' [din %s] este necunoscută."
  2345. #: apt-pkg/contrib/cmndline.cc
  2346. #, fuzzy, c-format
  2347. msgid ""
  2348. "Command line option %s is not understood in combination with the other "
  2349. "options"
  2350. msgstr "Opțiunea linie de comandă %s nu este înțeleasă"
  2351. #: apt-pkg/contrib/cmndline.cc
  2352. #, c-format
  2353. msgid "Command line option %s is not boolean"
  2354. msgstr "Opțiunea linie de comandă %s nu este booleană"
  2355. #: apt-pkg/contrib/cmndline.cc
  2356. #, c-format
  2357. msgid "Option %s requires an argument."
  2358. msgstr "Opțiunea %s necesită un argument"
  2359. #: apt-pkg/contrib/cmndline.cc
  2360. #, c-format
  2361. msgid "Option %s: Configuration item specification must have an =<val>."
  2362. msgstr ""
  2363. "Opțiunea %s: Specificația configurării articolului trebuie să aibă o =<val>."
  2364. #: apt-pkg/contrib/cmndline.cc
  2365. #, c-format
  2366. msgid "Option %s requires an integer argument, not '%s'"
  2367. msgstr "Opțiunea %s necesită un argument integru, nu '%s'"
  2368. #: apt-pkg/contrib/cmndline.cc
  2369. #, c-format
  2370. msgid "Option '%s' is too long"
  2371. msgstr "Opțiunea '%s' este prea lungă"
  2372. #: apt-pkg/contrib/cmndline.cc
  2373. #, c-format
  2374. msgid "Sense %s is not understood, try true or false."
  2375. msgstr "Sensul %s nu este înțeles, încercați adevărat (true) sau fals (false)."
  2376. #: apt-pkg/contrib/cmndline.cc
  2377. #, c-format
  2378. msgid "Invalid operation %s"
  2379. msgstr "Operațiune invalidă %s"
  2380. #: apt-pkg/contrib/configuration.cc
  2381. #, c-format
  2382. msgid "Unrecognized type abbreviation: '%c'"
  2383. msgstr "Abreviere de tip nerecunoscut: „%c”"
  2384. #: apt-pkg/contrib/configuration.cc
  2385. #, c-format
  2386. msgid "Opening configuration file %s"
  2387. msgstr "Se deschide fișierul de configurare %s"
  2388. #: apt-pkg/contrib/configuration.cc
  2389. #, c-format
  2390. msgid "Syntax error %s:%u: Block starts with no name."
  2391. msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume"
  2392. #: apt-pkg/contrib/configuration.cc
  2393. #, c-format
  2394. msgid "Syntax error %s:%u: Malformed tag"
  2395. msgstr "Eroare de sintaxă %s:%u: etichetă greșită"
  2396. #: apt-pkg/contrib/configuration.cc
  2397. #, c-format
  2398. msgid "Syntax error %s:%u: Extra junk after value"
  2399. msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare"
  2400. #: apt-pkg/contrib/configuration.cc
  2401. #, c-format
  2402. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2403. msgstr ""
  2404. "Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior"
  2405. #: apt-pkg/contrib/configuration.cc
  2406. #, c-format
  2407. msgid "Syntax error %s:%u: Too many nested includes"
  2408. msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse"
  2409. #: apt-pkg/contrib/configuration.cc
  2410. #, c-format
  2411. msgid "Syntax error %s:%u: Included from here"
  2412. msgstr "Eroare de sintaxă %s:%u: incluse de aici"
  2413. #: apt-pkg/contrib/configuration.cc
  2414. #, c-format
  2415. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2416. msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'"
  2417. #: apt-pkg/contrib/configuration.cc
  2418. #, fuzzy, c-format
  2419. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2420. msgstr ""
  2421. "Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior"
  2422. #: apt-pkg/contrib/configuration.cc
  2423. #, c-format
  2424. msgid "Syntax error %s:%u: Extra junk at end of file"
  2425. msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârșitul fișierului"
  2426. #: apt-pkg/contrib/fileutl.cc
  2427. #, c-format
  2428. msgid "Not using locking for read only lock file %s"
  2429. msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s"
  2430. #: apt-pkg/contrib/fileutl.cc
  2431. #, c-format
  2432. msgid "Could not open lock file %s"
  2433. msgstr "Nu pot deschide fișierul blocat %s"
  2434. #: apt-pkg/contrib/fileutl.cc
  2435. #, c-format
  2436. msgid "Not using locking for nfs mounted lock file %s"
  2437. msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s"
  2438. #: apt-pkg/contrib/fileutl.cc
  2439. #, c-format
  2440. msgid "Could not get lock %s"
  2441. msgstr "Nu pot determina blocajul %s"
  2442. #: apt-pkg/contrib/fileutl.cc
  2443. #, c-format
  2444. msgid "List of files can't be created as '%s' is not a directory"
  2445. msgstr ""
  2446. #: apt-pkg/contrib/fileutl.cc
  2447. #, c-format
  2448. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2449. msgstr ""
  2450. #: apt-pkg/contrib/fileutl.cc
  2451. #, c-format
  2452. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2453. msgstr ""
  2454. #: apt-pkg/contrib/fileutl.cc
  2455. #, c-format
  2456. msgid ""
  2457. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2458. msgstr ""
  2459. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  2460. #, c-format
  2461. msgid "Waited for %s but it wasn't there"
  2462. msgstr "Așteptat %s, dar n-a fost acolo"
  2463. #: apt-pkg/contrib/fileutl.cc
  2464. #, c-format
  2465. msgid "Sub-process %s received a segmentation fault."
  2466. msgstr "Subprocesul %s a primit o eroare de segmentare."
  2467. #: apt-pkg/contrib/fileutl.cc
  2468. #, fuzzy, c-format
  2469. msgid "Sub-process %s received signal %u."
  2470. msgstr "Subprocesul %s a primit o eroare de segmentare."
  2471. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2472. #, c-format
  2473. msgid "Sub-process %s returned an error code (%u)"
  2474. msgstr "Subprocesul %s a întors un cod de eroare (%u)"
  2475. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2476. #, c-format
  2477. msgid "Sub-process %s exited unexpectedly"
  2478. msgstr "Subprocesul %s s-a terminat brusc"
  2479. #: apt-pkg/contrib/fileutl.cc
  2480. #, fuzzy, c-format
  2481. msgid "Problem closing the gzip file %s"
  2482. msgstr "Problemă la închiderea fișierului"
  2483. #: apt-pkg/contrib/fileutl.cc
  2484. #, c-format
  2485. msgid "Could not open file %s"
  2486. msgstr "Nu s-a putut deschide fișierul %s"
  2487. #: apt-pkg/contrib/fileutl.cc
  2488. #, fuzzy, c-format
  2489. msgid "Could not open file descriptor %d"
  2490. msgstr "Nu s-a putut deschide conexiunea pentru %s"
  2491. #: apt-pkg/contrib/fileutl.cc
  2492. msgid "Failed to create subprocess IPC"
  2493. msgstr "Eșec la crearea IPC-ului pentru subproces"
  2494. #: apt-pkg/contrib/fileutl.cc
  2495. msgid "Failed to exec compressor "
  2496. msgstr "Eșec la executarea compresorului"
  2497. #: apt-pkg/contrib/fileutl.cc
  2498. #, fuzzy, c-format
  2499. msgid "read, still have %llu to read but none left"
  2500. msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic"
  2501. #: apt-pkg/contrib/fileutl.cc
  2502. #, fuzzy, c-format
  2503. msgid "write, still have %llu to write but couldn't"
  2504. msgstr "scriere, încă mai am %lu de scris dar nu pot"
  2505. #: apt-pkg/contrib/fileutl.cc
  2506. #, fuzzy, c-format
  2507. msgid "Problem closing the file %s"
  2508. msgstr "Problemă la închiderea fișierului"
  2509. #: apt-pkg/contrib/fileutl.cc
  2510. #, fuzzy, c-format
  2511. msgid "Problem renaming the file %s to %s"
  2512. msgstr "Problemă în timpul sincronizării fișierului"
  2513. #: apt-pkg/contrib/fileutl.cc
  2514. #, fuzzy, c-format
  2515. msgid "Problem unlinking the file %s"
  2516. msgstr "Problemă la dezlegarea fișierului"
  2517. #: apt-pkg/contrib/fileutl.cc
  2518. msgid "Problem syncing the file"
  2519. msgstr "Problemă în timpul sincronizării fișierului"
  2520. #: apt-pkg/contrib/mmap.cc
  2521. msgid "Can't mmap an empty file"
  2522. msgstr "Nu s-a putut executa „mmap” cu un fișier gol"
  2523. #: apt-pkg/contrib/mmap.cc
  2524. #, fuzzy, c-format
  2525. msgid "Couldn't duplicate file descriptor %i"
  2526. msgstr "Nu s-a putut deschide conexiunea pentru %s"
  2527. #: apt-pkg/contrib/mmap.cc
  2528. #, fuzzy, c-format
  2529. msgid "Couldn't make mmap of %llu bytes"
  2530. msgstr "Nu s-a putut face mmap cu %lu octeți"
  2531. #: apt-pkg/contrib/mmap.cc
  2532. #, fuzzy
  2533. msgid "Unable to close mmap"
  2534. msgstr "Nu s-a putut deschide %s"
  2535. #: apt-pkg/contrib/mmap.cc
  2536. #, fuzzy
  2537. msgid "Unable to synchronize mmap"
  2538. msgstr "Nu s-a putut invoca"
  2539. #: apt-pkg/contrib/mmap.cc
  2540. #, c-format
  2541. msgid "Couldn't make mmap of %lu bytes"
  2542. msgstr "Nu s-a putut face mmap cu %lu octeți"
  2543. #: apt-pkg/contrib/mmap.cc
  2544. msgid "Failed to truncate file"
  2545. msgstr "Eșec la trunchierea fișierului"
  2546. #: apt-pkg/contrib/mmap.cc
  2547. #, c-format
  2548. msgid ""
  2549. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2550. "Current value: %lu. (man 5 apt.conf)"
  2551. msgstr ""
  2552. #: apt-pkg/contrib/mmap.cc
  2553. #, c-format
  2554. msgid ""
  2555. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2556. "reached."
  2557. msgstr ""
  2558. #: apt-pkg/contrib/mmap.cc
  2559. msgid ""
  2560. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2561. msgstr ""
  2562. #: apt-pkg/contrib/progress.cc
  2563. #, c-format
  2564. msgid "%c%s... Error!"
  2565. msgstr "%c%s... Eroare!"
  2566. #: apt-pkg/contrib/progress.cc
  2567. #, c-format
  2568. msgid "%c%s... Done"
  2569. msgstr "%c%s... Terminat"
  2570. #: apt-pkg/contrib/progress.cc
  2571. msgid "..."
  2572. msgstr ""
  2573. #. Print the spinner
  2574. #: apt-pkg/contrib/progress.cc
  2575. #, fuzzy, c-format
  2576. msgid "%c%s... %u%%"
  2577. msgstr "%c%s... Terminat"
  2578. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2579. #: apt-pkg/contrib/strutl.cc
  2580. #, c-format
  2581. msgid "%lid %lih %limin %lis"
  2582. msgstr ""
  2583. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2584. #: apt-pkg/contrib/strutl.cc
  2585. #, c-format
  2586. msgid "%lih %limin %lis"
  2587. msgstr ""
  2588. #. TRANSLATOR: min means minutes, s means seconds
  2589. #: apt-pkg/contrib/strutl.cc
  2590. #, c-format
  2591. msgid "%limin %lis"
  2592. msgstr ""
  2593. #. TRANSLATOR: s means seconds
  2594. #: apt-pkg/contrib/strutl.cc
  2595. #, c-format
  2596. msgid "%lis"
  2597. msgstr ""
  2598. #: apt-pkg/contrib/strutl.cc
  2599. #, c-format
  2600. msgid "Selection %s not found"
  2601. msgstr "Selecția %s nu a fost găsită"
  2602. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2603. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2604. #. filename and linenumber of the sources.list entry currently parsed
  2605. #: apt-pkg/deb/debmetaindex.cc
  2606. #, c-format
  2607. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2608. msgstr ""
  2609. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2610. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2611. #. two sources.list entries
  2612. #: apt-pkg/deb/debmetaindex.cc
  2613. #, c-format
  2614. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2615. msgstr ""
  2616. #: apt-pkg/deb/debmetaindex.cc
  2617. #, fuzzy, c-format
  2618. msgid "Unable to parse Release file %s"
  2619. msgstr "Nu s-a putut analiza fișierul pachet %s (1)"
  2620. #: apt-pkg/deb/debmetaindex.cc
  2621. #, fuzzy, c-format
  2622. msgid "No sections in Release file %s"
  2623. msgstr "Notă, se selectează %s în locul lui %s\n"
  2624. #: apt-pkg/deb/debmetaindex.cc
  2625. #, c-format
  2626. msgid "No Hash entry in Release file %s"
  2627. msgstr ""
  2628. #: apt-pkg/deb/debmetaindex.cc
  2629. #, fuzzy, c-format
  2630. msgid "Invalid 'Date' entry in Release file %s"
  2631. msgstr "Nu s-a putut analiza fișierul pachet %s (1)"
  2632. #: apt-pkg/deb/debmetaindex.cc
  2633. #, fuzzy, c-format
  2634. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2635. msgstr "Linie necorespunzătoare în fișierul-redirectare: %s"
  2636. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2637. #: apt-pkg/deb/debmetaindex.cc
  2638. #, c-format
  2639. msgid "Conflicting values set for option %s concerning source %s %s"
  2640. msgstr ""
  2641. #: apt-pkg/deb/debmetaindex.cc
  2642. #, c-format
  2643. msgid "Invalid value set for option %s concerning source %s %s (%s)"
  2644. msgstr ""
  2645. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  2646. #, c-format
  2647. msgid "Unable to parse package file %s (%d)"
  2648. msgstr "Nu s-a putut analiza fișierul pachet %s (%d)"
  2649. #: apt-pkg/deb/debsystem.cc
  2650. #, c-format
  2651. msgid ""
  2652. "Unable to lock the administration directory (%s), is another process using "
  2653. "it?"
  2654. msgstr ""
  2655. #: apt-pkg/deb/debsystem.cc
  2656. #, fuzzy, c-format
  2657. msgid "Unable to lock the administration directory (%s), are you root?"
  2658. msgstr "Nu pot încuia directorul cu lista"
  2659. #. TRANSLATORS: the %s contains the recovery command, usually
  2660. #. dpkg --configure -a
  2661. #: apt-pkg/deb/debsystem.cc
  2662. #, c-format
  2663. msgid ""
  2664. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2665. msgstr ""
  2666. #: apt-pkg/deb/debsystem.cc
  2667. msgid "Not locked"
  2668. msgstr ""
  2669. #: apt-pkg/deb/dpkgpm.cc
  2670. #, c-format
  2671. msgid "Installing %s"
  2672. msgstr "Se instalează %s"
  2673. #: apt-pkg/deb/dpkgpm.cc
  2674. #, c-format
  2675. msgid "Configuring %s"
  2676. msgstr "Se configurează %s"
  2677. #: apt-pkg/deb/dpkgpm.cc
  2678. #, c-format
  2679. msgid "Removing %s"
  2680. msgstr "Se șterge %s"
  2681. #: apt-pkg/deb/dpkgpm.cc
  2682. #, fuzzy, c-format
  2683. msgid "Completely removing %s"
  2684. msgstr "Șters complet %s"
  2685. #: apt-pkg/deb/dpkgpm.cc
  2686. #, c-format
  2687. msgid "Noting disappearance of %s"
  2688. msgstr ""
  2689. #: apt-pkg/deb/dpkgpm.cc
  2690. #, c-format
  2691. msgid "Running post-installation trigger %s"
  2692. msgstr "Se rulează declanșatorul post-instalare %s"
  2693. #. FIXME: use a better string after freeze
  2694. #: apt-pkg/deb/dpkgpm.cc
  2695. #, c-format
  2696. msgid "Directory '%s' missing"
  2697. msgstr "Directorul „%s” lipsește."
  2698. #: apt-pkg/deb/dpkgpm.cc
  2699. #, fuzzy, c-format
  2700. msgid "Could not open file '%s'"
  2701. msgstr "Nu s-a putut deschide fișierul %s"
  2702. #: apt-pkg/deb/dpkgpm.cc
  2703. #, c-format
  2704. msgid "Preparing %s"
  2705. msgstr "Se pregătește %s"
  2706. #: apt-pkg/deb/dpkgpm.cc
  2707. #, c-format
  2708. msgid "Unpacking %s"
  2709. msgstr "Se despachetează %s"
  2710. #: apt-pkg/deb/dpkgpm.cc
  2711. #, c-format
  2712. msgid "Preparing to configure %s"
  2713. msgstr "Se pregătește configurarea %s"
  2714. #: apt-pkg/deb/dpkgpm.cc
  2715. #, c-format
  2716. msgid "Installed %s"
  2717. msgstr "Instalat %s"
  2718. #: apt-pkg/deb/dpkgpm.cc
  2719. #, c-format
  2720. msgid "Preparing for removal of %s"
  2721. msgstr "Se pregătește ștergerea lui %s"
  2722. #: apt-pkg/deb/dpkgpm.cc
  2723. #, c-format
  2724. msgid "Removed %s"
  2725. msgstr "Șters %s"
  2726. #: apt-pkg/deb/dpkgpm.cc
  2727. #, c-format
  2728. msgid "Preparing to completely remove %s"
  2729. msgstr "Se pregătește ștergerea completă a %s"
  2730. #: apt-pkg/deb/dpkgpm.cc
  2731. #, c-format
  2732. msgid "Completely removed %s"
  2733. msgstr "Șters complet %s"
  2734. #: apt-pkg/deb/dpkgpm.cc
  2735. #, fuzzy, c-format
  2736. msgid "Can not write log (%s)"
  2737. msgstr "Nu s-a putut scrie în %s"
  2738. #: apt-pkg/deb/dpkgpm.cc
  2739. msgid "Is /dev/pts mounted?"
  2740. msgstr ""
  2741. #: apt-pkg/deb/dpkgpm.cc
  2742. msgid "Operation was interrupted before it could finish"
  2743. msgstr ""
  2744. #: apt-pkg/deb/dpkgpm.cc
  2745. msgid "No apport report written because MaxReports is reached already"
  2746. msgstr ""
  2747. #. check if its not a follow up error
  2748. #: apt-pkg/deb/dpkgpm.cc
  2749. msgid "dependency problems - leaving unconfigured"
  2750. msgstr ""
  2751. #: apt-pkg/deb/dpkgpm.cc
  2752. msgid ""
  2753. "No apport report written because the error message indicates its a followup "
  2754. "error from a previous failure."
  2755. msgstr ""
  2756. #: apt-pkg/deb/dpkgpm.cc
  2757. msgid ""
  2758. "No apport report written because the error message indicates a disk full "
  2759. "error"
  2760. msgstr ""
  2761. #: apt-pkg/deb/dpkgpm.cc
  2762. msgid ""
  2763. "No apport report written because the error message indicates a out of memory "
  2764. "error"
  2765. msgstr ""
  2766. #: apt-pkg/deb/dpkgpm.cc
  2767. msgid ""
  2768. "No apport report written because the error message indicates an issue on the "
  2769. "local system"
  2770. msgstr ""
  2771. #: apt-pkg/deb/dpkgpm.cc
  2772. msgid ""
  2773. "No apport report written because the error message indicates a dpkg I/O error"
  2774. msgstr ""
  2775. #: apt-pkg/depcache.cc
  2776. msgid "Building dependency tree"
  2777. msgstr "Se construiește arborele de dependență"
  2778. #: apt-pkg/depcache.cc
  2779. msgid "Candidate versions"
  2780. msgstr "Versiuni candidat"
  2781. #: apt-pkg/depcache.cc
  2782. msgid "Dependency generation"
  2783. msgstr "Generare dependențe"
  2784. #: apt-pkg/depcache.cc
  2785. msgid "Reading state information"
  2786. msgstr "Se citesc informațiile de stare"
  2787. #: apt-pkg/depcache.cc
  2788. #, c-format
  2789. msgid "Failed to open StateFile %s"
  2790. msgstr "Eșec la deschiderea fișierului de stare %s"
  2791. #: apt-pkg/depcache.cc
  2792. #, c-format
  2793. msgid "Failed to write temporary StateFile %s"
  2794. msgstr "Eșec la scrierea fișierului temporar de stare %s"
  2795. #: apt-pkg/edsp.cc
  2796. msgid "Send scenario to solver"
  2797. msgstr ""
  2798. #: apt-pkg/edsp.cc
  2799. msgid "Send request to solver"
  2800. msgstr ""
  2801. #: apt-pkg/edsp.cc
  2802. msgid "Prepare for receiving solution"
  2803. msgstr ""
  2804. #: apt-pkg/edsp.cc
  2805. msgid "External solver failed without a proper error message"
  2806. msgstr ""
  2807. #: apt-pkg/edsp.cc
  2808. msgid "Execute external solver"
  2809. msgstr ""
  2810. #: apt-pkg/indexcopy.cc
  2811. #, c-format
  2812. msgid "Wrote %i records.\n"
  2813. msgstr "S-au scris %i înregistrări.\n"
  2814. #: apt-pkg/indexcopy.cc
  2815. #, c-format
  2816. msgid "Wrote %i records with %i missing files.\n"
  2817. msgstr "S-au scris %i înregistrări cu %i fișiere lipsă.\n"
  2818. #: apt-pkg/indexcopy.cc
  2819. #, c-format
  2820. msgid "Wrote %i records with %i mismatched files\n"
  2821. msgstr "S-au scris %i înregistrări cu %i fișiere nepotrivite\n"
  2822. #: apt-pkg/indexcopy.cc
  2823. #, c-format
  2824. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2825. msgstr ""
  2826. "S-au scris %i înregistrări cu %i fișiere lipsă și %i fișiere nepotrivite\n"
  2827. #: apt-pkg/indexcopy.cc
  2828. #, c-format
  2829. msgid "Can't find authentication record for: %s"
  2830. msgstr ""
  2831. #: apt-pkg/indexcopy.cc
  2832. #, fuzzy, c-format
  2833. msgid "Hash mismatch for: %s"
  2834. msgstr "Nepotrivire la suma de căutare"
  2835. #: apt-pkg/init.cc
  2836. #, c-format
  2837. msgid "Packaging system '%s' is not supported"
  2838. msgstr "Sistemul de pachete '%s' nu este suportat"
  2839. #: apt-pkg/init.cc
  2840. msgid "Unable to determine a suitable packaging system type"
  2841. msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit"
  2842. #: apt-pkg/install-progress.cc
  2843. #, c-format
  2844. msgid "Progress: [%3i%%]"
  2845. msgstr ""
  2846. #: apt-pkg/install-progress.cc
  2847. msgid "Running dpkg"
  2848. msgstr ""
  2849. #: apt-pkg/packagemanager.cc
  2850. #, c-format
  2851. msgid ""
  2852. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2853. "under APT::Immediate-Configure for details. (%d)"
  2854. msgstr ""
  2855. #: apt-pkg/packagemanager.cc
  2856. #, fuzzy, c-format
  2857. msgid "Could not configure '%s'. "
  2858. msgstr "Nu s-a putut deschide fișierul %s"
  2859. #: apt-pkg/packagemanager.cc
  2860. #, c-format
  2861. msgid ""
  2862. "This installation run will require temporarily removing the essential "
  2863. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2864. "you really want to do it, activate the APT::Force-LoopBreak option."
  2865. msgstr ""
  2866. "Aceasta instalare va avea nevoie de ștergerea temporară a pachetului "
  2867. "esențial %s din cauza unui bucle conflict/pre-dependență. Asta de multe ori "
  2868. "nu-i de bine, dar dacă vreți întradevăr s-o faceți, activați opțiunea APT::"
  2869. "Force-LoopBreak."
  2870. #: apt-pkg/pkgcache.cc
  2871. msgid "Empty package cache"
  2872. msgstr "Cache gol de pachet"
  2873. #: apt-pkg/pkgcache.cc
  2874. msgid "The package cache file is corrupted"
  2875. msgstr "Cache-ul fișierului pachet este deteriorat"
  2876. #: apt-pkg/pkgcache.cc
  2877. msgid "The package cache file is an incompatible version"
  2878. msgstr "Fișierul cache al pachetului este o versiune incompatibilă"
  2879. #: apt-pkg/pkgcache.cc
  2880. #, fuzzy
  2881. msgid "The package cache file is corrupted, it is too small"
  2882. msgstr "Cache-ul fișierului pachet este deteriorat"
  2883. #: apt-pkg/pkgcache.cc
  2884. #, c-format
  2885. msgid "This APT does not support the versioning system '%s'"
  2886. msgstr "Acest APT nu suportă versioning system '%s'"
  2887. #: apt-pkg/pkgcache.cc
  2888. #, fuzzy, c-format
  2889. msgid "The package cache was built for different architectures: %s vs %s"
  2890. msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită"
  2891. #: apt-pkg/pkgcache.cc
  2892. msgid "Depends"
  2893. msgstr "Depinde"
  2894. #: apt-pkg/pkgcache.cc
  2895. msgid "PreDepends"
  2896. msgstr "Pre-depinde"
  2897. #: apt-pkg/pkgcache.cc
  2898. msgid "Suggests"
  2899. msgstr "Sugerează"
  2900. #: apt-pkg/pkgcache.cc
  2901. msgid "Recommends"
  2902. msgstr "Recomandă"
  2903. #: apt-pkg/pkgcache.cc
  2904. msgid "Conflicts"
  2905. msgstr "Este în conflict"
  2906. #: apt-pkg/pkgcache.cc
  2907. msgid "Replaces"
  2908. msgstr "Înlocuiește"
  2909. #: apt-pkg/pkgcache.cc
  2910. msgid "Obsoletes"
  2911. msgstr "Învechit"
  2912. #: apt-pkg/pkgcache.cc
  2913. msgid "Breaks"
  2914. msgstr "Corupe"
  2915. #: apt-pkg/pkgcache.cc
  2916. msgid "Enhances"
  2917. msgstr ""
  2918. #: apt-pkg/pkgcache.cc
  2919. msgid "important"
  2920. msgstr "important"
  2921. #: apt-pkg/pkgcache.cc
  2922. msgid "required"
  2923. msgstr "cerut"
  2924. #: apt-pkg/pkgcache.cc
  2925. msgid "standard"
  2926. msgstr "standard"
  2927. #: apt-pkg/pkgcache.cc
  2928. msgid "optional"
  2929. msgstr "opțional"
  2930. #: apt-pkg/pkgcache.cc
  2931. msgid "extra"
  2932. msgstr "extra"
  2933. #: apt-pkg/pkgcachegen.cc
  2934. msgid "Cache has an incompatible versioning system"
  2935. msgstr "Cache are un versioning system incompatibil"
  2936. #. TRANSLATOR: The first placeholder is a package name,
  2937. #. the other two should be copied verbatim as they include debug info
  2938. #: apt-pkg/pkgcachegen.cc
  2939. #, fuzzy, c-format
  2940. msgid "Error occurred while processing %s (%s%d)"
  2941. msgstr "Eroare apărută în timpul procesării %s (FindPkg)"
  2942. #: apt-pkg/pkgcachegen.cc
  2943. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2944. msgstr ""
  2945. "Mamăăă, ați depășit numărul de nume de pachete de care este capabil acest "
  2946. "APT."
  2947. #: apt-pkg/pkgcachegen.cc
  2948. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2949. msgstr ""
  2950. "Mamăăă, ați depășit numărul de versiuni de care este capabil acest APT."
  2951. #: apt-pkg/pkgcachegen.cc
  2952. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2953. msgstr ""
  2954. "Mamăăă, ați depășit numărul de descrieri de care este capabil acest APT."
  2955. #: apt-pkg/pkgcachegen.cc
  2956. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2957. msgstr ""
  2958. "Mamăăă, ați depășit numărul de dependențe de care este capabil acest APT."
  2959. #: apt-pkg/pkgcachegen.cc
  2960. msgid "Reading package lists"
  2961. msgstr "Citire liste de pachete"
  2962. #: apt-pkg/pkgcachegen.cc
  2963. msgid "IO Error saving source cache"
  2964. msgstr "Eroare IO în timpul salvării sursei cache"
  2965. #: apt-pkg/pkgrecords.cc
  2966. #, c-format
  2967. msgid "Index file type '%s' is not supported"
  2968. msgstr "Tipul de fișier index '%s' nu este suportat"
  2969. #: apt-pkg/policy.cc
  2970. #, c-format
  2971. msgid ""
  2972. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2973. "available in the sources"
  2974. msgstr ""
  2975. #: apt-pkg/policy.cc
  2976. #, fuzzy, c-format
  2977. msgid "Invalid record in the preferences file %s, no Package header"
  2978. msgstr "Înregistrare invalidă în fișierul de preferințe, fără antet de pachet"
  2979. #: apt-pkg/policy.cc
  2980. #, c-format
  2981. msgid "Did not understand pin type %s"
  2982. msgstr "Nu s-a înțeles tipul de pin %s"
  2983. #: apt-pkg/policy.cc
  2984. #, c-format
  2985. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  2986. msgstr ""
  2987. #: apt-pkg/policy.cc
  2988. msgid "No priority (or zero) specified for pin"
  2989. msgstr "Fără prioritate (sau zero) specificată pentru pin"
  2990. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  2991. #: apt-pkg/sourcelist.cc
  2992. #, fuzzy, c-format
  2993. msgid "Malformed entry %u in %s file %s (%s)"
  2994. msgstr "Înlocuire greșită %s linia %lu #1"
  2995. #: apt-pkg/sourcelist.cc
  2996. #, c-format
  2997. msgid "Opening %s"
  2998. msgstr "Deschidere %s"
  2999. #: apt-pkg/sourcelist.cc
  3000. #, c-format
  3001. msgid "Malformed line %u in source list %s (type)"
  3002. msgstr "Linie greșită %u în lista sursă %s (tip)"
  3003. #: apt-pkg/sourcelist.cc
  3004. #, c-format
  3005. msgid "Type '%s' is not known on line %u in source list %s"
  3006. msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s"
  3007. #: apt-pkg/sourcelist.cc
  3008. #, fuzzy, c-format
  3009. msgid "Malformed stanza %u in source list %s (type)"
  3010. msgstr "Linie greșită %u în lista sursă %s (tip)"
  3011. #: apt-pkg/sourcelist.cc
  3012. #, fuzzy, c-format
  3013. msgid "Type '%s' is not known on stanza %u in source list %s"
  3014. msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s"
  3015. #: apt-pkg/sourcelist.cc
  3016. #, c-format
  3017. msgid "Unsupported file %s given on commandline"
  3018. msgstr ""
  3019. #: apt-pkg/srcrecords.cc
  3020. msgid "You must put some 'source' URIs in your sources.list"
  3021. msgstr "Trebuie să puneți niște 'surse' de URI în sources.list"
  3022. #: apt-pkg/tagfile.cc
  3023. #, c-format
  3024. msgid "Cannot convert %s to integer"
  3025. msgstr ""
  3026. #: apt-pkg/update.cc
  3027. #, fuzzy, c-format
  3028. msgid "Failed to fetch %s %s"
  3029. msgstr "Eșec la aducerea lui %s %s\n"
  3030. #: apt-pkg/update.cc
  3031. #, fuzzy
  3032. msgid ""
  3033. "Some index files failed to download. They have been ignored, or old ones "
  3034. "used instead."
  3035. msgstr ""
  3036. "Descărcarea unor fișiere index a eșuat, acestea fie au fost ignorate, fie au "
  3037. "fost folosite în loc unele vechi."
  3038. #: apt-pkg/upgrade.cc
  3039. msgid "Calculating upgrade"
  3040. msgstr "Calculez înnoirea"
  3041. #~ msgid ""
  3042. #~ "Usage: apt-cache [options] command\n"
  3043. #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
  3044. #~ "\n"
  3045. #~ "apt-cache is a low-level tool used to query information\n"
  3046. #~ "from APT's binary cache files\n"
  3047. #~ msgstr ""
  3048. #~ "Utilizare: apt-cache [opțiuni] comanda\n"
  3049. #~ " apt-cache [opțiuni] show pachet1 [pachet2 ...]\n"
  3050. #~ "\n"
  3051. #~ "apt-cache este o unealtă de nivel scăzut pentru manipularea fișierelor\n"
  3052. #~ "binare din cache-ul APT, și de interogare a informațiilor din ele\n"
  3053. #~ msgid ""
  3054. #~ "Options:\n"
  3055. #~ " -h This help text.\n"
  3056. #~ " -p=? The package cache.\n"
  3057. #~ " -s=? The source cache.\n"
  3058. #~ " -q Disable progress indicator.\n"
  3059. #~ " -i Show only important deps for the unmet command.\n"
  3060. #~ " -c=? Read this configuration file\n"
  3061. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3062. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3063. #~ msgstr ""
  3064. #~ "Opțiuni:\n"
  3065. #~ " -h Acest text de ajutor.\n"
  3066. #~ " -p=? Cache-ul de pachete.\n"
  3067. #~ " -s=? Cache-ul de surse.\n"
  3068. #~ " -q Dezactivează indicatorul de progres.\n"
  3069. #~ " -i Arată doar dependențele importante pentru comanda „unmet”.\n"
  3070. #~ " -c=? Citește acest fișier de configurare\n"
  3071. #~ " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/"
  3072. #~ "tmp\n"
  3073. #~ "Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe "
  3074. #~ "informații.\n"
  3075. #~ msgid ""
  3076. #~ "Usage: apt-config [options] command\n"
  3077. #~ "\n"
  3078. #~ "apt-config is a simple tool to read the APT config file\n"
  3079. #~ msgstr ""
  3080. #~ "Utilizare: apt-config [opțiuni] comanda\n"
  3081. #~ "\n"
  3082. #~ "apt-config este o unealtă simplă pentru citirea fișierului de configurare "
  3083. #~ "APT\n"
  3084. #~ msgid ""
  3085. #~ "Options:\n"
  3086. #~ " -h This help text.\n"
  3087. #~ " -c=? Read this configuration file\n"
  3088. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3089. #~ msgstr ""
  3090. #~ "Opțiuni:\n"
  3091. #~ " -h Acest text de ajutor.\n"
  3092. #~ " -c=? Citește acest fișier de configurare\n"
  3093. #~ " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/"
  3094. #~ "tmp\n"
  3095. #~ msgid ""
  3096. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3097. #~ "\n"
  3098. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3099. #~ "used\n"
  3100. #~ "to indicate what kind of file it is.\n"
  3101. #~ "\n"
  3102. #~ "Options:\n"
  3103. #~ " -h This help text\n"
  3104. #~ " -s Use source file sorting\n"
  3105. #~ " -c=? Read this configuration file\n"
  3106. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3107. #~ msgstr ""
  3108. #~ "Utilizare: apt-sortpkgs [opțiuni] fișier1 [fișier2 ...]\n"
  3109. #~ "\n"
  3110. #~ "apt-sortpkgs este o unealtă simplă pentru sortarea fișierelor pachete. \n"
  3111. #~ "Opțiunea -s este folosită pentru a indica ce fel de fișier este.\n"
  3112. #~ "\n"
  3113. #~ "Opțiuni:\n"
  3114. #~ " -h Acest text de ajutor\n"
  3115. #~ " -s Folosește sortarea de fișiere-sursă\n"
  3116. #~ " -c=? Citește acest fișier de configurare\n"
  3117. #~ " -o=? Ajustează o opțiune de configurare arbitrară, ex.: -o dir::cache=/"
  3118. #~ "tmp\n"
  3119. #~ msgid "Child process failed"
  3120. #~ msgstr "Procesul copil a eșuat"
  3121. #, fuzzy
  3122. #~ msgid "Must specifc at least one srv record"
  3123. #~ msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa"
  3124. #~ msgid "Failed to create pipes"
  3125. #~ msgstr "Eșec la crearea conexiunilor"
  3126. #~ msgid "Failed to exec gzip "
  3127. #~ msgstr "Eșec la executarea lui gzip "
  3128. #~ msgid "%s %s for %s compiled on %s %s\n"
  3129. #~ msgstr "%s %s pentru %s compilat la %s %s\n"
  3130. #~ msgid "Failed to create FILE*"
  3131. #~ msgstr "Eșec la crearea FIȘIERULUI*"
  3132. #, fuzzy
  3133. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3134. #~ msgstr "Linie greșită %lu în lista sursă %s (analiza URI)"
  3135. #, fuzzy
  3136. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3137. #~ msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)"
  3138. #, fuzzy
  3139. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3140. #~ msgstr "Linie greșită %lu în lista sursă %s (dist)"
  3141. #, fuzzy
  3142. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3143. #~ msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)"
  3144. #, fuzzy
  3145. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3146. #~ msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)"
  3147. #, fuzzy
  3148. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3149. #~ msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)"
  3150. #~ msgid "Malformed line %lu in source list %s (URI)"
  3151. #~ msgstr "Linie greșită %lu în lista sursă %s (URI)"
  3152. #~ msgid "Malformed line %lu in source list %s (dist)"
  3153. #~ msgstr "Linie greșită %lu în lista sursă %s (dist)"
  3154. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3155. #~ msgstr "Linie greșită %lu în lista sursă %s (analiza URI)"
  3156. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3157. #~ msgstr "Linie greșită %lu în lista sursă %s (dist. absolută)"
  3158. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3159. #~ msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)"
  3160. #~ msgid "Package %s %s was not found while processing file dependencies"
  3161. #~ msgstr ""
  3162. #~ "Nu s-a găsit pachetul %s %s în timpul procesării dependențelor de fișiere"
  3163. #~ msgid "Couldn't stat source package list %s"
  3164. #~ msgstr "Nu pot determina starea listei surse de pachete %s"
  3165. #~ msgid "Collecting File Provides"
  3166. #~ msgstr "Colectare furnizori fișier"
  3167. #, fuzzy
  3168. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3169. #~ msgstr "Nu s-a putut analiza fișierul pachet %s (1)"
  3170. #~ msgid "Vendor block %s contains no fingerprint"
  3171. #~ msgstr "Blocul vânzător %s nu conține amprentă"
  3172. #~ msgid "Total dependency version space: "
  3173. #~ msgstr "Total spațiu versiuni ale dependențelor: "
  3174. #~ msgid "You don't have enough free space in %s"
  3175. #~ msgstr "Nu aveți suficient spațiu în %s"
  3176. #~ msgid "Done"
  3177. #~ msgstr "Terminat"
  3178. #, fuzzy
  3179. #~ msgid "No keyring installed in %s."
  3180. #~ msgstr "Abandonez instalarea."
  3181. #, fuzzy
  3182. #~ msgid "Internal error, Upgrade broke stuff"
  3183. #~ msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni"
  3184. #~ msgid "%s not a valid DEB package."
  3185. #~ msgstr "%s nu este un pachet DEB valid."
  3186. #~ msgid ""
  3187. #~ "Using CD-ROM mount point %s\n"
  3188. #~ "Mounting CD-ROM\n"
  3189. #~ msgstr ""
  3190. #~ "Utilizare puct de montare CD-ROM %s\n"
  3191. #~ "Montare CD-ROM\n"
  3192. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3193. #~ msgstr ""
  3194. #~ "Aceasta nu este o arhivă DEB validă, nu are unul din următorii membri "
  3195. #~ "„%s”, „%s” sau „%s”"
  3196. #~ msgid "MD5Sum mismatch"
  3197. #~ msgstr "Nepotrivire MD5Sum"
  3198. #~ msgid ""
  3199. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3200. #~ "need to manually fix this package."
  3201. #~ msgstr ""
  3202. #~ "N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea "
  3203. #~ "însemna că aveți nevoie să depanați manual acest pachet."
  3204. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3205. #~ msgstr ""
  3206. #~ "Nu se poate scrie jurnalul, openpty() a eșuat (oare /dev/pts e montat?)\n"
  3207. #, fuzzy
  3208. #~ msgid "Skipping nonexistent file %s"
  3209. #~ msgstr "Se deschide fișierul de configurare %s"
  3210. #~ msgid "Failed to remove %s"
  3211. #~ msgstr "Eșec la ștergerea lui %s"
  3212. #~ msgid "Unable to create %s"
  3213. #~ msgstr "Nu s-a putut crea %s"
  3214. #~ msgid "Failed to stat %sinfo"
  3215. #~ msgstr "Eșec la „stat” pentru %sinfo"
  3216. #~ msgid "The info and temp directories need to be on the same filesystem"
  3217. #~ msgstr ""
  3218. #~ "Directoarele info și temp trebuie să fie în același sistem de fișiere"
  3219. #~ msgid "Failed to change to the admin dir %sinfo"
  3220. #~ msgstr ""
  3221. #~ "Eșec la schimbarea directorului către directorul de administrare %sinfo"
  3222. #~ msgid "Internal error getting a package name"
  3223. #~ msgstr "Eroare internă la preluarea numelui de pachet"
  3224. #~ msgid "Reading file listing"
  3225. #~ msgstr "Se citește lista de fișiere"
  3226. #~ msgid ""
  3227. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3228. #~ "then make it empty and immediately re-install the same version of the "
  3229. #~ "package!"
  3230. #~ msgstr ""
  3231. #~ "Eșec la deschiderea fișierului-listă '%sinfo/%s'. Dacă nu puteți restaura "
  3232. #~ "acest fișier atunci goliți-l și, apoi, imediat reinstalați aceeași "
  3233. #~ "versiune a pachetului!"
  3234. #~ msgid "Failed reading the list file %sinfo/%s"
  3235. #~ msgstr "Citirea fișierului-listă %sinfo/%s a eșuat"
  3236. #~ msgid "Internal error getting a node"
  3237. #~ msgstr "Eroare internă la preluarea unui nod"
  3238. #~ msgid "Failed to open the diversions file %sdiversions"
  3239. #~ msgstr "Eșec la deschiderea fișierului de redirectări %sdiversions"
  3240. #~ msgid "The diversion file is corrupted"
  3241. #~ msgstr "Fișierul-redirectare este deteriorat"
  3242. #~ msgid "Invalid line in the diversion file: %s"
  3243. #~ msgstr "Linie necorespunzătoare în fișierul-redirectare: %s"
  3244. #~ msgid "Internal error adding a diversion"
  3245. #~ msgstr "Eroare internă în timpul adăugării unei redirectări"
  3246. #~ msgid "The pkg cache must be initialized first"
  3247. #~ msgstr "Cache-ul de pachete trebuie mai întâi inițializat"
  3248. #~ msgid "Failed to find a Package: header, offset %lu"
  3249. #~ msgstr "Eșec la găsirea unui antet „Package:”, deplasamentul este %lu"
  3250. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3251. #~ msgstr ""
  3252. #~ "Secțiune necorespunzătoare ConfFile în fișierul de stare. Deplasamentul "
  3253. #~ "este %lu"
  3254. #~ msgid "Error parsing MD5. Offset %lu"
  3255. #~ msgstr "Eroare la analiza MD5. Deplasamentul este %lu"
  3256. #~ msgid "Couldn't change to %s"
  3257. #~ msgstr "Nu s-a putut schimba directorul la %s"
  3258. #~ msgid "Failed to locate a valid control file"
  3259. #~ msgstr "Eșec la localizare a unui fișier de control valid"
  3260. #~ msgid "Couldn't open pipe for %s"
  3261. #~ msgstr "Nu s-a putut deschide conexiunea pentru %s"
  3262. #~ msgid "Read error from %s process"
  3263. #~ msgstr "Eroare de citire din procesul %s"
  3264. #~ msgid "Got a single header line over %u chars"
  3265. #~ msgstr "S-a primit o singură linie de antet de peste %u caractere"
  3266. #~ msgid "Malformed override %s line %lu #1"
  3267. #~ msgstr "Înlocuire greșită %s linia %lu #1"
  3268. #~ msgid "Malformed override %s line %lu #2"
  3269. #~ msgstr "Înlocuire greșită %s linia %lu #2"
  3270. #~ msgid "Malformed override %s line %lu #3"
  3271. #~ msgstr "Înlocuire greșită %s linia %lu #3"
  3272. #~ msgid "decompressor"
  3273. #~ msgstr "decompresor"
  3274. #~ msgid "read, still have %lu to read but none left"
  3275. #~ msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic"
  3276. #~ msgid "write, still have %lu to write but couldn't"
  3277. #~ msgstr "scriere, încă mai am %lu de scris dar nu pot"
  3278. #~ msgid "Error occurred while processing %s (NewPackage)"
  3279. #~ msgstr "Eroare apărută în timpul procesării %s (NewPackage)"
  3280. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3281. #~ msgstr "Eroare apărută în timpul procesării %s (UsePackage1)"
  3282. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3283. #~ msgstr "A apărut o eroare în timpul procesării lui %s (NewFileDesc1)"
  3284. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3285. #~ msgstr "Eroare apărută în timpul procesării %s (UsePackage2)"
  3286. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3287. #~ msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  3288. #, fuzzy
  3289. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3290. #~ msgstr "Eroare apărută în timpul procesării %s (NewVersion1)"
  3291. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3292. #~ msgstr "Eroare apărută în timpul procesării %s (UsePackage3)"
  3293. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3294. #~ msgstr "A apărut o eroare în timpul procesării lui %s (NewFileDesc2)"
  3295. #~ msgid "Error occurred while processing %s (FindPkg)"
  3296. #~ msgstr "Eroare apărută în timpul procesării %s (FindPkg)"
  3297. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3298. #~ msgstr "Eroare apărută în timpul procesării %s (CollectFileProvides)"
  3299. #~ msgid "Internal error, could not locate member"
  3300. #~ msgstr "Eroare internă, nu a putut fi localizat membrul"
  3301. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3302. #~ msgstr ""
  3303. #~ "E: Lista de argumente din Acquire::gpgv::Options este prea lungă. Se iese."
  3304. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3305. #~ msgstr "Eroare apărută în timpul procesării %s (NewVersion2)"
  3306. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3307. #~ msgstr "Linie greșită %u în lista sursă %s (identificator vânzător)"
  3308. #~ msgid "Couldn't access keyring: '%s'"
  3309. #~ msgstr "Nu s-a putut accesa inelul de chei: '%s'"
  3310. #~ msgid "Could not patch file"
  3311. #~ msgstr "Nu s-a putut peteci fișierul"
  3312. #~ msgid " %4i %s\n"
  3313. #~ msgstr " %4i %s\n"
  3314. #~ msgid "%4i %s\n"
  3315. #~ msgstr "%4i %s\n"
  3316. #~ msgid "Processing triggers for %s"
  3317. #~ msgstr "Se procesează declanșatorii pentru %s"
  3318. #~ msgid "Dynamic MMap ran out of room"
  3319. #~ msgstr "MMap-ul dinamic a rămas fără spațiu"
  3320. #~ msgid ""
  3321. #~ "Since you only requested a single operation it is extremely likely that\n"
  3322. #~ "the package is simply not installable and a bug report against\n"
  3323. #~ "that package should be filed."
  3324. #~ msgstr ""
  3325. #~ "Din moment ce doar ați cerut o singură operațiune este extrem de "
  3326. #~ "probabil\n"
  3327. #~ " că pachetul pur și simplu nu este instalabil și un raport de eroare "
  3328. #~ "pentru\n"
  3329. #~ "acest pachet ar trebui completat."
  3330. #~ msgid "Line %d too long (max %lu)"
  3331. #~ msgstr "Linia %d e prea lungă (max %lu)"
  3332. #, fuzzy
  3333. #~ msgid "Line %d too long (max %d)"
  3334. #~ msgstr "Linie %d prea lungă (max %d)"
  3335. #, fuzzy
  3336. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  3337. #~ msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  3338. #, fuzzy
  3339. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  3340. #~ msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  3341. #, fuzzy
  3342. #~ msgid "Stored label: %s \n"
  3343. #~ msgstr "Etichetă memorată: %s \n"
  3344. #, fuzzy
  3345. #~ msgid ""
  3346. #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
  3347. #~ "%i signatures\n"
  3348. #~ msgstr ""
  3349. #~ "Găsite %i indexuri de pachete, %i indexuri de surse și %i semnături\n"
  3350. #, fuzzy
  3351. #~ msgid "openpty failed\n"
  3352. #~ msgstr "Eșuarea selecției"