ro.po 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245
  1. # Romanian translation for Midnight Commander
  2. # Copyright (C) 1999-2003 Free Software Foundation, Inc.
  3. # Iustin Pop <iusty@geocities.com>
  4. # Dan Damian <dand@dnttm.ro>, 1999.
  5. # Mişu Moldovan <dumol@go.ro>, 2000 - 2003.
  6. #
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: mc 4.6\n"
  10. "Report-Msgid-Bugs-To: mc-devel@gnome.org\n"
  11. "POT-Creation-Date: 2009-10-09 09:50+0300\n"
  12. "PO-Revision-Date: 2003-01-31 00:11+0200\n"
  13. "Last-Translator: Mişu Moldovan <dumol@go.ro>\n"
  14. "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #, fuzzy
  19. msgid " Choose syntax highlighting "
  20. msgstr "&Evidenţiere sintaxă"
  21. #, fuzzy
  22. msgid "< Auto >"
  23. msgstr " Despre "
  24. msgid "< Reload Current Syntax >"
  25. msgstr ""
  26. #, fuzzy, c-format
  27. msgid " Cannot open %s for reading "
  28. msgstr " Nu pot deschide pentru citire filtrul: "
  29. msgid "Error"
  30. msgstr "Eroare"
  31. #, fuzzy, c-format
  32. msgid " Error reading from pipe: %s "
  33. msgstr " Eroare la citirea din filtrul: "
  34. #, fuzzy, c-format
  35. msgid " Cannot open pipe for reading: %s "
  36. msgstr " Nu pot deschide pentru citire filtrul: "
  37. #, fuzzy, c-format
  38. msgid " Cannot get size/permissions for %s "
  39. msgstr " Nu pot obţine informaţiile despre mărimea/drepturile fişierului: "
  40. #, fuzzy, c-format
  41. msgid " %s is not a regular file "
  42. msgstr " Nu poate fi vizualizat: nu este un fişier obişnuit "
  43. #, fuzzy, c-format
  44. msgid " File %s is too large "
  45. msgstr " Fişierul este prea mare: "
  46. msgid "Macro recursion is too deep"
  47. msgstr "Recursivitatea macro este prea mare"
  48. msgid "Search"
  49. msgstr "Caută"
  50. msgid " Search string not found "
  51. msgstr " Şirul căutat nu a fost găsit "
  52. msgid "Warning"
  53. msgstr "Atenţie"
  54. msgid " File has hard-links. Detach before saving? "
  55. msgstr ""
  56. msgid "&Yes"
  57. msgstr "&Da"
  58. msgid "&No"
  59. msgstr "&Nu"
  60. msgid "&Cancel"
  61. msgstr "&Renunţă"
  62. msgid "The file has been modified in the meantime. Save anyway?"
  63. msgstr ""
  64. msgid " Error writing to pipe: "
  65. msgstr " Eroare la scrierea în filtrul: "
  66. msgid " Cannot open pipe for writing: "
  67. msgstr " Nu pot deschide pentru scriere filtrul: "
  68. #, fuzzy, c-format
  69. msgid " Cannot open file for writing: %s "
  70. msgstr " Nu pot deschide pentru scriere filtrul: "
  71. msgid "Quick save "
  72. msgstr "Rapidă"
  73. msgid "Safe save "
  74. msgstr "Sigură"
  75. msgid "Do backups -->"
  76. msgstr "Fă backup -->"
  77. msgid "&OK"
  78. msgstr "&OK"
  79. msgid "Extension:"
  80. msgstr "Extensie:"
  81. msgid " Edit Save Mode "
  82. msgstr " Editează Modul de Salvare "
  83. msgid "&Do not change"
  84. msgstr ""
  85. msgid "&Unix format (LF)"
  86. msgstr ""
  87. msgid "&Windows/DOS format (CR LF)"
  88. msgstr ""
  89. msgid "&Macintosh format (CR)"
  90. msgstr ""
  91. msgid "Change line breaks to:"
  92. msgstr ""
  93. msgid " Enter file name: "
  94. msgstr " Introduceţi numele fişierului: "
  95. msgid " Save As "
  96. msgstr " Salvează Ca "
  97. msgid " A file already exists with this name. "
  98. msgstr " Există deja un fişier cu acest nume. "
  99. #, fuzzy
  100. msgid "&Overwrite"
  101. msgstr "Suprascrie"
  102. msgid " Cannot save file. "
  103. msgstr " Eroare la salvarea fişierului. "
  104. msgid " Delete macro "
  105. msgstr " Şterge combinaţia "
  106. msgid " Cannot open temp file "
  107. msgstr " Eroare la deschiderea unui fişier temporar "
  108. msgid " Cannot open macro file "
  109. msgstr " Eroare la deschiderea fişierului de combinaţii "
  110. msgid " Cannot overwrite macro file "
  111. msgstr " Eroare la încercarea de a suprascriere fişierul de combinaţii "
  112. msgid " Save macro "
  113. msgstr " Salvează combinaţia "
  114. msgid " Press the macro's new hotkey: "
  115. msgstr " Apăsaţi noua tastă a combinaţiei: "
  116. msgid " Press macro hotkey: "
  117. msgstr " Apăsaţi tasta combinaţiei: "
  118. msgid " Load macro "
  119. msgstr " Încarcă combinaţia "
  120. msgid " Confirm save file? : "
  121. msgstr " Confirmaţi salvarea fişierului? : "
  122. msgid " Save file "
  123. msgstr " Salvează fişierul "
  124. msgid "&Save"
  125. msgstr "&Salvează"
  126. msgid ""
  127. " Current text was modified without a file save. \n"
  128. " Continue discards these changes. "
  129. msgstr ""
  130. " Fişierul curent a fost modificat fără a fi salvat. \n"
  131. " Dacă continuaţi veţi anula aceste schimbări. "
  132. #, fuzzy
  133. msgid "C&ontinue"
  134. msgstr "Continuă"
  135. msgid "Syntax file edit"
  136. msgstr "editare fişier sintaxă"
  137. msgid " Which syntax file you want to edit? "
  138. msgstr " Care fişier de sintaxă doriţi să îl editaţi? "
  139. msgid "&User"
  140. msgstr "&Utilizator"
  141. msgid "&System Wide"
  142. msgstr "Pentru tot &Sistemul"
  143. msgid " Menu edit "
  144. msgstr " Editare Meniuri "
  145. msgid " Which menu file do you want to edit? "
  146. msgstr " Care fişier de meniuri doriţi să îl editaţi? "
  147. msgid "&Local"
  148. msgstr "&Local"
  149. msgid " Load "
  150. msgstr " Încarcă "
  151. msgid " Block is large, you may not be able to undo this action. "
  152. msgstr " Blocul este mare, s-ar putea să nu puteţi anula această acţiune. "
  153. #, fuzzy
  154. msgid "Replace"
  155. msgstr "&Înlocuieşte"
  156. msgid " Replace "
  157. msgstr " Înlocuieşte "
  158. #, c-format
  159. msgid " %ld replacements made. "
  160. msgstr " %ld înlocuiri efectuate. "
  161. msgid "Quit"
  162. msgstr "Ieşi"
  163. msgid " File was modified, Save with exit? "
  164. msgstr " Fişierul a fost modificat. Salvez la ieşire? "
  165. #, fuzzy
  166. msgid "&Cancel quit"
  167. msgstr "Anulez ieşirea"
  168. #, fuzzy
  169. msgid " Error "
  170. msgstr "Eroare"
  171. msgid " This function is not implemented. "
  172. msgstr ""
  173. msgid " Copy to clipboard "
  174. msgstr " Copiază în clipboard "
  175. msgid " Unable to save to file. "
  176. msgstr " Nu pot salva în fişier. "
  177. msgid " Cut to clipboard "
  178. msgstr " Taie şi pune în clipboard "
  179. msgid " Goto line "
  180. msgstr " Du-te la linia "
  181. msgid " Enter line: "
  182. msgstr " Introduceţi numărul liniei: "
  183. msgid " Save Block "
  184. msgstr " Salvează blocul "
  185. msgid " Insert File "
  186. msgstr " Inserează Fişier "
  187. msgid " Cannot insert file. "
  188. msgstr " Eroare la încercarea de inserare a fişierului. "
  189. msgid " Sort block "
  190. msgstr " Sortează blocul "
  191. msgid " You must first highlight a block of text. "
  192. msgstr " Trebuie mai întâi să selectaţi un bloc de text. "
  193. msgid " Run Sort "
  194. msgstr " Execută Sort "
  195. msgid " Enter sort options (see manpage) separated by whitespace: "
  196. msgstr " Introduceţi opţiunile sort (vezi pagina man) separate prin spaţii: "
  197. msgid " Sort "
  198. msgstr " Sortează "
  199. msgid " Cannot execute sort command "
  200. msgstr " Eroare la încercarea de execuţie a comenzii sort "
  201. msgid " Sort returned non-zero: "
  202. msgstr " Sort a returnat cod non-zero: "
  203. msgid "Paste output of external command"
  204. msgstr ""
  205. #, fuzzy
  206. msgid "Enter shell command(s):"
  207. msgstr " Introduceţi linia: "
  208. #, fuzzy
  209. msgid "External command"
  210. msgstr "Alte comenzi"
  211. #, fuzzy
  212. msgid "Cannot execute command"
  213. msgstr " Eroare la încercarea de execuţie a comenzii sort "
  214. msgid "Error creating script:"
  215. msgstr "Eroare la crearea script-ului: "
  216. msgid "Error reading script:"
  217. msgstr "Eroare la citirea script-ului: "
  218. msgid "Error closing script:"
  219. msgstr "Eroare la închiderea script-ului: "
  220. msgid "Script created:"
  221. msgstr "A fost creat script-ul: "
  222. msgid "Process block"
  223. msgstr "Prelucrarea blocului"
  224. msgid " Copies to"
  225. msgstr " Copie Indigo la:"
  226. msgid " Subject"
  227. msgstr " Subiect "
  228. msgid " To"
  229. msgstr " La"
  230. msgid " mail -s <subject> -c <cc> <to>"
  231. msgstr " mail -s <Subiect> -c <CI> <La>"
  232. msgid " Mail "
  233. msgstr " Poşta "
  234. msgid " Insert Literal "
  235. msgstr " Inserez un Literal "
  236. msgid " Press any key: "
  237. msgstr " Apăsaţi o tastă: "
  238. msgid " Execute Macro "
  239. msgstr " Execută Combinaţia "
  240. msgid "All charsets"
  241. msgstr ""
  242. #, fuzzy
  243. msgid "&Whole words"
  244. msgstr "&Doar cuvinte întregi "
  245. #, fuzzy
  246. msgid "In se&lection"
  247. msgstr "inversează selec&Ţia M-*"
  248. msgid "&Backwards"
  249. msgstr "în sens &Invers "
  250. msgid "case &Sensitive"
  251. msgstr "nu ignora &Majusculele"
  252. msgid " Enter replacement string:"
  253. msgstr " Introduceţi şirul de înlocuire:"
  254. msgid " Enter search string:"
  255. msgstr " Introduceţi şirul căutat:"
  256. #, fuzzy
  257. msgid "&Find all"
  258. msgstr "Caut fişier"
  259. msgid "Cancel"
  260. msgstr "Renunţă"
  261. msgid "&Skip"
  262. msgstr "&Sar"
  263. msgid "A&ll"
  264. msgstr "&Toate"
  265. msgid "&Replace"
  266. msgstr "&Înlocuieşte"
  267. msgid " Replace with: "
  268. msgstr " Înlocuieşte cu: "
  269. msgid " Confirm replace "
  270. msgstr " Confirmă înlocuirea"
  271. msgid "&Dismiss"
  272. msgstr "&Închide"
  273. #, c-format
  274. msgid ""
  275. "File \"%s\" is already being edited\n"
  276. "User: %s\n"
  277. "Process ID: %d"
  278. msgstr ""
  279. msgid "File locked"
  280. msgstr ""
  281. msgid "&Grab lock"
  282. msgstr ""
  283. msgid "&Ignore lock"
  284. msgstr ""
  285. msgid " About "
  286. msgstr " Despre "
  287. msgid ""
  288. "\n"
  289. " Cooledit v3.11.5\n"
  290. "\n"
  291. " Copyright (C) 1996 the Free Software Foundation\n"
  292. "\n"
  293. " A user friendly text editor written\n"
  294. " for the Midnight Commander.\n"
  295. msgstr ""
  296. "\n"
  297. " Cooledit v3.11.5\n"
  298. "\n"
  299. " Copyright (C) 1996 the Free Software Foundation\n"
  300. "\n"
  301. " Un editor de text scris pentru\n"
  302. " Midnight Commander.\n"
  303. msgid "&Open file..."
  304. msgstr "D&eschide cu..."
  305. msgid "&New C-n"
  306. msgstr "&Nou C-n"
  307. msgid "&Save F2"
  308. msgstr "&Salvează F2"
  309. msgid "Save &as... F12"
  310. msgstr "s&Alvează ca... F12"
  311. msgid "&Insert file... F15"
  312. msgstr "inserează &Fişier... F15"
  313. msgid "Copy to &file... C-f"
  314. msgstr "&Copiază în fişier... C-f"
  315. msgid "&User menu... F11"
  316. msgstr "&Meniu utilizator F11"
  317. msgid "A&bout... "
  318. msgstr "des&Pre... "
  319. msgid "&Quit F10"
  320. msgstr "&Ieşire F10"
  321. msgid "&New C-x k"
  322. msgstr "&Nou C-x k"
  323. msgid "Copy to &file... "
  324. msgstr "copiază în &Fişier... "
  325. #, fuzzy
  326. msgid "&Toggle mark F3"
  327. msgstr "in&Versează selecţia F3"
  328. #, fuzzy
  329. msgid "Mar&k columns S-F3"
  330. msgstr "se&Lectează coloanele S-F3"
  331. #, fuzzy
  332. msgid "Toggle &ins/overw Ins"
  333. msgstr "&Inserare/suprascriere Ins"
  334. #, fuzzy
  335. msgid "&Copy F5"
  336. msgstr "&Copiază F5"
  337. #, fuzzy
  338. msgid "&Move F6"
  339. msgstr "&Mută F6"
  340. #, fuzzy
  341. msgid "&Delete F8"
  342. msgstr "şter&Ge F8"
  343. #, fuzzy
  344. msgid "C&opy to clipfile C-Ins"
  345. msgstr "copiază în &Fişier... "
  346. #, fuzzy
  347. msgid "C&ut to clipfile S-Del"
  348. msgstr "&Du-te la linia... M-l"
  349. msgid "&Paste from clipfile S-Ins"
  350. msgstr ""
  351. #, fuzzy
  352. msgid "Toggle bookmar&k M-k"
  353. msgstr "in&Versează selecţia F3"
  354. #, fuzzy
  355. msgid "&Next bookmark M-j"
  356. msgstr "&Nou C-n"
  357. #, fuzzy
  358. msgid "Pre&v bookmark M-i"
  359. msgstr "Sor&tează... M-t"
  360. #, fuzzy
  361. msgid "&Flush bookmark M-o"
  362. msgstr "&Poşta... "
  363. #, fuzzy
  364. msgid "&Undo C-u"
  365. msgstr "&Anulează C-u"
  366. #, fuzzy
  367. msgid "&Beginning C-PgUp"
  368. msgstr "începu&T C-PgUp"
  369. #, fuzzy
  370. msgid "&End C-PgDn"
  371. msgstr "&Sfârşit C-PgDn"
  372. #, fuzzy
  373. msgid "C&opy to clipfile M-w"
  374. msgstr "&Du-te la linia... M-l"
  375. #, fuzzy
  376. msgid "C&ut to clipfile C-w"
  377. msgstr "&Du-te la linia... M-l"
  378. msgid "&Paste from clipfile C-y"
  379. msgstr ""
  380. #, fuzzy
  381. msgid "Toggle bookmar&k "
  382. msgstr "in&Versează selecţia F3"
  383. #, fuzzy
  384. msgid "&Next bookmark "
  385. msgstr "&Nou C-n"
  386. #, fuzzy
  387. msgid "Pre&v bookmark "
  388. msgstr "Sor&tează... M-t"
  389. #, fuzzy
  390. msgid "&Flush bookmark "
  391. msgstr "&Poşta... "
  392. msgid "&Search... F7"
  393. msgstr "&Caută... F7"
  394. msgid "Search &again F17"
  395. msgstr "caută din &Nou F17"
  396. msgid "&Replace... F4"
  397. msgstr "în&Locuieşte... F4"
  398. msgid "&Go to line... M-l"
  399. msgstr "&Du-te la linia... M-l"
  400. #, fuzzy
  401. msgid "Toggle li&ne state M-n"
  402. msgstr "in&Versează selecţia F3"
  403. msgid "Go to matching &bracket M-b"
  404. msgstr "d&U-te la paranteza pereche M-b"
  405. msgid "Find declaration A-Enter"
  406. msgstr ""
  407. msgid "Back from declaration M--"
  408. msgstr ""
  409. msgid "Forward to declaration M-+"
  410. msgstr ""
  411. #, fuzzy
  412. msgid "Encod&ing... M-e"
  413. msgstr "Sor&tează... M-t"
  414. msgid "Insert &literal... C-q"
  415. msgstr "inserează un &Literal... C-q"
  416. msgid "&Refresh screen C-l"
  417. msgstr "&Redesenează ecranul C-l"
  418. msgid "&Start record macro C-r"
  419. msgstr "înregistrează &Combinaţia C-r"
  420. msgid "&Finish record macro... C-r"
  421. msgstr "opreşte înre&Gistrarea C-r"
  422. msgid "&Execute macro... C-a, KEY"
  423. msgstr "&Execută combinaţia... C-a, TASTA"
  424. msgid "Delete macr&o... "
  425. msgstr "şterge com&Binaţia... "
  426. msgid "Insert &date/time "
  427. msgstr "inserează data/&Ora "
  428. msgid "Format p&aragraph M-p"
  429. msgstr "formatează p&Aragraful M-p"
  430. msgid "'ispell' s&pell check C-p"
  431. msgstr "corectare ortografică cu &Ispell C-p"
  432. msgid "Sor&t... M-t"
  433. msgstr "Sor&tează... M-t"
  434. msgid "Paste o&utput of... M-u"
  435. msgstr ""
  436. msgid "E&xternal Formatter F19"
  437. msgstr "Formatare E&xternă F19"
  438. msgid "&Mail... "
  439. msgstr "&Poşta... "
  440. msgid "&Execute macro... C-x e, KEY"
  441. msgstr "&Execută combinaţia... C-x e, TASTA"
  442. msgid "'ispell' s&pell check M-$"
  443. msgstr "corectare ortografică 'is&Pell' M-$"
  444. msgid "&General... "
  445. msgstr "&Generale... "
  446. msgid "&Save mode..."
  447. msgstr "Modul de &Salvare..."
  448. #, fuzzy
  449. msgid "Learn &Keys..."
  450. msgstr "învaţă &Tastele..."
  451. #, fuzzy
  452. msgid "Syntax &Highlighting..."
  453. msgstr "&Evidenţiere sintaxă"
  454. #, fuzzy
  455. msgid "S&yntax file"
  456. msgstr "editare fişier sintaxă"
  457. #, fuzzy
  458. msgid "&Menu file"
  459. msgstr "editare fişier &Meniuri"
  460. #, fuzzy
  461. msgid "Save setu&p"
  462. msgstr "&Salvează setările"
  463. msgid " File "
  464. msgstr " Fişier "
  465. msgid " Edit "
  466. msgstr " Editare "
  467. msgid " Sear/Repl "
  468. msgstr " Caut/Înloc "
  469. msgid " Command "
  470. msgstr " Comenzi "
  471. msgid " Options "
  472. msgstr " Opţiuni "
  473. msgid "Intuitive"
  474. msgstr "Intuitivă"
  475. msgid "Emacs"
  476. msgstr "Emacs"
  477. #, fuzzy
  478. msgid "User-defined"
  479. msgstr "definit de &Utilizator:"
  480. msgid "None"
  481. msgstr "Fără aranjare"
  482. msgid "Dynamic paragraphing"
  483. msgstr "Paragrafare automată"
  484. msgid "Type writer wrap"
  485. msgstr "Tip \"maşină de scris\""
  486. msgid "Word wrap line length: "
  487. msgstr "Lungimea max. a liniei: "
  488. msgid "Tab spacing: "
  489. msgstr "Mărimea tab-ului: "
  490. msgid "Cursor beyond end of line"
  491. msgstr ""
  492. #, fuzzy
  493. msgid "Pers&istent selection"
  494. msgstr "inversează selec&Ţia M-*"
  495. msgid "Synta&x highlighting"
  496. msgstr "&Evidenţiere sintaxă"
  497. msgid "Visible tabs"
  498. msgstr ""
  499. msgid "Visible trailing spaces"
  500. msgstr ""
  501. msgid "Save file &position"
  502. msgstr "Salvează fişierul şi &poziţia"
  503. msgid "Confir&m before saving"
  504. msgstr "&Confirmă înainte de a salva"
  505. msgid "Fill tabs with &spaces"
  506. msgstr "&Umple tab-urile cu spaţii"
  507. msgid "&Return does autoindent"
  508. msgstr "returul &Autoindentează"
  509. msgid "&Backspace through tabs"
  510. msgstr "şterge deodată &Tab-urile"
  511. msgid "&Fake half tabs"
  512. msgstr "&Simulează tab-urile 1/2"
  513. msgid "Wrap mode"
  514. msgstr "Mod de aranjare"
  515. msgid "Key emulation"
  516. msgstr "Emulare de taste"
  517. msgid " Editor options "
  518. msgstr " Opţiuni ale editorului "
  519. msgid "Help"
  520. msgstr "Ajutor"
  521. msgid "Save"
  522. msgstr "Salvează"
  523. msgid "Mark"
  524. msgstr "March."
  525. msgid "Replac"
  526. msgstr "Înloc."
  527. msgid "Copy"
  528. msgstr "Copiază"
  529. msgid "Move"
  530. msgstr "Mută"
  531. msgid "Delete"
  532. msgstr "Şterge"
  533. msgid "PullDn"
  534. msgstr "Meniu"
  535. msgid " Load syntax file "
  536. msgstr " Încarcă fişierul de sintaxă "
  537. #, c-format
  538. msgid ""
  539. " Cannot open file %s \n"
  540. " %s "
  541. msgstr ""
  542. " Nu pot deschide fişierul %s \n"
  543. " %s "
  544. #, c-format
  545. msgid " Error in file %s on line %d "
  546. msgstr " Eroare în fişierul %s la linia %d "
  547. msgid "&Set"
  548. msgstr "&Setez"
  549. msgid "S&kip"
  550. msgstr "S&ar"
  551. msgid "Set &all"
  552. msgstr "Set. &tot"
  553. msgid "owner"
  554. msgstr "propr."
  555. msgid "group"
  556. msgstr "grup"
  557. msgid "other"
  558. msgstr "alţii"
  559. msgid "On"
  560. msgstr "Pe"
  561. msgid "Flag"
  562. msgstr "Ind."
  563. msgid "Mode"
  564. msgstr "Mod"
  565. #, c-format
  566. msgid "%6d of %d"
  567. msgstr "%6d din %d"
  568. msgid " Chown advanced command "
  569. msgstr " Comanda chown avansată "
  570. #, c-format
  571. msgid ""
  572. " Cannot chmod \"%s\" \n"
  573. " %s "
  574. msgstr ""
  575. " Nu pot folosi chmod pt. \"%s\" \n"
  576. " %s "
  577. #, c-format
  578. msgid ""
  579. " Cannot chown \"%s\" \n"
  580. " %s "
  581. msgstr ""
  582. " Nu pot folosi chown pt. \"%s\" \n"
  583. " %s "
  584. msgid "Displays the current version"
  585. msgstr "Afişează versiunea curentă"
  586. msgid "Print data directory"
  587. msgstr "Arată datele directorului"
  588. msgid "Print last working directory to specified file"
  589. msgstr "Arată ultimul directorul curent în fişierul specificat"
  590. msgid "Enables subshell support (default)"
  591. msgstr "Activează suportul pentru subshell (implicit)"
  592. msgid "Disables subshell support"
  593. msgstr "Dezactivează suportul subshell"
  594. msgid "Log ftp dialog to specified file"
  595. msgstr "Înregistrează dialogul ftp în fişierul specificat"
  596. msgid "Set debug level"
  597. msgstr "Nivelul de depanare"
  598. msgid "Launches the file viewer on a file"
  599. msgstr "Lansează vizualizatorul de fişiere pe un fişier"
  600. msgid "Edits one file"
  601. msgstr "Editează un fişier"
  602. msgid "Forces xterm features"
  603. msgstr "Forţează facilităţile xterm"
  604. msgid "Disable mouse support in text version"
  605. msgstr "Dezactivează suportul de mouse în versiunea text"
  606. msgid "Tries to use termcap instead of terminfo"
  607. msgstr "Încearcă să utilizeze termcap în locul terminfo"
  608. msgid "To run on slow terminals"
  609. msgstr "Pentru a rula pe terminale încete"
  610. msgid "Use stickchars to draw"
  611. msgstr "Utilizează +, -, | pentru desenare"
  612. msgid "Resets soft keys on HP terminals"
  613. msgstr "Resetează tastele soft pe terminale HP"
  614. #, fuzzy
  615. msgid "Load definitions of key bindings from specified file"
  616. msgstr "Înregistrează dialogul ftp în fişierul specificat"
  617. msgid "Requests to run in black and white"
  618. msgstr "Cerere de rulare în alb/negru"
  619. msgid "Request to run in color mode"
  620. msgstr "Cerere de rulare în culori"
  621. msgid "Specifies a color configuration"
  622. msgstr "Specifică o configuraţie de culori"
  623. msgid "Show mc with specified skin"
  624. msgstr ""
  625. #. TRANSLATORS: don't translate keywords and names of colors
  626. #, fuzzy
  627. msgid ""
  628. "--colors KEYWORD={FORE},{BACK}\n"
  629. "\n"
  630. "{FORE} and {BACK} can be omitted, and the default will be used\n"
  631. "\n"
  632. "Keywords:\n"
  633. " Global: errors, reverse, gauge, input, viewunderline\n"
  634. " File display: normal, selected, marked, markselect\n"
  635. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  636. " errdhotfocus\n"
  637. " Menus: menu, menuhot, menusel, menuhotsel\n"
  638. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  639. " editlinestate\n"
  640. msgstr ""
  641. "--colors CHEIE={FAŢĂ},{FUNDAL}\n"
  642. "\n"
  643. "{FAŢĂ} şi/sau {FUNDAL} pot fi omise şi culorile standard vor fi folosite\n"
  644. "\n"
  645. "CHEI:\n"
  646. " Globale: errors, reverse, gauge, input\n"
  647. " Fişiere: normal, selected, marked, markselect\n"
  648. " Dialoguri: dnormal, dfocus, dhotnormal, dhotfocus\n"
  649. " Meniuri: menu, menuhot, menusel, menuhotsel\n"
  650. " Ajutor: helpnormal, helpitalic, helplink, helpslink\n"
  651. " Tip fişier: directory, executable, link, stalelink, device, special, "
  652. "core\n"
  653. "\n"
  654. "Culori:\n"
  655. " black, gray, red, brightred, green, brightgreen, brown,\n"
  656. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  657. " brightcyan, lightgray and white\n"
  658. "\n"
  659. #. TRANSLATORS: don't translate keywords and names of colors
  660. msgid ""
  661. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  662. "\n"
  663. "Colors:\n"
  664. " black, gray, red, brightred, green, brightgreen, brown,\n"
  665. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  666. " brightcyan, lightgray and white\n"
  667. "\n"
  668. msgstr ""
  669. #, fuzzy
  670. msgid "Color options"
  671. msgstr "Opţiuni de configurare"
  672. msgid "+number"
  673. msgstr "+număr"
  674. #, fuzzy
  675. msgid "[this_dir] [other_panel_dir]"
  676. msgstr "[opţiuni] [acest_dir] [celălalt_dir]\n"
  677. msgid "Set initial line number for the internal editor"
  678. msgstr "Numărul primei linii pentru editorul intern"
  679. msgid ""
  680. "\n"
  681. "Please send any bug reports (including the output of `mc -V')\n"
  682. "to mc-devel@gnome.org\n"
  683. msgstr ""
  684. "\n"
  685. "Vă rugăm semnalaţi orice eroare (inclusiv ale rezultatului comenzii 'mc -"
  686. "V')\n"
  687. "la adresa mc-devel@gnome.org\n"
  688. #, c-format
  689. msgid "GNU Midnight Commander %s\n"
  690. msgstr "GNU Midnight Commander %s\n"
  691. #, fuzzy
  692. msgid "Main options"
  693. msgstr " Opţiuni panou "
  694. #, fuzzy
  695. msgid "Terminal options"
  696. msgstr " Alte opţiuni "
  697. msgid " Background process error "
  698. msgstr " Eroare în procesul din fundal "
  699. msgid " Unknown error in child "
  700. msgstr " Eroare necunoscută în procesul copil "
  701. msgid " Child died unexpectedly "
  702. msgstr " Procesul copil s-a terminat în mod neaşteptat"
  703. msgid " Background protocol error "
  704. msgstr " Eroare în protocolul de fundal "
  705. msgid ""
  706. " Background process sent us a request for more arguments \n"
  707. " than we can handle. \n"
  708. msgstr ""
  709. " Un proces din fundal a trimis o cerere pentru mai multe argumente \n"
  710. " decât cele admise. \n"
  711. msgid "&Full file list"
  712. msgstr "listă de &Fişiere completă"
  713. msgid "&Brief file list"
  714. msgstr "listă &Scurtă de fişiere"
  715. msgid "&Long file list"
  716. msgstr "listă &Lungă de fişiere"
  717. msgid "&User defined:"
  718. msgstr "definit de &Utilizator:"
  719. msgid "Listing mode"
  720. msgstr "Mod de listare"
  721. msgid "user &Mini status"
  722. msgstr "&Mini status utilizator"
  723. msgid "&Reverse"
  724. msgstr "in&Vers"
  725. #, fuzzy
  726. msgid "Case sensi&tive"
  727. msgstr "nu ignora &Majusculele "
  728. msgid "Executable &first"
  729. msgstr ""
  730. msgid "Sort order"
  731. msgstr "Ordinea de sortare"
  732. msgid " Confirmation "
  733. msgstr " Confirmare "
  734. #, fuzzy
  735. msgid " confirm di&Rectory hotlist delete "
  736. msgstr "lista rapidă de di&Rectoare C-\\"
  737. msgid " confirm &Exit "
  738. msgstr " confirmă i&Eşirea "
  739. msgid " confirm e&Xecute "
  740. msgstr " confirmă e&Xecuţia "
  741. msgid " confirm o&Verwrite "
  742. msgstr " confirmă &Suprascrierea "
  743. msgid " confirm &Delete "
  744. msgstr " confirmă ş&Tergerea "
  745. #, fuzzy
  746. msgid "UTF-8 output"
  747. msgstr "Ieşire pe 8 biţi"
  748. msgid "Full 8 bits output"
  749. msgstr "Ieşire pe 8 biţi"
  750. msgid "ISO 8859-1"
  751. msgstr "ISO 8859-1"
  752. msgid "7 bits"
  753. msgstr "7 biţi"
  754. msgid "F&ull 8 bits input"
  755. msgstr "&Intrare pe 8 biţi"
  756. msgid " Display bits "
  757. msgstr " Biţi de afişare "
  758. msgid "Other 8 bit"
  759. msgstr "8 biţi"
  760. msgid "Input / display codepage:"
  761. msgstr "Intrare / cod de afişare:"
  762. msgid "&Select"
  763. msgstr "&Selectează "
  764. #, fuzzy
  765. msgid "Use passive mode over pro&xy"
  766. msgstr "Utilizează modul _pasiv"
  767. msgid "Use &passive mode"
  768. msgstr "Utilizează modul _pasiv"
  769. msgid "&Use ~/.netrc"
  770. msgstr "&Utilizează ~/.netrc"
  771. msgid "&Always use ftp proxy"
  772. msgstr "&Utilizează ftp-ul proxy"
  773. msgid "sec"
  774. msgstr "sec"
  775. msgid "ftpfs directory cache timeout:"
  776. msgstr "Cache-ul ftpfs expiră în:"
  777. msgid "ftp anonymous password:"
  778. msgstr "Parola pentru ftp anonim:"
  779. msgid "Timeout for freeing VFSs:"
  780. msgstr "VFS-urile expiră în:"
  781. msgid " Virtual File System Setting "
  782. msgstr " Setări ale Sistemului Virtual de Fişiere "
  783. msgid "cd"
  784. msgstr "cd"
  785. msgid "Quick cd"
  786. msgstr "Schimbare rapidă de director"
  787. msgid "Symbolic link filename:"
  788. msgstr "Numele legăturii simbolice:"
  789. msgid "Existing filename (filename symlink will point to):"
  790. msgstr "Fişier existent (către care va indica legătura):"
  791. msgid "Symbolic link"
  792. msgstr "Numele legăturii simbolice:"
  793. msgid "Running "
  794. msgstr "Execut "
  795. msgid "Stopped"
  796. msgstr "Oprit"
  797. msgid "&Stop"
  798. msgstr "O&preşte"
  799. msgid "&Resume"
  800. msgstr "&Reia"
  801. msgid "&Kill"
  802. msgstr "&Omoară"
  803. msgid "Background Jobs"
  804. msgstr "Sarcini de Fundal"
  805. msgid "Domain:"
  806. msgstr "Domeniu:"
  807. msgid "Username:"
  808. msgstr "Nume proprietar:"
  809. msgid "Password:"
  810. msgstr "Parola:"
  811. #, c-format
  812. msgid "Password for \\\\%s\\%s"
  813. msgstr "Parola pentru \\\\%s\\%s"
  814. #, c-format
  815. msgid "Warning: file %s not found\n"
  816. msgstr "Atenţie: nu am găsit fişierul %s\n"
  817. msgid "7-bit ASCII"
  818. msgstr ""
  819. #, c-format
  820. msgid "Cannot translate from %s to %s"
  821. msgstr "Nu pot face trecerea din %s în %s "
  822. msgid "execute/search by others"
  823. msgstr "execuţie/căutare de alţii"
  824. msgid "write by others"
  825. msgstr "scriere de alţii"
  826. msgid "read by others"
  827. msgstr "citire de alţii"
  828. msgid "execute/search by group"
  829. msgstr "execuţie/căutare de grup"
  830. msgid "write by group"
  831. msgstr "scriere de grup"
  832. msgid "read by group"
  833. msgstr "citire de grup"
  834. msgid "execute/search by owner"
  835. msgstr "execuţie/căutare de propr."
  836. msgid "write by owner"
  837. msgstr "scriere de proprietar"
  838. msgid "read by owner"
  839. msgstr "citire de proprietar"
  840. msgid "sticky bit"
  841. msgstr "bitul de ţintuire (sticky)"
  842. msgid "set group ID on execution"
  843. msgstr "setez ID grup la execuţie"
  844. msgid "set user ID on execution"
  845. msgstr "setez ID propr. la exec."
  846. msgid "C&lear marked"
  847. msgstr "Şter&g marc."
  848. msgid "S&et marked"
  849. msgstr "Set. &marc."
  850. msgid "&Marked all"
  851. msgstr "&Tot marc."
  852. msgid "Name"
  853. msgstr "Nume"
  854. msgid "Permissions (Octal)"
  855. msgstr "Drepturi (Octal)"
  856. msgid "Owner name"
  857. msgstr "Numele proprietarului"
  858. msgid "Group name"
  859. msgstr "Numele grupului"
  860. msgid "Use SPACE to change"
  861. msgstr "Apăsaţi SPAŢIU pentru"
  862. msgid "an option, ARROW KEYS"
  863. msgstr "schimbarea unei opţiuni,"
  864. msgid "to move between options"
  865. msgstr "SĂGEŢILE pentru navigare"
  866. msgid "and T or INS to mark"
  867. msgstr "şi T sau INS pentru marcare"
  868. msgid " Permission "
  869. msgstr " Drepturi "
  870. msgid "Chmod command"
  871. msgstr "Comanda chmod"
  872. msgid "Set &users"
  873. msgstr "Setează &utilizatori"
  874. msgid "Set &groups"
  875. msgstr "Setează &grupuri"
  876. msgid " Name "
  877. msgstr " Nume "
  878. msgid " Owner name "
  879. msgstr " Nume proprietar "
  880. msgid " Group name "
  881. msgstr " Nume grup "
  882. msgid " Size "
  883. msgstr " Mărime "
  884. msgid " User name "
  885. msgstr " Nume proprietar "
  886. msgid " Chown command "
  887. msgstr " Comanda chown "
  888. msgid "<Unknown user>"
  889. msgstr "<Utiliz. necun.>"
  890. msgid "<Unknown group>"
  891. msgstr "<Grup necun.>"
  892. msgid "Files tagged, want to cd?"
  893. msgstr "Există fişiere marcate, doriţi să schimbaţi directorul?"
  894. msgid "Cannot change directory"
  895. msgstr "Nu pot deschide directorul %s"
  896. msgid " View file "
  897. msgstr " Vizualizare fişier "
  898. msgid " Filename:"
  899. msgstr " Nume fişier:"
  900. msgid " Filtered view "
  901. msgstr " Vizualizare filtrată "
  902. msgid " Filter command and arguments:"
  903. msgstr " Introduceţi argumente suplimentare:"
  904. msgid "Create a new Directory"
  905. msgstr "Creează un nou Director"
  906. msgid " Enter directory name:"
  907. msgstr " Introduceţi numele directorului:"
  908. msgid " Filter "
  909. msgstr " Filtru "
  910. msgid " Set expression for filtering filenames"
  911. msgstr " Introduceţi expresia pentru filtrarea numelor fişierelor"
  912. msgid "&Using shell patterns"
  913. msgstr "&Utilizez \"shell patterns\""
  914. #, fuzzy
  915. msgid "&Case sensitive"
  916. msgstr "nu ignora &Majusculele "
  917. #, fuzzy
  918. msgid "&Files only"
  919. msgstr "&Doar mărime"
  920. msgid " Select "
  921. msgstr " Selectează "
  922. msgid " Unselect "
  923. msgstr " Deselectează "
  924. msgid "Extension file edit"
  925. msgstr "Editează fişierul de extensii"
  926. msgid " Which extension file you want to edit? "
  927. msgstr " Care fişier de extensii doriţi să îl editaţi? "
  928. msgid "Highlighting groups file edit"
  929. msgstr ""
  930. #, fuzzy
  931. msgid " Which highlighting file you want to edit? "
  932. msgstr " Care fişier de extensii doriţi să îl editaţi? "
  933. msgid " Compare directories "
  934. msgstr " Compar directoarele "
  935. msgid " Select compare method: "
  936. msgstr " Alegeţi metoda de comparare: "
  937. msgid "&Quick"
  938. msgstr "&Rapidă"
  939. msgid "&Size only"
  940. msgstr "&Doar mărime"
  941. msgid "&Thorough"
  942. msgstr "&Completă"
  943. msgid " Both panels should be in the listing mode to use this command "
  944. msgstr "Ambele panouri ar trebui să fie în mod listă pentru această comandă "
  945. msgid ""
  946. " Not an xterm or Linux console; \n"
  947. " the panels cannot be toggled. "
  948. msgstr ""
  949. " Nu este un xterm sau o consolă Linux; \n"
  950. " panourile nu pot fi inversate. "
  951. #, c-format
  952. msgid "Link %s to:"
  953. msgstr "Leagă %s de:"
  954. msgid " Link "
  955. msgstr " Legătură "
  956. #, c-format
  957. msgid " link: %s "
  958. msgstr " legătură: %s "
  959. #, c-format
  960. msgid " symlink: %s "
  961. msgstr " legătură simbolică: %s "
  962. #, c-format
  963. msgid " Symlink `%s' points to: "
  964. msgstr " Legătura simbolică `%s' indică: "
  965. msgid " Edit symlink "
  966. msgstr " Editare legătură simbolică "
  967. #, c-format
  968. msgid " edit symlink, unable to remove %s: %s "
  969. msgstr " editare legătură simbolică, nu am putut să elimin %s: %s "
  970. #, c-format
  971. msgid " edit symlink: %s "
  972. msgstr " editare legătură simbolică: %s "
  973. #, c-format
  974. msgid "`%s' is not a symbolic link"
  975. msgstr "`%s' nu este o legătură simbolică"
  976. #, c-format
  977. msgid " Cannot chdir to %s "
  978. msgstr " Nu pot schimba directorul la %s "
  979. msgid " Enter machine name (F1 for details): "
  980. msgstr " Introduceţi numele serverului (F1 pentru detalii): "
  981. msgid " Link to a remote machine "
  982. msgstr " Legătură la un server la distanţă "
  983. msgid " FTP to machine "
  984. msgstr " FTP către serverul "
  985. msgid " Shell link to machine "
  986. msgstr " Conexiune shell la serverul "
  987. msgid " SMB link to machine "
  988. msgstr " Legătură SMB către serverul "
  989. msgid " Undelete files on an ext2 file system "
  990. msgstr " Recuperează fişiere pe un sistem de fişiere ext2 "
  991. msgid ""
  992. " Enter device (without /dev/) to undelete\n"
  993. " files on: (F1 for details)"
  994. msgstr ""
  995. " Introduceţi perifericul (făra /dev/) pentru\n"
  996. " recuperare: (F1 pentru detalii)"
  997. msgid " Setup "
  998. msgstr " Configurare "
  999. #, fuzzy, c-format
  1000. msgid " Setup saved to ~/%s"
  1001. msgstr " Configuraţia salvată în ~/"
  1002. #, c-format
  1003. msgid ""
  1004. " Cannot chdir to \"%s\" \n"
  1005. " %s "
  1006. msgstr ""
  1007. " Nu pot face chdir în \"%s\" \n"
  1008. " %s "
  1009. msgid " Cannot execute commands on non-local filesystems"
  1010. msgstr " Nu puteţi executa comenzi pe sisteme de fişiere non-locale "
  1011. msgid " The shell is already running a command "
  1012. msgstr " Shell-ul deja execută o altă comandă "
  1013. msgid "Cannot read directory contents"
  1014. msgstr "Nu pot citi conţinutul directorului"
  1015. msgid ""
  1016. " The Commander can't change to the directory that \n"
  1017. " the subshell claims you are in. Perhaps you have \n"
  1018. " deleted your working directory, or given yourself \n"
  1019. " extra access permissions with the \"su\" command? "
  1020. msgstr ""
  1021. " Commander-ul nu poate să schimbe în directorul în care \n"
  1022. " subshell-ul susţine că sunteţi. Probabil că aţi şters \n"
  1023. " directorul de lucru sau v-aţi dat drepturi adiţionale \n"
  1024. " de acces folosind comanda \"su\". "
  1025. #, c-format
  1026. msgid "Press any key to continue..."
  1027. msgstr "Apăsaţi o tastă pentru a continua..."
  1028. #, c-format
  1029. msgid "Type `exit' to return to the Midnight Commander"
  1030. msgstr "Tastaţi `exit' pentru a reveni în Midnight Commander"
  1031. #, c-format
  1032. msgid " Cannot fetch a local copy of %s "
  1033. msgstr " Nu pot aduce o copie locală a %s "
  1034. #, c-format
  1035. msgid ""
  1036. " Cannot create temporary command file \n"
  1037. " %s "
  1038. msgstr ""
  1039. " Nu pot crea un fişier temporar de comenzi \n"
  1040. " %s "
  1041. msgid " Parameter "
  1042. msgstr " Parametru "
  1043. #, fuzzy, c-format
  1044. msgid " %s%s file error"
  1045. msgstr " eroare fişier "
  1046. #, fuzzy, c-format
  1047. msgid ""
  1048. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1049. "the installation failed. Please fetch a fresh copy from the Midnight "
  1050. "Commander package."
  1051. msgstr ""
  1052. "Formatul fişierului mc.ext\n"
  1053. "s-a schimbat începând cu versiunea 3.0. Instalarea\n"
  1054. "a eşuat. Copiaţi versiunea nouă din sursele sau\n"
  1055. "pachetul de instalare Midnight Commander."
  1056. #, fuzzy, c-format
  1057. msgid " ~/%s file error "
  1058. msgstr " eroare fişier "
  1059. #, c-format
  1060. msgid ""
  1061. "The format of the ~/%s file has changed with version 3.0. You may either "
  1062. "want to copy it from %smc.ext or use that file as an example of how to write "
  1063. "it."
  1064. msgstr ""
  1065. msgid " Copy "
  1066. msgstr " Copiază "
  1067. msgid " Move "
  1068. msgstr " Mută "
  1069. msgid " Delete "
  1070. msgstr " Şterge "
  1071. msgid " Cannot make the hardlink "
  1072. msgstr " Nu pot crea legătura reală "
  1073. #, c-format
  1074. msgid ""
  1075. " Cannot read source link \"%s\" \n"
  1076. " %s "
  1077. msgstr ""
  1078. " Nu pot citi legătura sursă \"%s\" \n"
  1079. " %s "
  1080. msgid ""
  1081. " Cannot make stable symlinks across non-local filesystems: \n"
  1082. "\n"
  1083. " Option Stable Symlinks will be disabled "
  1084. msgstr ""
  1085. " Nu pot crea legături simbolice stabile pe sisteme de fişiere non-locale: \n"
  1086. "\n"
  1087. " Opţiunea Legături Simbolice Stabile va fi dezactivată "
  1088. #, c-format
  1089. msgid ""
  1090. " Cannot create target symlink \"%s\" \n"
  1091. " %s "
  1092. msgstr ""
  1093. " Nu pot crea legătura simbolică ţintă \"%s\" \n"
  1094. " %s "
  1095. msgid "&Abort"
  1096. msgstr "&Întrerup"
  1097. #, c-format
  1098. msgid ""
  1099. " Cannot overwrite directory \"%s\" \n"
  1100. " %s "
  1101. msgstr ""
  1102. " Nu pot suprascrie directorul \"%s\" \n"
  1103. " %s "
  1104. #, c-format
  1105. msgid ""
  1106. " Cannot stat source file \"%s\" \n"
  1107. " %s "
  1108. msgstr ""
  1109. " Nu pot executa stat pe fişierul sursă \"%s\" \n"
  1110. " %s "
  1111. #, fuzzy, c-format
  1112. msgid ""
  1113. " `%s' \n"
  1114. " and \n"
  1115. " `%s' \n"
  1116. " are the same file "
  1117. msgstr " `%s' şi `%s' sunt acelaşi fişier "
  1118. #, c-format
  1119. msgid ""
  1120. " Cannot create special file \"%s\" \n"
  1121. " %s "
  1122. msgstr ""
  1123. " Nu pot crea fişierul special \"%s\" \n"
  1124. " %s "
  1125. #, c-format
  1126. msgid ""
  1127. " Cannot chown target file \"%s\" \n"
  1128. " %s "
  1129. msgstr ""
  1130. " Nu pot executa chown pe fişierul ţintă \"%s\" \n"
  1131. " %s "
  1132. #, c-format
  1133. msgid ""
  1134. " Cannot chmod target file \"%s\" \n"
  1135. " %s "
  1136. msgstr ""
  1137. " Nu pot executa chmod pe fişierul ţintă \"%s\" \n"
  1138. " %s "
  1139. #, c-format
  1140. msgid ""
  1141. " Cannot open source file \"%s\" \n"
  1142. " %s "
  1143. msgstr ""
  1144. " Nu pot deschide fişierul sursă \"%s\" \n"
  1145. " %s "
  1146. msgid " Reget failed, about to overwrite file "
  1147. msgstr " Readucerea a eşuat, urmează suprascrierea fişierului "
  1148. #, c-format
  1149. msgid ""
  1150. " Cannot fstat source file \"%s\" \n"
  1151. " %s "
  1152. msgstr ""
  1153. " Nu pot executa fstat pe fişierul sursă \"%s\" \n"
  1154. " %s "
  1155. #, c-format
  1156. msgid ""
  1157. " Cannot create target file \"%s\" \n"
  1158. " %s "
  1159. msgstr ""
  1160. " Nu pot crea fişierul ţintă \"%s\" \n"
  1161. " %s "
  1162. #, c-format
  1163. msgid ""
  1164. " Cannot fstat target file \"%s\" \n"
  1165. " %s "
  1166. msgstr ""
  1167. " Nu pot executa fstat pe fişierul ţintă \"%s\" \n"
  1168. " %s "
  1169. #, c-format
  1170. msgid ""
  1171. " Cannot read source file \"%s\" \n"
  1172. " %s "
  1173. msgstr ""
  1174. " Nu pot citi fişierul sursă \"%s\" \n"
  1175. " %s "
  1176. #, c-format
  1177. msgid ""
  1178. " Cannot write target file \"%s\" \n"
  1179. " %s "
  1180. msgstr ""
  1181. " Nu pot scrie fişierul ţintă \"%s\" \n"
  1182. " %s "
  1183. msgid "(stalled)"
  1184. msgstr "(oprit)"
  1185. #, c-format
  1186. msgid ""
  1187. " Cannot close source file \"%s\" \n"
  1188. " %s "
  1189. msgstr ""
  1190. " Nu pot închide fişierul sursă \"%s\" \n"
  1191. " %s "
  1192. #, c-format
  1193. msgid ""
  1194. " Cannot close target file \"%s\" \n"
  1195. " %s "
  1196. msgstr ""
  1197. " Nu pot închide fişierul ţintă \"%s\" \n"
  1198. " %s "
  1199. msgid "Incomplete file was retrieved. Keep it?"
  1200. msgstr "Fişierul a fost transferat incomplet. Îl păstrez?"
  1201. msgid "&Delete"
  1202. msgstr "&Şterge"
  1203. msgid "&Keep"
  1204. msgstr "&Păstrează"
  1205. #, c-format
  1206. msgid ""
  1207. " Cannot stat source directory \"%s\" \n"
  1208. " %s "
  1209. msgstr ""
  1210. " Nu pot executa stat pe fişierul sursă \"%s\" \n"
  1211. " %s "
  1212. #, c-format
  1213. msgid ""
  1214. " Source \"%s\" is not a directory \n"
  1215. " %s "
  1216. msgstr ""
  1217. " Directorul sursă \"%s\" nu este un director\n"
  1218. " %s "
  1219. #, c-format
  1220. msgid ""
  1221. " Cannot copy cyclic symbolic link \n"
  1222. " `%s' "
  1223. msgstr ""
  1224. " Nu pot copia o legătură simbolică ciclică \n"
  1225. " `%s' "
  1226. #, c-format
  1227. msgid ""
  1228. " Destination \"%s\" must be a directory \n"
  1229. " %s "
  1230. msgstr ""
  1231. " Destinaţia \"%s\" trebuie să fie un director\n"
  1232. " %s "
  1233. #, c-format
  1234. msgid ""
  1235. " Cannot create target directory \"%s\" \n"
  1236. " %s "
  1237. msgstr ""
  1238. " Nu pot crea directorul ţintă \"%s\" \n"
  1239. " %s "
  1240. #, c-format
  1241. msgid ""
  1242. " Cannot chown target directory \"%s\" \n"
  1243. " %s "
  1244. msgstr ""
  1245. " Nu pot executa chown pe directorul ţintă \"%s\" \n"
  1246. " %s "
  1247. #, c-format
  1248. msgid ""
  1249. " Cannot stat file \"%s\" \n"
  1250. " %s "
  1251. msgstr ""
  1252. " Nu pot executa stat pe fişierul \"%s\" \n"
  1253. " %s "
  1254. #, c-format
  1255. msgid " Cannot overwrite directory `%s' "
  1256. msgstr " Nu pot suprascrie directorul `%s' "
  1257. #, c-format
  1258. msgid ""
  1259. " Cannot move file \"%s\" to \"%s\" \n"
  1260. " %s "
  1261. msgstr ""
  1262. " Nu pot muta fişierul \"%s\" în \"%s\" \n"
  1263. " %s "
  1264. #, c-format
  1265. msgid ""
  1266. " Cannot remove file \"%s\" \n"
  1267. " %s "
  1268. msgstr ""
  1269. " Nu pot şterge fişierul \"%s\" \n"
  1270. " %s "
  1271. #, fuzzy, c-format
  1272. msgid ""
  1273. " `%s' \n"
  1274. " and \n"
  1275. " `%s' \n"
  1276. " are the same directory "
  1277. msgstr " `%s' şi `%s' sunt acelaşi director "
  1278. #, c-format
  1279. msgid " Cannot overwrite directory \"%s\" %s "
  1280. msgstr " Nu pot suprascrie directorul \"%s\" %s "
  1281. #, c-format
  1282. msgid " Cannot overwrite file \"%s\" %s "
  1283. msgstr " Nu pot suprascrie fişierul \"%s\" %s "
  1284. #, c-format
  1285. msgid ""
  1286. " Cannot move directory \"%s\" to \"%s\" \n"
  1287. " %s "
  1288. msgstr ""
  1289. " Nu pot muta directorul \"%s\" în \"%s\" \n"
  1290. " %s "
  1291. #, c-format
  1292. msgid ""
  1293. " Cannot delete file \"%s\" \n"
  1294. " %s "
  1295. msgstr ""
  1296. " Nu pot şterge fişierul \"%s\" \n"
  1297. " %s "
  1298. #, c-format
  1299. msgid ""
  1300. " Cannot remove directory \"%s\" \n"
  1301. " %s "
  1302. msgstr ""
  1303. " Nu pot şterge directorul \"%s\" \n"
  1304. " %s "
  1305. #, fuzzy
  1306. msgid "Directory scanning"
  1307. msgstr "Calea directorului"
  1308. msgid "1Copy"
  1309. msgstr "1Copiază"
  1310. msgid "1Move"
  1311. msgstr "1Mută"
  1312. msgid "1Delete"
  1313. msgstr "1Şterge"
  1314. #, no-c-format
  1315. msgid "%o %f \"%s\"%m"
  1316. msgstr "%o %f \"%s\"%m"
  1317. #, no-c-format
  1318. msgid "%o %d %f%m"
  1319. msgstr "%o %d %f%m"
  1320. msgid "file"
  1321. msgstr "fişierul"
  1322. msgid "files"
  1323. msgstr "fişiere"
  1324. msgid "directory"
  1325. msgstr "director"
  1326. msgid "directories"
  1327. msgstr "directoare"
  1328. msgid "files/directories"
  1329. msgstr "fişiere/directoare"
  1330. msgid " with source mask:"
  1331. msgstr " cu mască sursă:"
  1332. msgid " to:"
  1333. msgstr " către:"
  1334. msgid " Cannot operate on \"..\"! "
  1335. msgstr " Nu pot opera pe \"..\"! "
  1336. msgid " Sorry, I could not put the job in background "
  1337. msgstr " Scuze, nu am putut trimite operaţiunea în fundal "
  1338. msgid "&Retry"
  1339. msgstr "&Reîncerc"
  1340. msgid ""
  1341. "\n"
  1342. " Directory not empty. \n"
  1343. " Delete it recursively? "
  1344. msgstr ""
  1345. "\n"
  1346. " Directorul nu este gol.\n"
  1347. " Îl şterg recursiv? "
  1348. msgid ""
  1349. "\n"
  1350. " Background process: Directory not empty \n"
  1351. " Delete it recursively? "
  1352. msgstr ""
  1353. "\n"
  1354. " Procesul din fundal: Directorul nu este gol\n"
  1355. " Îl şterg recursiv? "
  1356. msgid " Delete: "
  1357. msgstr " Şterg: "
  1358. msgid "Non&e"
  1359. msgstr "&Niciunul"
  1360. #, c-format
  1361. msgid "ETA %d:%02d.%02d"
  1362. msgstr "ETA %d:%02d.%02d"
  1363. #, c-format
  1364. msgid "%.2f MB/s"
  1365. msgstr "%.2f MB/"
  1366. #, c-format
  1367. msgid "%.2f KB/s"
  1368. msgstr "%.2f KB/"
  1369. #, c-format
  1370. msgid "%ld B/s"
  1371. msgstr "%ld B/"
  1372. msgid "File"
  1373. msgstr " Fişier"
  1374. msgid "Count"
  1375. msgstr "Număr"
  1376. msgid "Bytes"
  1377. msgstr "Bytes"
  1378. msgid "Source"
  1379. msgstr "Sursă"
  1380. msgid "Target"
  1381. msgstr "Ţintă"
  1382. msgid "Deleting"
  1383. msgstr "Ştergere"
  1384. #, fuzzy
  1385. msgid "Target file already exists!"
  1386. msgstr "Fişierul ţintă \"%s\" există deja!"
  1387. #, fuzzy, c-format
  1388. msgid "Source date: %s, size %llu"
  1389. msgstr "Data sursei : %s, mărime %llu"
  1390. #, fuzzy, c-format
  1391. msgid "Target date: %s, size %llu"
  1392. msgstr "Data ţintei: %s, mărime %llu"
  1393. #, fuzzy, c-format
  1394. msgid "Source date: %s, size %u"
  1395. msgstr "Data sursei : %s, mărime %u"
  1396. #, fuzzy, c-format
  1397. msgid "Target date: %s, size %u"
  1398. msgstr "Data ţintei: %s, mărime %u"
  1399. msgid "If &size differs"
  1400. msgstr "dacă mă&Rimea diferă"
  1401. msgid "&Update"
  1402. msgstr "cele &Vechi"
  1403. msgid "Overwrite all targets?"
  1404. msgstr "Suprascriu toate desinaţiile?"
  1405. msgid "&Reget"
  1406. msgstr "&Readuc"
  1407. msgid "A&ppend"
  1408. msgstr "adau&G"
  1409. msgid "Overwrite this target?"
  1410. msgstr "Suprascriu această ţintă?"
  1411. msgid " File exists "
  1412. msgstr " Fişierul există "
  1413. msgid " Background process: File exists "
  1414. msgstr " Procesul din fundal: Fişierul există "
  1415. msgid "&Background"
  1416. msgstr "&Fundal"
  1417. msgid "&Stable Symlinks"
  1418. msgstr "Legături simbolice &Stabile"
  1419. #, fuzzy
  1420. msgid "di&Ve into subdir if exists"
  1421. msgstr "&Intru în subdirector dacă există"
  1422. msgid "preserve &Attributes"
  1423. msgstr "păstrez &Atributele"
  1424. msgid "follow &Links"
  1425. msgstr "urmez &Legăturile"
  1426. msgid "to:"
  1427. msgstr "către:"
  1428. #, fuzzy, c-format
  1429. msgid "Invalid source pattern `%s'"
  1430. msgstr ""
  1431. " Model de sursă invalid \"%s\" \n"
  1432. " %s "
  1433. msgid "&Suspend"
  1434. msgstr "&Suspendare"
  1435. msgid "Con&tinue"
  1436. msgstr "Con&tinuă"
  1437. msgid "&Chdir"
  1438. msgstr "&Chdir"
  1439. msgid "&Again"
  1440. msgstr "&Din nou"
  1441. msgid "&Quit"
  1442. msgstr "&Ieşire"
  1443. msgid "Pane&lize"
  1444. msgstr "Pane&lizare"
  1445. msgid "&View - F3"
  1446. msgstr "&Vizualizare - F3"
  1447. msgid "&Edit - F4"
  1448. msgstr "&Editare - F4"
  1449. #, c-format
  1450. msgid "Found: %ld"
  1451. msgstr ""
  1452. #, fuzzy
  1453. msgid " Malformed regular expression "
  1454. msgstr " Expresie regulară greşită "
  1455. #, fuzzy
  1456. msgid "Cas&e sensitive"
  1457. msgstr "nu ignora &Majusculele "
  1458. msgid "&Find recursively"
  1459. msgstr ""
  1460. msgid "S&kip hidden"
  1461. msgstr ""
  1462. msgid "&All charsets"
  1463. msgstr ""
  1464. #, fuzzy
  1465. msgid "Case sens&itive"
  1466. msgstr "nu ignora &Majusculele "
  1467. #, fuzzy
  1468. msgid "Re&gular expression"
  1469. msgstr "&Expresie regulară "
  1470. msgid "Fir&st hit"
  1471. msgstr ""
  1472. msgid "All cha&rsets"
  1473. msgstr ""
  1474. msgid "&Tree"
  1475. msgstr "&Arbore"
  1476. msgid "Find File"
  1477. msgstr "Caut fişier"
  1478. #, fuzzy
  1479. msgid "Content:"
  1480. msgstr "Conţinut: "
  1481. #, fuzzy
  1482. msgid "File name:"
  1483. msgstr "Nume fişier:"
  1484. msgid "Start at:"
  1485. msgstr "Încep la:"
  1486. #, c-format
  1487. msgid "Grepping in %s"
  1488. msgstr "Caut în %s"
  1489. msgid "Finished"
  1490. msgstr "Terminat"
  1491. #, c-format
  1492. msgid "Searching %s"
  1493. msgstr "Caut %s"
  1494. msgid "Searching"
  1495. msgstr "Caut"
  1496. msgid " Help file format error\n"
  1497. msgstr "Eroare în formatul fişierului de ajutor\n"
  1498. msgid " Internal bug: Double start of link area "
  1499. msgstr " Eroare internă: Start dublu al zonei de legătură "
  1500. #, c-format
  1501. msgid " Cannot find node %s in help file "
  1502. msgstr " Nu găsesc nodul %s în fişierul de ajutor "
  1503. msgid "Index"
  1504. msgstr "Index"
  1505. msgid "Prev"
  1506. msgstr "Înapoi"
  1507. msgid "&Move"
  1508. msgstr "&Mută"
  1509. msgid "&Remove"
  1510. msgstr "Ş&Terge"
  1511. msgid "&Append"
  1512. msgstr "&Adaugă"
  1513. msgid "&Insert"
  1514. msgstr "&Inserează"
  1515. msgid "New &Entry"
  1516. msgstr "&Intrare nouă"
  1517. msgid "New &Group"
  1518. msgstr "&Grup nou"
  1519. msgid "&Up"
  1520. msgstr "&Sus"
  1521. msgid "&Add current"
  1522. msgstr "&Adaugă pe cel curent"
  1523. #, fuzzy
  1524. msgid "&Refresh"
  1525. msgstr "in&Vers"
  1526. msgid "Fr&ee VFSs now"
  1527. msgstr "&Goleşte VFS-urile"
  1528. msgid "Change &To"
  1529. msgstr "Schimbă &La"
  1530. msgid "Subgroup - press ENTER to see list"
  1531. msgstr "Subgrup - apăsaţi ENTER ca să vedeţi lista"
  1532. msgid "Active VFS directories"
  1533. msgstr "Directoare VFS active"
  1534. msgid "Directory hotlist"
  1535. msgstr "Lista rapidă de directoare"
  1536. msgid " Directory path "
  1537. msgstr " Calea directorului "
  1538. msgid " Directory label "
  1539. msgstr " Eticheta directorului "
  1540. #, c-format
  1541. msgid "Moving %s"
  1542. msgstr "Mut %s"
  1543. msgid "New hotlist entry"
  1544. msgstr "Intrare nouă în lista rapidă"
  1545. msgid "Directory label"
  1546. msgstr "Eticheta directorului"
  1547. msgid "Directory path"
  1548. msgstr "Calea directorului"
  1549. msgid " New hotlist group "
  1550. msgstr " Grup nou în lista rapidă "
  1551. msgid "Name of new group"
  1552. msgstr "Numele noului grup"
  1553. #, c-format
  1554. msgid "Label for \"%s\":"
  1555. msgstr "Eticheta pentru \"%s\":"
  1556. msgid " Add to hotlist "
  1557. msgstr " Adaugă la lista rapidă "
  1558. msgid " Remove: "
  1559. msgstr " Şterg: "
  1560. msgid ""
  1561. "\n"
  1562. " Are you sure you want to remove this entry?"
  1563. msgstr ""
  1564. msgid ""
  1565. "\n"
  1566. " Group not empty.\n"
  1567. " Remove it?"
  1568. msgstr ""
  1569. "\n"
  1570. " Grupul nu este gol.\n"
  1571. " Îl şterg totuşi?"
  1572. msgid " Top level group "
  1573. msgstr " Grupul părinte "
  1574. msgid " Hotlist Load "
  1575. msgstr " Încarc lista rapidă "
  1576. #, fuzzy, c-format
  1577. msgid ""
  1578. "MC was unable to write ~/%s file, your old hotlist entries were not deleted"
  1579. msgstr " fişier, intrările din vechea listă rapidă nu au fost şterse"
  1580. #, c-format
  1581. msgid "Midnight Commander %s"
  1582. msgstr "Comandant la miezul nopţii %s ;)"
  1583. #, c-format
  1584. msgid "File: %s"
  1585. msgstr "Fişier: %s"
  1586. #, c-format
  1587. msgid "Free nodes: %d (%d%%) of %d"
  1588. msgstr "N. libere: %d (%d%%) din %d"
  1589. msgid "No node information"
  1590. msgstr "Nu există informaţii despre noduri"
  1591. #, c-format
  1592. msgid "Free space: %s (%d%%) of %s"
  1593. msgstr "Spaţiu gol: %s (%d%%) în %s"
  1594. msgid "No space information"
  1595. msgstr "Nu există date despre spaţiul gol"
  1596. #, c-format
  1597. msgid "Type: %s "
  1598. msgstr "Tip: %s "
  1599. msgid "non-local vfs"
  1600. msgstr "vfs non-local"
  1601. #, c-format
  1602. msgid "Device: %s"
  1603. msgstr "Dispozit.: %s"
  1604. #, c-format
  1605. msgid "Filesystem: %s"
  1606. msgstr "Partiţie: %s"
  1607. #, c-format
  1608. msgid "Accessed: %s"
  1609. msgstr "Accesat: %s"
  1610. #, c-format
  1611. msgid "Modified: %s"
  1612. msgstr "Modificat: %s"
  1613. #. TRANSLATORS: "Status changed", like in the stat(2) man page
  1614. #, fuzzy, c-format
  1615. msgid "Status: %s"
  1616. msgstr "Creat: %s"
  1617. #, c-format
  1618. msgid "Dev. type: major %lu, minor %lu"
  1619. msgstr ""
  1620. #, c-format
  1621. msgid "Size: %s"
  1622. msgstr "Mărime: %s"
  1623. #, fuzzy, c-format
  1624. msgid " (%ld block)"
  1625. msgid_plural " (%ld blocks)"
  1626. msgstr[0] " (%ld blocuri)"
  1627. msgstr[1] " (%ld blocuri)"
  1628. #, c-format
  1629. msgid "Owner: %s/%s"
  1630. msgstr "Propr.: %s/%s"
  1631. #, c-format
  1632. msgid "Links: %d"
  1633. msgstr "Legături: %d"
  1634. #, c-format
  1635. msgid "Mode: %s (%04o)"
  1636. msgstr "Mod: %s (%04o)"
  1637. #, c-format
  1638. msgid "Location: %Xh:%Xh"
  1639. msgstr "Locaţie: %Xh:%Xh"
  1640. msgid "File: None"
  1641. msgstr "Fişier: Niciunul"
  1642. msgid "&Vertical"
  1643. msgstr "&Verticală"
  1644. msgid "&Horizontal"
  1645. msgstr "ori&Zontală"
  1646. msgid "show free sp&Ace"
  1647. msgstr ""
  1648. msgid "&Xterm window title"
  1649. msgstr "bară titlu &Xterm"
  1650. msgid "h&Intbar visible"
  1651. msgstr "bară ajutor v&Izibilă"
  1652. msgid "&Keybar visible"
  1653. msgstr "bară taste &Vizibilă"
  1654. msgid "command &Prompt"
  1655. msgstr "&Linie de comandă"
  1656. msgid "show &Mini status"
  1657. msgstr "arată &Mini status"
  1658. msgid "menu&Bar visible"
  1659. msgstr "&Bară meniu vizibilă"
  1660. msgid "&Equal split"
  1661. msgstr "împărţire &Egală"
  1662. msgid "pe&Rmissions"
  1663. msgstr "&Drepturi"
  1664. msgid "&File types"
  1665. msgstr "tipul &Fişierelor"
  1666. msgid " Panel split "
  1667. msgstr " Împărţire panou "
  1668. msgid " Highlight... "
  1669. msgstr " Evidenţiere... "
  1670. msgid " Other options "
  1671. msgstr " Alte opţiuni "
  1672. msgid "output lines"
  1673. msgstr "linii ieşire"
  1674. msgid "Layout"
  1675. msgstr "Aspect"
  1676. msgid "Learn keys"
  1677. msgstr "Învaţă tastele"
  1678. msgid " Teach me a key "
  1679. msgstr " Învaţă-mă o tastă "
  1680. #, c-format
  1681. msgid ""
  1682. "Please press the %s\n"
  1683. "and then wait until this message disappears.\n"
  1684. "\n"
  1685. "Then, press it again to see if OK appears\n"
  1686. "next to its button.\n"
  1687. "\n"
  1688. "If you want to escape, press a single Escape key\n"
  1689. "and wait as well."
  1690. msgstr ""
  1691. "Vă rog să apăsaţi %s\n"
  1692. "iar apoi să aşteptaţi până când mesajul dispare.\n"
  1693. "\n"
  1694. "Apoi, apăsaţi-o din nou pentru a vedea dacă apare OK\n"
  1695. "lângă butonul său.\n"
  1696. "\n"
  1697. "Dacă doriţi să ieşiţi, apăsaţi o singură dată tasta Escape\n"
  1698. "şi aşteptaţi."
  1699. msgid " Cannot accept this key "
  1700. msgstr " Nu pot accepta această tastă "
  1701. #, c-format
  1702. msgid " You have entered \"%s\""
  1703. msgstr " Aţi introdus \"%s\""
  1704. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  1705. msgid "OK"
  1706. msgstr "OK"
  1707. msgid ""
  1708. "It seems that all your keys already\n"
  1709. "work fine. That's great."
  1710. msgstr ""
  1711. "Se pare că toate tastele dvs. deja\n"
  1712. "funcţionează corect. Asta e excelent."
  1713. msgid "&Discard"
  1714. msgstr "&Anulează"
  1715. msgid ""
  1716. "Great! You have a complete terminal database!\n"
  1717. "All your keys work well."
  1718. msgstr ""
  1719. "Excelent! Aveţi o bază de date terminal completă!\n"
  1720. "Toate tastele dvs. funcţionează corect."
  1721. msgid "Press all the keys mentioned here. After you have done it, check"
  1722. msgstr "Apăsaţi toate tastele menţionate aici. După ce aţi făcut-o, veri-"
  1723. msgid "which keys are not marked with OK. Press space on the missing"
  1724. msgstr "ficaţi care nu sunt marcate cu OK. Apăsaţi SPAŢIU pe tasta lipsă,"
  1725. msgid "key, or click with the mouse to define it. Move around with Tab."
  1726. msgstr "sau daţi click cu mouse-ul pentru a o defini. Navigaţi cu Tab."
  1727. msgid " The Midnight Commander "
  1728. msgstr " Midnight Commander "
  1729. msgid " Do you really want to quit the Midnight Commander? "
  1730. msgstr " Vreţi într-adevăr să ieşiţi din Midnight Commander? "
  1731. msgid "&Listing mode..."
  1732. msgstr "mod de &Listare..."
  1733. msgid "&Quick view C-x q"
  1734. msgstr "&Vizualizare rapidă C-x q"
  1735. msgid "&Info C-x i"
  1736. msgstr "&Info C-x i"
  1737. msgid "&Sort order..."
  1738. msgstr "&Ordinea sortării..."
  1739. msgid "&Filter..."
  1740. msgstr "&Filtru..."
  1741. #, fuzzy
  1742. msgid "&Encoding... M-e"
  1743. msgstr "Sor&tează... M-t"
  1744. msgid "&Network link..."
  1745. msgstr "l&Egătură reţea..."
  1746. msgid "FT&P link..."
  1747. msgstr "legătură FT&P..."
  1748. msgid "S&hell link..."
  1749. msgstr "conexiune s&hell..."
  1750. msgid "SM&B link..."
  1751. msgstr "legătură SM&B..."
  1752. msgid "&Rescan C-r"
  1753. msgstr "&Re-scanează C-r"
  1754. msgid "&View F3"
  1755. msgstr "&Vizualizare F3"
  1756. msgid "Vie&w file... "
  1757. msgstr "vizualizare fi&Şier... "
  1758. msgid "&Filtered view M-!"
  1759. msgstr "vizualizare &Filtrată M-!"
  1760. msgid "&Edit F4"
  1761. msgstr "&Editare F4"
  1762. msgid "&Copy F5"
  1763. msgstr "&Copiază F5"
  1764. msgid "c&Hmod C-x c"
  1765. msgstr "c&Hmod C-x c"
  1766. msgid "&Link C-x l"
  1767. msgstr "&Legatură C-x l"
  1768. msgid "&SymLink C-x s"
  1769. msgstr "legătură &Simbolică C-x s"
  1770. msgid "edit s&Ymlink C-x C-s"
  1771. msgstr "edit. legăt. sim&Bolică C-x C-s"
  1772. msgid "ch&Own C-x o"
  1773. msgstr "ch&Own C-x o"
  1774. msgid "&Advanced chown "
  1775. msgstr "chown &Avansat "
  1776. msgid "&Rename/Move F6"
  1777. msgstr "&Redenumeşte/Mută F6"
  1778. msgid "&Mkdir F7"
  1779. msgstr "creează direc&Tor F7"
  1780. msgid "&Delete F8"
  1781. msgstr "şter&Ge F8"
  1782. msgid "&Quick cd M-c"
  1783. msgstr "c&D rapid M-c"
  1784. msgid "select &Group M-+"
  1785. msgstr "selecteaz&Ă grup M-+"
  1786. msgid "u&Nselect group M-\\"
  1787. msgstr "deselectea&Ză grup M-\\"
  1788. msgid "reverse selec&Tion M-*"
  1789. msgstr "inversează selec&Ţia M-*"
  1790. msgid "e&Xit F10"
  1791. msgstr "&Ieşire F10"
  1792. msgid "&User menu F2"
  1793. msgstr "meniu &Utilizator F2"
  1794. msgid "&Directory tree"
  1795. msgstr "arbore de &Directoare"
  1796. msgid "&Find file M-?"
  1797. msgstr "caută &Fişier M-?"
  1798. msgid "s&Wap panels C-u"
  1799. msgstr "&Schimbă panourile C-u"
  1800. msgid "switch &Panels on/off C-o"
  1801. msgstr "acti&Vează/dezactivează panourile C-o"
  1802. msgid "&Compare directories C-x d"
  1803. msgstr "&Compar directoarele C-x d"
  1804. msgid "e&Xternal panelize C-x !"
  1805. msgstr "panelare e&Xterioară C-x !"
  1806. msgid "show directory s&Izes"
  1807. msgstr "afi&Şează mărimea directoarelor"
  1808. #, fuzzy
  1809. msgid "Command &history M-h"
  1810. msgstr " Istoricul comenzilor "
  1811. msgid "di&Rectory hotlist C-\\"
  1812. msgstr "lista rapidă de di&Rectoare C-\\"
  1813. msgid "&Active VFS list C-x a"
  1814. msgstr "lista VFS-urilor &Active C-x a"
  1815. msgid "&Background jobs C-x j"
  1816. msgstr "sarcini de funda&L C-x j"
  1817. msgid "&Undelete files (ext2fs only)"
  1818. msgstr "rec&Uperare fişiere (doar ext2fs)"
  1819. msgid "&Listing format edit"
  1820. msgstr "Mod de listare"
  1821. msgid "Edit &extension file"
  1822. msgstr "editare fişier &Extensii"
  1823. msgid "Edit &menu file"
  1824. msgstr "editare fişier &Meniuri"
  1825. msgid "Edit hi&ghlighting group file"
  1826. msgstr ""
  1827. msgid "&Configuration..."
  1828. msgstr "&Configurare..."
  1829. msgid "&Layout..."
  1830. msgstr "&Aspect..."
  1831. msgid "c&Onfirmation..."
  1832. msgstr "c&Onfirmare..."
  1833. msgid "&Display bits..."
  1834. msgstr "&Biţi de afişare..."
  1835. msgid "learn &Keys..."
  1836. msgstr "învaţă &Tastele..."
  1837. msgid "&Virtual FS..."
  1838. msgstr "Sistem &Virtual de Fişiere..."
  1839. msgid "&Save setup"
  1840. msgstr "&Salvează setările"
  1841. msgid " &Above "
  1842. msgstr " &Deasupra "
  1843. msgid " &Left "
  1844. msgstr " &Stânga "
  1845. msgid " &File "
  1846. msgstr " &Fişiere "
  1847. msgid " &Command "
  1848. msgstr " &Comenzi "
  1849. msgid " &Options "
  1850. msgstr " &Opţiuni "
  1851. msgid " &Below "
  1852. msgstr " Dedesu&Bt "
  1853. msgid " &Right "
  1854. msgstr " &Dreapta "
  1855. msgid " Information "
  1856. msgstr " Informaţii "
  1857. msgid ""
  1858. " Using the fast reload option may not reflect the exact \n"
  1859. " directory contents. In this case you'll need to do a \n"
  1860. " manual reload of the directory. See the man page for \n"
  1861. " the details. "
  1862. msgstr ""
  1863. " Folosind opţiunea de reîncărcare rapidă a directoarelor \n"
  1864. " e posibil ca directorul curent să nu fie listat corect. \n"
  1865. " În acest caz va fi nevoie să faceţi o reîncărcare manu- \n"
  1866. " ală (Ctrl-R) a conţinutului directorului. Consultaţi \n"
  1867. " pagina man pentru mai multe detalii. "
  1868. msgid "Menu"
  1869. msgstr "Meniu"
  1870. msgid "The TERM environment variable is unset!\n"
  1871. msgstr "Variabila de mediu TERM nu este setată!\n"
  1872. msgid "&Fix it"
  1873. msgstr ""
  1874. msgid "don't ask again"
  1875. msgstr ""
  1876. msgid ""
  1877. "Chosen display charset (Settings->Display bits)\n"
  1878. "or source codeset (in mcedit ctrl-t) \n"
  1879. "does not match one set via locale. \n"
  1880. "Set correct codeset manually or press <<Fix it>> \n"
  1881. "to set locale default.\n"
  1882. "\n"
  1883. "Or set 'don't ask again' and press <<Skip>>"
  1884. msgstr ""
  1885. #, fuzzy, c-format
  1886. msgid "Cannot create %s directory"
  1887. msgstr "Nu pot deschide directorul %s"
  1888. msgid "safe de&Lete"
  1889. msgstr "şter&Ge în siguranţă"
  1890. msgid "cd follows lin&Ks"
  1891. msgstr "'cd' &Urmăreşte legăturile"
  1892. msgid "L&ynx-like motion"
  1893. msgstr "navigare în stil L&ynx"
  1894. msgid "rotatin&G dash"
  1895. msgstr "&Linie rotitoare"
  1896. msgid "co&Mplete: show all"
  1897. msgstr "auto-co&Mpletare: arată tot"
  1898. msgid "&Use internal view"
  1899. msgstr "&Vizualizare internă"
  1900. msgid "use internal ed&It"
  1901. msgstr "Editor &Intern"
  1902. msgid "auto m&Enus"
  1903. msgstr "arată m&Eniul la pornire"
  1904. msgid "&Auto save setup"
  1905. msgstr "auto-salvea&Ză opţiunile"
  1906. msgid "shell &Patterns"
  1907. msgstr "modele (&Pattern) shell"
  1908. msgid "Compute &Totals"
  1909. msgstr "calculează &Totalurile"
  1910. msgid "&Verbose operation"
  1911. msgstr "operaţii des&Criptive"
  1912. msgid "Mkdir autoname"
  1913. msgstr ""
  1914. msgid "&Fast dir reload"
  1915. msgstr "reîncarc&Ă dir. rapid"
  1916. msgid "mi&X all files"
  1917. msgstr "amestecă toate &Fişierele"
  1918. msgid "&Drop down menus"
  1919. msgstr "&Desfăşoară meniurile"
  1920. msgid "ma&Rk moves down"
  1921. msgstr "mută în &Jos la marcare"
  1922. msgid "show &Hidden files"
  1923. msgstr "arată fişierele &Ascunse"
  1924. msgid "show &Backup files"
  1925. msgstr "arată fişierele bac&Kup"
  1926. msgid "Use SI si&ze units"
  1927. msgstr ""
  1928. msgid "&Never"
  1929. msgstr "&Niciodată"
  1930. msgid "on dumb &Terminals"
  1931. msgstr "pe terminale non-linu&X"
  1932. msgid "Alwa&ys"
  1933. msgstr "&Întotdeauna"
  1934. msgid " Panel options "
  1935. msgstr " Opţiuni panou "
  1936. msgid " Pause after run... "
  1937. msgstr " Pauză după rulare... "
  1938. msgid "Configure options"
  1939. msgstr "Opţiuni de configurare"
  1940. msgid "&Add new"
  1941. msgstr "&Adaugă nou"
  1942. msgid "External panelize"
  1943. msgstr "Panelare externă"
  1944. msgid "Command"
  1945. msgstr "Comandă"
  1946. msgid "Other command"
  1947. msgstr "Alte comenzi"
  1948. msgid " Add to external panelize "
  1949. msgstr " Adaugă la panelarea externă "
  1950. msgid " Enter command label: "
  1951. msgstr " Introduceţi linia: "
  1952. msgid " Cannot run external panelize in a non-local directory "
  1953. msgstr ""
  1954. " Nu pot rula panelarea externă în timp ce sunt într-un director non-local "
  1955. msgid "Find rejects after patching"
  1956. msgstr "Caută reject-uri după patch-uire"
  1957. msgid "Find *.orig after patching"
  1958. msgstr "Caută fişierele *.orig după patching"
  1959. msgid "Find SUID and SGID programs"
  1960. msgstr "Caută programe SUID şi SGID"
  1961. msgid "Cannot invoke command."
  1962. msgstr "Nu pot invoca comanda."
  1963. msgid "Pipe close failed"
  1964. msgstr "Închiderea filtrului a eşuat"
  1965. msgid "[dev]"
  1966. msgstr ""
  1967. msgid "UP--DIR"
  1968. msgstr "SUS-DIR"
  1969. msgid "SYMLINK"
  1970. msgstr "LEG. SIMB."
  1971. msgid "SUB-DIR"
  1972. msgstr "SUB-DIR"
  1973. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  1974. msgid "u"
  1975. msgstr ""
  1976. #, fuzzy
  1977. msgid "Unsorted"
  1978. msgstr "ne-Sor&tat"
  1979. msgid "&Unsorted"
  1980. msgstr "ne-Sor&tat"
  1981. #. TRANSLATORS: one single character to represent 'name' sort mode
  1982. #, fuzzy
  1983. msgid "n"
  1984. msgstr "Pe"
  1985. msgid "&Name"
  1986. msgstr "&Nume"
  1987. #. TRANSLATORS: one single character to represent 'extension' sort mode
  1988. msgid "e"
  1989. msgstr ""
  1990. #, fuzzy
  1991. msgid "Extension"
  1992. msgstr "Extensie:"
  1993. msgid "&Extension"
  1994. msgstr "&Extensie"
  1995. #. TRANSLATORS: one single character to represent 'size' sort mode
  1996. msgid "s"
  1997. msgstr ""
  1998. msgid "Size"
  1999. msgstr "Mărime"
  2000. msgid "&Size"
  2001. msgstr "&Mărime"
  2002. #, fuzzy
  2003. msgid "Block Size"
  2004. msgstr " Mărime "
  2005. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2006. msgid "m"
  2007. msgstr ""
  2008. msgid "MTime"
  2009. msgstr "DataM"
  2010. msgid "&Modify time"
  2011. msgstr "data modi&Ficării"
  2012. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2013. msgid "a"
  2014. msgstr ""
  2015. msgid "ATime"
  2016. msgstr "DataA"
  2017. msgid "&Access time"
  2018. msgstr "data &Accesului"
  2019. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2020. msgid "h"
  2021. msgstr ""
  2022. msgid "CTime"
  2023. msgstr "DataC"
  2024. msgid "C&Hange time"
  2025. msgstr "data &Creării"
  2026. msgid "Permission"
  2027. msgstr "Drepturi"
  2028. msgid "Perm"
  2029. msgstr "Mod"
  2030. msgid "Nl"
  2031. msgstr "Nl"
  2032. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2033. msgid "i"
  2034. msgstr ""
  2035. msgid "Inode"
  2036. msgstr "Inod"
  2037. msgid "&Inode"
  2038. msgstr "&Inod"
  2039. msgid "UID"
  2040. msgstr "UID"
  2041. msgid "GID"
  2042. msgstr "GID"
  2043. msgid "Owner"
  2044. msgstr "Proprietar"
  2045. msgid "Group"
  2046. msgstr "Grup"
  2047. msgid "<readlink failed>"
  2048. msgstr "<readlink eşuat>"
  2049. #, fuzzy, c-format
  2050. msgid "%s byte"
  2051. msgid_plural "%s bytes"
  2052. msgstr[0] "%s bytes"
  2053. msgstr[1] "%s bytes"
  2054. #, fuzzy, c-format
  2055. msgid "%s in %d file"
  2056. msgid_plural "%s in %d files"
  2057. msgstr[0] " %s bytes în %d fişier"
  2058. msgstr[1] " %s bytes în %d fişier"
  2059. msgid "Unknown tag on display format: "
  2060. msgstr "Etichetă necunoscută pe formatul de afişare: "
  2061. msgid "User supplied format looks invalid, reverting to default."
  2062. msgstr "Formatul furnizat de utilizator pare invalid, revin la cel implicit"
  2063. msgid " Do you really want to execute? "
  2064. msgstr " Chiar doriţi să executaţi? "
  2065. msgid "View"
  2066. msgstr "Vizualizare"
  2067. msgid "Edit"
  2068. msgstr "Editare"
  2069. msgid "RenMov"
  2070. msgstr "RedMut"
  2071. msgid "Mkdir"
  2072. msgstr "DirNou"
  2073. msgid " Not implemented yet "
  2074. msgstr ""
  2075. msgid " Num of replace tokens not equal to num of found tokens "
  2076. msgstr ""
  2077. #, fuzzy, c-format
  2078. msgid " Invalid token number %d "
  2079. msgstr " Masca ţintei e invalidă "
  2080. #, fuzzy
  2081. msgid "Normal"
  2082. msgstr "Format"
  2083. msgid "&Regular expression"
  2084. msgstr "&Expresie regulară "
  2085. msgid "Hexadecimal"
  2086. msgstr ""
  2087. msgid "Wildcard search"
  2088. msgstr ""
  2089. #, fuzzy
  2090. msgid "Choose codepage"
  2091. msgstr " Alegeţi codul de intrare "
  2092. msgid "- < No translation >"
  2093. msgstr "- < Fără translatare >"
  2094. #, c-format
  2095. msgid ""
  2096. "Unable to load '%s' skin.\n"
  2097. "Default skin has been loaded"
  2098. msgstr ""
  2099. #, c-format
  2100. msgid ""
  2101. "Unable to parse '%s' skin.\n"
  2102. "Default skin has been loaded"
  2103. msgstr ""
  2104. msgid ""
  2105. "GNU Midnight Commander is already\n"
  2106. "running on this terminal.\n"
  2107. "Subshell support will be disabled."
  2108. msgstr ""
  2109. #, c-format
  2110. msgid "Cannot open named pipe %s\n"
  2111. msgstr " Nu pot deschide filtrul numit %s\n"
  2112. msgid " The shell is still active. Quit anyway? "
  2113. msgstr " Shell-ul este încă activ. Ies oricum? "
  2114. #, c-format
  2115. msgid "Warning: Cannot change to %s.\n"
  2116. msgstr " Atenţie: Nu pot schimba în %s \n"
  2117. msgid "With builtin Editor\n"
  2118. msgstr "Cu Editor integrat\n"
  2119. msgid "Using system-installed S-Lang library"
  2120. msgstr "Utilizând versiunea instalată de bibliotecă S-Lang"
  2121. msgid "with terminfo database"
  2122. msgstr "cu baza de date terminfo"
  2123. msgid "Using the ncurses library"
  2124. msgstr "Utilizând biblioteca ncurses"
  2125. #, fuzzy
  2126. msgid "Using the ncursesw library"
  2127. msgstr "Utilizând biblioteca ncurses"
  2128. msgid "With optional subshell support"
  2129. msgstr "Cu suport opţional pentru shell concurent"
  2130. msgid "With subshell support as default"
  2131. msgstr "Cu suport implicit pentru shell concurent"
  2132. msgid "With support for background operations\n"
  2133. msgstr "Cu suport pentru operaţii în fundal\n"
  2134. msgid "With mouse support on xterm and Linux console\n"
  2135. msgstr "Cu suport de mouse în xterm şi consola Linux\n"
  2136. msgid "With mouse support on xterm\n"
  2137. msgstr "Cu suport de mouse în xterm.\n"
  2138. msgid "With support for X11 events\n"
  2139. msgstr "Cu suport pentru evenimente X11\n"
  2140. msgid "With internationalization support\n"
  2141. msgstr "Cu suport de internaţionalizare\n"
  2142. msgid "With multiple codepages support\n"
  2143. msgstr "Cu suport pentru coduri de pagină multiple\n"
  2144. #, c-format
  2145. msgid "Virtual File System:"
  2146. msgstr "Sistem Virtual de Fişiere:"
  2147. #, c-format
  2148. msgid ""
  2149. "Cannot open the %s file for writing:\n"
  2150. "%s\n"
  2151. msgstr ""
  2152. " Nu pot deschide fişierul %s pentru scriere:\n"
  2153. " %s\n"
  2154. #, c-format
  2155. msgid "Copy \"%s\" directory to:"
  2156. msgstr "Copiază directorul \"%s\" în:"
  2157. #, c-format
  2158. msgid "Move \"%s\" directory to:"
  2159. msgstr "Mută directorul \"%s\" în:"
  2160. #, c-format
  2161. msgid ""
  2162. " Cannot stat the destination \n"
  2163. " %s "
  2164. msgstr ""
  2165. " Nu pot executa stat pe destinaţia \n"
  2166. " %s "
  2167. #, c-format
  2168. msgid " Delete %s? "
  2169. msgstr " Şterg %s? "
  2170. msgid "Static"
  2171. msgstr "Static"
  2172. msgid "Dynamc"
  2173. msgstr "Dinamc"
  2174. msgid "Rescan"
  2175. msgstr "Reîncarcă"
  2176. msgid "Forget"
  2177. msgstr "Uită"
  2178. msgid "Rmdir"
  2179. msgstr "Ştgdir"
  2180. #, c-format
  2181. msgid ""
  2182. "Cannot write to the %s file:\n"
  2183. "%s\n"
  2184. msgstr ""
  2185. "Nu pot scrie în fişierul %s:\n"
  2186. "%s\n"
  2187. msgid "Function key 1"
  2188. msgstr "Tasta funcţ. 1"
  2189. msgid "Function key 2"
  2190. msgstr "Tasta funcţ. 2"
  2191. msgid "Function key 3"
  2192. msgstr "Tasta funcţ. 3"
  2193. msgid "Function key 4"
  2194. msgstr "Tasta funcţ. 4"
  2195. msgid "Function key 5"
  2196. msgstr "Tasta funcţ. 5"
  2197. msgid "Function key 6"
  2198. msgstr "Tasta funcţ. 6"
  2199. msgid "Function key 7"
  2200. msgstr "Tasta funcţ. 7"
  2201. msgid "Function key 8"
  2202. msgstr "Tasta funcţ. 8"
  2203. msgid "Function key 9"
  2204. msgstr "Tasta funcţ. 9"
  2205. msgid "Function key 10"
  2206. msgstr "Tasta funcţ. 10"
  2207. msgid "Function key 11"
  2208. msgstr "Tasta funcţ. 11"
  2209. msgid "Function key 12"
  2210. msgstr "Tasta funcţ. 12"
  2211. msgid "Function key 13"
  2212. msgstr "Tasta funcţ. 13"
  2213. msgid "Function key 14"
  2214. msgstr "Tasta funcţ. 14"
  2215. msgid "Function key 15"
  2216. msgstr "Tasta funcţ. 14"
  2217. msgid "Function key 16"
  2218. msgstr "Tasta funcţ. 16"
  2219. msgid "Function key 17"
  2220. msgstr "Tasta funcţ. 17"
  2221. msgid "Function key 18"
  2222. msgstr "Tasta funcţ. 18"
  2223. msgid "Function key 19"
  2224. msgstr "Tasta funcţ. 19"
  2225. msgid "Function key 20"
  2226. msgstr "Tasta funcţ. 20"
  2227. msgid "Backspace key"
  2228. msgstr "Tasta Backspace"
  2229. msgid "End key"
  2230. msgstr "Tasta End"
  2231. msgid "Up arrow key"
  2232. msgstr "Săgeata în sus"
  2233. msgid "Down arrow key"
  2234. msgstr "Săgeata în jos"
  2235. msgid "Left arrow key"
  2236. msgstr "Săgeata stânga"
  2237. msgid "Right arrow key"
  2238. msgstr "Săgeata dreapta"
  2239. msgid "Home key"
  2240. msgstr "Tasta Home"
  2241. msgid "Page Down key"
  2242. msgstr "Tasta Page Down"
  2243. msgid "Page Up key"
  2244. msgstr "Tasta Page Up"
  2245. msgid "Insert key"
  2246. msgstr "Tasta Insert"
  2247. msgid "Delete key"
  2248. msgstr "Tasta Delete"
  2249. msgid "Completion/M-tab"
  2250. msgstr "Completare/M-tab"
  2251. msgid "+ on keypad"
  2252. msgstr "+ pe keypad"
  2253. msgid "- on keypad"
  2254. msgstr "- pe keypad"
  2255. msgid "Slash on keypad"
  2256. msgstr "Slash pe keypad"
  2257. msgid "* on keypad"
  2258. msgstr "* pe keypad"
  2259. msgid "Left arrow keypad"
  2260. msgstr "Stânga pe keypad"
  2261. msgid "Right arrow keypad"
  2262. msgstr "Dreapta pe keypad"
  2263. msgid "Up arrow keypad"
  2264. msgstr "Sus pe keypad"
  2265. msgid "Down arrow keypad"
  2266. msgstr "Jos pe keypad"
  2267. msgid "Home on keypad"
  2268. msgstr "Home pe keypad"
  2269. msgid "End on keypad"
  2270. msgstr "End pe keypad"
  2271. msgid "Page Down keypad"
  2272. msgstr "Page Down pe keypad"
  2273. msgid "Page Up keypad"
  2274. msgstr "Page Up pe keypad"
  2275. msgid "Insert on keypad"
  2276. msgstr "Insert pe keypad"
  2277. msgid "Delete on keypad"
  2278. msgstr "Delete pe keypad"
  2279. #, fuzzy
  2280. msgid "Escape key"
  2281. msgstr "Slash pe keypad"
  2282. msgid "Enter on keypad"
  2283. msgstr "Enter pe keypad"
  2284. #, fuzzy
  2285. msgid "Function key 21"
  2286. msgstr "Tasta funcţ. 1"
  2287. #, fuzzy
  2288. msgid "Function key 22"
  2289. msgstr "Tasta funcţ. 2"
  2290. #, fuzzy
  2291. msgid "Function key 23"
  2292. msgstr "Tasta funcţ. 2"
  2293. #, fuzzy
  2294. msgid "Function key 24"
  2295. msgstr "Tasta funcţ. 2"
  2296. msgid "Plus"
  2297. msgstr ""
  2298. #, fuzzy
  2299. msgid "Minus"
  2300. msgstr "Meniu"
  2301. msgid "Asterisk"
  2302. msgstr ""
  2303. msgid "Dot"
  2304. msgstr ""
  2305. msgid "Less than"
  2306. msgstr ""
  2307. msgid "Great than"
  2308. msgstr ""
  2309. msgid "Equal"
  2310. msgstr ""
  2311. #, fuzzy
  2312. msgid "Comma"
  2313. msgstr "Comandă"
  2314. msgid "Apostrophe"
  2315. msgstr ""
  2316. #, fuzzy
  2317. msgid "Colon"
  2318. msgstr "Număr"
  2319. msgid "Exclamation mark"
  2320. msgstr ""
  2321. msgid "Question mark"
  2322. msgstr ""
  2323. #, fuzzy
  2324. msgid "Ampersand"
  2325. msgstr "adau&G"
  2326. msgid "Dollar sign"
  2327. msgstr ""
  2328. msgid "Quotation mark"
  2329. msgstr ""
  2330. #, fuzzy
  2331. msgid "Caret"
  2332. msgstr "Ţintă"
  2333. msgid "Tilda"
  2334. msgstr ""
  2335. #, fuzzy
  2336. msgid "Prime"
  2337. msgstr "Înapoi"
  2338. #, fuzzy
  2339. msgid "Underline"
  2340. msgstr " Introduceţi numărul liniei: "
  2341. msgid "Understrike"
  2342. msgstr ""
  2343. msgid "Pipe"
  2344. msgstr ""
  2345. #, fuzzy
  2346. msgid "Enter"
  2347. msgstr "propr."
  2348. #, fuzzy
  2349. msgid "Tab key"
  2350. msgstr "+ pe keypad"
  2351. #, fuzzy
  2352. msgid "Space key"
  2353. msgstr "Slash pe keypad"
  2354. #, fuzzy
  2355. msgid "Slash key"
  2356. msgstr "Slash pe keypad"
  2357. #, fuzzy
  2358. msgid "Backslash key"
  2359. msgstr "Tasta Backspace"
  2360. msgid "Number sign #"
  2361. msgstr ""
  2362. msgid "Ctrl"
  2363. msgstr ""
  2364. msgid "Alt"
  2365. msgstr ""
  2366. msgid "Shift"
  2367. msgstr ""
  2368. #, c-format
  2369. msgid ""
  2370. "Screen size %dx%d is not supported.\n"
  2371. "Check the TERM environment variable.\n"
  2372. msgstr ""
  2373. "Mărimea %dx%d a ecranului nu este suportată.\n"
  2374. "Verificaţi variabila e mediu TERM.\n"
  2375. msgid " Format error on file Extensions File "
  2376. msgstr " Eroare de format în Fişierul de Extensii"
  2377. #, c-format
  2378. msgid " The %%var macro has no default "
  2379. msgstr " Combinaţia %%var nu are o valoare implicită "
  2380. #, c-format
  2381. msgid " The %%var macro has no variable "
  2382. msgstr " Combinaţa %%var nu are o variabilă "
  2383. msgid " Debug "
  2384. msgstr " Depanare "
  2385. msgid " ERROR: "
  2386. msgstr " EROARE: "
  2387. msgid " True: "
  2388. msgstr " Adevărat: "
  2389. msgid " False: "
  2390. msgstr " Fals: "
  2391. msgid " Warning -- ignoring file "
  2392. msgstr " Atenţie -- ignor fişierul "
  2393. #, c-format
  2394. msgid ""
  2395. "File %s is not owned by root or you or is world writable.\n"
  2396. "Using it may compromise your security"
  2397. msgstr ""
  2398. "Fişierul %s nu este deţinut de root ori dvs. sau poate fi\n"
  2399. "modificat de oricine. Utilizându-l vă puteţi compromite securitatea"
  2400. #, c-format
  2401. msgid " No suitable entries found in %s "
  2402. msgstr " Nu au fost găsite intrări adecvate în %s "
  2403. msgid " User menu "
  2404. msgstr " Meniu utilizator "
  2405. msgid "%b %e %Y"
  2406. msgstr "%b %e %Y"
  2407. msgid "%b %e %H:%M"
  2408. msgstr "%b %e %H:%M"
  2409. #, c-format
  2410. msgid "%s is not a directory\n"
  2411. msgstr "%s nu este un director\n"
  2412. #, c-format
  2413. msgid "Directory %s is not owned by you\n"
  2414. msgstr "Nu deţineţi directorul %s\n"
  2415. #, c-format
  2416. msgid "Cannot set correct permissions for directory %s\n"
  2417. msgstr " Nu pot seta permisiile corecte pentru directorul %s\n"
  2418. #, c-format
  2419. msgid "Cannot create temporary directory %s: %s\n"
  2420. msgstr "Nu pot crea directorul temporar %s: %s\n"
  2421. #, c-format
  2422. msgid "Temporary files will be created in %s\n"
  2423. msgstr "Fişierele temporare vor fi create în %s\n"
  2424. #, c-format
  2425. msgid "Temporary files will not be created\n"
  2426. msgstr "Nu vor fi create fişiere temporare\n"
  2427. msgid " Pipe failed "
  2428. msgstr " Filtrul a eşuat "
  2429. msgid " Dup failed "
  2430. msgstr " Dup eşuat "
  2431. #, fuzzy, c-format
  2432. msgid ""
  2433. " The current line number is %lld.\n"
  2434. " Enter the new line number:"
  2435. msgstr ""
  2436. " Numărul de linie curent este %d.\n"
  2437. " Introduceţi noul număr de linie:"
  2438. #, fuzzy, c-format
  2439. msgid ""
  2440. " The current address is %s.\n"
  2441. " Enter the new address:"
  2442. msgstr ""
  2443. " Numărul de linie curent este %d.\n"
  2444. " Introduceţi noul număr de linie:"
  2445. msgid " Goto Address "
  2446. msgstr " Du-te la Adresa "
  2447. #, fuzzy
  2448. msgid " Invalid address "
  2449. msgstr " Parolă invalidă "
  2450. #, fuzzy
  2451. msgid " Cannot spawn child process "
  2452. msgstr " Nu pot clona programul copil "
  2453. msgid "Empty output from child filter"
  2454. msgstr "Ieşire vidă de la filtrul copil "
  2455. msgid "ButtonBar|Help"
  2456. msgstr ""
  2457. msgid "ButtonBar|Quit"
  2458. msgstr ""
  2459. msgid "ButtonBar|Ascii"
  2460. msgstr ""
  2461. msgid "ButtonBar|Hex"
  2462. msgstr ""
  2463. msgid "ButtonBar|Goto"
  2464. msgstr ""
  2465. msgid "ButtonBar|Line"
  2466. msgstr ""
  2467. msgid "ButtonBar|View"
  2468. msgstr ""
  2469. msgid "ButtonBar|Edit"
  2470. msgstr ""
  2471. msgid "ButtonBar|Save"
  2472. msgstr ""
  2473. msgid "ButtonBar|UnWrap"
  2474. msgstr ""
  2475. msgid "ButtonBar|Wrap"
  2476. msgstr ""
  2477. msgid "ButtonBar|HxSrch"
  2478. msgstr ""
  2479. msgid "ButtonBar|Search"
  2480. msgstr ""
  2481. msgid "ButtonBar|Raw"
  2482. msgstr ""
  2483. msgid "ButtonBar|Parse"
  2484. msgstr ""
  2485. msgid "ButtonBar|Unform"
  2486. msgstr ""
  2487. msgid "ButtonBar|Format"
  2488. msgstr ""
  2489. #, c-format
  2490. msgid "File: %s"
  2491. msgstr "Fişier: %s"
  2492. #, c-format
  2493. msgid "Offset 0x%08lx"
  2494. msgstr "Offset 0x%08lx"
  2495. #, c-format
  2496. msgid "Line %lu Col %lu"
  2497. msgstr ""
  2498. #, c-format
  2499. msgid "%s bytes"
  2500. msgstr "%s bytes"
  2501. #, fuzzy, c-format
  2502. msgid ">= %s bytes"
  2503. msgstr "%s bytes"
  2504. #, c-format
  2505. msgid ""
  2506. " Error while closing the file: \n"
  2507. " %s \n"
  2508. " Data may have been written or not. "
  2509. msgstr ""
  2510. #, fuzzy, c-format
  2511. msgid ""
  2512. " Cannot save file: \n"
  2513. " %s "
  2514. msgstr " Eroare la salvarea fişierului. "
  2515. #, c-format
  2516. msgid ""
  2517. " Cannot open \"%s\"\n"
  2518. " %s "
  2519. msgstr ""
  2520. " Nu pot deschide fişierul \"%s\"\n"
  2521. " %s "
  2522. #, c-format
  2523. msgid ""
  2524. " Cannot stat \"%s\"\n"
  2525. " %s "
  2526. msgstr ""
  2527. " Nu pot executa stat pe \"%s\"\n"
  2528. " %s "
  2529. msgid " Cannot view: not a regular file "
  2530. msgstr " Nu poate fi vizualizat: nu este un fişier obişnuit "
  2531. msgid "Seeking to search result"
  2532. msgstr ""
  2533. msgid " History "
  2534. msgstr " Istoric "
  2535. msgid "Background process:"
  2536. msgstr "Procese în fundal:"
  2537. #, c-format
  2538. msgid ""
  2539. "Cannot open cpio archive\n"
  2540. "%s"
  2541. msgstr ""
  2542. " Nu pot deschide arhiva cpio\n"
  2543. "%s"
  2544. #, c-format
  2545. msgid ""
  2546. "Premature end of cpio archive\n"
  2547. "%s"
  2548. msgstr ""
  2549. "Sfârşit prematur al arhivei cpio\n"
  2550. "%s"
  2551. #, c-format
  2552. msgid ""
  2553. "Corrupted cpio header encountered in\n"
  2554. "%s"
  2555. msgstr ""
  2556. "Antet corupt al arhivei cpio în\n"
  2557. "%s"
  2558. #, c-format
  2559. msgid ""
  2560. "Inconsistent hardlinks of\n"
  2561. "%s\n"
  2562. "in cpio archive\n"
  2563. "%s"
  2564. msgstr ""
  2565. "Legături reale inconsistente ale%s\n"
  2566. "în arhiva cpio\n"
  2567. "%s"
  2568. #, c-format
  2569. msgid "%s contains duplicate entries! Skipping!"
  2570. msgstr "%s conţine intrări duplicate! Trec peste!"
  2571. #, c-format
  2572. msgid ""
  2573. "Unexpected end of file\n"
  2574. "%s"
  2575. msgstr ""
  2576. "Sfârşit de fişier (EOF) neaşteptat\n"
  2577. "%s"
  2578. #, c-format
  2579. msgid "Directory cache expired for %s"
  2580. msgstr "Cache-ul directorului %s a expirat"
  2581. msgid "Starting linear transfer..."
  2582. msgstr "Pornesc transferul liniar..."
  2583. #, c-format
  2584. msgid "%s: %s: %s %3d%% (%lu bytes transferred)"
  2585. msgstr "%s: %s: %s %3d%% (%lu bytes transferaţi)"
  2586. #, c-format
  2587. msgid "%s: %s: %s %lu bytes transferred"
  2588. msgstr "%s: %s: %s %lu bytes transferaţi"
  2589. msgid "Getting file"
  2590. msgstr "Transfer fişierul"
  2591. #, c-format
  2592. msgid ""
  2593. "Cannot open %s archive\n"
  2594. "%s"
  2595. msgstr ""
  2596. " Nu pot deschide arhiva %s\n"
  2597. "%s"
  2598. msgid "Inconsistent extfs archive"
  2599. msgstr "Arhivă extfs inconsistentă"
  2600. #, c-format
  2601. msgid "fish: Disconnecting from %s"
  2602. msgstr "fish: Deconectat de la %s"
  2603. msgid "fish: Waiting for initial line..."
  2604. msgstr "fish: Aştept pentru linia iniţială..."
  2605. msgid "Sorry, we cannot do password authenticated connections for now."
  2606. msgstr "Scuze, nu putem face deocamdată conectări autentificate prin parolă."
  2607. msgid " fish: Password required for "
  2608. msgstr " fish: Se cere parola pentru "
  2609. msgid "fish: Sending password..."
  2610. msgstr "fish: Trimit parola..."
  2611. msgid "fish: Sending initial line..."
  2612. msgstr "fish: Trimit linia iniţială..."
  2613. msgid "fish: Handshaking version..."
  2614. msgstr "fish: Compar versiunile..."
  2615. msgid "fish: Setting up current directory..."
  2616. msgstr "fish: Setez directorul curent..."
  2617. #, c-format
  2618. msgid "fish: Connected, home %s."
  2619. msgstr "fish: Conectat, director personal %s."
  2620. #, c-format
  2621. msgid "fish: Reading directory %s..."
  2622. msgstr "fish: Citesc directorul %s..."
  2623. #, c-format
  2624. msgid "%s: done."
  2625. msgstr "%s: am terminat scanarea."
  2626. #, c-format
  2627. msgid "%s: failure"
  2628. msgstr "%s: eşec"
  2629. #, c-format
  2630. msgid "fish: store %s: sending command..."
  2631. msgstr "fish: stochează %s: trimit comanda..."
  2632. msgid "fish: Local read failed, sending zeros"
  2633. msgstr "fish: Citirea locală a eşuat, trimit zerouri"
  2634. #, c-format
  2635. msgid "fish: storing %s %d (%lu)"
  2636. msgstr "fish: stochez %s %d (%lu)"
  2637. msgid "zeros"
  2638. msgstr "zero-uri"
  2639. msgid "Aborting transfer..."
  2640. msgstr "Abandonez transferul..."
  2641. msgid "Error reported after abort."
  2642. msgstr "S-a raportat o eroare după abandon"
  2643. msgid "Aborted transfer would be successful."
  2644. msgstr "Transferul abandonat va reuşi."
  2645. #, c-format
  2646. msgid "ftpfs: Disconnecting from %s"
  2647. msgstr "ftpfs: Mă deconectez de la: %s"
  2648. msgid " FTP: Password required for "
  2649. msgstr " FTP: Parola necesară pentru "
  2650. msgid "ftpfs: sending login name"
  2651. msgstr "ftpfs: trimit numele de login"
  2652. msgid "ftpfs: sending user password"
  2653. msgstr "ftpfs: trimit parola utilizator"
  2654. #, fuzzy, c-format
  2655. msgid "FTP: Account required for user %s"
  2656. msgstr " FTP: Parola necesară pentru "
  2657. #, fuzzy
  2658. msgid "Account:"
  2659. msgstr "Număr"
  2660. #, fuzzy
  2661. msgid "ftpfs: sending user account"
  2662. msgstr "ftpfs: trimit parola utilizator"
  2663. msgid "ftpfs: logged in"
  2664. msgstr "ftpfs: conectat"
  2665. #, c-format
  2666. msgid "ftpfs: Login incorrect for user %s "
  2667. msgstr "ftpfs: Autentificare incorectă pentru utilizatorul %s"
  2668. msgid "ftpfs: Invalid host name."
  2669. msgstr "ftpfs: Nume invalid al gazdei."
  2670. #, c-format
  2671. msgid "ftpfs: %s"
  2672. msgstr ""
  2673. #, c-format
  2674. msgid "ftpfs: making connection to %s"
  2675. msgstr "ftpfs: mă conectez la %s"
  2676. msgid "ftpfs: connection interrupted by user"
  2677. msgstr "ftpfs: conectare întreruptă de utilizator"
  2678. #, c-format
  2679. msgid "ftpfs: connection to server failed: %s"
  2680. msgstr "ftpfs: conectarea la server a eşuat: %s"
  2681. #, c-format
  2682. msgid "Waiting to retry... %d (Control-C to cancel)"
  2683. msgstr "Aştept să reîncerc... %d (Control-C pentru a renunţa)"
  2684. #, fuzzy
  2685. msgid "ftpfs: invalid address family"
  2686. msgstr "ftpfs: Adresă invalidă a gazdei."
  2687. #, fuzzy, c-format
  2688. msgid "ftpfs: could not setup passive mode: %s"
  2689. msgstr "ftpfs: nu pot seta modul pasiv"
  2690. #, fuzzy, c-format
  2691. msgid "ftpfs: could not create socket: %s"
  2692. msgstr " Nu pot crea socket-ul: %s "
  2693. msgid "ftpfs: could not setup passive mode"
  2694. msgstr "ftpfs: nu pot seta modul pasiv"
  2695. msgid "ftpfs: aborting transfer."
  2696. msgstr "ftpfs: abandonez transferul."
  2697. #, c-format
  2698. msgid "ftpfs: abort error: %s"
  2699. msgstr "ftpfs: eroare la abandon: %s"
  2700. msgid "ftpfs: abort failed"
  2701. msgstr "ftpfs: abandon eşuat"
  2702. msgid "ftpfs: CWD failed."
  2703. msgstr "ftpfs: CWD eşuat"
  2704. msgid "ftpfs: couldn't resolve symlink"
  2705. msgstr "ftpfs: nu pot rezolva legătura simbolică"
  2706. msgid "Resolving symlink..."
  2707. msgstr "Rezolv legătura simbolică..."
  2708. #, c-format
  2709. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2710. msgstr "ftpfs: Citesc directorul FTP %s... %s%s"
  2711. msgid "(strict rfc959)"
  2712. msgstr "(rfc959 strict)"
  2713. msgid "(chdir first)"
  2714. msgstr "(întâi chdir)"
  2715. msgid "ftpfs: failed; nowhere to fallback to"
  2716. msgstr "ftpfs: eşec; nu mai există nici o variantă la care să revin"
  2717. #, c-format
  2718. msgid "ftpfs: storing file %lu (%lu)"
  2719. msgstr "ftpfs: stochez fişierul %lu (%lu)"
  2720. msgid ""
  2721. "~/.netrc file has incorrect mode.\n"
  2722. "Remove password or correct mode."
  2723. msgstr ""
  2724. "Fişierul ~/.netrc nu are permisii corecte.\n"
  2725. "Înlăturaţi parola sau corectaţi drepturile de acces."
  2726. msgid " MCFS "
  2727. msgstr " MCFS "
  2728. msgid " The server does not support this version "
  2729. msgstr " Server-ul nu suportă această versiune "
  2730. msgid ""
  2731. " The remote server is not running on a system port \n"
  2732. " you need a password to log in, but the information may \n"
  2733. " not be safe on the remote side. Continue? \n"
  2734. msgstr ""
  2735. " Server-ul nu foloseşte un port sistem pentru mcserv, \n"
  2736. " vă trebuie o parolă pentru a vă conecta, insă informaţia \n"
  2737. " poate să nu fie sigură pe celălalt server. Continuaţi? \n"
  2738. msgid " MCFS Password required "
  2739. msgstr " Parola MCFS necesară "
  2740. msgid " Invalid password "
  2741. msgstr " Parolă invalidă "
  2742. #, c-format
  2743. msgid " Cannot locate hostname: %s "
  2744. msgstr " Nu pot localiza gazda: %s "
  2745. #, c-format
  2746. msgid " Cannot create socket: %s "
  2747. msgstr " Nu pot crea socket-ul: %s "
  2748. #, c-format
  2749. msgid " Cannot connect to server: %s "
  2750. msgstr " Nu mă pot conecta la serverul: %s"
  2751. msgid " Too many open connections "
  2752. msgstr " Prea multe conectări "
  2753. #, c-format
  2754. msgid ""
  2755. "Warning: Invalid line in %s:\n"
  2756. "%s\n"
  2757. msgstr ""
  2758. "Atenţie: Linie invalidă în %s:\n"
  2759. "%s\n"
  2760. #, c-format
  2761. msgid ""
  2762. "Warning: Invalid flag %c in %s:\n"
  2763. "%s\n"
  2764. msgstr ""
  2765. "Atenţie: Indicator %c invalid în %s:\n"
  2766. "%s\n"
  2767. #, c-format
  2768. msgid ""
  2769. " reconnect to %s failed\n"
  2770. " "
  2771. msgstr ""
  2772. " reconectarea la %s a eşuat\n"
  2773. " "
  2774. msgid " Authentication failed "
  2775. msgstr " Autentificarea a eşuat "
  2776. #, c-format
  2777. msgid " Error %s creating directory %s "
  2778. msgstr " %s creez dir %s "
  2779. #, c-format
  2780. msgid " Error %s removing directory %s "
  2781. msgstr " %s şterg dir %s "
  2782. #, c-format
  2783. msgid " %s opening remote file %s "
  2784. msgstr " %s deschid acolo fişierul %s "
  2785. #, c-format
  2786. msgid " %s removing remote file %s "
  2787. msgstr " %s şterg acolo fişierul %s "
  2788. #, c-format
  2789. msgid " %s renaming files\n"
  2790. msgstr " %s redenumesc fişiere\n"
  2791. #, c-format
  2792. msgid ""
  2793. "Cannot open tar archive\n"
  2794. "%s"
  2795. msgstr ""
  2796. "Nu pot deschide arhiva tar\n"
  2797. "%s"
  2798. msgid "Inconsistent tar archive"
  2799. msgstr "Arhivă tar trunchiată"
  2800. msgid "Unexpected EOF on archive file"
  2801. msgstr "Sfârşit de fişier (EOF) neaşteptat în fişierul arhivă"
  2802. #, c-format
  2803. msgid ""
  2804. "Hmm,...\n"
  2805. "%s\n"
  2806. "doesn't look like a tar archive."
  2807. msgstr ""
  2808. "Hmm,...\n"
  2809. "%s\n"
  2810. "nu prea arată ca o arhivă tar."
  2811. msgid " undelfs: error "
  2812. msgstr " undelfs: eroare "
  2813. msgid " not enough memory "
  2814. msgstr " memorie insuficientă "
  2815. msgid " while allocating block buffer "
  2816. msgstr " în timpul alocării blocurilor de memorie tampon "
  2817. #, c-format
  2818. msgid " open_inode_scan: %d "
  2819. msgstr "open_inode_scan: %d "
  2820. #, c-format
  2821. msgid " while starting inode scan %d "
  2822. msgstr " în timpul scanării inodului %d "
  2823. #, c-format
  2824. msgid "undelfs: loading deleted files information %d inodes"
  2825. msgstr "undelfs: încarc informaţiile despre fişierele şterse: %d inoduri"
  2826. #, c-format
  2827. msgid " while calling ext2_block_iterate %d "
  2828. msgstr " în timpul apelului ext2_block_iterate %d "
  2829. msgid " no more memory while reallocating array "
  2830. msgstr " memorie insuficientă pentru realocarea matricei "
  2831. #, c-format
  2832. msgid " while doing inode scan %d "
  2833. msgstr " în timpul scanării inodurilor %d "
  2834. msgid " Ext2lib error "
  2835. msgstr " eroare Ext2lib "
  2836. #, c-format
  2837. msgid " Cannot open file %s "
  2838. msgstr " Nu pot deschide fişierul %s "
  2839. msgid "undelfs: reading inode bitmap..."
  2840. msgstr "undelfs: citesc harta inodurilor..."
  2841. #, c-format
  2842. msgid ""
  2843. " Cannot load inode bitmap from: \n"
  2844. " %s \n"
  2845. msgstr ""
  2846. " Nu pot încărca harta inodurilor din: \n"
  2847. " %s \n"
  2848. msgid "undelfs: reading block bitmap..."
  2849. msgstr "undelfs: citesc harta blocurilor..."
  2850. #, c-format
  2851. msgid ""
  2852. " Cannot load block bitmap from: \n"
  2853. " %s \n"
  2854. msgstr ""
  2855. " Nu pot încărca harta blocurilor din: \n"
  2856. " %s \n"
  2857. msgid " vfs_info is not fs! "
  2858. msgstr " vfs_info nu este fs! "
  2859. msgid " You have to chdir to extract files first "
  2860. msgstr " Trebuie să schimbaţi directorul pentru a extrage fişierele"
  2861. msgid " while iterating over blocks "
  2862. msgstr " în timpul iterării blocurilor "
  2863. msgid "Cannot parse:"
  2864. msgstr "Nu pot prelucra:"
  2865. msgid "More parsing errors will be ignored."
  2866. msgstr "Alte erori de prelucrare vor fi ignorate"
  2867. msgid "Internal error:"
  2868. msgstr "Eroare internă:"
  2869. msgid "Changes to file lost"
  2870. msgstr "S-au pierdut schimbările efectuate în fişier"
  2871. #, fuzzy
  2872. #~ msgid "bind: Unknown command: `%s'"
  2873. #~ msgstr " Comanda chown "
  2874. #, fuzzy
  2875. #~ msgid "%s: Unknown command: `%s'"
  2876. #~ msgstr " Comanda chown "
  2877. #, fuzzy
  2878. #~ msgid "%s:%d: unknown command `%s'"
  2879. #~ msgstr " Comanda chown "
  2880. #, fuzzy
  2881. #~ msgid "%s not found!"
  2882. #~ msgstr "Atenţie: nu am găsit fişierul %s\n"
  2883. #~ msgid "NumLock on keypad"
  2884. #~ msgstr "NumLock pe keypad"
  2885. #~ msgid " Emacs key: "
  2886. #~ msgstr " Tasta Emacs: "
  2887. #~ msgid " %d items found, %d bookmarks added "
  2888. #~ msgstr " %d căutări efectuate, %d semne de carte adăugate "
  2889. #~ msgid "Displays this help message"
  2890. #~ msgstr "Afişează un mesaj de ajutor"
  2891. #~ msgid "Displays a help screen on how to change the color scheme"
  2892. #~ msgstr "Afişează un ecran de ajutor despre cum se schimbă schema de culori"
  2893. #~ msgid "missing argument"
  2894. #~ msgstr "argument lipsă"
  2895. #~ msgid "unknown option"
  2896. #~ msgstr "opţiune necunoscută"
  2897. #~ msgid "invalid numeric value"
  2898. #~ msgstr "valoare numerică invalidă"
  2899. #~ msgid "Show this help message"
  2900. #~ msgstr "Arată acest mesaj de ajutor"
  2901. #~ msgid "Display brief usage message"
  2902. #~ msgstr "Afişează un mesaj sumar de utilizare"
  2903. #~ msgid "ARG"
  2904. #~ msgstr "ARG"
  2905. #~ msgid "Usage:"
  2906. #~ msgstr "Utilizare:"
  2907. #~ msgid "pro&Mpt on replace"
  2908. #~ msgstr "con&Firmă înlocuirea "
  2909. #~ msgid "replace &All"
  2910. #~ msgstr "înlocuieşte &Tot"
  2911. #~ msgid "O&ne"
  2912. #~ msgstr "u&Nul"
  2913. #, fuzzy
  2914. #~ msgid "%b %d %H:%M"
  2915. #~ msgstr "%b %e %H:%M"
  2916. #, fuzzy
  2917. #~ msgid "%b %d %Y"
  2918. #~ msgstr "%b %e %Y"
  2919. #, fuzzy
  2920. #~ msgid " The current address is 0x%08"
  2921. #~ msgstr ""
  2922. #~ " Adresa curentă este 0x%lx.\n"
  2923. #~ " Introduceţi noua adresă:"
  2924. #~ msgid "scanf &Expression"
  2925. #~ msgstr "expresie &Scanf "
  2926. #~ msgid " Enter replacement argument order eg. 3,2,1,4 "
  2927. #~ msgstr " Introduceţi ordinea de înlocuire (ex: 3,2,1,4):"
  2928. #~ msgid ""
  2929. #~ " Invalid regular expression, or scanf expression with too many "
  2930. #~ "conversions "
  2931. #~ msgstr ""
  2932. #~ " Expresie regulară invalidă, sau expresie scanf cu prea multe conversii "
  2933. #~ msgid " Error in replacement format string. "
  2934. #~ msgstr " Eroare în formatul şirului de înlocuire. "
  2935. #, fuzzy
  2936. #~ msgid " Replacement too long. "
  2937. #~ msgstr " Introduceţi şirul de înlocuire:"
  2938. #~ msgid "&Copy F5"
  2939. #~ msgstr "&Copiază F5"
  2940. #~ msgid "&Delete F8"
  2941. #~ msgstr "şter&Ge F8"
  2942. #, fuzzy
  2943. #~ msgid "Save setu&p..."
  2944. #~ msgstr "&Salvează setările"
  2945. #~ msgid " The command history is empty "
  2946. #~ msgstr " Istoricul comenzilor este gol "
  2947. #~ msgid "command &History"
  2948. #~ msgstr "&Istoricul comenzilor "
  2949. #~ msgid "Edit edi&tor menu file"
  2950. #~ msgstr "editare meniuri edi&Tor"
  2951. #~ msgid "Edit &syntax file"
  2952. #~ msgstr "editare fişier &Sintaxă"
  2953. #~ msgid ""
  2954. #~ "To use this feature select your codepage in\n"
  2955. #~ "Setup / Display Bits dialog!\n"
  2956. #~ "Do not forget to save options."
  2957. #~ msgstr ""
  2958. #~ "Pentru a utiliza această facilitate selectaţi codul\n"
  2959. #~ "de pagină în Opţiuni / Biţi de afişare!\n"
  2960. #~ "Nu uitaţi să salvaţi opţiunile."
  2961. #~ msgid "Invalid hex search expression"
  2962. #~ msgstr "Expresie regulară invalidă la căutare"
  2963. #~ msgid " Invalid regular expression "
  2964. #~ msgstr " Expresie regulară invalidă "
  2965. #~ msgid " Enter regexp:"
  2966. #~ msgstr " Introduceţi expresia regulară:"
  2967. #~ msgid "Using included S-Lang library"
  2968. #~ msgstr "Utilizând biblioteca S-lang inclusă"
  2969. #~ msgid "with termcap database"
  2970. #~ msgstr "cu baza de date termcap"
  2971. #~ msgid "&Home"
  2972. #~ msgstr "&Personal"
  2973. #~ msgid "&Type"
  2974. #~ msgstr "&Tipul"
  2975. #~ msgid "&Links"
  2976. #~ msgstr "&Legături"
  2977. #~ msgid "N&GID"
  2978. #~ msgstr "N&GID"
  2979. #~ msgid "N&UID"
  2980. #~ msgstr "N&UID"
  2981. #~ msgid "&Owner"
  2982. #~ msgstr "pr&Oprietar"
  2983. #~ msgid "&Group"
  2984. #~ msgstr "&Grup"
  2985. #~ msgid "MC was unable to write ~/"
  2986. #~ msgstr "MC nu a putut să scrie fişierul ~/"
  2987. #~ msgid " (%ld blocks)"
  2988. #~ msgstr " (%ld blocuri)"
  2989. #~ msgid " Notice "
  2990. #~ msgstr " Notă "
  2991. #~ msgid ""
  2992. #~ " The Midnight Commander configuration files \n"
  2993. #~ " are now stored in the ~/.mc directory, the \n"
  2994. #~ " files have been moved now\n"
  2995. #~ msgstr ""
  2996. #~ " Fişierele de configurare Midnight Commander \n"
  2997. #~ " sunt acum păstrate în directorul ~/.mc, \n"
  2998. #~ " fişierele au fost mutate acum\n"
  2999. #~ msgid "%s bytes in %d files"
  3000. #~ msgstr " %s bytes în %d fişiere"
  3001. #~ msgid " Cannot open file for reading: "
  3002. #~ msgstr " Nu pot deschide pentru citire fişierul: "
  3003. #~ msgid " Not an ordinary file: "
  3004. #~ msgstr " Nu e un fişier obişnuit: "
  3005. #~ msgid "Format of the "
  3006. #~ msgstr "Format al "
  3007. #~ msgid ""
  3008. #~ " file has changed\n"
  3009. #~ "with version 3.0. You may want either to\n"
  3010. #~ "copy it from "
  3011. #~ msgstr ""
  3012. #~ " fişierul s-a schimbat\n"
  3013. #~ "cu versiunea 3.0. Poate doriţi să\n"
  3014. #~ "îl copiaţi din "
  3015. #~ msgid ""
  3016. #~ "mc.ext or use that\n"
  3017. #~ "file as an example of how to write it.\n"
  3018. #~ msgstr ""
  3019. #~ "mc.ext sau utilizaţi acel\n"
  3020. #~ "fişier ca un exemplu de cum să îl scrieţi.\n"
  3021. #~ msgid "mc.ext will be used for this moment."
  3022. #~ msgstr "mc.ext va fi utilizat deocamdată."
  3023. #~ msgid " Cannot open file "
  3024. #~ msgstr " Nu pot deschide fişierul "
  3025. #~ msgid "Col %d"
  3026. #~ msgstr "Col %d"
  3027. #~ msgid " [grow]"
  3028. #~ msgstr "[creşte]"
  3029. #~ msgid "Ascii"
  3030. #~ msgstr "ASCII"
  3031. #~ msgid "Hex"
  3032. #~ msgstr "Hexa"
  3033. #~ msgid "Goto"
  3034. #~ msgstr "Du-teLa"
  3035. #~ msgid "Line"
  3036. #~ msgstr "Linie"
  3037. #~ msgid "RxSrch"
  3038. #~ msgstr "CautRX"
  3039. #~ msgid "EdHex"
  3040. #~ msgstr "EdHex"
  3041. #~ msgid "EdText"
  3042. #~ msgstr "EdText"
  3043. #~ msgid "UnWrap"
  3044. #~ msgstr "NeArnj"
  3045. #~ msgid "Wrap"
  3046. #~ msgstr "Aranj"
  3047. #~ msgid "HxSrch"
  3048. #~ msgstr "CautRX"
  3049. #~ msgid "Raw"
  3050. #~ msgstr "Brut"
  3051. #~ msgid "Parse"
  3052. #~ msgstr "Prelcr"
  3053. #~ msgid "Unform"
  3054. #~ msgstr "Neform"
  3055. #~ msgid "User menu available only in mcedit invoked from mc"
  3056. #~ msgstr ""
  3057. #~ "Meniul utilizatorului este accesibil numai când mcedit e pornit de mc"
  3058. #~ msgid " Socket source routing setup "
  3059. #~ msgstr " Setare a rutării sursei socket-ului "
  3060. #~ msgid " Enter host name to use as a source routing hop: "
  3061. #~ msgstr " Introduceţi numele gazdei de folosit ca nod de rutare al sursei: "
  3062. #~ msgid " Host name "
  3063. #~ msgstr " Numele gazdei "
  3064. #~ msgid " Error while looking up IP address "
  3065. #~ msgstr " Eroare în timpul căutării adresei IP "
  3066. #~ msgid ""
  3067. #~ "\n"
  3068. #~ "\n"
  3069. #~ "\n"
  3070. #~ "refresh stack underflow!\n"
  3071. #~ "\n"
  3072. #~ "\n"
  3073. #~ msgstr ""
  3074. #~ "\n"
  3075. #~ "\n"
  3076. #~ "\n"
  3077. #~ "stivă de împrospătare goală!\n"
  3078. #~ "\n"
  3079. #~ "\n"
  3080. #~ msgid " Listing format edit "
  3081. #~ msgstr " Editarea modului de listare"
  3082. #~ msgid " New mode is \"%s\" "
  3083. #~ msgstr " Noul mod este \"%s\" "
  3084. #~ msgid "&Drive... M-d"
  3085. #~ msgstr "&Disc... M-d"
  3086. #~ msgid "Use to debug the background code"
  3087. #~ msgstr "Utilizat pentru depanarea codului de fundal"
  3088. #~ msgid "Force subshell execution"
  3089. #~ msgstr "Forţează pornirea unui subshell"
  3090. #~ msgid " No action taken "
  3091. #~ msgstr " Nu a fost executată nici o acţiune "
  3092. #~ msgid " Cannot set source routing (%s)"
  3093. #~ msgstr " Nu pot seta rutarea sursei (%s)"