ro.po 114 KB

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