ro.po 87 KB

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