ro.po 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934
  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: 2007-12-17 05:49+0100\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:2601 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:1681
  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:2020 cmdline/apt-get.cc:2053
  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:2101 cmdline/apt-get.cc:2347
  696. #: apt-pkg/cachefile.cc:63
  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:2196
  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:1391 cmdline/apt-get.cc:2244
  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:2253
  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:1418 cmdline/apt-get.cc:1420
  842. msgid ""
  843. "Some index files failed to download, they have been ignored, or old ones "
  844. "used instead."
  845. msgstr ""
  846. "Unele fişiere index au eşuat la descărcare, fie au fost ignorate, fie au "
  847. "fost folosite în loc unele vechi."
  848. #: cmdline/apt-get.cc:1441
  849. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  850. msgstr ""
  851. #: cmdline/apt-get.cc:1473
  852. #, fuzzy
  853. msgid ""
  854. "The following packages were automatically installed and are no longer "
  855. "required:"
  856. msgstr "Următoarele pachete NOI vor fi instalate:"
  857. #: cmdline/apt-get.cc:1475
  858. msgid "Use 'apt-get autoremove' to remove them."
  859. msgstr ""
  860. #: cmdline/apt-get.cc:1480
  861. msgid ""
  862. "Hmm, seems like the AutoRemover destroyed something which really\n"
  863. "shouldn't happen. Please file a bug report against apt."
  864. msgstr ""
  865. #: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
  866. msgid "The following information may help to resolve the situation:"
  867. msgstr "Următoarele informaţii ar putea să vă ajute la rezolvarea situaţiei:"
  868. #: cmdline/apt-get.cc:1487
  869. #, fuzzy
  870. msgid "Internal Error, AutoRemover broke stuff"
  871. msgstr ""
  872. "Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
  873. #: cmdline/apt-get.cc:1506
  874. msgid "Internal error, AllUpgrade broke stuff"
  875. msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni"
  876. #: cmdline/apt-get.cc:1553
  877. #, fuzzy, c-format
  878. msgid "Couldn't find task %s"
  879. msgstr "Nu pot găsi pachetul %s"
  880. #: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
  881. #, c-format
  882. msgid "Couldn't find package %s"
  883. msgstr "Nu pot găsi pachetul %s"
  884. #: cmdline/apt-get.cc:1691
  885. #, c-format
  886. msgid "Note, selecting %s for regex '%s'\n"
  887. msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
  888. #: cmdline/apt-get.cc:1722
  889. #, fuzzy, c-format
  890. msgid "%s set to manually installed.\n"
  891. msgstr "dar %s este pe cale de a fi instalat"
  892. #: cmdline/apt-get.cc:1735
  893. msgid "You might want to run `apt-get -f install' to correct these:"
  894. msgstr "Aţi putea porni 'apt-get -f install' pentru a corecta acestea:"
  895. #: cmdline/apt-get.cc:1738
  896. msgid ""
  897. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  898. "solution)."
  899. msgstr ""
  900. "Dependenţe neîndeplinite. Încercaţi 'apt-get -f install' fără nici un pachet "
  901. "(sau oferiţi o altă soluţie)."
  902. #: cmdline/apt-get.cc:1750
  903. msgid ""
  904. "Some packages could not be installed. This may mean that you have\n"
  905. "requested an impossible situation or if you are using the unstable\n"
  906. "distribution that some required packages have not yet been created\n"
  907. "or been moved out of Incoming."
  908. msgstr ""
  909. "Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că aţi "
  910. "cerut\n"
  911. "o situaţie imposibilă sau că folosiţi distribuţia instabilă în care unele "
  912. "pachete\n"
  913. "cerute n-au fost create încă sau au fost mutate din Incoming."
  914. #: cmdline/apt-get.cc:1758
  915. msgid ""
  916. "Since you only requested a single operation it is extremely likely that\n"
  917. "the package is simply not installable and a bug report against\n"
  918. "that package should be filed."
  919. msgstr ""
  920. "Din moment ce doar aţi cerut o singură operaţiune este extrem de probabil\n"
  921. " că pachetul pur şi simplu nu este instalabil şi un raport de eroare pentru\n"
  922. "acest pachet ar trebui completat."
  923. #: cmdline/apt-get.cc:1766
  924. msgid "Broken packages"
  925. msgstr "Pachete deteriorate"
  926. #: cmdline/apt-get.cc:1795
  927. msgid "The following extra packages will be installed:"
  928. msgstr "Următoarele extra pachete vor fi instalate:"
  929. #: cmdline/apt-get.cc:1884
  930. msgid "Suggested packages:"
  931. msgstr "Pachete sugerate:"
  932. #: cmdline/apt-get.cc:1885
  933. msgid "Recommended packages:"
  934. msgstr "Pachete recomandate:"
  935. #: cmdline/apt-get.cc:1913
  936. msgid "Calculating upgrade... "
  937. msgstr "Calculez înnoirea... "
  938. #: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
  939. msgid "Failed"
  940. msgstr "Eşuare"
  941. #: cmdline/apt-get.cc:1921
  942. msgid "Done"
  943. msgstr "Terminat"
  944. #: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
  945. msgid "Internal error, problem resolver broke stuff"
  946. msgstr ""
  947. "Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
  948. #: cmdline/apt-get.cc:2096
  949. msgid "Must specify at least one package to fetch source for"
  950. msgstr "Trebuie specificat cel puţin un pachet pentru a-i aduce sursa"
  951. #: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
  952. #, c-format
  953. msgid "Unable to find a source package for %s"
  954. msgstr "Nu pot găsi o sursă pachet pentru %s"
  955. #: cmdline/apt-get.cc:2175
  956. #, c-format
  957. msgid "Skipping already downloaded file '%s'\n"
  958. msgstr "Sar peste fişierul deja descărcat '%s'\n"
  959. #: cmdline/apt-get.cc:2203
  960. #, c-format
  961. msgid "You don't have enough free space in %s"
  962. msgstr "Nu aveţi suficient spaţiu în %s"
  963. #: cmdline/apt-get.cc:2209
  964. #, c-format
  965. msgid "Need to get %sB/%sB of source archives.\n"
  966. msgstr "Este nevoie să descărcaţi %sB/%sB din arhivele surselor.\n"
  967. #: cmdline/apt-get.cc:2212
  968. #, c-format
  969. msgid "Need to get %sB of source archives.\n"
  970. msgstr "Este nevoie să descărcaţi %sB din arhivele surselor.\n"
  971. #: cmdline/apt-get.cc:2218
  972. #, c-format
  973. msgid "Fetch source %s\n"
  974. msgstr "Aducere sursa %s\n"
  975. #: cmdline/apt-get.cc:2249
  976. msgid "Failed to fetch some archives."
  977. msgstr "Eşuare în a aduce unele arhive."
  978. #: cmdline/apt-get.cc:2277
  979. #, c-format
  980. msgid "Skipping unpack of already unpacked source in %s\n"
  981. msgstr "Sar peste despachetarea sursei deja despachetate în %s\n"
  982. #: cmdline/apt-get.cc:2289
  983. #, c-format
  984. msgid "Unpack command '%s' failed.\n"
  985. msgstr "Comanda de despachetare '%s' eşuată.\n"
  986. #: cmdline/apt-get.cc:2290
  987. #, c-format
  988. msgid "Check if the 'dpkg-dev' package is installed.\n"
  989. msgstr "Verificaţi dacă pachetul 'dpkg-dev' este instalat.\n"
  990. #: cmdline/apt-get.cc:2307
  991. #, c-format
  992. msgid "Build command '%s' failed.\n"
  993. msgstr "Comanda de construire '%s' eşuată.\n"
  994. #: cmdline/apt-get.cc:2326
  995. msgid "Child process failed"
  996. msgstr "Eşuare proces copil"
  997. #: cmdline/apt-get.cc:2342
  998. msgid "Must specify at least one package to check builddeps for"
  999. msgstr ""
  1000. "Trebuie specificat cel puţin un pachet pentru a-i verifica dependenţele "
  1001. "înglobate"
  1002. #: cmdline/apt-get.cc:2370
  1003. #, c-format
  1004. msgid "Unable to get build-dependency information for %s"
  1005. msgstr "Nu pot prelua informaţiile despre dependenţele înglobate ale lui %s"
  1006. #: cmdline/apt-get.cc:2390
  1007. #, c-format
  1008. msgid "%s has no build depends.\n"
  1009. msgstr "%s nu are dependenţe înglobate.\n"
  1010. #: cmdline/apt-get.cc:2442
  1011. #, c-format
  1012. msgid ""
  1013. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1014. "found"
  1015. msgstr ""
  1016. "Dependenţa lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
  1017. "poate fi găsit"
  1018. #: cmdline/apt-get.cc:2495
  1019. #, c-format
  1020. msgid ""
  1021. "%s dependency for %s cannot be satisfied because no available versions of "
  1022. "package %s can satisfy version requirements"
  1023. msgstr ""
  1024. "Dependenţa lui %s de %s nu poate fi satisfăcută deoarece nici o versiune "
  1025. "disponibilă a pachetului %s nu poate satisface versiunile cerute"
  1026. #: cmdline/apt-get.cc:2531
  1027. #, c-format
  1028. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1029. msgstr ""
  1030. "Eşuare în a satisface dependenţa lui %s de %s: Pachetul instalat %s este "
  1031. "prea nou"
  1032. #: cmdline/apt-get.cc:2556
  1033. #, c-format
  1034. msgid "Failed to satisfy %s dependency for %s: %s"
  1035. msgstr "Eşuare în a satisface dependenţa lui %s de %s: %s"
  1036. #: cmdline/apt-get.cc:2570
  1037. #, c-format
  1038. msgid "Build-dependencies for %s could not be satisfied."
  1039. msgstr "Dependenţele înglobate pentru %s nu pot fi satisfăcute."
  1040. #: cmdline/apt-get.cc:2574
  1041. msgid "Failed to process build dependencies"
  1042. msgstr "Eşuare în a prelucra dependenţele înglobate"
  1043. #: cmdline/apt-get.cc:2606
  1044. msgid "Supported modules:"
  1045. msgstr "Module suportate:"
  1046. #: cmdline/apt-get.cc:2647
  1047. #, fuzzy
  1048. msgid ""
  1049. "Usage: apt-get [options] command\n"
  1050. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1051. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1052. "\n"
  1053. "apt-get is a simple command line interface for downloading and\n"
  1054. "installing packages. The most frequently used commands are update\n"
  1055. "and install.\n"
  1056. "\n"
  1057. "Commands:\n"
  1058. " update - Retrieve new lists of packages\n"
  1059. " upgrade - Perform an upgrade\n"
  1060. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1061. " remove - Remove packages\n"
  1062. " autoremove - Remove all automatic unused packages\n"
  1063. " purge - Remove and purge packages\n"
  1064. " source - Download source archives\n"
  1065. " build-dep - Configure build-dependencies for source packages\n"
  1066. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1067. " dselect-upgrade - Follow dselect selections\n"
  1068. " clean - Erase downloaded archive files\n"
  1069. " autoclean - Erase old downloaded archive files\n"
  1070. " check - Verify that there are no broken dependencies\n"
  1071. "\n"
  1072. "Options:\n"
  1073. " -h This help text.\n"
  1074. " -q Loggable output - no progress indicator\n"
  1075. " -qq No output except for errors\n"
  1076. " -d Download only - do NOT install or unpack archives\n"
  1077. " -s No-act. Perform ordering simulation\n"
  1078. " -y Assume Yes to all queries and do not prompt\n"
  1079. " -f Attempt to continue if the integrity check fails\n"
  1080. " -m Attempt to continue if archives are unlocatable\n"
  1081. " -u Show a list of upgraded packages as well\n"
  1082. " -b Build the source package after fetching it\n"
  1083. " -V Show verbose version numbers\n"
  1084. " -c=? Read this configuration file\n"
  1085. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1086. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1087. "pages for more information and options.\n"
  1088. " This APT has Super Cow Powers.\n"
  1089. msgstr ""
  1090. "Utilizare: apt-get [opţiuni] comanda\n"
  1091. " apt-get [opţiuni] install|remove pachet1 [pachet2 ...]\n"
  1092. " apt-get [opţiuni] source pachet1 [pachet2 ...]\n"
  1093. "\n"
  1094. "apt-get este o simplă interfaţă în linie de comandă pentru descărcarea şi\n"
  1095. "instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n"
  1096. "şi install.\n"
  1097. "\n"
  1098. "Comenzi:\n"
  1099. " update - Aduce noile liste de pachete\n"
  1100. " upgrade - Realizează o înnoire\n"
  1101. " install - Instalează pachete noi (pachet este libc6, nu libc6.deb)\n"
  1102. " remove - Şterge pachete\n"
  1103. " source - Descarcă arhivele sursă\n"
  1104. " build-dep - Configurează dependenţele înglobate pentru sursele "
  1105. "pachetelor\n"
  1106. " dist-upgrade - Înnoirea distribuţiei, vedeţi apt-get(8)\n"
  1107. " dselect-upgrade - Urmează selecţiile dselect\n"
  1108. " clean - Şterge fişierele arhivă descărcate\n"
  1109. " autoclean - Şterge vechile fişiere arhivă descărcate\n"
  1110. " check - Verifică dacă există dependenţe neîndeplinite\n"
  1111. "\n"
  1112. "Opţiuni:\n"
  1113. " -h Acest text de ajutor.\n"
  1114. " -q Afişare jurnalizabilă - fără indicator de progres\n"
  1115. " -qq Fără afişare, cu excepţia erorilor\n"
  1116. " -d Doar descărcare - NU instala sau despacheta arhive\n"
  1117. " -s Fără acţiune. Realizează o simulare\n"
  1118. " -y Presupune DA la toate întrebările şi nu solicita răspuns\n"
  1119. " -f Încercare de continuare dacă verificarea integrităţii eşuează\n"
  1120. " -m Încercare de continuare dacă arhivele sunt de negăsit\n"
  1121. " -u Arată o listă de pachete ce pot fi înnoite\n"
  1122. " -b Construieşte sursa pachetului după aducere\n"
  1123. " -V Arată numerele versiunilor în mod logoreic\n"
  1124. " -c=? Citeşte acest fişier de configurare\n"
  1125. " -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
  1126. "Vedeţi manualul apt-get(8), sources.list(5) şi apt.conf(5)\n"
  1127. "pentru mai multe informaţii şi opţiuni.\n"
  1128. " Acest APT are puterile unei Super Vaci.\n"
  1129. #: cmdline/acqprogress.cc:55
  1130. msgid "Hit "
  1131. msgstr "Atins "
  1132. #: cmdline/acqprogress.cc:79
  1133. msgid "Get:"
  1134. msgstr "Luat:"
  1135. #: cmdline/acqprogress.cc:110
  1136. msgid "Ign "
  1137. msgstr "Ignorat "
  1138. #: cmdline/acqprogress.cc:114
  1139. msgid "Err "
  1140. msgstr "Eroare"
  1141. #: cmdline/acqprogress.cc:135
  1142. #, c-format
  1143. msgid "Fetched %sB in %s (%sB/s)\n"
  1144. msgstr "Adus %sB în %s (%sB/s)\n"
  1145. #: cmdline/acqprogress.cc:225
  1146. #, c-format
  1147. msgid " [Working]"
  1148. msgstr " [În lucru]"
  1149. #: cmdline/acqprogress.cc:271
  1150. #, c-format
  1151. msgid ""
  1152. "Media change: please insert the disc labeled\n"
  1153. " '%s'\n"
  1154. "in the drive '%s' and press enter\n"
  1155. msgstr ""
  1156. "Schimbare de mediu: Vă rog introduceţi discul numit\n"
  1157. " '%s'\n"
  1158. "în unitatea '%s' şi apăsaţi Enter\n"
  1159. #: cmdline/apt-sortpkgs.cc:86
  1160. msgid "Unknown package record!"
  1161. msgstr "Înregistrare de pachet necunoscut!"
  1162. #: cmdline/apt-sortpkgs.cc:150
  1163. msgid ""
  1164. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1165. "\n"
  1166. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1167. "to indicate what kind of file it is.\n"
  1168. "\n"
  1169. "Options:\n"
  1170. " -h This help text\n"
  1171. " -s Use source file sorting\n"
  1172. " -c=? Read this configuration file\n"
  1173. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1174. msgstr ""
  1175. "Utilizare: apt-sortpkgs [opţiuni] fişier1 [fişier2 ...]\n"
  1176. "\n"
  1177. "apt-sortpkgs este o unealtă simplă pentru sortarea fişierelor pachete. "
  1178. "Opţiunea\n"
  1179. "-s este folosită pentru a indica ce fel de fişier este.\n"
  1180. "\n"
  1181. "Opţiuni:\n"
  1182. " -h Acest text de ajutor\n"
  1183. " -s Foloseşte sortarea de fişiere sursă\n"
  1184. " -c=? Citeşte acest fişier de configurare\n"
  1185. " -o=? Ajustează o opţiune de configurare arbitrară, ex.: -o dir::cache=/"
  1186. "tmp\n"
  1187. #: dselect/install:32
  1188. msgid "Bad default setting!"
  1189. msgstr "Ajustări implicite necorespunzătoare!"
  1190. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1191. #: dselect/install:104 dselect/update:45
  1192. msgid "Press enter to continue."
  1193. msgstr "Apăsaţi Enter pentru a continua."
  1194. #: dselect/install:100
  1195. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1196. msgstr "S-au produs unele erori în timpul despachetării. Voi configura"
  1197. #: dselect/install:101
  1198. msgid "packages that were installed. This may result in duplicate errors"
  1199. msgstr ""
  1200. "pachetele care au fost instalate. Aceasta ar putea rezulta erori dublate"
  1201. #: dselect/install:102
  1202. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1203. msgstr ""
  1204. "sau erori cauzate de dependenţe lipsă. Aceasta este normal, doar erorile"
  1205. #: dselect/install:103
  1206. msgid ""
  1207. "above this message are important. Please fix them and run [I]nstall again"
  1208. msgstr ""
  1209. "de deasupra acestui mesaj sunt importante. Vă rog corectaţi-le şi porniţi "
  1210. "din nou [I]nstalarea"
  1211. #: dselect/update:30
  1212. msgid "Merging available information"
  1213. msgstr "Unirea informaţiilor disponibile"
  1214. #: apt-inst/contrib/extracttar.cc:114
  1215. msgid "Failed to create pipes"
  1216. msgstr "Eşuare în crearea conexiunilor"
  1217. #: apt-inst/contrib/extracttar.cc:141
  1218. msgid "Failed to exec gzip "
  1219. msgstr "Eşuare în executarea gzip"
  1220. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1221. msgid "Corrupted archive"
  1222. msgstr "Arhivă deteriorată"
  1223. #: apt-inst/contrib/extracttar.cc:193
  1224. msgid "Tar checksum failed, archive corrupted"
  1225. msgstr "Eşuarea sumei de control în arhiva tar, arhivă deteriorată"
  1226. #: apt-inst/contrib/extracttar.cc:296
  1227. #, c-format
  1228. msgid "Unknown TAR header type %u, member %s"
  1229. msgstr "Tip antet TAR %u necunoscut, membru %s"
  1230. #: apt-inst/contrib/arfile.cc:70
  1231. msgid "Invalid archive signature"
  1232. msgstr "Semnătură de arhivă necorespunzătoare"
  1233. #: apt-inst/contrib/arfile.cc:78
  1234. msgid "Error reading archive member header"
  1235. msgstr "Eroare la citirea antetului membru al arhivei"
  1236. #: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
  1237. msgid "Invalid archive member header"
  1238. msgstr "Antet membru de arhivă necorespunzător"
  1239. #: apt-inst/contrib/arfile.cc:128
  1240. msgid "Archive is too short"
  1241. msgstr "Arhiva este prea scurtă"
  1242. #: apt-inst/contrib/arfile.cc:132
  1243. msgid "Failed to read the archive headers"
  1244. msgstr "Eşuare la citirea antetelor de arhivă"
  1245. #: apt-inst/filelist.cc:380
  1246. msgid "DropNode called on still linked node"
  1247. msgstr "Chemat DropNode pe un nod încă legat"
  1248. #: apt-inst/filelist.cc:412
  1249. msgid "Failed to locate the hash element!"
  1250. msgstr "Eşuare în localizarea elementului hash!"
  1251. #: apt-inst/filelist.cc:459
  1252. msgid "Failed to allocate diversion"
  1253. msgstr "Eşuare în alocarea diversiunii"
  1254. #: apt-inst/filelist.cc:464
  1255. msgid "Internal error in AddDiversion"
  1256. msgstr "Eroare internă în adăugare diversiune"
  1257. #: apt-inst/filelist.cc:477
  1258. #, c-format
  1259. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1260. msgstr "Încercare de suprascriere diversiune, %s -> %s şi %s/%s"
  1261. #: apt-inst/filelist.cc:506
  1262. #, c-format
  1263. msgid "Double add of diversion %s -> %s"
  1264. msgstr "Adăugare dublă de diversiune %s -> %s"
  1265. #: apt-inst/filelist.cc:549
  1266. #, c-format
  1267. msgid "Duplicate conf file %s/%s"
  1268. msgstr "Fişier de configurare duplicat %s/%s"
  1269. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1270. #, c-format
  1271. msgid "Failed to write file %s"
  1272. msgstr "Eşuare în scrierea fişierului %s"
  1273. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1274. #, c-format
  1275. msgid "Failed to close file %s"
  1276. msgstr "Eşuare în a închide fişierul %s"
  1277. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1278. #, c-format
  1279. msgid "The path %s is too long"
  1280. msgstr "Calea %s este prea lungă"
  1281. #: apt-inst/extract.cc:124
  1282. #, c-format
  1283. msgid "Unpacking %s more than once"
  1284. msgstr "Despachetarea %s de mai multe ori"
  1285. #: apt-inst/extract.cc:134
  1286. #, c-format
  1287. msgid "The directory %s is diverted"
  1288. msgstr "Directorul %s este distras"
  1289. #: apt-inst/extract.cc:144
  1290. #, c-format
  1291. msgid "The package is trying to write to the diversion target %s/%s"
  1292. msgstr "Pachetul încearcă să scrie în ţinta de diversiune %s/%s"
  1293. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1294. msgid "The diversion path is too long"
  1295. msgstr "Calea de diversiune este prea lungă"
  1296. #: apt-inst/extract.cc:240
  1297. #, c-format
  1298. msgid "The directory %s is being replaced by a non-directory"
  1299. msgstr "Directorul %s este înlocuit de un non-director"
  1300. #: apt-inst/extract.cc:280
  1301. msgid "Failed to locate node in its hash bucket"
  1302. msgstr "Eşuare în localizarea nodului din tranşa hash"
  1303. #: apt-inst/extract.cc:284
  1304. msgid "The path is too long"
  1305. msgstr "Calea este prea lungă"
  1306. #: apt-inst/extract.cc:414
  1307. #, c-format
  1308. msgid "Overwrite package match with no version for %s"
  1309. msgstr "Pachetul suprascris nu se potriveşte cu nici o versiune pentru %s"
  1310. #: apt-inst/extract.cc:431
  1311. #, c-format
  1312. msgid "File %s/%s overwrites the one in the package %s"
  1313. msgstr "Fişierul %s/%s suprascrie pe cel din pachetul %s"
  1314. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
  1315. #: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
  1316. #: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
  1317. #, c-format
  1318. msgid "Unable to read %s"
  1319. msgstr "Nu pot citi %s"
  1320. #: apt-inst/extract.cc:491
  1321. #, c-format
  1322. msgid "Unable to stat %s"
  1323. msgstr "Nu pot determina starea %s"
  1324. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1325. #, c-format
  1326. msgid "Failed to remove %s"
  1327. msgstr "Eşuare în ştergerea %s"
  1328. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1329. #, c-format
  1330. msgid "Unable to create %s"
  1331. msgstr "Nu pot crea %s"
  1332. #: apt-inst/deb/dpkgdb.cc:114
  1333. #, c-format
  1334. msgid "Failed to stat %sinfo"
  1335. msgstr "Eşuare în a determina starea %sinfo"
  1336. #: apt-inst/deb/dpkgdb.cc:119
  1337. msgid "The info and temp directories need to be on the same filesystem"
  1338. msgstr ""
  1339. "Directoarele de informaţii şi temporare trebuie să fie în acelaşi sistem de "
  1340. "fişiere"
  1341. #. Build the status cache
  1342. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
  1343. #: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
  1344. #: apt-pkg/pkgcachegen.cc:945
  1345. msgid "Reading package lists"
  1346. msgstr "Citire liste de pachete"
  1347. #: apt-inst/deb/dpkgdb.cc:176
  1348. #, c-format
  1349. msgid "Failed to change to the admin dir %sinfo"
  1350. msgstr "Eşuare în a schimba către directorul %sinfo"
  1351. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1352. #: apt-inst/deb/dpkgdb.cc:444
  1353. msgid "Internal error getting a package name"
  1354. msgstr "Eroare internă la preluarea numelui de pachet"
  1355. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1356. msgid "Reading file listing"
  1357. msgstr "Citire derulare fişier"
  1358. #: apt-inst/deb/dpkgdb.cc:212
  1359. #, c-format
  1360. msgid ""
  1361. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1362. "then make it empty and immediately re-install the same version of the "
  1363. "package!"
  1364. msgstr ""
  1365. "Eşuare în deschiderea fişierului listă '%sinfo/%s'. Dacă nu puteţi restaura "
  1366. "acest fişier atunci goliţi-l şi imediat reinstalaţi aceeaşi versiune a "
  1367. "pachetului!"
  1368. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1369. #, c-format
  1370. msgid "Failed reading the list file %sinfo/%s"
  1371. msgstr "Eşuare la citirea fişierului listă %sinfo/%s"
  1372. #: apt-inst/deb/dpkgdb.cc:262
  1373. msgid "Internal error getting a node"
  1374. msgstr "Eroare internă la preluarea unui nod"
  1375. #: apt-inst/deb/dpkgdb.cc:305
  1376. #, c-format
  1377. msgid "Failed to open the diversions file %sdiversions"
  1378. msgstr "Eşuare la deschiderea fişierului de diversiuni %sdiversions"
  1379. #: apt-inst/deb/dpkgdb.cc:320
  1380. msgid "The diversion file is corrupted"
  1381. msgstr "Fişierul diversiune este deteriorat"
  1382. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1383. #: apt-inst/deb/dpkgdb.cc:337
  1384. #, c-format
  1385. msgid "Invalid line in the diversion file: %s"
  1386. msgstr "Linie necorespunzătoare în fişierul diversiune: %s"
  1387. #: apt-inst/deb/dpkgdb.cc:358
  1388. msgid "Internal error adding a diversion"
  1389. msgstr "Eroare internă în timpul adăugării unei diversiuni"
  1390. #: apt-inst/deb/dpkgdb.cc:379
  1391. msgid "The pkg cache must be initialized first"
  1392. msgstr "Cache-ul pachetului trebuie întâi iniţializat"
  1393. #: apt-inst/deb/dpkgdb.cc:439
  1394. #, c-format
  1395. msgid "Failed to find a Package: header, offset %lu"
  1396. msgstr "Eşuare în a găsi un pachet: antet, ofset %lu"
  1397. #: apt-inst/deb/dpkgdb.cc:461
  1398. #, c-format
  1399. msgid "Bad ConfFile section in the status file. Offset %lu"
  1400. msgstr "Secţiune necorespunzătoare ConfFile în fişierul de stare. Offset %lu"
  1401. #: apt-inst/deb/dpkgdb.cc:466
  1402. #, c-format
  1403. msgid "Error parsing MD5. Offset %lu"
  1404. msgstr "Eroare la analiza MD5. Offset %lu"
  1405. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1406. #, c-format
  1407. msgid "This is not a valid DEB archive, missing '%s' member"
  1408. msgstr "Aceasta nu este o arhivă DEB validă, lipseşte membrul '%s'"
  1409. #: apt-inst/deb/debfile.cc:50
  1410. #, fuzzy, c-format
  1411. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1412. msgstr "Aceasta nu este o arhivă DEB validă, nu are membrul '%s' sau '%s'"
  1413. #: apt-inst/deb/debfile.cc:110
  1414. #, c-format
  1415. msgid "Couldn't change to %s"
  1416. msgstr "Nu pot schimba la %s"
  1417. #: apt-inst/deb/debfile.cc:140
  1418. msgid "Internal error, could not locate member"
  1419. msgstr "Eroare internă, nu pot localiza membrul"
  1420. #: apt-inst/deb/debfile.cc:173
  1421. msgid "Failed to locate a valid control file"
  1422. msgstr "Eşuare de localizare a unui fişier de control valid"
  1423. #: apt-inst/deb/debfile.cc:258
  1424. msgid "Unparsable control file"
  1425. msgstr "Fişier de control neanalizabil"
  1426. #: methods/cdrom.cc:114
  1427. #, c-format
  1428. msgid "Unable to read the cdrom database %s"
  1429. msgstr "Nu pot citi baza de date a cdrom-ului %s"
  1430. #: methods/cdrom.cc:123
  1431. msgid ""
  1432. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1433. "cannot be used to add new CD-ROMs"
  1434. msgstr ""
  1435. "Vă rog folosiţi apt-cdrom pentru a face recunoscut acest CD de către APT. "
  1436. "'apt-get update' nu poate fi folosit pentru adăugarea de noi CD-uri"
  1437. #: methods/cdrom.cc:131
  1438. msgid "Wrong CD-ROM"
  1439. msgstr "CD-ROM necorespunzător"
  1440. #: methods/cdrom.cc:166
  1441. #, c-format
  1442. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1443. msgstr "Nu pot demonta CDROM-ul în %s, poate este încă utilizat."
  1444. #: methods/cdrom.cc:171
  1445. msgid "Disk not found."
  1446. msgstr "Disc negăsit."
  1447. #: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
  1448. msgid "File not found"
  1449. msgstr "Fişier negăsit"
  1450. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1451. #: methods/rred.cc:234 methods/rred.cc:243
  1452. msgid "Failed to stat"
  1453. msgstr "Eşuare de determinare a stării"
  1454. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1455. msgid "Failed to set modification time"
  1456. msgstr "Eşuare la ajustarea timpului"
  1457. #: methods/file.cc:44
  1458. msgid "Invalid URI, local URIS must not start with //"
  1459. msgstr "URI invalid, URIS local trebuie sa nu înceapă cu //"
  1460. #. Login must be before getpeername otherwise dante won't work.
  1461. #: methods/ftp.cc:162
  1462. msgid "Logging in"
  1463. msgstr "Se autentifică"
  1464. #: methods/ftp.cc:168
  1465. msgid "Unable to determine the peer name"
  1466. msgstr "Nu pot determina numele pereche"
  1467. #: methods/ftp.cc:173
  1468. msgid "Unable to determine the local name"
  1469. msgstr "Nu pot determina numele local"
  1470. #: methods/ftp.cc:204 methods/ftp.cc:232
  1471. #, c-format
  1472. msgid "The server refused the connection and said: %s"
  1473. msgstr "Serverul ne-a refuzat conectarea şi a spus: %s"
  1474. #: methods/ftp.cc:210
  1475. #, c-format
  1476. msgid "USER failed, server said: %s"
  1477. msgstr "Eşuare UTILIZATOR, serverul a spus: %s"
  1478. #: methods/ftp.cc:217
  1479. #, c-format
  1480. msgid "PASS failed, server said: %s"
  1481. msgstr "Eşuare PAROLĂ, serverul a spus: %s"
  1482. #: methods/ftp.cc:237
  1483. msgid ""
  1484. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1485. "is empty."
  1486. msgstr ""
  1487. "Un server proxy a fost specificat dar nu exista nici un script de conectare, "
  1488. "Acquire::ftp::ProxyLogin este gol."
  1489. #: methods/ftp.cc:265
  1490. #, c-format
  1491. msgid "Login script command '%s' failed, server said: %s"
  1492. msgstr "Script comandă de conectare '%s' eşuat, serverul a spus: %s"
  1493. #: methods/ftp.cc:291
  1494. #, c-format
  1495. msgid "TYPE failed, server said: %s"
  1496. msgstr "Eşuare TIP, serverul a spus: %s"
  1497. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1498. msgid "Connection timeout"
  1499. msgstr "Timpul de conectare a expirat"
  1500. #: methods/ftp.cc:335
  1501. msgid "Server closed the connection"
  1502. msgstr "Serverul a terminat conexiunea"
  1503. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
  1504. msgid "Read error"
  1505. msgstr "Eroare de citire"
  1506. #: methods/ftp.cc:345 methods/rsh.cc:197
  1507. msgid "A response overflowed the buffer."
  1508. msgstr "Un răspuns a inundat zona tampon."
  1509. #: methods/ftp.cc:362 methods/ftp.cc:374
  1510. msgid "Protocol corruption"
  1511. msgstr "Degradare protocol"
  1512. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
  1513. msgid "Write error"
  1514. msgstr "Eroare de scriere"
  1515. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1516. msgid "Could not create a socket"
  1517. msgstr "Nu pot crea un socket"
  1518. #: methods/ftp.cc:698
  1519. msgid "Could not connect data socket, connection timed out"
  1520. msgstr "Nu pot conecta data socket, timpul de conectare a expirat"
  1521. #: methods/ftp.cc:704
  1522. msgid "Could not connect passive socket."
  1523. msgstr "Nu pot conecta socket pasiv"
  1524. #: methods/ftp.cc:722
  1525. msgid "getaddrinfo was unable to get a listening socket"
  1526. msgstr "getaddrinfo n-a reuşit să obţină un socket de ascultare"
  1527. #: methods/ftp.cc:736
  1528. msgid "Could not bind a socket"
  1529. msgstr "Nu pot lega un socket"
  1530. #: methods/ftp.cc:740
  1531. msgid "Could not listen on the socket"
  1532. msgstr "Nu pot asculta pe un socket"
  1533. #: methods/ftp.cc:747
  1534. msgid "Could not determine the socket's name"
  1535. msgstr "Nu pot determina numele socket-ului"
  1536. #: methods/ftp.cc:779
  1537. msgid "Unable to send PORT command"
  1538. msgstr "Nu pot trimite comanda PORT"
  1539. #: methods/ftp.cc:789
  1540. #, c-format
  1541. msgid "Unknown address family %u (AF_*)"
  1542. msgstr "Familie de adrese necunoscută %u (AF_*)"
  1543. #: methods/ftp.cc:798
  1544. #, c-format
  1545. msgid "EPRT failed, server said: %s"
  1546. msgstr "Eşuare EPRT, serverul a spus: %s"
  1547. #: methods/ftp.cc:818
  1548. msgid "Data socket connect timed out"
  1549. msgstr "Timp de conectare data socket expirat"
  1550. #: methods/ftp.cc:825
  1551. msgid "Unable to accept connection"
  1552. msgstr "Nu pot accepta conexiune"
  1553. #: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
  1554. msgid "Problem hashing file"
  1555. msgstr "Problemă la indexarea fişierului"
  1556. #: methods/ftp.cc:877
  1557. #, c-format
  1558. msgid "Unable to fetch file, server said '%s'"
  1559. msgstr "Nu pot aduce fişierul, serverul a spus '%s"
  1560. #: methods/ftp.cc:892 methods/rsh.cc:322
  1561. msgid "Data socket timed out"
  1562. msgstr "Timp expirat pentru data socket"
  1563. #: methods/ftp.cc:922
  1564. #, c-format
  1565. msgid "Data transfer failed, server said '%s'"
  1566. msgstr "Eşuare transfer de date, serverul a spus: '%s'"
  1567. #. Get the files information
  1568. #: methods/ftp.cc:997
  1569. msgid "Query"
  1570. msgstr "Interogare"
  1571. #: methods/ftp.cc:1109
  1572. msgid "Unable to invoke "
  1573. msgstr "Nu pot invoca"
  1574. #: methods/connect.cc:64
  1575. #, c-format
  1576. msgid "Connecting to %s (%s)"
  1577. msgstr "Conectare la %s (%s)"
  1578. #: methods/connect.cc:71
  1579. #, c-format
  1580. msgid "[IP: %s %s]"
  1581. msgstr "[IP: %s %s]"
  1582. #: methods/connect.cc:80
  1583. #, c-format
  1584. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1585. msgstr "Nu pot crea un socket pentru %s (f=%u t=%u p=%u)"
  1586. #: methods/connect.cc:86
  1587. #, c-format
  1588. msgid "Cannot initiate the connection to %s:%s (%s)."
  1589. msgstr "Nu pot iniţia conectarea la %s:%s (%s)."
  1590. #: methods/connect.cc:93
  1591. #, c-format
  1592. msgid "Could not connect to %s:%s (%s), connection timed out"
  1593. msgstr "N-am putut conecta la %s:%s (%s), timp de conectare expirat"
  1594. #: methods/connect.cc:108
  1595. #, c-format
  1596. msgid "Could not connect to %s:%s (%s)."
  1597. msgstr "N-am putut conecta la %s:%s (%s)."
  1598. #. We say this mainly because the pause here is for the
  1599. #. ssh connection that is still going
  1600. #: methods/connect.cc:136 methods/rsh.cc:425
  1601. #, c-format
  1602. msgid "Connecting to %s"
  1603. msgstr "Conectare la %s"
  1604. #: methods/connect.cc:167
  1605. #, c-format
  1606. msgid "Could not resolve '%s'"
  1607. msgstr "Nu pot rezolva '%s'"
  1608. #: methods/connect.cc:173
  1609. #, c-format
  1610. msgid "Temporary failure resolving '%s'"
  1611. msgstr "Eşuare temporară în rezolvarea '%s'"
  1612. #: methods/connect.cc:176
  1613. #, c-format
  1614. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1615. msgstr "S-a întâmplat ceva rău la rezolvarea '%s:%s' (%i)"
  1616. #: methods/connect.cc:223
  1617. #, c-format
  1618. msgid "Unable to connect to %s %s:"
  1619. msgstr "Nu pot conecta la %s %s"
  1620. #: methods/gpgv.cc:65
  1621. #, c-format
  1622. msgid "Couldn't access keyring: '%s'"
  1623. msgstr "Nu pot accesa keyring: '%s'"
  1624. #: methods/gpgv.cc:101
  1625. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1626. msgstr "E: Listă de argumente din Acquire::gpgv::Options prea lungă. Ies."
  1627. #: methods/gpgv.cc:205
  1628. msgid ""
  1629. "Internal error: Good signature, but could not determine key fingerprint?!"
  1630. msgstr ""
  1631. "Eroare internă: Semnătură corespunzătoare, dar n-am putut determina cheia "
  1632. "amprentei digitale?!"
  1633. #: methods/gpgv.cc:210
  1634. msgid "At least one invalid signature was encountered."
  1635. msgstr "Cel puţin o semnătură invalidă a fost întâlnită."
  1636. #: methods/gpgv.cc:214
  1637. #, c-format
  1638. msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
  1639. msgstr ""
  1640. "Nu pot executa '%s' pentru verificarea semnăturii (este instalat gnupg?)"
  1641. #: methods/gpgv.cc:219
  1642. msgid "Unknown error executing gpgv"
  1643. msgstr "Eroare necunoscută în timp ce se execută gpgv"
  1644. #: methods/gpgv.cc:250
  1645. msgid "The following signatures were invalid:\n"
  1646. msgstr "Următoarele semnături au fost invalide:\n"
  1647. #: methods/gpgv.cc:257
  1648. msgid ""
  1649. "The following signatures couldn't be verified because the public key is not "
  1650. "available:\n"
  1651. msgstr ""
  1652. "Următoarele semnături n-au putut fi verificate datorită cheii publice care "
  1653. "este indisponibilă:\n"
  1654. #: methods/gzip.cc:64
  1655. #, c-format
  1656. msgid "Couldn't open pipe for %s"
  1657. msgstr "Nu pot deschide conexiunea pentru %s"
  1658. #: methods/gzip.cc:109
  1659. #, c-format
  1660. msgid "Read error from %s process"
  1661. msgstr "Eroare de citire din procesul %s"
  1662. #: methods/http.cc:377
  1663. msgid "Waiting for headers"
  1664. msgstr "În aşteptarea antetelor"
  1665. #: methods/http.cc:523
  1666. #, c-format
  1667. msgid "Got a single header line over %u chars"
  1668. msgstr "Primit o singură linie de antet peste %u caractere"
  1669. #: methods/http.cc:531
  1670. msgid "Bad header line"
  1671. msgstr "Linie de antet necorespunzătoare"
  1672. #: methods/http.cc:550 methods/http.cc:557
  1673. msgid "The HTTP server sent an invalid reply header"
  1674. msgstr "Serverul http a trimis un antet de răspuns necorespunzător"
  1675. #: methods/http.cc:586
  1676. msgid "The HTTP server sent an invalid Content-Length header"
  1677. msgstr "Serverul http a trimis un antet lungime-conţinut necorespunzător"
  1678. #: methods/http.cc:601
  1679. msgid "The HTTP server sent an invalid Content-Range header"
  1680. msgstr "Serverul http a trimis un antet zonă de conţinut necorespunzător"
  1681. #: methods/http.cc:603
  1682. msgid "This HTTP server has broken range support"
  1683. msgstr "Acest server http are zonă de suport necorespunzătoare"
  1684. #: methods/http.cc:627
  1685. msgid "Unknown date format"
  1686. msgstr "Format de date necunoscut"
  1687. #: methods/http.cc:774
  1688. msgid "Select failed"
  1689. msgstr "Eşuarea selecţiei"
  1690. #: methods/http.cc:779
  1691. msgid "Connection timed out"
  1692. msgstr "Timp de conectare expirat"
  1693. #: methods/http.cc:802
  1694. msgid "Error writing to output file"
  1695. msgstr "Eroare la scrierea fişierului de rezultat"
  1696. #: methods/http.cc:833
  1697. msgid "Error writing to file"
  1698. msgstr "Eroare la scrierea în fişier"
  1699. #: methods/http.cc:861
  1700. msgid "Error writing to the file"
  1701. msgstr "Eroare la scrierea în fişierul"
  1702. #: methods/http.cc:875
  1703. msgid "Error reading from server. Remote end closed connection"
  1704. msgstr ""
  1705. "Eroare la citirea de pe server, conexiunea a fost închisă de la distanţă"
  1706. #: methods/http.cc:877
  1707. msgid "Error reading from server"
  1708. msgstr "Eroare la citirea de pe server"
  1709. #: methods/http.cc:1104
  1710. msgid "Bad header data"
  1711. msgstr "Antet de date necorespunzător"
  1712. #: methods/http.cc:1121 methods/http.cc:1176
  1713. msgid "Connection failed"
  1714. msgstr "Conectare eşuată"
  1715. #: methods/http.cc:1228
  1716. msgid "Internal error"
  1717. msgstr "Eroare internă"
  1718. #: apt-pkg/contrib/mmap.cc:80
  1719. msgid "Can't mmap an empty file"
  1720. msgstr "Nu pot mmap un fişier gol"
  1721. #: apt-pkg/contrib/mmap.cc:85
  1722. #, c-format
  1723. msgid "Couldn't make mmap of %lu bytes"
  1724. msgstr "Nu pot face mmap la %lu bytes"
  1725. #: apt-pkg/contrib/strutl.cc:978
  1726. #, c-format
  1727. msgid "Selection %s not found"
  1728. msgstr "Selecţia %s nu s-a găsit"
  1729. #: apt-pkg/contrib/configuration.cc:439
  1730. #, c-format
  1731. msgid "Unrecognized type abbreviation: '%c'"
  1732. msgstr "Tip de prescurtare nerecunoscut: '%c'"
  1733. #: apt-pkg/contrib/configuration.cc:497
  1734. #, c-format
  1735. msgid "Opening configuration file %s"
  1736. msgstr "Deschidere fişier de configurare %s"
  1737. #: apt-pkg/contrib/configuration.cc:515
  1738. #, fuzzy, c-format
  1739. msgid "Line %d too long (max %u)"
  1740. msgstr "Linie %d prea lungă (max %d)"
  1741. #: apt-pkg/contrib/configuration.cc:611
  1742. #, c-format
  1743. msgid "Syntax error %s:%u: Block starts with no name."
  1744. msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume"
  1745. #: apt-pkg/contrib/configuration.cc:630
  1746. #, c-format
  1747. msgid "Syntax error %s:%u: Malformed tag"
  1748. msgstr "Eroare de sintaxă %s:%u: etichetă greşită"
  1749. #: apt-pkg/contrib/configuration.cc:647
  1750. #, c-format
  1751. msgid "Syntax error %s:%u: Extra junk after value"
  1752. msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare"
  1753. #: apt-pkg/contrib/configuration.cc:687
  1754. #, c-format
  1755. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1756. msgstr ""
  1757. "Eroare de sintaxă %s:%u: directivele pot fi date doar la nivelul superior"
  1758. #: apt-pkg/contrib/configuration.cc:694
  1759. #, c-format
  1760. msgid "Syntax error %s:%u: Too many nested includes"
  1761. msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse"
  1762. #: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
  1763. #, c-format
  1764. msgid "Syntax error %s:%u: Included from here"
  1765. msgstr "Eroare de sintaxă %s:%u: incluse de aici"
  1766. #: apt-pkg/contrib/configuration.cc:707
  1767. #, c-format
  1768. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1769. msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'"
  1770. #: apt-pkg/contrib/configuration.cc:741
  1771. #, c-format
  1772. msgid "Syntax error %s:%u: Extra junk at end of file"
  1773. msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârşitul fişierului"
  1774. #: apt-pkg/contrib/progress.cc:153
  1775. #, c-format
  1776. msgid "%c%s... Error!"
  1777. msgstr "%c%s... Eroare!"
  1778. #: apt-pkg/contrib/progress.cc:155
  1779. #, c-format
  1780. msgid "%c%s... Done"
  1781. msgstr "%c%s... Terminat"
  1782. #: apt-pkg/contrib/cmndline.cc:77
  1783. #, c-format
  1784. msgid "Command line option '%c' [from %s] is not known."
  1785. msgstr "Opţiunea linie de comandă '%c' [din %s] este necunoscută."
  1786. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1787. #: apt-pkg/contrib/cmndline.cc:119
  1788. #, c-format
  1789. msgid "Command line option %s is not understood"
  1790. msgstr "Opţiunea linie de comandă %s nu este înţeleasă"
  1791. #: apt-pkg/contrib/cmndline.cc:124
  1792. #, c-format
  1793. msgid "Command line option %s is not boolean"
  1794. msgstr "Opţiunea linie de comandă %s nu este booleană"
  1795. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1796. #, c-format
  1797. msgid "Option %s requires an argument."
  1798. msgstr "Opţiunea %s necesită un argument"
  1799. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1800. #, c-format
  1801. msgid "Option %s: Configuration item specification must have an =<val>."
  1802. msgstr ""
  1803. "Opţiunea %s: Specificaţia configurării articolului trebuie să aibă o =<val>."
  1804. #: apt-pkg/contrib/cmndline.cc:234
  1805. #, c-format
  1806. msgid "Option %s requires an integer argument, not '%s'"
  1807. msgstr "Opţiunea %s necesită un argument integru, nu '%s'"
  1808. #: apt-pkg/contrib/cmndline.cc:265
  1809. #, c-format
  1810. msgid "Option '%s' is too long"
  1811. msgstr "Opţiunea '%s' este prea lungă"
  1812. #: apt-pkg/contrib/cmndline.cc:298
  1813. #, c-format
  1814. msgid "Sense %s is not understood, try true or false."
  1815. msgstr "Sensul %s nu este înţeles, încercaţi adevărat (true) sau fals (false)."
  1816. #: apt-pkg/contrib/cmndline.cc:348
  1817. #, c-format
  1818. msgid "Invalid operation %s"
  1819. msgstr "Operaţiune invalidă %s"
  1820. #: apt-pkg/contrib/cdromutl.cc:52
  1821. #, c-format
  1822. msgid "Unable to stat the mount point %s"
  1823. msgstr "Nu pot determina starea punctului de montare %s"
  1824. #: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
  1825. #, c-format
  1826. msgid "Unable to change to %s"
  1827. msgstr "Nu pot schimba la %s"
  1828. #: apt-pkg/contrib/cdromutl.cc:187
  1829. msgid "Failed to stat the cdrom"
  1830. msgstr "Eşuare la determinarea stării cdrom-ului"
  1831. #: apt-pkg/contrib/fileutl.cc:82
  1832. #, c-format
  1833. msgid "Not using locking for read only lock file %s"
  1834. msgstr "Nu s-a folosit închiderea pentru fişierul disponibil doar-citire %s"
  1835. #: apt-pkg/contrib/fileutl.cc:87
  1836. #, c-format
  1837. msgid "Could not open lock file %s"
  1838. msgstr "Nu pot deschide fişierul blocat %s"
  1839. #: apt-pkg/contrib/fileutl.cc:105
  1840. #, c-format
  1841. msgid "Not using locking for nfs mounted lock file %s"
  1842. msgstr "Nu este folosit blocajul pentru fişierul montat nfs %s"
  1843. #: apt-pkg/contrib/fileutl.cc:109
  1844. #, c-format
  1845. msgid "Could not get lock %s"
  1846. msgstr "Nu pot determina blocajul %s"
  1847. #: apt-pkg/contrib/fileutl.cc:377
  1848. #, c-format
  1849. msgid "Waited for %s but it wasn't there"
  1850. msgstr "Aşteptat %s, dar n-a fost acolo"
  1851. #: apt-pkg/contrib/fileutl.cc:387
  1852. #, c-format
  1853. msgid "Sub-process %s received a segmentation fault."
  1854. msgstr "Subprocesul %s a primit o eroare de segmentare."
  1855. #: apt-pkg/contrib/fileutl.cc:390
  1856. #, c-format
  1857. msgid "Sub-process %s returned an error code (%u)"
  1858. msgstr "Subprocesul %s a întors un cod de eroare (%u)"
  1859. #: apt-pkg/contrib/fileutl.cc:392
  1860. #, c-format
  1861. msgid "Sub-process %s exited unexpectedly"
  1862. msgstr "Subprocesul %s s-a terminat brusc"
  1863. #: apt-pkg/contrib/fileutl.cc:436
  1864. #, c-format
  1865. msgid "Could not open file %s"
  1866. msgstr "Nu pot deschide fişierul %s"
  1867. #: apt-pkg/contrib/fileutl.cc:492
  1868. #, c-format
  1869. msgid "read, still have %lu to read but none left"
  1870. msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic"
  1871. #: apt-pkg/contrib/fileutl.cc:522
  1872. #, c-format
  1873. msgid "write, still have %lu to write but couldn't"
  1874. msgstr "scriere, încă mai am %lu de scris dar nu pot"
  1875. #: apt-pkg/contrib/fileutl.cc:597
  1876. msgid "Problem closing the file"
  1877. msgstr "Problemă la închiderea fişierului"
  1878. #: apt-pkg/contrib/fileutl.cc:603
  1879. msgid "Problem unlinking the file"
  1880. msgstr "Problemă la dezlegarea fişierului"
  1881. #: apt-pkg/contrib/fileutl.cc:614
  1882. msgid "Problem syncing the file"
  1883. msgstr "Problemă în timpul sincronizării fişierului"
  1884. #: apt-pkg/pkgcache.cc:132
  1885. msgid "Empty package cache"
  1886. msgstr "Cache gol de pachet"
  1887. #: apt-pkg/pkgcache.cc:138
  1888. msgid "The package cache file is corrupted"
  1889. msgstr "Cache-ul fişierului pachet este deteriorat"
  1890. #: apt-pkg/pkgcache.cc:143
  1891. msgid "The package cache file is an incompatible version"
  1892. msgstr "Fişierul cache al pachetului este o versiune incompatibilă"
  1893. #: apt-pkg/pkgcache.cc:148
  1894. #, c-format
  1895. msgid "This APT does not support the versioning system '%s'"
  1896. msgstr "Acest APT nu suportă versioning system '%s'"
  1897. #: apt-pkg/pkgcache.cc:153
  1898. msgid "The package cache was built for a different architecture"
  1899. msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită"
  1900. #: apt-pkg/pkgcache.cc:224
  1901. msgid "Depends"
  1902. msgstr "Depinde"
  1903. #: apt-pkg/pkgcache.cc:224
  1904. msgid "PreDepends"
  1905. msgstr "Pre-depinde"
  1906. #: apt-pkg/pkgcache.cc:224
  1907. msgid "Suggests"
  1908. msgstr "Sugerează"
  1909. #: apt-pkg/pkgcache.cc:225
  1910. msgid "Recommends"
  1911. msgstr "Recomandă"
  1912. #: apt-pkg/pkgcache.cc:225
  1913. msgid "Conflicts"
  1914. msgstr "Este în conflict"
  1915. #: apt-pkg/pkgcache.cc:225
  1916. msgid "Replaces"
  1917. msgstr "Înlocuieşte"
  1918. #: apt-pkg/pkgcache.cc:226
  1919. msgid "Obsoletes"
  1920. msgstr "Învechit"
  1921. #: apt-pkg/pkgcache.cc:226
  1922. msgid "Breaks"
  1923. msgstr ""
  1924. #: apt-pkg/pkgcache.cc:237
  1925. msgid "important"
  1926. msgstr "important"
  1927. #: apt-pkg/pkgcache.cc:237
  1928. msgid "required"
  1929. msgstr "cerut"
  1930. #: apt-pkg/pkgcache.cc:237
  1931. msgid "standard"
  1932. msgstr "standard"
  1933. #: apt-pkg/pkgcache.cc:238
  1934. msgid "optional"
  1935. msgstr "opţional"
  1936. #: apt-pkg/pkgcache.cc:238
  1937. msgid "extra"
  1938. msgstr "extra"
  1939. #: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
  1940. msgid "Building dependency tree"
  1941. msgstr "Se construieşte arborele de dependenţă"
  1942. #: apt-pkg/depcache.cc:122
  1943. msgid "Candidate versions"
  1944. msgstr "Versiuni candidat"
  1945. #: apt-pkg/depcache.cc:151
  1946. msgid "Dependency generation"
  1947. msgstr "Generare dependenţe"
  1948. #: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
  1949. #, fuzzy
  1950. msgid "Reading state information"
  1951. msgstr "Unirea informaţiilor disponibile"
  1952. #: apt-pkg/depcache.cc:219
  1953. #, fuzzy, c-format
  1954. msgid "Failed to open StateFile %s"
  1955. msgstr "Eşuare la deschiderea %s"
  1956. #: apt-pkg/depcache.cc:225
  1957. #, fuzzy, c-format
  1958. msgid "Failed to write temporary StateFile %s"
  1959. msgstr "Eşuare în scrierea fişierului %s"
  1960. #: apt-pkg/tagfile.cc:102
  1961. #, c-format
  1962. msgid "Unable to parse package file %s (1)"
  1963. msgstr "Nu pot analiza fişierul pachet %s (1)"
  1964. #: apt-pkg/tagfile.cc:189
  1965. #, c-format
  1966. msgid "Unable to parse package file %s (2)"
  1967. msgstr "Nu pot analiza fişierul pachet %s (2)"
  1968. #: apt-pkg/sourcelist.cc:90
  1969. #, c-format
  1970. msgid "Malformed line %lu in source list %s (URI)"
  1971. msgstr "Linie greşită %lu în lista sursă %s (URI)"
  1972. #: apt-pkg/sourcelist.cc:92
  1973. #, c-format
  1974. msgid "Malformed line %lu in source list %s (dist)"
  1975. msgstr "Linie greşită %lu în lista sursă %s (dist)"
  1976. #: apt-pkg/sourcelist.cc:95
  1977. #, c-format
  1978. msgid "Malformed line %lu in source list %s (URI parse)"
  1979. msgstr "Linie greşită %lu în lista sursă %s (analiza URI)"
  1980. #: apt-pkg/sourcelist.cc:101
  1981. #, c-format
  1982. msgid "Malformed line %lu in source list %s (absolute dist)"
  1983. msgstr "Linie greşită %lu în lista sursă %s (dist. absolută)"
  1984. #: apt-pkg/sourcelist.cc:108
  1985. #, c-format
  1986. msgid "Malformed line %lu in source list %s (dist parse)"
  1987. msgstr "Linie greşită %lu în lista sursă %s (analiza dist.)"
  1988. #: apt-pkg/sourcelist.cc:199
  1989. #, c-format
  1990. msgid "Opening %s"
  1991. msgstr "Deschidere %s"
  1992. #: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
  1993. #, c-format
  1994. msgid "Line %u too long in source list %s."
  1995. msgstr "Linia %u prea lungă în lista sursă %s."
  1996. #: apt-pkg/sourcelist.cc:236
  1997. #, c-format
  1998. msgid "Malformed line %u in source list %s (type)"
  1999. msgstr "Linie greşită %u în lista sursă %s (tip)"
  2000. #: apt-pkg/sourcelist.cc:240
  2001. #, c-format
  2002. msgid "Type '%s' is not known on line %u in source list %s"
  2003. msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s"
  2004. #: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
  2005. #, c-format
  2006. msgid "Malformed line %u in source list %s (vendor id)"
  2007. msgstr "Linie greşită %u în lista sursă %s (identificator vânzător)"
  2008. #: apt-pkg/packagemanager.cc:399
  2009. #, c-format
  2010. msgid ""
  2011. "This installation run will require temporarily removing the essential "
  2012. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2013. "you really want to do it, activate the APT::Force-LoopBreak option."
  2014. msgstr ""
  2015. "Aceasta instalare va avea nevoie de ştergerea temporară a pachetului "
  2016. "esenţial %s din cauza unui bucle conflict/pre-dependenţă. Asta de multe ori "
  2017. "nu-i de bine, dar dacă vreţi întradevăr s-o faceţi, activaţi opţiunea APT::"
  2018. "Force-LoopBreak."
  2019. #: apt-pkg/pkgrecords.cc:32
  2020. #, c-format
  2021. msgid "Index file type '%s' is not supported"
  2022. msgstr "Tipul de fişier index '%s' nu este suportat"
  2023. #: apt-pkg/algorithms.cc:247
  2024. #, c-format
  2025. msgid ""
  2026. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2027. msgstr ""
  2028. "Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el."
  2029. #: apt-pkg/algorithms.cc:1105
  2030. msgid ""
  2031. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2032. "held packages."
  2033. msgstr ""
  2034. "Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi "
  2035. "cauzată de pachete ţinute."
  2036. #: apt-pkg/algorithms.cc:1107
  2037. msgid "Unable to correct problems, you have held broken packages."
  2038. msgstr "Nu pot corecta problema, aţi ţinut pachete deteriorate."
  2039. #: apt-pkg/acquire.cc:59
  2040. #, c-format
  2041. msgid "Lists directory %spartial is missing."
  2042. msgstr "Directorul de liste %spartial lipseşte."
  2043. #: apt-pkg/acquire.cc:63
  2044. #, c-format
  2045. msgid "Archive directory %spartial is missing."
  2046. msgstr "Directorul de arhive %spartial lipseşte."
  2047. #. only show the ETA if it makes sense
  2048. #. two days
  2049. #: apt-pkg/acquire.cc:827
  2050. #, c-format
  2051. msgid "Retrieving file %li of %li (%s remaining)"
  2052. msgstr "Se descarcă fişierul %li din %li (%s rămas)"
  2053. #: apt-pkg/acquire.cc:829
  2054. #, c-format
  2055. msgid "Retrieving file %li of %li"
  2056. msgstr "Se descarcă fişierul %li din %li"
  2057. #: apt-pkg/acquire-worker.cc:110
  2058. #, c-format
  2059. msgid "The method driver %s could not be found."
  2060. msgstr "Metoda driver %s nu poate fi găsită."
  2061. #: apt-pkg/acquire-worker.cc:159
  2062. #, c-format
  2063. msgid "Method %s did not start correctly"
  2064. msgstr "Metoda %s nu s-a lansat corect"
  2065. #: apt-pkg/acquire-worker.cc:398
  2066. #, c-format
  2067. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2068. msgstr ""
  2069. "Vă rog introduceţi discul numit: '%s' în unitatea '%s' şi apăsaţi Enter."
  2070. #: apt-pkg/init.cc:124
  2071. #, c-format
  2072. msgid "Packaging system '%s' is not supported"
  2073. msgstr "Sistemul de pachete '%s' nu este suportat"
  2074. #: apt-pkg/init.cc:140
  2075. msgid "Unable to determine a suitable packaging system type"
  2076. msgstr "Nu pot determina un tip de sistem de pachete potrivit"
  2077. #: apt-pkg/clean.cc:57
  2078. #, c-format
  2079. msgid "Unable to stat %s."
  2080. msgstr "Nu pot determina starea %s."
  2081. #: apt-pkg/srcrecords.cc:44
  2082. msgid "You must put some 'source' URIs in your sources.list"
  2083. msgstr "Trebuie să puneţi nişte 'surse' de URI în sources.list"
  2084. #: apt-pkg/cachefile.cc:69
  2085. msgid "The package lists or status file could not be parsed or opened."
  2086. msgstr ""
  2087. "Listele de pachete sau fişierul de stare n-au putut fi analizate sau "
  2088. "deschise."
  2089. #: apt-pkg/cachefile.cc:73
  2090. msgid "You may want to run apt-get update to correct these problems"
  2091. msgstr ""
  2092. "Aţi putea vrea să porniţi 'apt-get update' pentru a corecta aceste probleme."
  2093. #: apt-pkg/policy.cc:267
  2094. msgid "Invalid record in the preferences file, no Package header"
  2095. msgstr "Înregistrare invalidă în fişierul de preferinţe, fără antet de pachet"
  2096. #: apt-pkg/policy.cc:289
  2097. #, c-format
  2098. msgid "Did not understand pin type %s"
  2099. msgstr "Nu s-a înţeles tipul de pin %s"
  2100. #: apt-pkg/policy.cc:297
  2101. msgid "No priority (or zero) specified for pin"
  2102. msgstr "Fără prioritate (sau zero) specificată pentru pin"
  2103. #: apt-pkg/pkgcachegen.cc:72
  2104. msgid "Cache has an incompatible versioning system"
  2105. msgstr "Cache are un versioning system incompatibil"
  2106. #: apt-pkg/pkgcachegen.cc:115
  2107. #, c-format
  2108. msgid "Error occurred while processing %s (NewPackage)"
  2109. msgstr "Eroare apărută în timpul procesării %s (NewPackage)"
  2110. #: apt-pkg/pkgcachegen.cc:130
  2111. #, c-format
  2112. msgid "Error occurred while processing %s (UsePackage1)"
  2113. msgstr "Eroare apărută în timpul procesării %s (UsePackage1)"
  2114. #: apt-pkg/pkgcachegen.cc:153
  2115. #, fuzzy, c-format
  2116. msgid "Error occurred while processing %s (NewFileDesc1)"
  2117. msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  2118. #: apt-pkg/pkgcachegen.cc:178
  2119. #, c-format
  2120. msgid "Error occurred while processing %s (UsePackage2)"
  2121. msgstr "Eroare apărută în timpul procesării %s (UsePackage2)"
  2122. #: apt-pkg/pkgcachegen.cc:182
  2123. #, c-format
  2124. msgid "Error occurred while processing %s (NewFileVer1)"
  2125. msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  2126. #: apt-pkg/pkgcachegen.cc:213
  2127. #, c-format
  2128. msgid "Error occurred while processing %s (NewVersion1)"
  2129. msgstr "Eroare apărută în timpul procesării %s (NewVersion1)"
  2130. #: apt-pkg/pkgcachegen.cc:217
  2131. #, c-format
  2132. msgid "Error occurred while processing %s (UsePackage3)"
  2133. msgstr "Eroare apărută în timpul procesării %s (UsePackage3)"
  2134. #: apt-pkg/pkgcachegen.cc:221
  2135. #, c-format
  2136. msgid "Error occurred while processing %s (NewVersion2)"
  2137. msgstr "Eroare apărută în timpul procesării %s (NewVersion2)"
  2138. #: apt-pkg/pkgcachegen.cc:245
  2139. #, fuzzy, c-format
  2140. msgid "Error occurred while processing %s (NewFileDesc2)"
  2141. msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  2142. #: apt-pkg/pkgcachegen.cc:251
  2143. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2144. msgstr ""
  2145. "Mamăăă, aţi depăşit numărul de nume de pachete de care este capabil acest "
  2146. "APT."
  2147. #: apt-pkg/pkgcachegen.cc:254
  2148. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2149. msgstr ""
  2150. "Mamăăă, aţi depăşit numărul de versiuni de care este capabil acest APT."
  2151. #: apt-pkg/pkgcachegen.cc:257
  2152. #, fuzzy
  2153. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2154. msgstr ""
  2155. "Mamăăă, aţi depăşit numărul de versiuni de care este capabil acest APT."
  2156. #: apt-pkg/pkgcachegen.cc:260
  2157. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2158. msgstr ""
  2159. "Mamăăă, aţi depăşit numărul de dependenţe de care este capabil acest APT."
  2160. #: apt-pkg/pkgcachegen.cc:288
  2161. #, c-format
  2162. msgid "Error occurred while processing %s (FindPkg)"
  2163. msgstr "Eroare apărută în timpul procesării %s (FindPkg)"
  2164. #: apt-pkg/pkgcachegen.cc:301
  2165. #, c-format
  2166. msgid "Error occurred while processing %s (CollectFileProvides)"
  2167. msgstr "Eroare apărută în timpul procesării %s (CollectFileProvides)"
  2168. #: apt-pkg/pkgcachegen.cc:307
  2169. #, c-format
  2170. msgid "Package %s %s was not found while processing file dependencies"
  2171. msgstr ""
  2172. "Nu s-a găsit pachetul %s %s în timpul procesării dependenţelor de fişiere"
  2173. #: apt-pkg/pkgcachegen.cc:678
  2174. #, c-format
  2175. msgid "Couldn't stat source package list %s"
  2176. msgstr "Nu pot determina starea listei surse de pachete %s"
  2177. #: apt-pkg/pkgcachegen.cc:763
  2178. msgid "Collecting File Provides"
  2179. msgstr "Colectare furnizori fişier"
  2180. #: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
  2181. msgid "IO Error saving source cache"
  2182. msgstr "Eroare IO în timpul salvării sursei cache"
  2183. #: apt-pkg/acquire-item.cc:127
  2184. #, c-format
  2185. msgid "rename failed, %s (%s -> %s)."
  2186. msgstr "redenumire eşuată, %s (%s -> %s)."
  2187. #: apt-pkg/acquire-item.cc:401
  2188. msgid "MD5Sum mismatch"
  2189. msgstr "Nepotrivire MD5Sum"
  2190. #: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
  2191. #, fuzzy
  2192. msgid "Hash Sum mismatch"
  2193. msgstr "Nepotrivire MD5Sum"
  2194. #: apt-pkg/acquire-item.cc:1100
  2195. msgid "There is no public key available for the following key IDs:\n"
  2196. msgstr ""
  2197. "Nu există nici o cheie publică disponibilă pentru următoarele "
  2198. "identificatoare de chei:\n"
  2199. #: apt-pkg/acquire-item.cc:1213
  2200. #, c-format
  2201. msgid ""
  2202. "I wasn't able to locate a file for the %s package. This might mean you need "
  2203. "to manually fix this package. (due to missing arch)"
  2204. msgstr ""
  2205. "N-am putut localiza un fişier pentru pachetul %s. Aceasta ar putea însemna "
  2206. "că aveţi nevoie să reparaţi manual acest pachet (din pricina unui arch lipsă)"
  2207. #: apt-pkg/acquire-item.cc:1272
  2208. #, c-format
  2209. msgid ""
  2210. "I wasn't able to locate file for the %s package. This might mean you need to "
  2211. "manually fix this package."
  2212. msgstr ""
  2213. "N-am putut localiza un fişier pentru pachetul %s. Aceasta ar putea însemna "
  2214. "că aveţi nevoie să depanaţi manual acest pachet."
  2215. #: apt-pkg/acquire-item.cc:1313
  2216. #, c-format
  2217. msgid ""
  2218. "The package index files are corrupted. No Filename: field for package %s."
  2219. msgstr ""
  2220. "Fişierele index de pachete sunt deteriorate. Fără câmpul 'nume fişier:' la "
  2221. "pachetul %s."
  2222. #: apt-pkg/acquire-item.cc:1400
  2223. msgid "Size mismatch"
  2224. msgstr "Nepotrivire dimensiune"
  2225. #: apt-pkg/vendorlist.cc:66
  2226. #, c-format
  2227. msgid "Vendor block %s contains no fingerprint"
  2228. msgstr "Blocul vânzător %s nu conţine amprentă"
  2229. #: apt-pkg/cdrom.cc:529
  2230. #, c-format
  2231. msgid ""
  2232. "Using CD-ROM mount point %s\n"
  2233. "Mounting CD-ROM\n"
  2234. msgstr ""
  2235. "Utilizare puct de montare CD-ROM %s\n"
  2236. "Montare CD-ROM\n"
  2237. #: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
  2238. msgid "Identifying.. "
  2239. msgstr "Identificare.. "
  2240. #: apt-pkg/cdrom.cc:563
  2241. #, c-format
  2242. msgid "Stored label: %s\n"
  2243. msgstr "Etichetă memorată: %s \n"
  2244. #: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
  2245. #, fuzzy
  2246. msgid "Unmounting CD-ROM...\n"
  2247. msgstr "Demontez CD-ROM..."
  2248. #: apt-pkg/cdrom.cc:590
  2249. #, c-format
  2250. msgid "Using CD-ROM mount point %s\n"
  2251. msgstr "Utilizare punct de montare CD-ROM %s\n"
  2252. #: apt-pkg/cdrom.cc:608
  2253. msgid "Unmounting CD-ROM\n"
  2254. msgstr "Demontare CD-ROM\n"
  2255. #: apt-pkg/cdrom.cc:612
  2256. msgid "Waiting for disc...\n"
  2257. msgstr "Aştept discul...\n"
  2258. #. Mount the new CDROM
  2259. #: apt-pkg/cdrom.cc:620
  2260. msgid "Mounting CD-ROM...\n"
  2261. msgstr "Montez CD-ROM...\n"
  2262. #: apt-pkg/cdrom.cc:638
  2263. msgid "Scanning disc for index files..\n"
  2264. msgstr "Scanez discul de fişierele index..\n"
  2265. #: apt-pkg/cdrom.cc:678
  2266. #, fuzzy, c-format
  2267. msgid ""
  2268. "Found %u package indexes, %u source indexes, %u translation indexes and %u "
  2269. "signatures\n"
  2270. msgstr "Găsite %i indexuri de pachete, %i indexuri de surse şi %i semnături\n"
  2271. #: apt-pkg/cdrom.cc:715
  2272. #, fuzzy, c-format
  2273. msgid "Found label '%s'\n"
  2274. msgstr "Etichetă memorată: %s \n"
  2275. #: apt-pkg/cdrom.cc:744
  2276. msgid "That is not a valid name, try again.\n"
  2277. msgstr "Acesta nu este un nume valid, mai încercaţi.\n"
  2278. #: apt-pkg/cdrom.cc:760
  2279. #, c-format
  2280. msgid ""
  2281. "This disc is called: \n"
  2282. "'%s'\n"
  2283. msgstr ""
  2284. "Acest disc este numit: \n"
  2285. "'%s'\n"
  2286. #: apt-pkg/cdrom.cc:764
  2287. msgid "Copying package lists..."
  2288. msgstr "Copiez listele de pachete.."
  2289. #: apt-pkg/cdrom.cc:790
  2290. msgid "Writing new source list\n"
  2291. msgstr "Scriere noua listă sursă\n"
  2292. #: apt-pkg/cdrom.cc:799
  2293. msgid "Source list entries for this disc are:\n"
  2294. msgstr "Intrările listei surselor pentru acest disc sunt:\n"
  2295. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
  2296. #, c-format
  2297. msgid "Wrote %i records.\n"
  2298. msgstr "S-au scris %i înregistrări.\n"
  2299. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
  2300. #, c-format
  2301. msgid "Wrote %i records with %i missing files.\n"
  2302. msgstr "S-au scris %i înregistrări cu %i fişiere lipsă.\n"
  2303. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
  2304. #, c-format
  2305. msgid "Wrote %i records with %i mismatched files\n"
  2306. msgstr "S-au scris %i înregistrări cu %i fişiere nepotrivite\n"
  2307. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
  2308. #, c-format
  2309. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2310. msgstr ""
  2311. "S-au scris %i înregistrări cu %i fişiere lipsă şi %i fişiere nepotrivite\n"
  2312. #: apt-pkg/deb/dpkgpm.cc:513
  2313. #, fuzzy, c-format
  2314. msgid "Directory '%s' missing"
  2315. msgstr "Directorul de liste %spartial lipseşte."
  2316. #: apt-pkg/deb/dpkgpm.cc:596
  2317. #, c-format
  2318. msgid "Preparing %s"
  2319. msgstr "Se pregăteşte %s"
  2320. #: apt-pkg/deb/dpkgpm.cc:597
  2321. #, c-format
  2322. msgid "Unpacking %s"
  2323. msgstr "Se despachetează %s"
  2324. #: apt-pkg/deb/dpkgpm.cc:602
  2325. #, c-format
  2326. msgid "Preparing to configure %s"
  2327. msgstr "Se pregăteşte configurarea %s"
  2328. #: apt-pkg/deb/dpkgpm.cc:603
  2329. #, c-format
  2330. msgid "Configuring %s"
  2331. msgstr "Se configurează %s"
  2332. #: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
  2333. #, fuzzy, c-format
  2334. msgid "Processing triggers for %s"
  2335. msgstr "Eroare la prelucrarea directorului %s"
  2336. #: apt-pkg/deb/dpkgpm.cc:608
  2337. #, c-format
  2338. msgid "Installed %s"
  2339. msgstr "Instalat %s"
  2340. #: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
  2341. #: apt-pkg/deb/dpkgpm.cc:616
  2342. #, c-format
  2343. msgid "Preparing for removal of %s"
  2344. msgstr "Se pregăteşte ştergerea lui %s"
  2345. #: apt-pkg/deb/dpkgpm.cc:618
  2346. #, c-format
  2347. msgid "Removing %s"
  2348. msgstr "Se şterge %s"
  2349. #: apt-pkg/deb/dpkgpm.cc:619
  2350. #, c-format
  2351. msgid "Removed %s"
  2352. msgstr "Şters %s"
  2353. #: apt-pkg/deb/dpkgpm.cc:624
  2354. #, c-format
  2355. msgid "Preparing to completely remove %s"
  2356. msgstr "Se pregăteşte ştergerea completă a %s"
  2357. #: apt-pkg/deb/dpkgpm.cc:625
  2358. #, c-format
  2359. msgid "Completely removed %s"
  2360. msgstr "Şters complet %s"
  2361. #: apt-pkg/deb/dpkgpm.cc:775
  2362. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2363. msgstr ""
  2364. #: methods/rred.cc:219
  2365. #, fuzzy
  2366. msgid "Could not patch file"
  2367. msgstr "Nu pot deschide fişierul %s"
  2368. #: methods/rsh.cc:330
  2369. msgid "Connection closed prematurely"
  2370. msgstr "Conexiune închisă prematur"
  2371. #, fuzzy
  2372. #~ msgid "Line %d too long (max %d)"
  2373. #~ msgstr "Linie %d prea lungă (max %d)"
  2374. #, fuzzy
  2375. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2376. #~ msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  2377. #, fuzzy
  2378. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2379. #~ msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
  2380. #, fuzzy
  2381. #~ msgid "Stored label: %s \n"
  2382. #~ msgstr "Etichetă memorată: %s \n"
  2383. #, fuzzy
  2384. #~ msgid ""
  2385. #~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
  2386. #~ "i signatures\n"
  2387. #~ msgstr ""
  2388. #~ "Găsite %i indexuri de pachete, %i indexuri de surse şi %i semnături\n"
  2389. #, fuzzy
  2390. #~ msgid "openpty failed\n"
  2391. #~ msgstr "Eşuarea selecţiei"