ro.po 116 KB

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