ro.po 103 KB

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