ro.po 114 KB

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