ro.po 114 KB

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