ca.po 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157
  1. # mc translation to Catalan.
  2. # Copyright (C) 2000 Free Software Foundation, Inc.
  3. # Softcatalà <info@softcatala.org>, 2000-2001.
  4. #
  5. # Traducció per Softcatalà <info@softcatala.org>
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: mc 4.5.99a\n"
  9. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
  10. "POT-Creation-Date: 2010-09-06 20:43+0400\n"
  11. "PO-Revision-Date: 2001-09-29 17:41+0200\n"
  12. "Last-Translator: Softcatalà <tradgnome@softcatala.org>\n"
  13. "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. #, c-format
  18. msgid ""
  19. "File \"%s\" is already being edited.\n"
  20. "User: %s\n"
  21. "Process ID: %d"
  22. msgstr ""
  23. msgid "File locked"
  24. msgstr ""
  25. msgid "&Grab lock"
  26. msgstr ""
  27. msgid "&Ignore lock"
  28. msgstr ""
  29. #, fuzzy
  30. msgid "Search string not found"
  31. msgstr " No s'ha trobat la cadena "
  32. msgid "Not implemented yet"
  33. msgstr ""
  34. msgid "Num of replace tokens not equal to num of found tokens"
  35. msgstr ""
  36. #, fuzzy, c-format
  37. msgid "Invalid token number %d"
  38. msgstr " La màscara objectiu no és vàlida "
  39. #, fuzzy
  40. msgid "Normal"
  41. msgstr "Formata"
  42. msgid "&Regular expression"
  43. msgstr "Expressió &Habitual"
  44. msgid "Hexadecimal"
  45. msgstr ""
  46. msgid "Wildcard search"
  47. msgstr ""
  48. #, c-format
  49. msgid ""
  50. "Unable to load '%s' skin.\n"
  51. "Default skin has been loaded"
  52. msgstr ""
  53. #, c-format
  54. msgid ""
  55. "Unable to parse '%s' skin.\n"
  56. "Default skin has been loaded"
  57. msgstr ""
  58. msgid "Function key 1"
  59. msgstr "Tecla de funció 1"
  60. msgid "Function key 2"
  61. msgstr "Tecla de funció 2"
  62. msgid "Function key 3"
  63. msgstr "Tecla de funció 3"
  64. msgid "Function key 4"
  65. msgstr "Tecla de funció 4"
  66. msgid "Function key 5"
  67. msgstr "Tecla de funció 5"
  68. msgid "Function key 6"
  69. msgstr "Tecla de funció 6"
  70. msgid "Function key 7"
  71. msgstr "Tecla de funció 7"
  72. msgid "Function key 8"
  73. msgstr "Tecla de funció 8"
  74. msgid "Function key 9"
  75. msgstr "Tecla de funció 9"
  76. msgid "Function key 10"
  77. msgstr "Tecla de funció 10"
  78. msgid "Function key 11"
  79. msgstr "Tecla de funció 11"
  80. msgid "Function key 12"
  81. msgstr "Tecla de funció 12"
  82. msgid "Function key 13"
  83. msgstr "Tecla de funció 13"
  84. msgid "Function key 14"
  85. msgstr "Tecla de funció 14"
  86. msgid "Function key 15"
  87. msgstr "Tecla de funció 15"
  88. msgid "Function key 16"
  89. msgstr "Tecla de funció 16"
  90. msgid "Function key 17"
  91. msgstr "Tecla de funció 17"
  92. msgid "Function key 18"
  93. msgstr "Tecla de funció 18"
  94. msgid "Function key 19"
  95. msgstr "Tecla de funció 19"
  96. msgid "Function key 20"
  97. msgstr "Tecla de funció 20"
  98. msgid "Backspace key"
  99. msgstr "Tecla de retrocés"
  100. msgid "End key"
  101. msgstr "Posició final"
  102. msgid "Up arrow key"
  103. msgstr "Cursor amunt"
  104. msgid "Down arrow key"
  105. msgstr "Cursor avall"
  106. msgid "Left arrow key"
  107. msgstr "Cursor esquerra"
  108. msgid "Right arrow key"
  109. msgstr "Cursor dreta"
  110. msgid "Home key"
  111. msgstr "Posició inicial"
  112. msgid "Page Down key"
  113. msgstr "Avança pàgina"
  114. msgid "Page Up key"
  115. msgstr "Retrocedeix pàgina"
  116. msgid "Insert key"
  117. msgstr "Tecla d'inserció"
  118. msgid "Delete key"
  119. msgstr "Tecla de supressió"
  120. msgid "Completion/M-tab"
  121. msgstr "Completa/M-tab"
  122. msgid "+ on keypad"
  123. msgstr "+ teclat numèric"
  124. msgid "- on keypad"
  125. msgstr "- teclat numèric"
  126. msgid "Slash on keypad"
  127. msgstr "Barra teclat numèric"
  128. msgid "* on keypad"
  129. msgstr "* teclat numèric"
  130. #, fuzzy
  131. msgid "Escape key"
  132. msgstr "Barra teclat numèric"
  133. msgid "Left arrow keypad"
  134. msgstr "Cursor esquerra teclat numèric"
  135. msgid "Right arrow keypad"
  136. msgstr "Cursor dreta teclat numèric"
  137. msgid "Up arrow keypad"
  138. msgstr "Cursor amunt teclat numèric"
  139. msgid "Down arrow keypad"
  140. msgstr "Cursor avall teclat numèric"
  141. msgid "Home on keypad"
  142. msgstr "Inici teclat numèric"
  143. msgid "End on keypad"
  144. msgstr "Final teclat numèric"
  145. msgid "Page Down keypad"
  146. msgstr "Avança pàgina teclat numèric"
  147. msgid "Page Up keypad"
  148. msgstr "Retrocedeix pàgina teclat numèric"
  149. msgid "Insert on keypad"
  150. msgstr "Inserir teclat numèric"
  151. msgid "Delete on keypad"
  152. msgstr "Suprimir teclat numèric"
  153. msgid "Enter on keypad"
  154. msgstr "Tecla de retorn teclat numèric"
  155. #, fuzzy
  156. msgid "Function key 21"
  157. msgstr "Tecla de funció 1"
  158. #, fuzzy
  159. msgid "Function key 22"
  160. msgstr "Tecla de funció 2"
  161. #, fuzzy
  162. msgid "Function key 23"
  163. msgstr "Tecla de funció 2"
  164. #, fuzzy
  165. msgid "Function key 24"
  166. msgstr "Tecla de funció 2"
  167. #, fuzzy
  168. msgid "A1 key"
  169. msgstr "Posició final"
  170. #, fuzzy
  171. msgid "C1 key"
  172. msgstr "Posició final"
  173. msgid "Plus"
  174. msgstr ""
  175. #, fuzzy
  176. msgid "Minus"
  177. msgstr "Menú"
  178. msgid "Asterisk"
  179. msgstr ""
  180. msgid "Dot"
  181. msgstr ""
  182. msgid "Less than"
  183. msgstr ""
  184. msgid "Great than"
  185. msgstr ""
  186. msgid "Equal"
  187. msgstr ""
  188. #, fuzzy
  189. msgid "Comma"
  190. msgstr "Ordre"
  191. msgid "Apostrophe"
  192. msgstr ""
  193. #, fuzzy
  194. msgid "Colon"
  195. msgstr "Compta"
  196. msgid "Exclamation mark"
  197. msgstr ""
  198. msgid "Question mark"
  199. msgstr ""
  200. #, fuzzy
  201. msgid "Ampersand"
  202. msgstr "afe&Geix"
  203. msgid "Dollar sign"
  204. msgstr ""
  205. msgid "Quotation mark"
  206. msgstr ""
  207. #, fuzzy
  208. msgid "Caret"
  209. msgstr "Objectiu/Destí"
  210. msgid "Tilda"
  211. msgstr ""
  212. #, fuzzy
  213. msgid "Prime"
  214. msgstr "Anterior"
  215. #, fuzzy
  216. msgid "Underline"
  217. msgstr " Introduïu la línia: "
  218. msgid "Understrike"
  219. msgstr ""
  220. msgid "Pipe"
  221. msgstr ""
  222. msgid "Left parenthesis"
  223. msgstr ""
  224. #, fuzzy
  225. msgid "Right parenthesis"
  226. msgstr "Cursor dreta"
  227. #, fuzzy
  228. msgid "Left bracket"
  229. msgstr "Cursor esquerra"
  230. #, fuzzy
  231. msgid "Right bracket"
  232. msgstr "Cursor dreta"
  233. msgid "Left brace"
  234. msgstr ""
  235. #, fuzzy
  236. msgid "Right brace"
  237. msgstr "Cursor dreta"
  238. #, fuzzy
  239. msgid "Enter"
  240. msgstr "propietari"
  241. #, fuzzy
  242. msgid "Tab key"
  243. msgstr "+ teclat numèric"
  244. #, fuzzy
  245. msgid "Space key"
  246. msgstr "Barra teclat numèric"
  247. #, fuzzy
  248. msgid "Slash key"
  249. msgstr "Barra teclat numèric"
  250. #, fuzzy
  251. msgid "Backslash key"
  252. msgstr "Tecla de retrocés"
  253. msgid "Number sign #"
  254. msgstr ""
  255. msgid "Ctrl"
  256. msgstr ""
  257. msgid "Alt"
  258. msgstr ""
  259. msgid "Shift"
  260. msgstr ""
  261. #, c-format
  262. msgid ""
  263. "Screen size %dx%d is not supported.\n"
  264. "Check the TERM environment variable.\n"
  265. msgstr ""
  266. "La mida de la pantalla %dx%d no es pot utilitzar.\n"
  267. "Reviseu la variable d'entorn TERM.\n"
  268. #, fuzzy, c-format
  269. msgid "%s is not a directory\n"
  270. msgstr "Crea un directori nou"
  271. #, c-format
  272. msgid "Directory %s is not owned by you\n"
  273. msgstr ""
  274. #, fuzzy, c-format
  275. msgid "Cannot set correct permissions for directory %s\n"
  276. msgstr ""
  277. " No puc crear el directori objectiu \"%s\" \n"
  278. " %s "
  279. #, fuzzy, c-format
  280. msgid "Cannot create temporary directory %s: %s\n"
  281. msgstr ""
  282. " No puc crear el directori objectiu \"%s\" \n"
  283. " %s "
  284. #, c-format
  285. msgid "Temporary files will be created in %s\n"
  286. msgstr ""
  287. #, c-format
  288. msgid "Temporary files will not be created\n"
  289. msgstr ""
  290. #, c-format
  291. msgid "Press any key to continue..."
  292. msgstr "Premeu qualsevol tecla per continuar..."
  293. msgid "Warning"
  294. msgstr "Avís"
  295. #, fuzzy
  296. msgid "Pipe failed"
  297. msgstr " Ha fallat el conducte"
  298. #, fuzzy
  299. msgid "Dup failed"
  300. msgstr " Ha fallat dup() "
  301. #, fuzzy
  302. msgid "Error dup'ing old error pipe"
  303. msgstr " S'ha produït un error en llegir del conducte: "
  304. #, c-format
  305. msgid ""
  306. "Cannot open cpio archive\n"
  307. "%s"
  308. msgstr ""
  309. "No s'ha pogut obrir l'arxiu cpio\n"
  310. "%s"
  311. #, c-format
  312. msgid ""
  313. "Premature end of cpio archive\n"
  314. "%s"
  315. msgstr ""
  316. "S'ha anticipat el final de l'arxiu de tipus cpio\n"
  317. "%s"
  318. #, c-format
  319. msgid ""
  320. "Inconsistent hardlinks of\n"
  321. "%s\n"
  322. "in cpio archive\n"
  323. "%s"
  324. msgstr ""
  325. "Enllaços inconsistents de\n"
  326. "%s\n"
  327. "a l'arxiu cpio\n"
  328. "%s"
  329. #, c-format
  330. msgid "%s contains duplicate entries! Skipping!"
  331. msgstr "%s conté registres duplicats! S'estan ometent!"
  332. #, c-format
  333. msgid ""
  334. "Corrupted cpio header encountered in\n"
  335. "%s"
  336. msgstr ""
  337. "S'ha trobat una capçalera corrupta d'arxiu cpio a \n"
  338. "%s"
  339. #, c-format
  340. msgid ""
  341. "Unexpected end of file\n"
  342. "%s"
  343. msgstr ""
  344. "Fí de fitxer inesperat a\n"
  345. "%s"
  346. #, c-format
  347. msgid "Directory cache expired for %s"
  348. msgstr "El directori de la memòria cau ha caducat per %s"
  349. msgid "Starting linear transfer..."
  350. msgstr "S'està iniciant la transferència lineal..."
  351. #, fuzzy, c-format
  352. msgid "%s: %s: %s %3d%% (%ju bytes transferred)"
  353. msgstr "%s: %s: %s %3d%% (%lu bytes transferits)"
  354. #, fuzzy, c-format
  355. msgid "%s: %s: %s %ju bytes transferred"
  356. msgstr "%s: %s: %s %lu bytes transferits"
  357. msgid "Getting file"
  358. msgstr "S'està recuperant el fitxer"
  359. #, c-format
  360. msgid ""
  361. "Cannot open %s archive\n"
  362. "%s"
  363. msgstr ""
  364. "No s'ha pogut obrir l'arxiu %s\n"
  365. "%s"
  366. msgid "Inconsistent extfs archive"
  367. msgstr "L'arxiu extfs no és consistent"
  368. #, fuzzy, c-format
  369. msgid "Warning: cannot open %s directory\n"
  370. msgstr "No he pogut canviar de directori"
  371. #, c-format
  372. msgid "fish: Disconnecting from %s"
  373. msgstr "fish: S'està desconnectant de %s"
  374. msgid "fish: Waiting for initial line..."
  375. msgstr "fish: Està esperant a la línia inicial..."
  376. msgid "Sorry, we cannot do password authenticated connections for now."
  377. msgstr "Ho sento, però de moment no es poden fer connexions autenticades."
  378. #, fuzzy, c-format
  379. msgid "fish: Password is required for %s"
  380. msgstr " fish: Cal una contrasenya per a "
  381. msgid "fish: Sending password..."
  382. msgstr "fish: S'està enviant la contrasenya..."
  383. msgid "fish: Sending initial line..."
  384. msgstr "fish: S'està enviant la línia inicial..."
  385. msgid "fish: Handshaking version..."
  386. msgstr "fish: S'està intercanviant la versió..."
  387. #, fuzzy
  388. msgid "fish: Getting host info..."
  389. msgstr "fish: S'està enviant la línia inicial..."
  390. msgid "fish: Setting up current directory..."
  391. msgstr "fish: S'està definint el directori actual..."
  392. #, c-format
  393. msgid "fish: Connected, home %s."
  394. msgstr "fish: Connectat, directori inicial %s."
  395. #, c-format
  396. msgid "fish: Reading directory %s..."
  397. msgstr "fish: S'està llegint el directori %s..."
  398. #, c-format
  399. msgid "%s: done."
  400. msgstr "%s: fet."
  401. #, c-format
  402. msgid "%s: failure"
  403. msgstr "%s: fallada"
  404. #, c-format
  405. msgid "fish: store %s: sending command..."
  406. msgstr "fish: desa %s: està enviant l'ordre..."
  407. msgid "fish: Local read failed, sending zeros"
  408. msgstr "fish: Ha fallat la lectura local, s'està enviant zeros"
  409. #, fuzzy, c-format
  410. msgid "fish: storing %s %d (%ju)"
  411. msgstr "fish: s'està emmagatzemant %s %d (%d)"
  412. msgid "zeros"
  413. msgstr "zeros"
  414. msgid "file"
  415. msgstr "fitxer"
  416. msgid "Aborting transfer..."
  417. msgstr "S'està avortant la transferència..."
  418. msgid "Error reported after abort."
  419. msgstr "S'ha informat d'un error desprès d'avortar."
  420. msgid "Aborted transfer would be successful."
  421. msgstr "La transferència avortada tindria èxit"
  422. #, c-format
  423. msgid "ftpfs: Disconnecting from %s"
  424. msgstr "ftpfs: S'està desconnectant de %s"
  425. #, fuzzy, c-format
  426. msgid "FTP: Password required for %s"
  427. msgstr " FTP: Cal una contrasenya per a"
  428. msgid "ftpfs: sending login name"
  429. msgstr "ftpfs: s'està enviant la identificació"
  430. msgid "ftpfs: sending user password"
  431. msgstr "ftpfs: s'està enviant la contrasenya"
  432. #, fuzzy, c-format
  433. msgid "FTP: Account required for user %s"
  434. msgstr " FTP: Cal una contrasenya per a"
  435. #, fuzzy
  436. msgid "Account:"
  437. msgstr "Compta"
  438. #, fuzzy
  439. msgid "ftpfs: sending user account"
  440. msgstr "ftpfs: s'està enviant la contrasenya"
  441. msgid "ftpfs: logged in"
  442. msgstr "ftpfs: connectat"
  443. #, c-format
  444. msgid "ftpfs: Login incorrect for user %s "
  445. msgstr "ftpfs: La identificació per a l'usuari %s no és correcta"
  446. msgid "ftpfs: Invalid host name."
  447. msgstr "ftpfs: El nom de l'ordinador central no és vàlid."
  448. #, c-format
  449. msgid "ftpfs: %s"
  450. msgstr ""
  451. #, c-format
  452. msgid "ftpfs: making connection to %s"
  453. msgstr "ftpfs: s'està connectant amb %s"
  454. msgid "ftpfs: connection interrupted by user"
  455. msgstr "ftpfs: l'usuari ha interromput la connexió"
  456. #, c-format
  457. msgid "ftpfs: connection to server failed: %s"
  458. msgstr "ftpfs: ha fallat la connexió amb el servidor: %s"
  459. #, c-format
  460. msgid "Waiting to retry... %d (Control-C to cancel)"
  461. msgstr "Està esperant per reintentar... %d (Ctrl-C per cancel·lar)"
  462. #, fuzzy
  463. msgid "ftpfs: invalid address family"
  464. msgstr "ftpfs: L'adreça de l'ordinador central no és vàlida."
  465. #, fuzzy, c-format
  466. msgid "ftpfs: could not setup passive mode: %s"
  467. msgstr "ftpfs: no s'ha pogut establir el mode passiu"
  468. #, fuzzy, c-format
  469. msgid "ftpfs: could not create socket: %s"
  470. msgstr " No es pot crear el sòcol: %s"
  471. msgid "ftpfs: could not setup passive mode"
  472. msgstr "ftpfs: no s'ha pogut establir el mode passiu"
  473. msgid "ftpfs: aborting transfer."
  474. msgstr "ftpfs: s'està avortant la transferència."
  475. #, c-format
  476. msgid "ftpfs: abort error: %s"
  477. msgstr "ftpfs: s'ha produït un error en avortar: %s"
  478. msgid "ftpfs: abort failed"
  479. msgstr "ftpfs: ha fallat l'avortament"
  480. msgid "ftpfs: CWD failed."
  481. msgstr "ftpfs: ha fallat la comanda CWD."
  482. msgid "ftpfs: couldn't resolve symlink"
  483. msgstr "ftpfs: no puc identificar l'enllaç simbòlic"
  484. msgid "Resolving symlink..."
  485. msgstr "Està identificant l'enllaç simbòlic..."
  486. #, c-format
  487. msgid "ftpfs: Reading FTP directory %s... %s%s"
  488. msgstr "ftpfs: S'està llegint el directori FTP %s... %s%s"
  489. msgid "(strict rfc959)"
  490. msgstr "(rfc959 estricte)"
  491. msgid "(chdir first)"
  492. msgstr "(primer canvia de directori)"
  493. msgid "ftpfs: failed; nowhere to fallback to"
  494. msgstr "ftpfs: ha fallat; enlloc per retornar-hi"
  495. #, fuzzy, c-format
  496. msgid "ftpfs: storing file %ju (%ju)"
  497. msgstr "ftpfs: s'està emmagatzemar el fitxer %d (%d)"
  498. #, fuzzy
  499. msgid ""
  500. "~/.netrc file has incorrect mode\n"
  501. "Remove password or correct mode"
  502. msgstr ""
  503. "el fitxer ~/.netrc no té els permisos adequats.\n"
  504. "Suprimiu la contrasenya o corregiu els permisos."
  505. #, c-format
  506. msgid "Warning: file %s not found\n"
  507. msgstr "Avís: no s'ha trobat el fitxer %s\n"
  508. #, c-format
  509. msgid ""
  510. "Warning: Invalid line in %s:\n"
  511. "%s\n"
  512. msgstr ""
  513. "Avís: línia no vàlida a %s:\n"
  514. "%s\n"
  515. #, c-format
  516. msgid ""
  517. "Warning: Invalid flag %c in %s:\n"
  518. "%s\n"
  519. msgstr ""
  520. "Avís: Senyalador %c no vàlid a %s:\n"
  521. "%s\n"
  522. #, fuzzy, c-format
  523. msgid "reconnect to %s failed"
  524. msgstr ""
  525. " ha fallat la reconnexió a %s\n"
  526. " "
  527. #, fuzzy
  528. msgid "Authentication failed"
  529. msgstr " Ha fallat l'autenticació "
  530. #, fuzzy, c-format
  531. msgid "Error %s creating directory %s"
  532. msgstr " %s està creant el directori %s"
  533. #, fuzzy, c-format
  534. msgid "Error %s removing directory %s"
  535. msgstr " %s està suprimint el directori %s "
  536. #, fuzzy, c-format
  537. msgid "%s opening remote file %s"
  538. msgstr " %s està obrint el fitxer remot %s "
  539. #, fuzzy, c-format
  540. msgid "%s removing remote file %s"
  541. msgstr " %s està eliminant el fitxer remot %s "
  542. # No em convenç la forma de fer els plurals... iv
  543. #, fuzzy, c-format
  544. msgid "%s renaming files\n"
  545. msgstr " %s està reanomenant els fitxers\n"
  546. #, c-format
  547. msgid ""
  548. "Cannot open tar archive\n"
  549. "%s"
  550. msgstr ""
  551. "No s'ha pogut obrir l'arxiu tar\n"
  552. "%s"
  553. msgid "Inconsistent tar archive"
  554. msgstr "L'arxiu tar no és consistent"
  555. msgid "Unexpected EOF on archive file"
  556. msgstr "Fí de fitxer inesperat a l'arxiu"
  557. #, fuzzy, c-format
  558. msgid ""
  559. "%s\n"
  560. "doesn't look like a tar archive."
  561. msgstr ""
  562. "Humm,...\n"
  563. "%s\n"
  564. "no sembla que sigui un arxiu tar."
  565. #, fuzzy
  566. msgid "undelfs: error"
  567. msgstr " undelfs: error "
  568. #, fuzzy
  569. msgid "not enough memory"
  570. msgstr " no hi ha prou memòria "
  571. #, fuzzy
  572. msgid "while allocating block buffer"
  573. msgstr " en col·locar el bloc de memòria intermèdia"
  574. #, fuzzy, c-format
  575. msgid "open_inode_scan: %d"
  576. msgstr " obre_escaneig_inode: %d"
  577. #, fuzzy, c-format
  578. msgid "while starting inode scan %d"
  579. msgstr " mentre començava l'escaneig del inode %d"
  580. #, c-format
  581. msgid "undelfs: loading deleted files information %d inodes"
  582. msgstr ""
  583. "undelfs: s'està carregant la informació dels fitxers esborrats %d inodes"
  584. #, fuzzy, c-format
  585. msgid "while calling ext2_block_iterate %d"
  586. msgstr " mentre es cridava a ext2_block_iterate %d"
  587. #, fuzzy
  588. msgid "no more memory while reallocating array"
  589. msgstr " no hi ha hagut més memòria en recol·locar la taula "
  590. #, fuzzy, c-format
  591. msgid "while doing inode scan %d"
  592. msgstr " mentre es feia l'escaneig de l'inode %d "
  593. #, fuzzy
  594. msgid "Ext2lib error"
  595. msgstr " Error de l'Ext2lib "
  596. #, fuzzy, c-format
  597. msgid "Cannot open file %s"
  598. msgstr " No s'ha pogut obrir el fitxer %s"
  599. msgid "undelfs: reading inode bitmap..."
  600. msgstr "undelfs: s'està llegint el mapa de bits de l'inode..."
  601. #, fuzzy, c-format
  602. msgid ""
  603. "Cannot load inode bitmap from:\n"
  604. "%s"
  605. msgstr ""
  606. " No s'ha pogut carregar el mapa de bits de l'inode de: \n"
  607. " %s \n"
  608. msgid "undelfs: reading block bitmap..."
  609. msgstr "undelfs: s'està llegint el mapa de bits del bloc..."
  610. #, fuzzy, c-format
  611. msgid ""
  612. "Cannot load block bitmap from:\n"
  613. "%s"
  614. msgstr ""
  615. " No he pogut carregar el mapa de bits del bloc de: \n"
  616. " %s \n"
  617. #, fuzzy
  618. msgid "vfs_info is not fs!"
  619. msgstr " vfs_info no es un fs! "
  620. #, fuzzy
  621. msgid "You have to chdir to extract files first"
  622. msgstr " Heu de canviar de directori abans d'extreure els fitxers "
  623. #, fuzzy
  624. msgid "while iterating over blocks"
  625. msgstr " mentre s'iterava sobre els blocs "
  626. #, fuzzy, c-format
  627. msgid "Cannot open file \"%s\""
  628. msgstr " No s'ha pogut obrir el fitxer %s"
  629. msgid "Cannot parse:"
  630. msgstr "No s'ha pogut analitzar:"
  631. msgid "More parsing errors will be ignored."
  632. msgstr " Si hi han mès errors d'interpretació, s'ignoraran. "
  633. msgid "Internal error:"
  634. msgstr "Error intern:"
  635. msgid "Password:"
  636. msgstr "Contrasenya:"
  637. msgid "Changes to file lost"
  638. msgstr "Canvia al fitxer perdut"
  639. # Sí que hi ha NLS, sí... I la feinada que ha costat! iv
  640. msgid "&Cancel"
  641. msgstr "&Cancel·la"
  642. msgid "&Set"
  643. msgstr "&Estableix"
  644. msgid "S&kip"
  645. msgstr "&Salta"
  646. msgid "Set &all"
  647. msgstr "Estableix a &tots"
  648. msgid "owner"
  649. msgstr "propietari"
  650. msgid "group"
  651. msgstr "grup"
  652. msgid "other"
  653. msgstr "altres"
  654. msgid "On"
  655. msgstr "Sobre"
  656. msgid "Flag"
  657. msgstr "Marca"
  658. msgid "Mode"
  659. msgstr "Mode"
  660. #, c-format
  661. msgid "%6d of %d"
  662. msgstr "%6d de %d"
  663. #, fuzzy
  664. msgid "Chown advanced command"
  665. msgstr " Ordre avançada de canvi de propietari "
  666. #, fuzzy, c-format
  667. msgid ""
  668. "Cannot chmod \"%s\"\n"
  669. "%s"
  670. msgstr ""
  671. " No s'han pogut canviar els permisos de \"%s\" \n"
  672. " %s "
  673. #, fuzzy, c-format
  674. msgid ""
  675. "Cannot chown \"%s\"\n"
  676. "%s"
  677. msgstr ""
  678. " No s'ha pogut canviar la propietat de \"%s\" \n"
  679. " %s "
  680. msgid "Displays the current version"
  681. msgstr "Mostra la versió actual"
  682. #, fuzzy
  683. msgid "Print data directory"
  684. msgstr "Crea un directori nou"
  685. #, fuzzy
  686. msgid "Print last working directory to specified file"
  687. msgstr "Imprimeix el directori de treball en sortir"
  688. msgid "Enables subshell support (default)"
  689. msgstr "Habilita el suport de subintèrprets (per defecte)"
  690. msgid "Disables subshell support"
  691. msgstr "Inhabilita el suport de subintèrprets"
  692. msgid "Log ftp dialog to specified file"
  693. msgstr "Enregistra el quadre ftp a un fitxer"
  694. msgid "Set debug level"
  695. msgstr ""
  696. msgid "Launches the file viewer on a file"
  697. msgstr "Executa el visualitzador de fitxers amb un fitxer"
  698. msgid "Edits one file"
  699. msgstr "Edita un fitxer"
  700. msgid "Forces xterm features"
  701. msgstr "Força l'ús de característiques d'xterm"
  702. msgid "Disable mouse support in text version"
  703. msgstr "Inhabilita el suport de ratolí a la versió text"
  704. msgid "Tries to use termcap instead of terminfo"
  705. msgstr "Prova d'utilitzar termcap en comptes de terminfo"
  706. msgid "To run on slow terminals"
  707. msgstr "Per funcionar amb terminals lents"
  708. msgid "Use stickchars to draw"
  709. msgstr "Utilitza el caràcters de línies per fer marcs"
  710. msgid "Resets soft keys on HP terminals"
  711. msgstr "Reinicia les tecles programades als terminals HP"
  712. #, fuzzy
  713. msgid "Load definitions of key bindings from specified file"
  714. msgstr "Enregistra el quadre ftp a un fitxer"
  715. msgid "Requests to run in black and white"
  716. msgstr "Demana que s'utilitzi el mode blanc i negre"
  717. msgid "Request to run in color mode"
  718. msgstr "Demana que s'utilitzi el mode en color"
  719. msgid "Specifies a color configuration"
  720. msgstr "Especifica una configuració de color"
  721. msgid "Show mc with specified skin"
  722. msgstr ""
  723. #. TRANSLATORS: don't translate keywords and names of colors
  724. #, fuzzy
  725. msgid ""
  726. "--colors KEYWORD={FORE},{BACK}\n"
  727. "\n"
  728. "{FORE} and {BACK} can be omitted, and the default will be used\n"
  729. "\n"
  730. "Keywords:\n"
  731. " Global: errors, disabled, reverse, gauge, viewunderline\n"
  732. " input, inputmark, inputunchanged, commandlinemark\n"
  733. " File display: normal, selected, marked, markselect\n"
  734. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  735. " errdhotfocus\n"
  736. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  737. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  738. " editlinestate\n"
  739. msgstr ""
  740. "--colors KEYWORD={FRONT},{FONS}\n"
  741. "\n"
  742. "{FORE} i {BACK} es poden ometre, i s'utilitzarà l'opció per defecte\n"
  743. "Paraules clau:\n"
  744. " Global:\t errors, invertir, marcador, entrada\n"
  745. " Visualització de fitxers: normal, seleccionat, marcat, selecció de "
  746. "marca \n"
  747. " Quadres de diàleg: dnormal, dfocus, dhotnormal, dhotfocus\n"
  748. " Menús: menú, menuhot, menusel, menuhotsel\n"
  749. " Ajuda: ajuda normal, ajuda cursiva, ajuda enllaç, enllaç "
  750. "d'ajuda\n"
  751. " Tipus de fitxers: directori, executable, enllaç, dispositiu, especial, "
  752. "core\n"
  753. "\n"
  754. "Colors:\n"
  755. " negre, gris, vermell, vermell clar, verd, verd clar, marró,\n"
  756. " groc, blau, blau clar, magenta, magenta clar, blau verdós,\n"
  757. " blau verdós clar, gris clar i blanc\n"
  758. "\n"
  759. msgid ""
  760. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  761. "\n"
  762. "Colors:\n"
  763. " black, gray, red, brightred, green, brightgreen, brown,\n"
  764. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  765. " brightcyan, lightgray and white\n"
  766. "\n"
  767. msgstr ""
  768. #, fuzzy
  769. msgid "Color options"
  770. msgstr "Opcions de configuració"
  771. #, fuzzy
  772. msgid "+number"
  773. msgstr "Número de l'inode"
  774. #, fuzzy
  775. msgid "[this_dir] [other_panel_dir]"
  776. msgstr "[opcions] [aquest_dir] [dir_d'altre_quadre]\n"
  777. msgid "Set initial line number for the internal editor"
  778. msgstr ""
  779. #, fuzzy
  780. msgid ""
  781. "\n"
  782. "Please send any bug reports (including the output of `mc -V')\n"
  783. "as tickets at www.midnight-commander.org\n"
  784. msgstr ""
  785. "\n"
  786. "Si us plau envieu qualsevol informació sobre errors (incloent la sortida de "
  787. "'mc -V')\n"
  788. "a mc-devel@gnome.org\n"
  789. #, c-format
  790. msgid "GNU Midnight Commander %s\n"
  791. msgstr "GNU Midnight Commander %s\n"
  792. msgid "No arguments given to the viewer."
  793. msgstr ""
  794. msgid "Two files are required to evoke the diffviewer."
  795. msgstr ""
  796. #, fuzzy
  797. msgid "Main options"
  798. msgstr " Opcions del quadre "
  799. #, fuzzy
  800. msgid "Terminal options"
  801. msgstr " Altres opcions "
  802. #, fuzzy
  803. msgid "Background process error"
  804. msgstr " S'ha produït un error al procés de fons "
  805. #, fuzzy
  806. msgid "Unknown error in child"
  807. msgstr " Error desconegut al procés fill "
  808. #, fuzzy
  809. msgid "Child died unexpectedly"
  810. msgstr " El procés fill ha acabat inesperadament "
  811. #, fuzzy
  812. msgid "Background protocol error"
  813. msgstr " S'ha produït un error de protocol al procés de fons "
  814. #, fuzzy
  815. msgid "Reading failed"
  816. msgstr "<S'ha produït una fallida en llegir l'enllaç>"
  817. #, fuzzy
  818. msgid ""
  819. "Background process sent us a request for more arguments\n"
  820. "than we can handle."
  821. msgstr ""
  822. " El procés de fons ha enviat una petició de més arguments \n"
  823. " dels que podem manejar. \n"
  824. msgid "&Full file list"
  825. msgstr "llistat c&Omplet"
  826. msgid "&Brief file list"
  827. msgstr "llistat &Breu"
  828. msgid "&Long file list"
  829. msgstr "llistat &Llarg"
  830. msgid "&User defined:"
  831. msgstr "definit per l'&Usuari:"
  832. msgid "Listing mode"
  833. msgstr "Mode de llistat"
  834. #, fuzzy
  835. msgid "User &mini status"
  836. msgstr "&Miniestat d'usuari"
  837. msgid "&OK"
  838. msgstr "&D'acord"
  839. msgid "&Reverse"
  840. msgstr "in&Verteix"
  841. #, fuzzy
  842. msgid "Case sensi&tive"
  843. msgstr "distingeix entre majú&Scules/minúscules"
  844. msgid "Executable &first"
  845. msgstr ""
  846. msgid "Sort order"
  847. msgstr "Ordre de classificació"
  848. #, fuzzy
  849. msgid "Confirmation"
  850. msgstr " Confirmació "
  851. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  852. #. 2
  853. #, fuzzy
  854. msgid "Confirmation|&History cleanup"
  855. msgstr " Confirmació "
  856. #, fuzzy
  857. msgid "Confirmation|Di&rectory hotlist delete"
  858. msgstr "directoris fa&Vorits C-\\"
  859. #, fuzzy
  860. msgid "Confirmation|E&xit"
  861. msgstr " Confirmació "
  862. #, fuzzy
  863. msgid "Confirmation|&Execute"
  864. msgstr " Confirmació "
  865. #, fuzzy
  866. msgid "Confirmation|O&verwrite"
  867. msgstr " confirma la s&Obreescriptura "
  868. #, fuzzy
  869. msgid "Confirmation|&Delete"
  870. msgstr " Confirmació "
  871. #, fuzzy
  872. msgid "UTF-8 output"
  873. msgstr "Mostra una sortida de 8 bits purs"
  874. msgid "Full 8 bits output"
  875. msgstr "Mostra una sortida de 8 bits purs"
  876. msgid "ISO 8859-1"
  877. msgstr "ISO 8859-1 (Latin1)"
  878. msgid "7 bits"
  879. msgstr "7 bits"
  880. msgid "F&ull 8 bits input"
  881. msgstr "ent&Rada de 8 bits"
  882. #, fuzzy
  883. msgid "Display bits"
  884. msgstr " Bits de visualització "
  885. msgid "Other 8 bit"
  886. msgstr "Altres 8 bits"
  887. msgid "Input / display codepage:"
  888. msgstr "Pàgina de codis d'entrada / visualització:"
  889. msgid "&Select"
  890. msgstr "&Seleccioneu"
  891. #, fuzzy
  892. msgid "Directory tree"
  893. msgstr "arbre de &Directoris"
  894. #, fuzzy
  895. msgid "Use passive mode over pro&xy"
  896. msgstr "&Mode de desar..."
  897. #, fuzzy
  898. msgid "Use &passive mode"
  899. msgstr "&Mode de desar..."
  900. msgid "&Use ~/.netrc"
  901. msgstr ""
  902. msgid "&Always use ftp proxy"
  903. msgstr "usa sempre un servidor in&Termediari de ftp"
  904. msgid "sec"
  905. msgstr "seg"
  906. msgid "ftpfs directory cache timeout:"
  907. msgstr "Temps d'espera de la memòria cau del directori ftpfs:"
  908. msgid "ftp anonymous password:"
  909. msgstr "Contrasenya de l'ftp anònim:"
  910. msgid "Timeout for freeing VFSs:"
  911. msgstr "Temps d'espera per alliberar VFSs:"
  912. #, fuzzy
  913. msgid "Virtual File System Setting"
  914. msgstr " Configuració dels sistemes de fitxers virtuals "
  915. msgid "cd"
  916. msgstr "cd"
  917. msgid "Quick cd"
  918. msgstr "Canvi ràpid de directori"
  919. msgid "Symbolic link filename:"
  920. msgstr "Nom de fitxer de l'enllaç simbòlic:"
  921. msgid "Existing filename (filename symlink will point to):"
  922. msgstr "Nom del fitxer existent (nom de fitxer on apuntarà l'enllaç):"
  923. msgid "Symbolic link"
  924. msgstr "Enllaç simbòlic"
  925. #, fuzzy
  926. msgid "Running"
  927. msgstr "S'està executant "
  928. msgid "Stopped"
  929. msgstr "Aturat"
  930. msgid "&Stop"
  931. msgstr "&Atura"
  932. msgid "&Resume"
  933. msgstr "&Reprèn"
  934. msgid "&Kill"
  935. msgstr "A&caba"
  936. msgid "Background Jobs"
  937. msgstr "Tasques de fons"
  938. msgid "Domain:"
  939. msgstr "Domini:"
  940. msgid "Username:"
  941. msgstr "Nom d'usuari:"
  942. #, c-format
  943. msgid "Password for \\\\%s\\%s"
  944. msgstr "Contrasenya per a \\\\%s\\%s"
  945. msgid "7-bit ASCII"
  946. msgstr ""
  947. #, c-format
  948. msgid "Cannot translate from %s to %s"
  949. msgstr "No es pot traduir de %s a %s"
  950. msgid "execute/search by others"
  951. msgstr "executa/cerca per a altres"
  952. msgid "write by others"
  953. msgstr "escriu per a altres"
  954. msgid "read by others"
  955. msgstr "llegeix per a altres"
  956. msgid "execute/search by group"
  957. msgstr "executa/cerca per al grup"
  958. msgid "write by group"
  959. msgstr "escriu per al grup"
  960. msgid "read by group"
  961. msgstr "llegeix per al grup"
  962. msgid "execute/search by owner"
  963. msgstr "executa/cerca per al propietari"
  964. msgid "write by owner"
  965. msgstr "escriu per al propietari"
  966. msgid "read by owner"
  967. msgstr "llegeix per al propietari"
  968. msgid "sticky bit"
  969. msgstr "bit de permanència"
  970. msgid "set group ID on execution"
  971. msgstr "executa amb l'ID del grup"
  972. msgid "set user ID on execution"
  973. msgstr "executa amb l'ID del propietari"
  974. msgid "C&lear marked"
  975. msgstr "&Esborra els marcats"
  976. msgid "S&et marked"
  977. msgstr "&Posa els marcats"
  978. msgid "&Marked all"
  979. msgstr "&Marca'ls tots"
  980. msgid "Name"
  981. msgstr "Nom"
  982. msgid "Permissions (Octal)"
  983. msgstr "Permisos (octal)"
  984. msgid "Owner name"
  985. msgstr "Nom del propietari"
  986. msgid "Group name"
  987. msgstr "Nom del grup"
  988. msgid "Use SPACE to change"
  989. msgstr "Utilitzeu ESPAI per canviar"
  990. msgid "an option, ARROW KEYS"
  991. msgstr "una opció, les TECLES DEL CURSOR"
  992. msgid "to move between options"
  993. msgstr "per moure's entre opcions"
  994. msgid "and T or INS to mark"
  995. msgstr "i la T o INS per marcar-les"
  996. msgid "Chmod command"
  997. msgstr "Canvi de permisos"
  998. msgid "File"
  999. msgstr "Fitxer"
  1000. msgid "Permission"
  1001. msgstr "Permisos"
  1002. msgid "Set &users"
  1003. msgstr "Estableix els &usuaris"
  1004. msgid "Set &groups"
  1005. msgstr "Estableix els &grups"
  1006. msgid "Size"
  1007. msgstr "Mida"
  1008. #, fuzzy
  1009. msgid "Chown command"
  1010. msgstr " Canvi de propietari "
  1011. msgid "<Unknown user>"
  1012. msgstr "<Usuari desconegut>"
  1013. msgid "<Unknown group>"
  1014. msgstr "<Grup desconegut>"
  1015. #, fuzzy
  1016. msgid "User name"
  1017. msgstr " Nom d'usuari "
  1018. msgid "Files tagged, want to cd?"
  1019. msgstr "Hi ha fitxers seleccionats. Voleu canviar de directori?"
  1020. msgid "&Yes"
  1021. msgstr "&Sí"
  1022. msgid "&No"
  1023. msgstr "&No"
  1024. msgid "Cannot change directory"
  1025. msgstr "No he pogut canviar de directori"
  1026. #, fuzzy
  1027. msgid "View file"
  1028. msgstr " Visualització del fitxer "
  1029. #, fuzzy
  1030. msgid "Filename:"
  1031. msgstr " Nom del fitxer:"
  1032. #, fuzzy
  1033. msgid "Filtered view"
  1034. msgstr " Vista filtrada "
  1035. #, fuzzy
  1036. msgid "Filter command and arguments:"
  1037. msgstr " Introduïu l'ordre de filtrat i els arguments:"
  1038. msgid "Create a new Directory"
  1039. msgstr "Crea un directori nou"
  1040. #, fuzzy
  1041. msgid "Enter directory name:"
  1042. msgstr " Introduïu el nom del directori:"
  1043. #, fuzzy
  1044. msgid "Filter"
  1045. msgstr " Filtra "
  1046. #, fuzzy
  1047. msgid "Set expression for filtering filenames"
  1048. msgstr " Introduïu una expressió per filtrar els noms de fitxer"
  1049. msgid "&Using shell patterns"
  1050. msgstr "amb patrons d'&Intèrpret"
  1051. #, fuzzy
  1052. msgid "&Case sensitive"
  1053. msgstr "distingeix entre majú&Scules/minúscules"
  1054. #, fuzzy
  1055. msgid "&Files only"
  1056. msgstr "només &Mida"
  1057. #, fuzzy
  1058. msgid "Select"
  1059. msgstr "&Seleccioneu"
  1060. #, fuzzy
  1061. msgid "Unselect"
  1062. msgstr " Deselecciona "
  1063. msgid "Extension file edit"
  1064. msgstr "Edita el fitxer d'extensions"
  1065. #, fuzzy
  1066. msgid "Which extension file you want to edit?"
  1067. msgstr " Quin fitxer d'extensions voleu editar? "
  1068. msgid "&User"
  1069. msgstr "El d'&Usuari"
  1070. msgid "&System Wide"
  1071. msgstr "El de tot el &Sistema"
  1072. #, fuzzy
  1073. msgid "Menu edit"
  1074. msgstr " Edició del menú "
  1075. #, fuzzy
  1076. msgid "Which menu file do you want to edit?"
  1077. msgstr " Quin fitxer de menú voleu editar? "
  1078. msgid "&Local"
  1079. msgstr "&Local"
  1080. msgid "Highlighting groups file edit"
  1081. msgstr ""
  1082. #, fuzzy
  1083. msgid "Which highlighting file you want to edit?"
  1084. msgstr " Quin fitxer d'extensions voleu editar? "
  1085. #, fuzzy
  1086. msgid "Compare directories"
  1087. msgstr " Compara els directoris "
  1088. #, fuzzy
  1089. msgid "Select compare method:"
  1090. msgstr " Seleccioneu un mètode de comparació: "
  1091. msgid "&Quick"
  1092. msgstr "&Ràpid"
  1093. msgid "&Size only"
  1094. msgstr "només &Mida"
  1095. msgid "&Thorough"
  1096. msgstr "&Detallat"
  1097. #, fuzzy
  1098. msgid ""
  1099. "Both panels should be in the listing mode\n"
  1100. "to use this command"
  1101. msgstr " Cal que ambdós quadres siguin en mode llistat per usar l'ordre "
  1102. #, fuzzy
  1103. msgid ""
  1104. "Not an xterm or Linux console;\n"
  1105. "the panels cannot be toggled."
  1106. msgstr ""
  1107. " No es poden commutar els quadres si no sou \n"
  1108. " a un xterm o a una consola Linux. "
  1109. #, fuzzy, c-format
  1110. msgid "Link %s to:"
  1111. msgstr " enllaç: %s "
  1112. #, fuzzy
  1113. msgid "Link"
  1114. msgstr "en&Llaços"
  1115. #, fuzzy, c-format
  1116. msgid "link: %s"
  1117. msgstr " enllaç: %s "
  1118. #, fuzzy, c-format
  1119. msgid "symlink: %s"
  1120. msgstr " enllaç simbòlic: %s "
  1121. #, fuzzy, c-format
  1122. msgid "Symlink `%s' points to:"
  1123. msgstr " L'enllaç simbòlic `%s' apunta a: "
  1124. #, fuzzy
  1125. msgid "Edit symlink"
  1126. msgstr " Edita l'enllaç simbòlic "
  1127. #, fuzzy, c-format
  1128. msgid "edit symlink, unable to remove %s: %s"
  1129. msgstr " edita l'enllaç simbòlic, no puc suprimir %s: %s "
  1130. #, fuzzy, c-format
  1131. msgid "edit symlink: %s"
  1132. msgstr " edita l'enllaç simbòlic: %s "
  1133. #, c-format
  1134. msgid "`%s' is not a symbolic link"
  1135. msgstr "`%s' no és un enllaç simbòlic"
  1136. #, fuzzy, c-format
  1137. msgid "Cannot chdir to %s"
  1138. msgstr " No s'ha pogut canviar a %s "
  1139. #, fuzzy
  1140. msgid "Enter machine name (F1 for details):"
  1141. msgstr " Introduïu el nom de la màquina (F1 per a detalls): "
  1142. #, fuzzy
  1143. msgid "FTP to machine"
  1144. msgstr " Fes FTP a màquina "
  1145. #, fuzzy
  1146. msgid "Shell link to machine"
  1147. msgstr " Enllaç SMB a màquina "
  1148. #, fuzzy
  1149. msgid "SMB link to machine"
  1150. msgstr " Enllaç SMB a màquina "
  1151. #, fuzzy
  1152. msgid "Undelete files on an ext2 file system"
  1153. msgstr " Recupera fitxers d'un sistema de fitxers ext2 "
  1154. #, fuzzy
  1155. msgid ""
  1156. "Enter device (without /dev/) to undelete\n"
  1157. "files on: (F1 for details)"
  1158. msgstr ""
  1159. " Introduïu el dispositiu (sense /dev/) d'on voleu\n"
  1160. " recuperar els fitxers: (F1 per detalls)"
  1161. #, fuzzy
  1162. msgid "Setup"
  1163. msgstr " Configuració "
  1164. #, fuzzy, c-format
  1165. msgid "Setup saved to ~/%s"
  1166. msgstr " S'ha desat la configuració a ~/"
  1167. #, fuzzy, c-format
  1168. msgid ""
  1169. "Cannot chdir to \"%s\"\n"
  1170. "%s"
  1171. msgstr ""
  1172. " No puc canviar a \"%s\" \n"
  1173. " %s "
  1174. #, fuzzy
  1175. msgid "Cannot execute commands on non-local filesystems"
  1176. msgstr " No podeu executar ordres a sistemes de fitxers no-locals"
  1177. #, fuzzy
  1178. msgid "The shell is already running a command"
  1179. msgstr " L'intèrpret ja esta executant una comanda "
  1180. msgid "Screens"
  1181. msgstr ""
  1182. msgid "&Dismiss"
  1183. msgstr "&Ignora"
  1184. msgid "All charsets"
  1185. msgstr ""
  1186. #, fuzzy
  1187. msgid "&Whole words"
  1188. msgstr "Només paraules com&Pletes"
  1189. msgid "&Backwards"
  1190. msgstr "Cap &Enrere"
  1191. #, fuzzy
  1192. msgid "Case &sensitive"
  1193. msgstr "distingeix entre majú&Scules/minúscules"
  1194. #, fuzzy
  1195. msgid "Enter search string:"
  1196. msgstr " Introduïu la cadena de cerca:"
  1197. msgid "Search"
  1198. msgstr "Cerca"
  1199. #, fuzzy
  1200. msgid "Search is disabled"
  1201. msgstr "Cerca"
  1202. #, fuzzy, c-format
  1203. msgid ""
  1204. "Cannot create temporary diff file\n"
  1205. "%s"
  1206. msgstr ""
  1207. " No puc crear fitxer temporal d'ordres \n"
  1208. " %s "
  1209. #, fuzzy, c-format
  1210. msgid ""
  1211. "Cannot create backup file\n"
  1212. "%s%s\n"
  1213. "%s"
  1214. msgstr ""
  1215. " No puc crear el fitxer objectiu \"%s\" \n"
  1216. " %s "
  1217. #, fuzzy, c-format
  1218. msgid ""
  1219. "Cannot create temporary merge file\n"
  1220. "%s"
  1221. msgstr ""
  1222. " No puc crear fitxer temporal d'ordres \n"
  1223. " %s "
  1224. #, fuzzy
  1225. msgid "&Normal"
  1226. msgstr "Formata"
  1227. msgid "&Fastest (Assume large files)"
  1228. msgstr ""
  1229. msgid "&Minimal (Find a smaller set of change)"
  1230. msgstr ""
  1231. msgid "Strip &trailing carriage return"
  1232. msgstr ""
  1233. msgid "Ignore all &whitespace"
  1234. msgstr ""
  1235. msgid "Ignore &space change"
  1236. msgstr ""
  1237. msgid "Ignore tab &expansion"
  1238. msgstr ""
  1239. msgid "&Ignore case"
  1240. msgstr ""
  1241. #, fuzzy
  1242. msgid "Diff extra options"
  1243. msgstr " Altres opcions "
  1244. msgid "Diff algorithm"
  1245. msgstr ""
  1246. #, fuzzy
  1247. msgid "Diff Options"
  1248. msgstr " Opcions "
  1249. #, fuzzy
  1250. msgid "Edit"
  1251. msgstr "Edita"
  1252. #, fuzzy
  1253. msgid "Edit is disabled"
  1254. msgstr "edita el fitxer de &Menús"
  1255. #, fuzzy
  1256. msgid "Goto line (left)"
  1257. msgstr " Vés a la línia "
  1258. #, fuzzy
  1259. msgid "Goto line (right)"
  1260. msgstr " Vés a la línia "
  1261. #, fuzzy
  1262. msgid "Enter line:"
  1263. msgstr " Introduïu la línia: "
  1264. msgid "ButtonBar|Help"
  1265. msgstr ""
  1266. msgid "ButtonBar|Save"
  1267. msgstr ""
  1268. msgid "ButtonBar|Edit"
  1269. msgstr ""
  1270. msgid "ButtonBar|Merge"
  1271. msgstr ""
  1272. msgid "ButtonBar|Search"
  1273. msgstr ""
  1274. msgid "ButtonBar|Options"
  1275. msgstr ""
  1276. msgid "ButtonBar|Quit"
  1277. msgstr ""
  1278. msgid "Quit"
  1279. msgstr "Surt"
  1280. #, fuzzy
  1281. msgid "File was modified. Save with exit?"
  1282. msgstr " El fitxer s'ha modificat. El deso en sortir? "
  1283. msgid ""
  1284. "Midnight Commander is being shut down.\n"
  1285. "Save modified file?"
  1286. msgstr ""
  1287. msgid "Diff:"
  1288. msgstr ""
  1289. msgid "Two files are needed to compare"
  1290. msgstr ""
  1291. #, fuzzy
  1292. msgid "Cannot read directory contents"
  1293. msgstr "No he pogut canviar de directori"
  1294. #, fuzzy
  1295. msgid "Choose syntax highlighting"
  1296. msgstr "Ressaltament de la sinta&Xi"
  1297. #, fuzzy
  1298. msgid "< Auto >"
  1299. msgstr " Quant a "
  1300. msgid "< Reload Current Syntax >"
  1301. msgstr ""
  1302. #, fuzzy
  1303. msgid "About"
  1304. msgstr " Quant a "
  1305. #, fuzzy
  1306. msgid ""
  1307. "Copyright (C) 1996-2010 the Free Software Foundation\n"
  1308. "\n"
  1309. " A user friendly text editor\n"
  1310. " written for the Midnight Commander"
  1311. msgstr ""
  1312. "\n"
  1313. " Cooledit v3.11.5\n"
  1314. "\n"
  1315. " Copyright (C) 1996 Free Software Foundation\n"
  1316. "\n"
  1317. " Un editor de text amistós escrit\n"
  1318. " pel Midnight Commander.\n"
  1319. #, fuzzy, c-format
  1320. msgid "Cannot open %s for reading"
  1321. msgstr " No s'ha pogut obrir un conducte per llegir: "
  1322. msgid "Error"
  1323. msgstr "S'ha produït un error"
  1324. #, fuzzy, c-format
  1325. msgid "Error reading %s"
  1326. msgstr "S'ha produït un error en llegir la seqüència:"
  1327. #, fuzzy, c-format
  1328. msgid "Error reading from pipe: %s"
  1329. msgstr " S'ha produït un error en llegir del conducte: "
  1330. #, fuzzy, c-format
  1331. msgid "Cannot open pipe for reading: %s"
  1332. msgstr " No s'ha pogut obrir un conducte per llegir: "
  1333. #, fuzzy, c-format
  1334. msgid "Cannot get size/permissions for %s"
  1335. msgstr " No puc obtenir mida/permisos del fitxer: "
  1336. #, fuzzy, c-format
  1337. msgid "\"%s\" is not a regular file"
  1338. msgstr " No puc visualitzar-lo perquè no és un fitxer habitual "
  1339. #, fuzzy, c-format
  1340. msgid "File \"%s\" is too large"
  1341. msgstr " El fitxer és massa gran: "
  1342. msgid "Macro recursion is too deep"
  1343. msgstr ""
  1344. msgid "File has hard-links. Detach before saving?"
  1345. msgstr ""
  1346. msgid "The file has been modified in the meantime. Save anyway?"
  1347. msgstr ""
  1348. #, fuzzy, c-format
  1349. msgid "Error writing to pipe: %s"
  1350. msgstr " S'ha produït un error en escriure al conducte: "
  1351. #, fuzzy, c-format
  1352. msgid "Cannot open pipe for writing: %s"
  1353. msgstr " No s'ha pogut obrir el conducte per a l'escriptura: "
  1354. #, fuzzy, c-format
  1355. msgid "Cannot open file for writing: %s"
  1356. msgstr " No s'ha pogut obrir el conducte per a l'escriptura: "
  1357. #, fuzzy
  1358. msgid "&Quick save"
  1359. msgstr "Desat ràpid "
  1360. #, fuzzy
  1361. msgid "&Safe save"
  1362. msgstr "Desat segur "
  1363. msgid "&Do backups with following extension:"
  1364. msgstr ""
  1365. msgid "Check &POSIX new line"
  1366. msgstr ""
  1367. #, fuzzy
  1368. msgid "Edit Save Mode"
  1369. msgstr " Edita la manera de desar "
  1370. msgid "The file you are saving is not finished with a newline"
  1371. msgstr ""
  1372. #, fuzzy
  1373. msgid "C&ontinue"
  1374. msgstr "Continua"
  1375. msgid "&Do not change"
  1376. msgstr ""
  1377. msgid "&Unix format (LF)"
  1378. msgstr ""
  1379. msgid "&Windows/DOS format (CR LF)"
  1380. msgstr ""
  1381. msgid "&Macintosh format (CR)"
  1382. msgstr ""
  1383. msgid "Change line breaks to:"
  1384. msgstr ""
  1385. #, fuzzy
  1386. msgid "Enter file name:"
  1387. msgstr " Introduïu el nom del fitxer: "
  1388. #, fuzzy
  1389. msgid "Save As"
  1390. msgstr " Desa com a"
  1391. #, fuzzy
  1392. msgid "A file already exists with this name"
  1393. msgstr " Ja existeix un fitxer amb aquest nom. "
  1394. #, fuzzy
  1395. msgid "&Overwrite"
  1396. msgstr "Sobreescriu"
  1397. #, fuzzy
  1398. msgid "Save as"
  1399. msgstr "&Desa la configuració"
  1400. #, fuzzy
  1401. msgid "Cannot save file"
  1402. msgstr " S'ha produït un error en intentar desar el fitxer. "
  1403. #, fuzzy
  1404. msgid "Delete macro"
  1405. msgstr " Suprimeix la macro "
  1406. #, fuzzy
  1407. msgid "Cannot open temp file"
  1408. msgstr " S'ha produït un error en obrir un fitxer temporal "
  1409. #, fuzzy
  1410. msgid "Cannot open macro file"
  1411. msgstr " S'ha produït un error en obrir el fitxer de macros "
  1412. #, fuzzy
  1413. msgid "Cannot overwrite macro file"
  1414. msgstr " S'ha produït un error en sobreescriure el fitxer de macros "
  1415. #, fuzzy
  1416. msgid "Save macro"
  1417. msgstr " Desa la macro "
  1418. #, fuzzy
  1419. msgid "Press the macro's new hotkey:"
  1420. msgstr " Premeu la nova tecla ràpida per a la macro: "
  1421. #, fuzzy
  1422. msgid "Press macro hotkey:"
  1423. msgstr " Premeu la tecla ràpida per a la macro: "
  1424. #, fuzzy
  1425. msgid "Load macro"
  1426. msgstr " Carrega la macro "
  1427. #, fuzzy, c-format
  1428. msgid "Confirm save file: \"%s\""
  1429. msgstr " Voleu desar el fitxer?: "
  1430. #, fuzzy
  1431. msgid "Save file"
  1432. msgstr " Desa el fitxer "
  1433. msgid "&Save"
  1434. msgstr "&Desa"
  1435. #, fuzzy
  1436. msgid ""
  1437. "Current text was modified without a file save.\n"
  1438. "Continue discards these changes"
  1439. msgstr ""
  1440. " El text actual s'ha modificat, però no s'ha desat. \n"
  1441. " 'Continua' descartarà aquests canvis. "
  1442. #, fuzzy
  1443. msgid "Syntax file edit"
  1444. msgstr "edita el fitxer de &Menús"
  1445. #, fuzzy
  1446. msgid "Which syntax file you want to edit?"
  1447. msgstr " Quin fitxer d'extensions voleu editar? "
  1448. #, fuzzy
  1449. msgid "Load"
  1450. msgstr " Carrega "
  1451. #, fuzzy
  1452. msgid "Block is large, you may not be able to undo this action"
  1453. msgstr " El bloc és gran, potser no podreu desfer aquesta acció "
  1454. #, fuzzy
  1455. msgid "Replace"
  1456. msgstr "&Reemplaça"
  1457. #, fuzzy, c-format
  1458. msgid "%ld replacements made"
  1459. msgstr " S'han fet %ld reemplaçaments. "
  1460. #, fuzzy
  1461. msgid "&Cancel quit"
  1462. msgstr "Cancel·la la sortida"
  1463. msgid "This function is not implemented"
  1464. msgstr ""
  1465. #, fuzzy
  1466. msgid "Copy to clipboard"
  1467. msgstr " Copia al portaretalls "
  1468. #, fuzzy
  1469. msgid "Unable to save to file"
  1470. msgstr " No puc desar-ho a un fitxer. "
  1471. #, fuzzy
  1472. msgid "Cut to clipboard"
  1473. msgstr " Talla cap el portaretalls "
  1474. #, fuzzy
  1475. msgid "Goto line"
  1476. msgstr " Vés a la línia "
  1477. #, fuzzy
  1478. msgid "Save block"
  1479. msgstr " Desa el bloc "
  1480. #, fuzzy
  1481. msgid "Insert file"
  1482. msgstr "&Insereix el fitxer... F15"
  1483. #, fuzzy
  1484. msgid "Cannot insert file"
  1485. msgstr " S'ha produït un error en provar d'inserir el fitxer. "
  1486. #, fuzzy
  1487. msgid "Sort block"
  1488. msgstr " Ordena el bloc "
  1489. #, fuzzy
  1490. msgid "You must first highlight a block of text"
  1491. msgstr " Primer cal que seleccioneu un bloc de text. "
  1492. #, fuzzy
  1493. msgid "Run sort"
  1494. msgstr " Executa \"Ordenar\" "
  1495. #, fuzzy
  1496. msgid "Enter sort options (see manpage) separated by whitespace:"
  1497. msgstr ""
  1498. " Introduïu les opcions per \"ordenar\" (vegeu manual) separades per espais: "
  1499. #, fuzzy
  1500. msgid "Sort"
  1501. msgstr " Ordena "
  1502. #, fuzzy
  1503. msgid "Cannot execute sort command"
  1504. msgstr " S'ha produït un error en executar la comanda \"ordena\" "
  1505. #, fuzzy, c-format
  1506. msgid "Sort returned non-zero: %s"
  1507. msgstr " \"Ordena\" ha retornat \"non-zero\": "
  1508. msgid "Paste output of external command"
  1509. msgstr ""
  1510. #, fuzzy
  1511. msgid "Enter shell command(s):"
  1512. msgstr " Introduïu l'etiqueta de l'ordre: "
  1513. #, fuzzy
  1514. msgid "External command"
  1515. msgstr "Una altre ordre"
  1516. #, fuzzy
  1517. msgid "Cannot execute command"
  1518. msgstr " S'ha produït un error en executar la comanda \"ordena\" "
  1519. msgid "Error creating script:"
  1520. msgstr "S'ha produït un error en crear la seqüència:"
  1521. msgid "Error reading script:"
  1522. msgstr "S'ha produït un error en llegir la seqüència:"
  1523. msgid "Error closing script:"
  1524. msgstr "Error en tancar la seqüència:"
  1525. msgid "Script created:"
  1526. msgstr "Seqüència creada:"
  1527. msgid "Process block"
  1528. msgstr "Processa el bloc"
  1529. #, fuzzy
  1530. msgid "Error calling program"
  1531. msgstr "Error en tancar la seqüència:"
  1532. #, fuzzy
  1533. msgid "Copies to"
  1534. msgstr " Còpies per a"
  1535. #, fuzzy
  1536. msgid "Subject"
  1537. msgstr " Tema"
  1538. #, fuzzy
  1539. msgid "To"
  1540. msgstr " Per a"
  1541. #, fuzzy
  1542. msgid "mail -s <subject> -c <cc> <to>"
  1543. msgstr " mail -s <tema> -c <còpies> <per a>"
  1544. #, fuzzy
  1545. msgid "Mail"
  1546. msgstr " Envia per correu "
  1547. #, fuzzy
  1548. msgid "Insert literal"
  1549. msgstr "insereix &Literal... C-q"
  1550. #, fuzzy
  1551. msgid "Press any key:"
  1552. msgstr " Premeu una tecla: "
  1553. #, fuzzy
  1554. msgid "Execute macro"
  1555. msgstr "e&Xecuta la macro... C-a, TECLA"
  1556. #, fuzzy
  1557. msgid ""
  1558. "Current text was modified without a file save\n"
  1559. "Continue discards these changes"
  1560. msgstr ""
  1561. " El text actual s'ha modificat, però no s'ha desat. \n"
  1562. " 'Continua' descartarà aquests canvis. "
  1563. #, fuzzy
  1564. msgid "In se&lection"
  1565. msgstr "&Inverteix la selecció M-*"
  1566. #, fuzzy
  1567. msgid "Enter replacement string:"
  1568. msgstr " Introduïu la cadena per reemplaçar:"
  1569. #, fuzzy
  1570. msgid "&Find all"
  1571. msgstr "Cerca Fitxer"
  1572. msgid "Cancel"
  1573. msgstr "Cancel·la"
  1574. #, fuzzy
  1575. msgid ""
  1576. "Current text was modified without a file save.\n"
  1577. "Continue discards these changes."
  1578. msgstr ""
  1579. " El text actual s'ha modificat, però no s'ha desat. \n"
  1580. " 'Continua' descartarà aquests canvis. "
  1581. msgid "&Skip"
  1582. msgstr "&Salta"
  1583. msgid "A&ll"
  1584. msgstr "&Tots"
  1585. msgid "&Replace"
  1586. msgstr "&Reemplaça"
  1587. #, fuzzy
  1588. msgid "Replace with:"
  1589. msgstr " Reemplaça amb: "
  1590. #, fuzzy
  1591. msgid "Confirm replace"
  1592. msgstr " Confirma el reemplaçament "
  1593. msgid "&Open file..."
  1594. msgstr "&Obre el fitxer..."
  1595. #, fuzzy
  1596. msgid "&New"
  1597. msgstr "&Nom"
  1598. #, fuzzy
  1599. msgid "Save &as..."
  1600. msgstr "&Desa la configuració"
  1601. #, fuzzy
  1602. msgid "&Insert file..."
  1603. msgstr "&Insereix el fitxer... F15"
  1604. #, fuzzy
  1605. msgid "Cop&y to file..."
  1606. msgstr "copia al &Fitxer... C-f"
  1607. #, fuzzy
  1608. msgid "&User menu..."
  1609. msgstr "Menú d'&usuari... F11"
  1610. #, fuzzy
  1611. msgid "A&bout..."
  1612. msgstr "&Format..."
  1613. msgid "&Quit"
  1614. msgstr "&Surt"
  1615. msgid "&Undo"
  1616. msgstr ""
  1617. #, fuzzy
  1618. msgid "&Toggle ins/overw"
  1619. msgstr "Canvia entre &Insereix/sobreescriu Ins"
  1620. #, fuzzy
  1621. msgid "To&ggle mark"
  1622. msgstr "&Esborra els marcats"
  1623. msgid "&Mark columns"
  1624. msgstr ""
  1625. #, fuzzy
  1626. msgid "Mark &all"
  1627. msgstr "&Marca'ls tots"
  1628. msgid "Unmar&k"
  1629. msgstr ""
  1630. #, fuzzy
  1631. msgid "Cop&y"
  1632. msgstr "Copia"
  1633. #, fuzzy
  1634. msgid "Mo&ve"
  1635. msgstr "Mou"
  1636. msgid "&Delete"
  1637. msgstr "&Suprimeix"
  1638. #, fuzzy
  1639. msgid "Co&py to clipfile"
  1640. msgstr "copia al &Fitxer... "
  1641. #, fuzzy
  1642. msgid "&Cut to clipfile"
  1643. msgstr "&Vés a la línia... M-l"
  1644. #, fuzzy
  1645. msgid "Pa&ste from clipfile"
  1646. msgstr "&Vés a la línia... M-l"
  1647. msgid "&Beginning"
  1648. msgstr ""
  1649. #, fuzzy
  1650. msgid "&End"
  1651. msgstr "node-&I"
  1652. #, fuzzy
  1653. msgid "&Search..."
  1654. msgstr "Cerca"
  1655. #, fuzzy
  1656. msgid "Search &again"
  1657. msgstr "cerca &de nou F17"
  1658. #, fuzzy
  1659. msgid "&Replace..."
  1660. msgstr "&Reemplaça"
  1661. #, fuzzy
  1662. msgid "&Toggle bookmark"
  1663. msgstr "&Canvia inici/fi de marcador F3"
  1664. #, fuzzy
  1665. msgid "&Next bookmark"
  1666. msgstr "&Posa els marcats"
  1667. #, fuzzy
  1668. msgid "&Prev bookmark"
  1669. msgstr "&Ordena... M-t"
  1670. #, fuzzy
  1671. msgid "&Flush bookmark"
  1672. msgstr "envia per co&Rreu... "
  1673. #, fuzzy
  1674. msgid "&Go to line..."
  1675. msgstr " Vés a la línia "
  1676. #, fuzzy
  1677. msgid "&Toggle line state"
  1678. msgstr "&Canvia inici/fi de marcador F3"
  1679. #, fuzzy
  1680. msgid "Go to matching &bracket"
  1681. msgstr "ves al &Claudàtor coincident M-b"
  1682. #, fuzzy
  1683. msgid "Toggle s&yntax highlighting"
  1684. msgstr "Ressaltament de la sinta&Xi"
  1685. #, fuzzy
  1686. msgid "&Find declaration"
  1687. msgstr "Troba els fitxers rebutjats després d'apedaçar"
  1688. #, fuzzy
  1689. msgid "Back from &declaration"
  1690. msgstr "Troba els fitxers rebutjats després d'apedaçar"
  1691. #, fuzzy
  1692. msgid "For&ward to declaration"
  1693. msgstr "Troba els fitxers rebutjats després d'apedaçar"
  1694. #, fuzzy
  1695. msgid "Encod&ing..."
  1696. msgstr "&Ordena... M-t"
  1697. #, fuzzy
  1698. msgid "&Refresh screen"
  1699. msgstr "Actualit&za la pantalla C-l"
  1700. #, fuzzy
  1701. msgid "&Start record macro"
  1702. msgstr "Comença a &enregistrar la macro C-r"
  1703. #, fuzzy
  1704. msgid "Finis&h record macro..."
  1705. msgstr "&Finalitza l'enregistrament de la macro... C-r"
  1706. #, fuzzy
  1707. msgid "&Execute macro..."
  1708. msgstr "e&Xecuta la macro... C-a, TECLA"
  1709. #, fuzzy
  1710. msgid "Delete macr&o..."
  1711. msgstr " Suprimeix la macro "
  1712. #, fuzzy
  1713. msgid "'ispell' s&pell check"
  1714. msgstr "comprova l'or&Tografia: ispell C-p"
  1715. #, fuzzy
  1716. msgid "&Mail..."
  1717. msgstr "&Filtra..."
  1718. #, fuzzy
  1719. msgid "Insert &literal..."
  1720. msgstr "insereix &Literal... C-q"
  1721. #, fuzzy
  1722. msgid "Insert &date/time"
  1723. msgstr "insereix &Data/hora "
  1724. #, fuzzy
  1725. msgid "&Format paragraph"
  1726. msgstr "&Formateja el paràgraf M-p"
  1727. #, fuzzy
  1728. msgid "&Sort..."
  1729. msgstr "&Ordenació..."
  1730. msgid "&Paste output of..."
  1731. msgstr ""
  1732. #, fuzzy
  1733. msgid "&External formatter"
  1734. msgstr "Formatador e&xtern F19"
  1735. #, fuzzy
  1736. msgid "&General..."
  1737. msgstr "&General..."
  1738. #, fuzzy
  1739. msgid "Save &mode..."
  1740. msgstr "&Mode de desar..."
  1741. #, fuzzy
  1742. msgid "Learn &keys..."
  1743. msgstr "defineix &Tecles..."
  1744. #, fuzzy
  1745. msgid "Syntax &highlighting..."
  1746. msgstr "Ressaltament de la sinta&Xi"
  1747. #, fuzzy
  1748. msgid "S&yntax file"
  1749. msgstr "edita el fitxer de &Menús"
  1750. #, fuzzy
  1751. msgid "&Menu file"
  1752. msgstr "edita el fitxer de &Menús"
  1753. msgid "&Save setup"
  1754. msgstr "&Desa la configuració"
  1755. #, fuzzy
  1756. msgid "&File"
  1757. msgstr "Fitxer"
  1758. #, fuzzy
  1759. msgid "&Edit"
  1760. msgstr "Edita"
  1761. #, fuzzy
  1762. msgid "&Search"
  1763. msgstr "Cerca"
  1764. #, fuzzy
  1765. msgid "&Command"
  1766. msgstr "Ordre"
  1767. #, fuzzy
  1768. msgid "For&mat"
  1769. msgstr "Formata"
  1770. #, fuzzy
  1771. msgid "&Options"
  1772. msgstr " &Opcions "
  1773. msgid "None"
  1774. msgstr "Cap"
  1775. msgid "Dynamic paragraphing"
  1776. msgstr "Paràgrafs dinàmics"
  1777. msgid "Type writer wrap"
  1778. msgstr "Ajustament de màquina d'escriure"
  1779. #, fuzzy
  1780. msgid "Word wrap line length:"
  1781. msgstr "Longitud de línia per a l'ajustament: "
  1782. msgid "Cursor beyond end of line"
  1783. msgstr ""
  1784. #, fuzzy
  1785. msgid "Pers&istent selection"
  1786. msgstr "&Inverteix la selecció M-*"
  1787. msgid "Synta&x highlighting"
  1788. msgstr "Ressaltament de la sinta&Xi"
  1789. msgid "Visible tabs"
  1790. msgstr ""
  1791. msgid "Visible trailing spaces"
  1792. msgstr ""
  1793. #, fuzzy
  1794. msgid "Save file &position"
  1795. msgstr " Desa el fitxer "
  1796. msgid "Confir&m before saving"
  1797. msgstr "con&Firma en desar"
  1798. msgid "&Return does autoindent"
  1799. msgstr "Fes auto&Sagnat en prémer la tecla de retorn del carro"
  1800. #, fuzzy
  1801. msgid "Tab spacing:"
  1802. msgstr "Mida del tabulador: "
  1803. msgid "Fill tabs with &spaces"
  1804. msgstr "omple els tabuladors amb e&Spais"
  1805. msgid "&Backspace through tabs"
  1806. msgstr "es&Borra els tabuladors amb la tecla de retrocés"
  1807. msgid "&Fake half tabs"
  1808. msgstr "&Simula les mitges tabulacions"
  1809. msgid "Wrap mode"
  1810. msgstr "Mode d'ajustament"
  1811. #, fuzzy
  1812. msgid "Editor options"
  1813. msgstr " Opcions de l'editor "
  1814. #, fuzzy
  1815. msgid "Edit: "
  1816. msgstr " Edició "
  1817. msgid "ButtonBar|Mark"
  1818. msgstr ""
  1819. msgid "ButtonBar|Replac"
  1820. msgstr ""
  1821. msgid "ButtonBar|Copy"
  1822. msgstr ""
  1823. msgid "ButtonBar|Move"
  1824. msgstr ""
  1825. msgid "ButtonBar|Delete"
  1826. msgstr ""
  1827. msgid "ButtonBar|PullDn"
  1828. msgstr ""
  1829. #, fuzzy
  1830. msgid "Load syntax file"
  1831. msgstr " Carrega un fitxer de sintaxi "
  1832. #, fuzzy, c-format
  1833. msgid ""
  1834. "Cannot open file %s\n"
  1835. "%s"
  1836. msgstr ""
  1837. " No puc obrir el fitxer %s \n"
  1838. " %s "
  1839. #, fuzzy, c-format
  1840. msgid "Error in file %s on line %d"
  1841. msgstr " S'ha produït un error al fitxer %s, línia %d "
  1842. #, fuzzy
  1843. msgid ""
  1844. "The Commander can't change to the directory that\n"
  1845. "the subshell claims you are in. Perhaps you have\n"
  1846. "deleted your working directory, or given yourself\n"
  1847. "extra access permissions with the \"su\" command?"
  1848. msgstr ""
  1849. " El Commander no pot canviar al directori on el sub- \n"
  1850. " intèrpret diu que sou. Potser heu suprimit el \n"
  1851. " vostre directori de treball, o heu pres uns permisos \n"
  1852. " d'accés extra amb la comanda \"su\"? "
  1853. #, c-format
  1854. msgid "Type `exit' to return to the Midnight Commander"
  1855. msgstr "Teclegeu \"exit\" per retornar al Midnight Commander"
  1856. #, fuzzy, c-format
  1857. msgid "Cannot fetch a local copy of %s"
  1858. msgstr " No puc trobar una còpia local de %s "
  1859. #, fuzzy, c-format
  1860. msgid ""
  1861. "Cannot create temporary command file\n"
  1862. "%s"
  1863. msgstr ""
  1864. " No puc crear fitxer temporal d'ordres \n"
  1865. " %s "
  1866. #, fuzzy
  1867. msgid "Parameter"
  1868. msgstr " Paràmetre "
  1869. #, fuzzy, c-format
  1870. msgid " %s%s file error"
  1871. msgstr " s'ha produït un error de fitxer "
  1872. #, fuzzy, c-format
  1873. msgid ""
  1874. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1875. "the installation failed. Please fetch a fresh copy from the Midnight "
  1876. "Commander package."
  1877. msgstr ""
  1878. "El fitxer mc.ext ha canviat\n"
  1879. "amb la versió 3.0. Sembla que la instal·lació\n"
  1880. "ha fallat. Si us plau, agafeu una còpia nova del\n"
  1881. "paquet Midnight Commander."
  1882. #, fuzzy, c-format
  1883. msgid "~/%s file error"
  1884. msgstr " s'ha produït un error de fitxer "
  1885. #, fuzzy, c-format
  1886. msgid ""
  1887. "The format of the ~/%s file has changed with version 3.0. You may either "
  1888. "want to copy it from %smc.ext or use that file as an example of how to write "
  1889. "it."
  1890. msgstr ""
  1891. "El fitxer mc.ext ha canviat\n"
  1892. "amb la versió 3.0. Sembla que la instal·lació\n"
  1893. "ha fallat. Si us plau, agafeu una còpia nova del\n"
  1894. "paquet Midnight Commander."
  1895. msgid "DialogTitle|Copy"
  1896. msgstr ""
  1897. msgid "DialogTitle|Move"
  1898. msgstr ""
  1899. msgid "DialogTitle|Delete"
  1900. msgstr ""
  1901. #, fuzzy
  1902. msgid "Cannot make the hardlink"
  1903. msgstr " No s'ha pogut fer l'enllaç fort "
  1904. #, fuzzy, c-format
  1905. msgid ""
  1906. "Cannot read source link \"%s\"\n"
  1907. "%s"
  1908. msgstr ""
  1909. " No puc llegir l'enllaç d'origen \"%s\" \n"
  1910. " %s "
  1911. #, fuzzy
  1912. msgid ""
  1913. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1914. "\n"
  1915. "Option Stable Symlinks will be disabled"
  1916. msgstr ""
  1917. " No puc crear enllaços simbòlics estables entre els sistemes de fitxers no "
  1918. "locals: \n"
  1919. "\n"
  1920. " S'inhabilitarà l'opció \"enllaços simbòlics estables\" "
  1921. #, fuzzy, c-format
  1922. msgid ""
  1923. "Cannot create target symlink \"%s\"\n"
  1924. "%s"
  1925. msgstr ""
  1926. " No puc crear l'enllaç simbòlic objectiu \"%s\" \n"
  1927. " %s "
  1928. msgid "&Abort"
  1929. msgstr "a&Vorta"
  1930. #, fuzzy, c-format
  1931. msgid ""
  1932. "Cannot overwrite directory\"%s\"\n"
  1933. "%s"
  1934. msgstr ""
  1935. " No puc sobreescriure el directori \"%s\" \n"
  1936. " %s "
  1937. #, fuzzy, c-format
  1938. msgid ""
  1939. "Cannot stat source file \"%s\"\n"
  1940. "%s"
  1941. msgstr ""
  1942. " No puc estudiar el fitxer origen \"%s\" \n"
  1943. " %s "
  1944. #, fuzzy, c-format
  1945. msgid ""
  1946. "\"%s\"\n"
  1947. "and\n"
  1948. "\"%s\"\n"
  1949. "are the same file"
  1950. msgstr " `%s' i `%s' són el mateix fitxer "
  1951. #, fuzzy, c-format
  1952. msgid ""
  1953. "Cannot create special file \"%s\"\n"
  1954. "%s"
  1955. msgstr ""
  1956. " No puc crear el fitxer especial \"%s\" \n"
  1957. " %s "
  1958. #, fuzzy, c-format
  1959. msgid ""
  1960. "Cannot chown target file \"%s\"\n"
  1961. "%s"
  1962. msgstr ""
  1963. " No puc canviar el propietari del fitxer objectiu \"%s\" \n"
  1964. " %s "
  1965. #, fuzzy, c-format
  1966. msgid ""
  1967. "Cannot chmod target file \"%s\"\n"
  1968. "%s"
  1969. msgstr ""
  1970. " No puc canviar els permisos del fitxer objectiu \"%s\" \n"
  1971. " %s "
  1972. #, fuzzy, c-format
  1973. msgid ""
  1974. "Cannot open source file \"%s\"\n"
  1975. "%s"
  1976. msgstr ""
  1977. " No puc obrir el fitxer origen \"%s\" \n"
  1978. " %s "
  1979. #, fuzzy
  1980. msgid "Reget failed, about to overwrite file"
  1981. msgstr " Ha fallat la represa, es sobreescriurà el fitxer "
  1982. #, fuzzy, c-format
  1983. msgid ""
  1984. "Cannot fstat source file \"%s\"\n"
  1985. "%s"
  1986. msgstr ""
  1987. " No puc estudiar el fitxer origen \"%s\" \n"
  1988. " %s "
  1989. #, fuzzy, c-format
  1990. msgid ""
  1991. "Cannot create target file \"%s\"\n"
  1992. "%s"
  1993. msgstr ""
  1994. " No puc crear el fitxer objectiu \"%s\" \n"
  1995. " %s "
  1996. #, fuzzy, c-format
  1997. msgid ""
  1998. "Cannot fstat target file \"%s\"\n"
  1999. "%s"
  2000. msgstr ""
  2001. " No puc estudiar el fitxer objectiu \"%s\" \n"
  2002. " %s "
  2003. #, fuzzy, c-format
  2004. msgid ""
  2005. "Cannot read source file\"%s\"\n"
  2006. "%s"
  2007. msgstr ""
  2008. " No puc llegir el fitxer origen \"%s\" \n"
  2009. " %s "
  2010. #, fuzzy, c-format
  2011. msgid ""
  2012. "Cannot write target file \"%s\"\n"
  2013. "%s"
  2014. msgstr ""
  2015. " No puc escriure el fitxer objectiu \"%s\" \n"
  2016. " %s "
  2017. msgid "(stalled)"
  2018. msgstr "(encallat)"
  2019. #, fuzzy, c-format
  2020. msgid ""
  2021. "Cannot close source file \"%s\"\n"
  2022. "%s"
  2023. msgstr ""
  2024. " No puc tancar el fitxer origen \"%s\" \n"
  2025. " %s "
  2026. #, fuzzy, c-format
  2027. msgid ""
  2028. "Cannot close target file \"%s\"\n"
  2029. "%s"
  2030. msgstr ""
  2031. " No puc tancar el fitxer objectiu \"%s\" \n"
  2032. " %s "
  2033. msgid "Incomplete file was retrieved. Keep it?"
  2034. msgstr "S'ha recuperat un fitxer incomplet. Voleu conservar-lo?"
  2035. msgid "&Keep"
  2036. msgstr "&Conservar-lo"
  2037. #, fuzzy, c-format
  2038. msgid ""
  2039. "Cannot stat source directory \"%s\"\n"
  2040. "%s"
  2041. msgstr ""
  2042. " No puc estudiar el directori origen \"%s\" \n"
  2043. " %s "
  2044. #, fuzzy, c-format
  2045. msgid ""
  2046. "Source \"%s\" is not a directory\n"
  2047. "%s"
  2048. msgstr ""
  2049. " El directori origen \"%s\" no és un directori \n"
  2050. " %s "
  2051. #, fuzzy, c-format
  2052. msgid ""
  2053. "Cannot copy cyclic symbolic link\n"
  2054. "\"%s\""
  2055. msgstr ""
  2056. " No puc copiar l'enllaç simbòlic cíclic \n"
  2057. " \"%s\" "
  2058. #, fuzzy, c-format
  2059. msgid ""
  2060. "Destination \"%s\" must be a directory\n"
  2061. "%s"
  2062. msgstr ""
  2063. " Cal que el destí \"%s\" sigui un directori \n"
  2064. " %s "
  2065. #, fuzzy, c-format
  2066. msgid ""
  2067. "Cannot create target directory \"%s\"\n"
  2068. "%s"
  2069. msgstr ""
  2070. " No puc crear el directori objectiu \"%s\" \n"
  2071. " %s "
  2072. #, fuzzy, c-format
  2073. msgid ""
  2074. "Cannot chown target directory \"%s\"\n"
  2075. "%s"
  2076. msgstr ""
  2077. " No puc canviar el propietari del directori objectiu \"%s\" \n"
  2078. " %s "
  2079. #, fuzzy, c-format
  2080. msgid ""
  2081. "Cannot stat file \"%s\"\n"
  2082. "%s"
  2083. msgstr ""
  2084. " No puc estudiar el fitxer \"%s\" \n"
  2085. " %s "
  2086. #, fuzzy, c-format
  2087. msgid "Cannot overwrite directory \"%s\""
  2088. msgstr " No puc sobreescriure el directori \"%s\" %s "
  2089. #, fuzzy, c-format
  2090. msgid ""
  2091. "Cannot move file \"%s\" to \"%s\"\n"
  2092. "%s"
  2093. msgstr ""
  2094. " No puc moure el fitxer \"%s\" a \"%s\" \n"
  2095. " %s "
  2096. #, fuzzy, c-format
  2097. msgid ""
  2098. "Cannot remove file \"%s\"\n"
  2099. "%s"
  2100. msgstr ""
  2101. " No puc suprimir el fitxer \"%s\" \n"
  2102. " %s "
  2103. #, fuzzy, c-format
  2104. msgid ""
  2105. "\"%s\"\n"
  2106. "and\n"
  2107. "\"%s\"\n"
  2108. "are the same directory"
  2109. msgstr " `%s' i `%s' són el mateix directori "
  2110. #, fuzzy, c-format
  2111. msgid ""
  2112. "Cannot overwrite directory \"%s\"\n"
  2113. "%s"
  2114. msgstr ""
  2115. " No puc sobreescriure el directori \"%s\" \n"
  2116. " %s "
  2117. #, fuzzy, c-format
  2118. msgid ""
  2119. "Cannot overwrite file \"%s\"\n"
  2120. "%s"
  2121. msgstr " No puc sobreescriure el fitxer \"%s\" %s "
  2122. #, fuzzy, c-format
  2123. msgid ""
  2124. "Cannot move directory \"%s\" to \"%s\"\n"
  2125. "%s"
  2126. msgstr ""
  2127. " No puc moure el directori \"%s\" a \"%s\" \n"
  2128. " %s "
  2129. #, fuzzy, c-format
  2130. msgid ""
  2131. "Cannot delete file \"%s\"\n"
  2132. "%s"
  2133. msgstr ""
  2134. " No puc suprimir el fitxer \"%s\" \n"
  2135. " %s "
  2136. #, fuzzy, c-format
  2137. msgid ""
  2138. "Cannot remove directory \"%s\"\n"
  2139. "%s"
  2140. msgstr ""
  2141. " No puc suprimir el directori \"%s\" \n"
  2142. " %s "
  2143. #, fuzzy
  2144. msgid "Directory scanning"
  2145. msgstr "Ruta del directori"
  2146. msgid "FileOperation|Copy"
  2147. msgstr ""
  2148. msgid "FileOperation|Move"
  2149. msgstr ""
  2150. msgid "FileOperation|Delete"
  2151. msgstr ""
  2152. #, no-c-format
  2153. msgid "%o %f \"%s\"%m"
  2154. msgstr "%o %f \"%s\"%m"
  2155. #, no-c-format
  2156. msgid "%o %d %f%m"
  2157. msgstr "%o %d %f%m"
  2158. msgid "files"
  2159. msgstr "fitxers"
  2160. msgid "directory"
  2161. msgstr "directori"
  2162. msgid "directories"
  2163. msgstr "directoris"
  2164. msgid "files/directories"
  2165. msgstr "fitxers/directoris"
  2166. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  2167. msgid " with source mask:"
  2168. msgstr " amb màscara font:"
  2169. msgid "to:"
  2170. msgstr "cap a:"
  2171. #, c-format
  2172. msgid "%s?"
  2173. msgstr ""
  2174. #, fuzzy
  2175. msgid "Cannot operate on \"..\"!"
  2176. msgstr " No puc treballar sobre \"..\"! "
  2177. #, fuzzy
  2178. msgid "Sorry, I could not put the job in background"
  2179. msgstr " Ho sento, no he pogut posar la tasca al rerafons "
  2180. msgid "&Retry"
  2181. msgstr "&Reintenta"
  2182. #, fuzzy
  2183. msgid ""
  2184. "\n"
  2185. "Directory not empty.\n"
  2186. "Delete it recursively?"
  2187. msgstr ""
  2188. "\n"
  2189. " El directori no és buit. \n"
  2190. " Voleu suprimir-lo recursivament? "
  2191. #, fuzzy
  2192. msgid ""
  2193. "\n"
  2194. "Background process: Directory not empty.\n"
  2195. "Delete it recursively?"
  2196. msgstr ""
  2197. "\n"
  2198. " Tasca de fons: El directori no és buit \n"
  2199. " Voleu suprimir-lo recursivament? "
  2200. #, fuzzy
  2201. msgid "Delete:"
  2202. msgstr "Suprimeix"
  2203. msgid "Non&e"
  2204. msgstr "ca&P"
  2205. #, c-format
  2206. msgid "%d:%02d.%02d"
  2207. msgstr ""
  2208. #, c-format
  2209. msgid "ETA %s"
  2210. msgstr ""
  2211. #, c-format
  2212. msgid "%.2f MB/s"
  2213. msgstr ""
  2214. #, c-format
  2215. msgid "%.2f KB/s"
  2216. msgstr ""
  2217. #, c-format
  2218. msgid "%ld B/s"
  2219. msgstr ""
  2220. #, c-format
  2221. msgid "Files processed: %llu of %llu"
  2222. msgstr ""
  2223. #, fuzzy, c-format
  2224. msgid "Time: %s %s (%s)"
  2225. msgstr "Mida: %s"
  2226. #, c-format
  2227. msgid "Total: %s of %s"
  2228. msgstr ""
  2229. msgid "Source"
  2230. msgstr "Font/Origen"
  2231. msgid "Target"
  2232. msgstr "Objectiu/Destí"
  2233. msgid "Deleting"
  2234. msgstr "Suprimint"
  2235. #, fuzzy
  2236. msgid "Target file already exists!"
  2237. msgstr "El fitxer de destí \"%s\" ja existeix!"
  2238. #, fuzzy, c-format
  2239. msgid "Source date: %s, size %llu"
  2240. msgstr "Data del font: %s, mida %llu"
  2241. #, fuzzy, c-format
  2242. msgid "Target date: %s, size %llu"
  2243. msgstr "Data del destí: %s, mida %llu"
  2244. #, fuzzy, c-format
  2245. msgid "Source date: %s, size %u"
  2246. msgstr "Data del font: %s, mida %u"
  2247. #, fuzzy, c-format
  2248. msgid "Target date: %s, size %u"
  2249. msgstr "Data del destí: %s, mida %u"
  2250. msgid "If &size differs"
  2251. msgstr "si difereix la &Mida"
  2252. msgid "&Update"
  2253. msgstr "actualit&Za"
  2254. msgid "Overwrite all targets?"
  2255. msgstr "Voleu sobreescriure'ls tots?"
  2256. msgid "&Reget"
  2257. msgstr "reprè&N"
  2258. msgid "A&ppend"
  2259. msgstr "afe&Geix"
  2260. msgid "Overwrite this target?"
  2261. msgstr "Voleu sobreescriure aquest destí?"
  2262. #, fuzzy
  2263. msgid "File exists"
  2264. msgstr " El fitxer ja existeix "
  2265. #, fuzzy
  2266. msgid "Background process: File exists"
  2267. msgstr " Tasca de fons: El fitxer ja existeix "
  2268. msgid "&Background"
  2269. msgstr "&Segon pla"
  2270. msgid "&Stable Symlinks"
  2271. msgstr "enllaços simbòlics &Estables"
  2272. #, fuzzy
  2273. msgid "Di&ve into subdir if exists"
  2274. msgstr "&Recórrer al subdirectori si existeix"
  2275. #, fuzzy
  2276. msgid "Preserve &attributes"
  2277. msgstr "&Preserva els atributs"
  2278. #, fuzzy
  2279. msgid "Follow &links"
  2280. msgstr "segueix els en&Llaços"
  2281. #, fuzzy, c-format
  2282. msgid "Invalid source pattern `%s'"
  2283. msgstr ""
  2284. " El patró de font `%s' no és vàlid \n"
  2285. " %s "
  2286. msgid "&Suspend"
  2287. msgstr "&Suspèn"
  2288. msgid "Con&tinue"
  2289. msgstr "&Continua"
  2290. msgid "&Chdir"
  2291. msgstr "Canvia de &dirextori"
  2292. msgid "&Again"
  2293. msgstr "Un &Altre cop"
  2294. msgid "Pane&lize"
  2295. msgstr "Converteix-ho en &quadre"
  2296. msgid "&View - F3"
  2297. msgstr "&Visualitza - F3"
  2298. msgid "&Edit - F4"
  2299. msgstr "&Edita - F4"
  2300. #, c-format
  2301. msgid "Found: %ld"
  2302. msgstr ""
  2303. #, fuzzy
  2304. msgid "Malformed regular expression"
  2305. msgstr " L'expressió habitual no és correcta "
  2306. #, fuzzy
  2307. msgid "Cas&e sensitive"
  2308. msgstr "distingeix entre majú&Scules/minúscules"
  2309. msgid "&Find recursively"
  2310. msgstr ""
  2311. msgid "S&kip hidden"
  2312. msgstr ""
  2313. msgid "&All charsets"
  2314. msgstr ""
  2315. #, fuzzy
  2316. msgid "Case sens&itive"
  2317. msgstr "distingeix entre majú&Scules/minúscules"
  2318. #, fuzzy
  2319. msgid "Re&gular expression"
  2320. msgstr "Expressió &Habitual"
  2321. msgid "Fir&st hit"
  2322. msgstr ""
  2323. msgid "All cha&rsets"
  2324. msgstr ""
  2325. msgid "&Tree"
  2326. msgstr "Ar&bre"
  2327. msgid "Find File"
  2328. msgstr "Cerca Fitxer"
  2329. #, fuzzy
  2330. msgid "Content:"
  2331. msgstr "Contingut:"
  2332. #, fuzzy
  2333. msgid "File name:"
  2334. msgstr "Nom del fitxer:"
  2335. msgid "Start at:"
  2336. msgstr "Comença a:"
  2337. # Cal veure fins a qin punt l'MC anomena els programes que fa servir, eh? iv
  2338. #, c-format
  2339. msgid "Grepping in %s"
  2340. msgstr "Grepping in %s"
  2341. msgid "Finished"
  2342. msgstr "Finalitzat"
  2343. #, c-format
  2344. msgid "Searching %s"
  2345. msgstr "S'està cercant a %s"
  2346. msgid "Searching"
  2347. msgstr "Cercant"
  2348. #, fuzzy
  2349. msgid "Help file format error\n"
  2350. msgstr " El format del fitxer d'ajuda és erroni\n"
  2351. #, fuzzy
  2352. msgid "Internal bug: Double start of link area"
  2353. msgstr " S'ha produït un error intern: Començament doble de l'àrea d'enllaços "
  2354. #, fuzzy, c-format
  2355. msgid "Cannot find node %s in help file"
  2356. msgstr " No es troba el node %s al fitxer d'ajuda"
  2357. msgid "Help"
  2358. msgstr "Ajuda"
  2359. msgid "ButtonBar|Index"
  2360. msgstr ""
  2361. msgid "ButtonBar|Prev"
  2362. msgstr ""
  2363. msgid "&Move"
  2364. msgstr "&Mou"
  2365. msgid "&Remove"
  2366. msgstr "&Suprimeix"
  2367. msgid "&Append"
  2368. msgstr "A&fegeix"
  2369. msgid "&Insert"
  2370. msgstr "&Insereix"
  2371. #, fuzzy
  2372. msgid "New &entry"
  2373. msgstr "Nou re&gistre"
  2374. #, fuzzy
  2375. msgid "New &group"
  2376. msgstr "Nou &grup"
  2377. msgid "&Up"
  2378. msgstr "A&munt"
  2379. msgid "&Add current"
  2380. msgstr "Afe&geix l'actual"
  2381. #, fuzzy
  2382. msgid "&Refresh"
  2383. msgstr "in&Verteix"
  2384. msgid "Fr&ee VFSs now"
  2385. msgstr "Allib&era els VFSs ara"
  2386. #, fuzzy
  2387. msgid "Change &to"
  2388. msgstr "Can&via a"
  2389. msgid "Subgroup - press ENTER to see list"
  2390. msgstr "Subgrup - premeu RETORN per veure la llista"
  2391. msgid "Active VFS directories"
  2392. msgstr "Directoris VFS actius"
  2393. msgid "Directory hotlist"
  2394. msgstr "Directori favorits"
  2395. msgid "Directory path"
  2396. msgstr "Ruta del directori"
  2397. msgid "Directory label"
  2398. msgstr "Etiqueta del directori"
  2399. #, c-format
  2400. msgid "Moving %s"
  2401. msgstr "S'està movent %s"
  2402. msgid "New hotlist entry"
  2403. msgstr "Nou registre als favorits"
  2404. #, fuzzy
  2405. msgid "Directory label:"
  2406. msgstr "Etiqueta del directori"
  2407. #, fuzzy
  2408. msgid "Directory path:"
  2409. msgstr "Ruta del directori"
  2410. #, fuzzy
  2411. msgid "New hotlist group"
  2412. msgstr " Nou grup de favorits "
  2413. #, fuzzy
  2414. msgid "Name of new group:"
  2415. msgstr "Nom del nou grup"
  2416. #, c-format
  2417. msgid "Label for \"%s\":"
  2418. msgstr "Etiqueta per a \"%s\":"
  2419. #, fuzzy
  2420. msgid "Add to hotlist"
  2421. msgstr " Afegeix als favorits "
  2422. #, fuzzy
  2423. msgid "Remove:"
  2424. msgstr " Suprimeix: "
  2425. msgid "Are you sure you want to remove this entry?"
  2426. msgstr ""
  2427. #, fuzzy
  2428. msgid ""
  2429. "Group not empty.\n"
  2430. "Remove it?"
  2431. msgstr ""
  2432. "\n"
  2433. " El grup no és buit.\n"
  2434. " Voleu suprimir-lo?"
  2435. #, fuzzy
  2436. msgid "Top level group"
  2437. msgstr " Grup principal "
  2438. #, fuzzy
  2439. msgid "Hotlist Load"
  2440. msgstr " Càrrega de favorits "
  2441. #, fuzzy, c-format
  2442. msgid ""
  2443. "MC was unable to write ~/%s file,\n"
  2444. "your old hotlist entries were not deleted"
  2445. msgstr " fitxer, i no s'ha pogut suprimir els favorits antics"
  2446. #, fuzzy
  2447. msgid "Information"
  2448. msgstr " Informació "
  2449. #, c-format
  2450. msgid "Midnight Commander %s"
  2451. msgstr "Midnight Commander %s"
  2452. #, c-format
  2453. msgid "File: %s"
  2454. msgstr "Fitxer: %s"
  2455. #, fuzzy, c-format
  2456. msgid "Free nodes: %ld (%ld%%) of %ld"
  2457. msgstr "Nodes lliures: %d (%d%%) of %d"
  2458. msgid "No node information"
  2459. msgstr "No hi ha informació de nodes"
  2460. #, c-format
  2461. msgid "Free space: %s (%d%%) of %s"
  2462. msgstr "Espai lliure: %s (%d%%) of %s"
  2463. msgid "No space information"
  2464. msgstr "No hi ha informació d'espai"
  2465. #, fuzzy, c-format
  2466. msgid "Type: %s"
  2467. msgstr "Tipus: %s "
  2468. msgid "non-local vfs"
  2469. msgstr "VFS no-local"
  2470. #, c-format
  2471. msgid "Device: %s"
  2472. msgstr "Dispositiu: %s"
  2473. # Això queda més aclaridor... iv
  2474. #, c-format
  2475. msgid "Filesystem: %s"
  2476. msgstr "Muntat a: %s"
  2477. #, c-format
  2478. msgid "Accessed: %s"
  2479. msgstr "Accedit: %s"
  2480. #, c-format
  2481. msgid "Modified: %s"
  2482. msgstr "Modificat: %s"
  2483. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2484. #, fuzzy, c-format
  2485. msgid "Changed: %s"
  2486. msgstr "Can&via a"
  2487. #, c-format
  2488. msgid "Dev. type: major %lu, minor %lu"
  2489. msgstr ""
  2490. #, c-format
  2491. msgid "Size: %s"
  2492. msgstr "Mida: %s"
  2493. #, fuzzy, c-format
  2494. msgid " (%ld block)"
  2495. msgid_plural " (%ld blocks)"
  2496. msgstr[0] " (%ld bloc)"
  2497. msgstr[1] " (%ld bloc)"
  2498. #, c-format
  2499. msgid "Owner: %s/%s"
  2500. msgstr "Propietari: %s/%s"
  2501. #, c-format
  2502. msgid "Links: %d"
  2503. msgstr "Enllaços: %d"
  2504. #, c-format
  2505. msgid "Mode: %s (%04o)"
  2506. msgstr "Mode: %s (%04o)"
  2507. #, c-format
  2508. msgid "Location: %Xh:%Xh"
  2509. msgstr "Ubicació: %Xh:%Xh"
  2510. msgid "&Vertical"
  2511. msgstr "&Vertical"
  2512. msgid "&Horizontal"
  2513. msgstr "&Horitzontal"
  2514. msgid "Show free sp&ace"
  2515. msgstr ""
  2516. #, fuzzy
  2517. msgid "&XTerm window title"
  2518. msgstr "pistes a &Xterm"
  2519. #, fuzzy
  2520. msgid "H&intbar visible"
  2521. msgstr "p&Istes visibles"
  2522. msgid "&Keybar visible"
  2523. msgstr "Barra de &Tecles visible"
  2524. #, fuzzy
  2525. msgid "Command &prompt"
  2526. msgstr "&Línia d'ordres"
  2527. #, fuzzy
  2528. msgid "Show &mini status"
  2529. msgstr "mostra el &Miniestat"
  2530. #, fuzzy
  2531. msgid "Menu&bar visible"
  2532. msgstr "&Barra de menús visible"
  2533. msgid "&Equal split"
  2534. msgstr "divisió &Simètrica"
  2535. #, fuzzy
  2536. msgid "Panel split"
  2537. msgstr " Divisió de quadres "
  2538. msgid "Console output"
  2539. msgstr ""
  2540. #, fuzzy
  2541. msgid "Other options"
  2542. msgstr " Altres opcions "
  2543. #, fuzzy
  2544. msgid "Output lines:"
  2545. msgstr "línies de sortida"
  2546. msgid "Layout"
  2547. msgstr "Disposició"
  2548. msgid "Learn keys"
  2549. msgstr "Defineix tecles"
  2550. #, fuzzy
  2551. msgid "Teach me a key"
  2552. msgstr " Premeu la tecla "
  2553. #, c-format
  2554. msgid ""
  2555. "Please press the %s\n"
  2556. "and then wait until this message disappears.\n"
  2557. "\n"
  2558. "Then, press it again to see if OK appears\n"
  2559. "next to its button.\n"
  2560. "\n"
  2561. "If you want to escape, press a single Escape key\n"
  2562. "and wait as well."
  2563. msgstr ""
  2564. "Per favor, premeu la tecla %s\n"
  2565. "i espereu fins que desaparegui aquest missatge.\n"
  2566. "\n"
  2567. "Aleshores, premeu-la de nou per veure si\n"
  2568. "apareix \"D'acord\" vora el seu botó.\n"
  2569. "\n"
  2570. "Si voleu sortir, premeu un cop la tecla\n"
  2571. "d'Escapada i espereu."
  2572. #, fuzzy
  2573. msgid "Cannot accept this key"
  2574. msgstr " No puc acceptar la tecla "
  2575. #, fuzzy, c-format
  2576. msgid "You have entered \"%s\""
  2577. msgstr " Heu pres \"%s\""
  2578. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2579. msgid "OK"
  2580. msgstr "D'acord"
  2581. msgid ""
  2582. "It seems that all your keys already\n"
  2583. "work fine. That's great."
  2584. msgstr ""
  2585. "Sembla que les tecles ja\n"
  2586. "funcionen bé. Això és perfecte."
  2587. msgid "&Discard"
  2588. msgstr "&Descarta"
  2589. msgid ""
  2590. "Great! You have a complete terminal database!\n"
  2591. "All your keys work well."
  2592. msgstr ""
  2593. "Genial! Teniu una base de dades de terminals\n"
  2594. "completa! Totes les tecles funcionen."
  2595. msgid "Press all the keys mentioned here. After you have done it, check"
  2596. msgstr "Premeu totes les tecles esmentades. Quan ho hagueu fet, comproveu"
  2597. msgid "which keys are not marked with OK. Press space on the missing"
  2598. msgstr ""
  2599. "a quina tecla no hi ha la marca \"D'acord\". Per definir-la, premeu-hi"
  2600. msgid "key, or click with the mouse to define it. Move around with Tab."
  2601. msgstr "l'espai o feu-hi clic. Per desplaçar-vos, utilitzeu el tabulador."
  2602. #, c-format
  2603. msgid "You have %zd opened screen. Quit anyway?"
  2604. msgid_plural "You have %zd opened screens. Quit anyway?"
  2605. msgstr[0] ""
  2606. msgstr[1] ""
  2607. #, fuzzy
  2608. msgid "The Midnight Commander"
  2609. msgstr " El Midnight Commander "
  2610. #, fuzzy
  2611. msgid "Do you really want to quit the Midnight Commander?"
  2612. msgstr " Realment voleu sortir del Midnight Commander? "
  2613. #, fuzzy
  2614. msgid "File listin&g"
  2615. msgstr "llistat c&Omplet"
  2616. #, fuzzy
  2617. msgid "&Quick view"
  2618. msgstr "Desat ràpid "
  2619. #, fuzzy
  2620. msgid "&Info"
  2621. msgstr "node-&I"
  2622. msgid "&Listing mode..."
  2623. msgstr "mode de &Llistat..."
  2624. msgid "&Sort order..."
  2625. msgstr "&Ordenació..."
  2626. msgid "&Filter..."
  2627. msgstr "&Filtra..."
  2628. #, fuzzy
  2629. msgid "&Encoding..."
  2630. msgstr "&Ordena... M-t"
  2631. msgid "FT&P link..."
  2632. msgstr "enllaç per a F&TP..."
  2633. #, fuzzy
  2634. msgid "S&hell link..."
  2635. msgstr "Enllaç SM&B..."
  2636. msgid "SM&B link..."
  2637. msgstr "Enllaç SM&B..."
  2638. #, fuzzy
  2639. msgid "&Rescan"
  2640. msgstr "Rellegeix"
  2641. #, fuzzy
  2642. msgid "&View"
  2643. msgstr "Vista"
  2644. #, fuzzy
  2645. msgid "Vie&w file..."
  2646. msgstr " Visualització del fitxer "
  2647. #, fuzzy
  2648. msgid "&Filtered view"
  2649. msgstr " Vista filtrada "
  2650. #, fuzzy
  2651. msgid "&Copy"
  2652. msgstr "Copia"
  2653. msgid "C&hmod"
  2654. msgstr ""
  2655. #, fuzzy
  2656. msgid "&Link"
  2657. msgstr "en&Llaços"
  2658. #, fuzzy
  2659. msgid "&Symlink"
  2660. msgstr "en&Llaços"
  2661. #, fuzzy
  2662. msgid "Relative symlin&k"
  2663. msgstr "Està identificant l'enllaç simbòlic..."
  2664. #, fuzzy
  2665. msgid "Edit s&ymlink"
  2666. msgstr " Edita l'enllaç simbòlic "
  2667. msgid "Ch&own"
  2668. msgstr ""
  2669. #, fuzzy
  2670. msgid "&Advanced chown"
  2671. msgstr "&Permisos i propietari "
  2672. #, fuzzy
  2673. msgid "&Rename/Move"
  2674. msgstr "&Suprimeix"
  2675. #, fuzzy
  2676. msgid "&Mkdir"
  2677. msgstr "FerDir"
  2678. #, fuzzy
  2679. msgid "&Quick cd"
  2680. msgstr "Canvi ràpid de directori"
  2681. #, fuzzy
  2682. msgid "Select &group"
  2683. msgstr "Estableix els &grups"
  2684. #, fuzzy
  2685. msgid "U&nselect group"
  2686. msgstr " Deselecciona "
  2687. #, fuzzy
  2688. msgid "Reverse selec&tion"
  2689. msgstr "&Inverteix la selecció M-*"
  2690. #, fuzzy
  2691. msgid "E&xit"
  2692. msgstr "Edita"
  2693. #, fuzzy
  2694. msgid "&User menu"
  2695. msgstr " Menú d'usuari "
  2696. msgid "&Directory tree"
  2697. msgstr "arbre de &Directoris"
  2698. #, fuzzy
  2699. msgid "&Find file"
  2700. msgstr "Cerca Fitxer"
  2701. msgid "S&wap panels"
  2702. msgstr ""
  2703. #, fuzzy
  2704. msgid "Switch &panels on/off"
  2705. msgstr "activa/desactiva la commutació de &Quadres C-o"
  2706. #, fuzzy
  2707. msgid "&Compare directories"
  2708. msgstr " Compara els directoris "
  2709. #, fuzzy
  2710. msgid "&View diff files"
  2711. msgstr " Visualització del fitxer "
  2712. #, fuzzy
  2713. msgid "E&xternal panelize"
  2714. msgstr "Quadre de recerca externa"
  2715. #, fuzzy
  2716. msgid "Show directory s&izes"
  2717. msgstr "mostra la mi&Da dels directoris"
  2718. #, fuzzy
  2719. msgid "Command &history"
  2720. msgstr "&Historial d'ordres"
  2721. #, fuzzy
  2722. msgid "Di&rectory hotlist"
  2723. msgstr "Directori favorits"
  2724. #, fuzzy
  2725. msgid "&Active VFS list"
  2726. msgstr "llista de VFSs &Actius C-x a"
  2727. #, fuzzy
  2728. msgid "&Background jobs"
  2729. msgstr "Tasques de fons"
  2730. msgid "Screen lis&t"
  2731. msgstr ""
  2732. msgid "&Undelete files (ext2fs only)"
  2733. msgstr "&Recupera els fitxers (sols ext2fs)"
  2734. msgid "&Listing format edit"
  2735. msgstr "edita el format de &Llistat"
  2736. msgid "Edit &extension file"
  2737. msgstr "edita el fitxer d'&Extensions"
  2738. msgid "Edit &menu file"
  2739. msgstr "edita el fitxer de &Menús"
  2740. msgid "Edit hi&ghlighting group file"
  2741. msgstr ""
  2742. msgid "&Configuration..."
  2743. msgstr "&Configuració..."
  2744. msgid "&Layout..."
  2745. msgstr "&Format..."
  2746. #, fuzzy
  2747. msgid "&Panel options..."
  2748. msgstr " Opcions del quadre "
  2749. #, fuzzy
  2750. msgid "C&onfirmation..."
  2751. msgstr "con&Firmació..."
  2752. msgid "&Display bits..."
  2753. msgstr "&Bits de visualització..."
  2754. msgid "&Virtual FS..."
  2755. msgstr "Sistemes de fitxers &Virtuals..."
  2756. #, fuzzy
  2757. msgid "&Above"
  2758. msgstr " a dal&T "
  2759. #, fuzzy
  2760. msgid "&Left"
  2761. msgstr " &Esquerra "
  2762. #, fuzzy
  2763. msgid "&Below"
  2764. msgstr " a bai&X "
  2765. #, fuzzy
  2766. msgid "&Right"
  2767. msgstr " &Dreta "
  2768. #, fuzzy
  2769. msgid "Panels:"
  2770. msgstr " Divisió de quadres "
  2771. msgid "ButtonBar|Menu"
  2772. msgstr ""
  2773. msgid "ButtonBar|View"
  2774. msgstr ""
  2775. msgid "ButtonBar|RenMov"
  2776. msgstr ""
  2777. msgid "ButtonBar|Mkdir"
  2778. msgstr ""
  2779. msgid "The TERM environment variable is unset!\n"
  2780. msgstr "La variable d'entorn TERM no esta definida!\n"
  2781. #, fuzzy, c-format
  2782. msgid "Cannot create %s directory"
  2783. msgstr "No he pogut canviar de directori"
  2784. msgid "&Never"
  2785. msgstr "&Mai"
  2786. #, fuzzy
  2787. msgid "On dum&b terminals"
  2788. msgstr "a terminals &Ximples"
  2789. msgid "Alwa&ys"
  2790. msgstr "&Sempre"
  2791. #, fuzzy
  2792. msgid "A&uto save setup"
  2793. msgstr "Desa la configuració automàticament"
  2794. #, fuzzy
  2795. msgid "Sa&fe delete"
  2796. msgstr "&Supressió segura"
  2797. #, fuzzy
  2798. msgid "Cd follows lin&ks"
  2799. msgstr "cd segueix els en&Llaços"
  2800. #, fuzzy
  2801. msgid "Rotating d&ash"
  2802. msgstr "&Barreta rotatòria"
  2803. #, fuzzy
  2804. msgid "Co&mplete: show all"
  2805. msgstr "completat: mostrar-&Ho tot"
  2806. #, fuzzy
  2807. msgid "Shell &patterns"
  2808. msgstr "&Patrons de l'intèrpret"
  2809. msgid "&Drop down menus"
  2810. msgstr "menús &Desplegables"
  2811. #, fuzzy
  2812. msgid "Auto m&enus"
  2813. msgstr "auto-&Menús"
  2814. #, fuzzy
  2815. msgid "Use internal vie&w"
  2816. msgstr "utilitza el &Visualitzador intern"
  2817. #, fuzzy
  2818. msgid "Use internal edi&t"
  2819. msgstr "utilitza l'ed&Itor intern"
  2820. #, fuzzy
  2821. msgid "Pause after run"
  2822. msgstr " Fes una pausa després d'executar... "
  2823. #, fuzzy
  2824. msgid "Timeout:"
  2825. msgstr "MTime"
  2826. #, fuzzy
  2827. msgid "S&ingle press"
  2828. msgstr "tipus de &Fitxer"
  2829. #, fuzzy
  2830. msgid "Esc key mode"
  2831. msgstr "Barra teclat numèric"
  2832. msgid "Mkdi&r autoname"
  2833. msgstr ""
  2834. msgid "Classic pro&gressbar"
  2835. msgstr ""
  2836. #, fuzzy
  2837. msgid "Compute tota&ls"
  2838. msgstr "calcula els &Totals"
  2839. msgid "&Verbose operation"
  2840. msgstr "detalla les &Operacions"
  2841. #, fuzzy
  2842. msgid "File operation options"
  2843. msgstr " Altres opcions "
  2844. msgid "Configure options"
  2845. msgstr "Opcions de configuració"
  2846. #, fuzzy
  2847. msgid "Case &insensitive"
  2848. msgstr "distingeix entre majú&Scules/minúscules"
  2849. #, fuzzy
  2850. msgid "Case s&ensitive"
  2851. msgstr "distingeix entre majú&Scules/minúscules"
  2852. #, fuzzy
  2853. msgid "Use panel sort mo&de"
  2854. msgstr "&Mode de desar..."
  2855. #, fuzzy
  2856. msgid "Quick search"
  2857. msgstr "Canvi ràpid de directori"
  2858. #, fuzzy
  2859. msgid "&Permissions"
  2860. msgstr "Permisos"
  2861. #, fuzzy
  2862. msgid "File &types"
  2863. msgstr "tipus de &Fitxer"
  2864. #, fuzzy
  2865. msgid "File highlight"
  2866. msgstr " Ressalta... "
  2867. msgid "&Mouse page scrolling"
  2868. msgstr ""
  2869. msgid "Pa&ge scrolling"
  2870. msgstr ""
  2871. msgid "L&ynx-like motion"
  2872. msgstr "moviment com a la L&ynx"
  2873. msgid "Navigation"
  2874. msgstr ""
  2875. #, fuzzy
  2876. msgid "A&uto save panels setup"
  2877. msgstr "Desa la configuració automàticament"
  2878. #, fuzzy
  2879. msgid "Re&verse files only"
  2880. msgstr "només &Mida"
  2881. #, fuzzy
  2882. msgid "Ma&rk moves down"
  2883. msgstr "mo&U avall en marcar"
  2884. msgid "&Fast dir reload"
  2885. msgstr "recàrrega &Ràpida de directoris"
  2886. #, fuzzy
  2887. msgid "Show &hidden files"
  2888. msgstr "mostra els &Fitxers ocults"
  2889. #, fuzzy
  2890. msgid "Show &backup files"
  2891. msgstr "mostra els fitxers de &Còpies de seguretat"
  2892. #, fuzzy
  2893. msgid "Mi&x all files"
  2894. msgstr "&Barreja tots els fitxers"
  2895. msgid "Use SI si&ze units"
  2896. msgstr ""
  2897. #, fuzzy
  2898. msgid "Main panel options"
  2899. msgstr " Opcions del quadre "
  2900. #, fuzzy
  2901. msgid "Panel options"
  2902. msgstr " Opcions del quadre "
  2903. #, fuzzy
  2904. msgid ""
  2905. "Using the fast reload option may not reflect the exact\n"
  2906. "directory contents. In this case you'll need to do a\n"
  2907. "manual reload of the directory. See the man page for\n"
  2908. "the details."
  2909. msgstr ""
  2910. " Si useu l'opció de recàrrega ràpida potser no vegeu el \n"
  2911. " contingut exacte dels directoris. Si és el cas, caldrà \n"
  2912. " que feu una recàrrega manual del directori. Vegeu la \n"
  2913. " pàgina del manual per als detalls. "
  2914. msgid "&Add new"
  2915. msgstr "Afegeix un &nou"
  2916. msgid "External panelize"
  2917. msgstr "Quadre de recerca externa"
  2918. msgid "Command"
  2919. msgstr "Ordre"
  2920. msgid "Other command"
  2921. msgstr "Una altre ordre"
  2922. #, fuzzy
  2923. msgid "Add to external panelize"
  2924. msgstr " Afegeix a un quadre de cerca externa "
  2925. #, fuzzy
  2926. msgid "Enter command label:"
  2927. msgstr " Introduïu l'etiqueta de l'ordre: "
  2928. #, fuzzy
  2929. msgid "Cannot run external panelize in a non-local directory"
  2930. msgstr ""
  2931. " No puc executar un quadre de cerca externa mentre estigui connectat a un "
  2932. "directori no-local "
  2933. msgid "Find rejects after patching"
  2934. msgstr "Troba els fitxers rebutjats després d'apedaçar"
  2935. msgid "Find *.orig after patching"
  2936. msgstr "Cerca *.orig després d'apedaçar"
  2937. msgid "Find SUID and SGID programs"
  2938. msgstr "Cerca programes SUID i SGID"
  2939. msgid "Cannot invoke command."
  2940. msgstr "No puc cridar l'ordre."
  2941. msgid "Pipe close failed"
  2942. msgstr "Ha fallat el tancament del conducte"
  2943. msgid "[dev]"
  2944. msgstr ""
  2945. msgid "UP--DIR"
  2946. msgstr "UP--DIR"
  2947. msgid "SYMLINK"
  2948. msgstr ""
  2949. msgid "SUB-DIR"
  2950. msgstr "SUB-DIR"
  2951. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2952. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2953. msgid "sort|u"
  2954. msgstr ""
  2955. msgid "&Unsorted"
  2956. msgstr "sense &Ordre"
  2957. #. TRANSLATORS: one single character to represent 'name' sort mode
  2958. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2959. msgid "sort|n"
  2960. msgstr ""
  2961. msgid "&Name"
  2962. msgstr "&Nom"
  2963. #. TRANSLATORS: one single character to represent 'version' sort mode
  2964. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2965. #, fuzzy
  2966. msgid "sort|v"
  2967. msgstr "sense &Ordre"
  2968. #, fuzzy
  2969. msgid "&Version"
  2970. msgstr "Permisos"
  2971. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2972. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2973. #, fuzzy
  2974. msgid "sort|e"
  2975. msgstr "sense &Ordre"
  2976. msgid "&Extension"
  2977. msgstr "&Extensió"
  2978. #. TRANSLATORS: one single character to represent 'size' sort mode
  2979. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2980. msgid "sort|s"
  2981. msgstr ""
  2982. msgid "&Size"
  2983. msgstr "Mi&da"
  2984. #, fuzzy
  2985. msgid "Block Size"
  2986. msgstr " Mida"
  2987. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2988. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2989. msgid "sort|m"
  2990. msgstr ""
  2991. msgid "&Modify time"
  2992. msgstr "data de &Modificació"
  2993. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2994. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2995. msgid "sort|a"
  2996. msgstr ""
  2997. msgid "&Access time"
  2998. msgstr "data d'&Accés"
  2999. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  3000. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  3001. msgid "sort|h"
  3002. msgstr ""
  3003. #, fuzzy
  3004. msgid "C&hange time"
  3005. msgstr "data de &Canvi"
  3006. msgid "Perm"
  3007. msgstr "Perm"
  3008. msgid "Nl"
  3009. msgstr "N1"
  3010. #. TRANSLATORS: one single character to represent 'inode' sort mode
  3011. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  3012. msgid "sort|i"
  3013. msgstr ""
  3014. msgid "&Inode"
  3015. msgstr "node-&I"
  3016. msgid "UID"
  3017. msgstr "UID"
  3018. msgid "GID"
  3019. msgstr "GID"
  3020. msgid "Owner"
  3021. msgstr "Propietari"
  3022. msgid "Group"
  3023. msgstr "Grup"
  3024. msgid "<readlink failed>"
  3025. msgstr "<S'ha produït una fallida en llegir l'enllaç>"
  3026. #, fuzzy, c-format
  3027. msgid "%s byte"
  3028. msgid_plural "%s bytes"
  3029. msgstr[0] "%s bytes"
  3030. msgstr[1] "%s bytes"
  3031. #, fuzzy, c-format
  3032. msgid "%s in %d file"
  3033. msgid_plural "%s in %d files"
  3034. msgstr[0] "%s bytes en %d fitxer"
  3035. msgstr[1] "%s bytes en %d fitxer"
  3036. #, fuzzy
  3037. msgid "Unknown tag on display format:"
  3038. msgstr "Marcador desconegut al format de pantalla: "
  3039. msgid "User supplied format looks invalid, reverting to default."
  3040. msgstr ""
  3041. "El format facilitat per l'usuari sembla que és invàlid, s'està tornant al "
  3042. "format per defecte."
  3043. #, fuzzy
  3044. msgid "Do you really want to execute?"
  3045. msgstr " Realment ho voleu executar? "
  3046. #, fuzzy, c-format
  3047. msgid "Cannot chdir to \"%s\""
  3048. msgstr " No s'ha pogut canviar a %s "
  3049. #, fuzzy
  3050. msgid "Choose codepage"
  3051. msgstr " Escolliu la pàgina de codis d'entrada "
  3052. msgid "- < No translation >"
  3053. msgstr "- < Cap traducció >"
  3054. msgid "%b %e %Y"
  3055. msgstr "%b %e %Y"
  3056. msgid "%b %e %H:%M"
  3057. msgstr "%b %e %H:%M"
  3058. #, fuzzy, c-format
  3059. msgid ""
  3060. "Cannot save file %s:\n"
  3061. "%s"
  3062. msgstr " S'ha produït un error en intentar desar el fitxer. "
  3063. msgid ""
  3064. "GNU Midnight Commander is already\n"
  3065. "running on this terminal.\n"
  3066. "Subshell support will be disabled."
  3067. msgstr ""
  3068. #, c-format
  3069. msgid "Cannot open named pipe %s\n"
  3070. msgstr "No puc obrir el conducte designat amb %s\n"
  3071. #, fuzzy
  3072. msgid "The shell is still active. Quit anyway?"
  3073. msgstr " L'intèrpret encara és actiu. Voleu sortir de tota manera? "
  3074. #, c-format
  3075. msgid "Warning: Cannot change to %s.\n"
  3076. msgstr "Avís: No s'ha pogut canviar a %s.\n"
  3077. msgid "With builtin Editor\n"
  3078. msgstr "Amb editor incorporat\n"
  3079. msgid "Using system-installed S-Lang library"
  3080. msgstr "S'està utilitzant la biblioteca S-Lang instal·lada al sistema"
  3081. msgid "with terminfo database"
  3082. msgstr "amb la base de dades terminfo"
  3083. msgid "Using the ncurses library"
  3084. msgstr "S'està utilitzant la biblioteca ncurses"
  3085. #, fuzzy
  3086. msgid "Using the ncursesw library"
  3087. msgstr "S'està utilitzant la biblioteca ncurses"
  3088. msgid "With optional subshell support"
  3089. msgstr "Amb la possibilitat opcional d'utilitzar la subshell"
  3090. msgid "With subshell support as default"
  3091. msgstr "Amb la possibilitat per defecte d'utilitzar la subshell"
  3092. msgid "With support for background operations\n"
  3093. msgstr "Amb suport per a operacions en segon pla\n"
  3094. msgid "With mouse support on xterm and Linux console\n"
  3095. msgstr ""
  3096. "Amb possibilitat d'utilitzar el ratolí en l'xterm i la consola de Linux\n"
  3097. msgid "With mouse support on xterm\n"
  3098. msgstr "Amb possibilitat d'utilitzar el ratolí en l'xterm.\n"
  3099. msgid "With support for X11 events\n"
  3100. msgstr "Amb possibilitat d'utilitzar els esdeveniments X11\n"
  3101. msgid "With internationalization support\n"
  3102. msgstr "Amb la possibilitat d'utilitzar internacionalització\n"
  3103. msgid "With multiple codepages support\n"
  3104. msgstr "Amb la possibilitat d'utilitzar diverses pàgines de codis\n"
  3105. #, fuzzy, c-format
  3106. msgid "Virtual File Systems:"
  3107. msgstr "Sistema de fitxers virtual:"
  3108. #, c-format
  3109. msgid "Data types:"
  3110. msgstr ""
  3111. #, c-format
  3112. msgid ""
  3113. "Cannot open the %s file for writing:\n"
  3114. "%s\n"
  3115. msgstr ""
  3116. "No puc obrir el fitxer %s per escriure:\n"
  3117. "%s\n"
  3118. #, c-format
  3119. msgid "Copy \"%s\" directory to:"
  3120. msgstr "Copia el directori \"%s\" a:"
  3121. #, c-format
  3122. msgid "Move \"%s\" directory to:"
  3123. msgstr "Mou el directori \"%s\" a:"
  3124. #, fuzzy, c-format
  3125. msgid ""
  3126. "Cannot stat the destination\n"
  3127. "%s"
  3128. msgstr ""
  3129. " No puc estudiar el destí \n"
  3130. " %s "
  3131. #, fuzzy, c-format
  3132. msgid "Delete %s?"
  3133. msgstr " Suprimir %s? "
  3134. msgid "ButtonBar|Static"
  3135. msgstr ""
  3136. msgid "ButtonBar|Dynamc"
  3137. msgstr ""
  3138. msgid "ButtonBar|Rescan"
  3139. msgstr ""
  3140. msgid "ButtonBar|Forget"
  3141. msgstr ""
  3142. msgid "ButtonBar|Rmdir"
  3143. msgstr ""
  3144. #, c-format
  3145. msgid ""
  3146. "Cannot write to the %s file:\n"
  3147. "%s\n"
  3148. msgstr ""
  3149. "No puc escriure al fitxer %s:\n"
  3150. "%s\n"
  3151. #, fuzzy
  3152. msgid "Format error on file Extensions File"
  3153. msgstr " Error de format al fitxer Fitxer d'extensions "
  3154. #, fuzzy, c-format
  3155. msgid "The %%var macro has no default"
  3156. msgstr " La macro %%var no té cap valor predeterminat "
  3157. #, fuzzy, c-format
  3158. msgid "The %%var macro has no variable"
  3159. msgstr " La macro %%var no té cap variable "
  3160. #, fuzzy
  3161. msgid "Debug"
  3162. msgstr " Depura "
  3163. #, fuzzy
  3164. msgid "ERROR:"
  3165. msgstr " ERROR: "
  3166. #, fuzzy
  3167. msgid "True:"
  3168. msgstr " Cert: "
  3169. #, fuzzy
  3170. msgid "False:"
  3171. msgstr " Fals: "
  3172. #, fuzzy
  3173. msgid "Warning -- ignoring file"
  3174. msgstr " Avís -- es descarta el fitxer "
  3175. #, c-format
  3176. msgid ""
  3177. "File %s is not owned by root or you or is world writable.\n"
  3178. "Using it may compromise your security"
  3179. msgstr ""
  3180. "El fitxer %s no pertany ni a l'arrel ni a vostè, o bé és modificable per\n"
  3181. "qualsevol. Usar-lo podria comprometre la seguretat"
  3182. #, fuzzy, c-format
  3183. msgid ""
  3184. "Cannot open file%s\n"
  3185. "%s"
  3186. msgstr ""
  3187. " No puc obrir el fitxer %s \n"
  3188. " %s "
  3189. #, fuzzy, c-format
  3190. msgid "No suitable entries found in %s"
  3191. msgstr " No s'han trobat entrades apropiades a %s "
  3192. #, fuzzy
  3193. msgid "User menu"
  3194. msgstr " Menú d'usuari "
  3195. #, fuzzy
  3196. msgid "Invalid value"
  3197. msgstr " La contrasenya no és vàlida "
  3198. #, fuzzy
  3199. msgid "Cannot spawn child process"
  3200. msgstr " No puc llançar el procés fill "
  3201. msgid "Empty output from child filter"
  3202. msgstr ""
  3203. msgid "&Line number (decimal)"
  3204. msgstr ""
  3205. msgid "Pe&rcents"
  3206. msgstr ""
  3207. msgid "&Decimal offset"
  3208. msgstr ""
  3209. msgid "He&xadecimal offset"
  3210. msgstr ""
  3211. msgid "Goto"
  3212. msgstr "Ves a"
  3213. msgid "ButtonBar|Ascii"
  3214. msgstr ""
  3215. msgid "ButtonBar|HxSrch"
  3216. msgstr ""
  3217. msgid "ButtonBar|UnWrap"
  3218. msgstr ""
  3219. msgid "ButtonBar|Wrap"
  3220. msgstr ""
  3221. msgid "ButtonBar|Hex"
  3222. msgstr ""
  3223. msgid "ButtonBar|Goto"
  3224. msgstr ""
  3225. msgid "ButtonBar|Raw"
  3226. msgstr ""
  3227. msgid "ButtonBar|Parse"
  3228. msgstr ""
  3229. msgid "ButtonBar|Unform"
  3230. msgstr ""
  3231. msgid "ButtonBar|Format"
  3232. msgstr ""
  3233. #, c-format
  3234. msgid ""
  3235. "Error while closing the file:\n"
  3236. "%s\n"
  3237. "Data may have been written or not"
  3238. msgstr ""
  3239. #, fuzzy, c-format
  3240. msgid ""
  3241. "Cannot save file:\n"
  3242. "%s"
  3243. msgstr " S'ha produït un error en intentar desar el fitxer. "
  3244. #, fuzzy
  3245. msgid "View: "
  3246. msgstr "Vista"
  3247. #, fuzzy, c-format
  3248. msgid ""
  3249. "Cannot open \"%s\"\n"
  3250. "%s"
  3251. msgstr ""
  3252. " No es pot obrir \"%s\"\n"
  3253. " %s "
  3254. #, fuzzy, c-format
  3255. msgid ""
  3256. "Cannot stat \"%s\"\n"
  3257. "%s"
  3258. msgstr ""
  3259. " No es pot fer un stat a \"%s\" \n"
  3260. " %s "
  3261. #, fuzzy
  3262. msgid "Cannot view: not a regular file"
  3263. msgstr " No puc visualitzar-lo perquè no és un fitxer habitual "
  3264. msgid "Seeking to search result"
  3265. msgstr ""
  3266. #, fuzzy
  3267. msgid "Search done"
  3268. msgstr "Cerca"
  3269. msgid "Continue from begining?"
  3270. msgstr ""
  3271. #, fuzzy
  3272. msgid "History"
  3273. msgstr " Historial "
  3274. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  3275. msgid "DialogTitle|History cleanup"
  3276. msgstr ""
  3277. msgid "Do you want clean this history?"
  3278. msgstr ""
  3279. msgid "Background process:"
  3280. msgstr "Procés de fons:"
  3281. #, fuzzy
  3282. #~ msgid "MCFS"
  3283. #~ msgstr " MCFS "
  3284. #, fuzzy
  3285. #~ msgid "The server does not support this version"
  3286. #~ msgstr " El servidor no suporta aquesta versió "
  3287. #, fuzzy
  3288. #~ msgid ""
  3289. #~ "The remote server is not running on a system port\n"
  3290. #~ "you need a password to log in, but the information may\n"
  3291. #~ "not be safe on the remote side. Continue?\n"
  3292. #~ msgstr ""
  3293. #~ " El servidor remot no s'està executant en un port del sistema. \n"
  3294. #~ " Necessiteu una contrasenya per entrar-hi, encara que la informació \n"
  3295. #~ " podria no ser segura a la banda remota. Voleu continuar? \n"
  3296. #, fuzzy
  3297. #~ msgid "MCFS Password required"
  3298. #~ msgstr " Cal una contrasenya per a MCFS "
  3299. #, fuzzy
  3300. #~ msgid "Invalid password"
  3301. #~ msgstr " La contrasenya no és vàlida "
  3302. #, fuzzy
  3303. #~ msgid "Cannot locate hostname: %s"
  3304. #~ msgstr " No es pot trobar el nom de l'ordinador central: %s "
  3305. #, fuzzy
  3306. #~ msgid "Cannot create socket: %s"
  3307. #~ msgstr " No es pot crear el sòcol: %s"
  3308. #, fuzzy
  3309. #~ msgid "Cannot connect to server: %s"
  3310. #~ msgstr " No es pot connectar amb el servidor: %s"
  3311. #, fuzzy
  3312. #~ msgid "Too many open connections"
  3313. #~ msgstr " Hi ha massa connexions obertes "
  3314. #, fuzzy
  3315. #~ msgid "Link to a remote machine"
  3316. #~ msgstr " Enllaça amb una màquina remota "
  3317. #~ msgid "&Network link..."
  3318. #~ msgstr "enllaç per a la &Xarxa..."
  3319. #, fuzzy
  3320. #~ msgid "File was modified, save with exit?"
  3321. #~ msgstr " El fitxer s'ha modificat. El deso en sortir? "
  3322. #~ msgid " Permission "
  3323. #~ msgstr " Permisos "
  3324. # Açò s'agraeix! iv
  3325. #~ msgid " File "
  3326. #~ msgstr " Fitxer "
  3327. #~ msgid " Name "
  3328. #~ msgstr " Nom "
  3329. #~ msgid " Owner name "
  3330. #~ msgstr " Nom del propietari "
  3331. #~ msgid " Group name "
  3332. #~ msgstr " Nom del grup "
  3333. #~ msgid " Size "
  3334. #~ msgstr " Mida"
  3335. #~ msgid " Confirmation "
  3336. #~ msgstr " Confirmació "
  3337. #~ msgid " Filtered view "
  3338. #~ msgstr " Vista filtrada "
  3339. #~ msgid " Select "
  3340. #~ msgstr " Selecciona "
  3341. #~ msgid " Compare directories "
  3342. #~ msgstr " Compara els directoris "
  3343. #~ msgid " Link "
  3344. #~ msgstr " Enllaç "
  3345. #~ msgid " Edit symlink "
  3346. #~ msgstr " Edita l'enllaç simbòlic "
  3347. #~ msgid "case &Sensitive"
  3348. #~ msgstr "Sensible a &Majúscules/Minúscules"
  3349. #~ msgid " Replace "
  3350. #~ msgstr " Reemplaça "
  3351. #, fuzzy
  3352. #~ msgid " Error "
  3353. #~ msgstr "S'ha produït un error"
  3354. #~ msgid " Insert File "
  3355. #~ msgstr " Insereix el fitxer "
  3356. #~ msgid " Insert Literal "
  3357. #~ msgstr " Inserir literal "
  3358. #~ msgid " Execute Macro "
  3359. #~ msgstr " Executa la macro "
  3360. #~ msgid " Cannot overwrite directory `%s' "
  3361. #~ msgstr " No puc sobreescriure el directori `%s' "
  3362. #~ msgid " to:"
  3363. #~ msgstr " cap a:"
  3364. #~ msgid " Delete: "
  3365. #~ msgstr " Suprimeix: "
  3366. #~ msgid " Directory path "
  3367. #~ msgstr " Ruta del directori "
  3368. #~ msgid " Directory label "
  3369. #~ msgstr " Etiqueta del directori "
  3370. #~ msgid "File: %s"
  3371. #~ msgstr "Fitxer: %s"
  3372. #~ msgid "pe&Rmissions"
  3373. #~ msgstr "&Permisos"
  3374. #~ msgid " User menu "
  3375. #~ msgstr " Menú d'usuari "
  3376. #, fuzzy
  3377. #~ msgid ""
  3378. #~ " Cannot save file: \n"
  3379. #~ " %s "
  3380. #~ msgstr " S'ha produït un error en intentar desar el fitxer. "
  3381. #, fuzzy
  3382. #~ msgid "Status: %s"
  3383. #~ msgstr "Creat: %s"
  3384. #~ msgid "Count"
  3385. #~ msgstr "Compta"
  3386. #~ msgid "Bytes"
  3387. #~ msgstr "Bytes"
  3388. #~ msgid " confirm &Exit "
  3389. #~ msgstr " confirma la &Sortida "
  3390. #~ msgid " confirm e&Xecute "
  3391. #~ msgstr " confirma l'e&Xecució "
  3392. #~ msgid " confirm &Delete "
  3393. #~ msgstr " confirma la &Supressió "
  3394. #, fuzzy
  3395. #~ msgid ""
  3396. #~ " The current line number is %lld.\n"
  3397. #~ " Enter the new line number:"
  3398. #~ msgstr ""
  3399. #~ " La línia actual és la número %d.\n"
  3400. #~ " Introduïu el número nou de línia:"
  3401. #, fuzzy
  3402. #~ msgid ""
  3403. #~ " The current address is %s.\n"
  3404. #~ " Enter the new address:"
  3405. #~ msgstr ""
  3406. #~ " La línia actual és la número %d.\n"
  3407. #~ " Introduïu el número nou de línia:"
  3408. #~ msgid " Goto Address "
  3409. #~ msgstr " Vés a l'adreça "
  3410. #~ msgid "Offset 0x%08lx"
  3411. #~ msgstr "Desplaçament 0x%08lx"
  3412. #~ msgid "%s bytes"
  3413. #~ msgstr "%s bytes"
  3414. #, fuzzy
  3415. #~ msgid ">= %s bytes"
  3416. #~ msgstr "%s bytes"
  3417. #~ msgid "File: None"
  3418. #~ msgstr "Fitxer: cap"
  3419. #~ msgid "Do backups -->"
  3420. #~ msgstr "Fer còpies de seguretat -->"
  3421. #~ msgid "Extension:"
  3422. #~ msgstr "Extensió:"
  3423. #~ msgid "&New C-n"
  3424. #~ msgstr "&Nou C-n"
  3425. #~ msgid "&Save F2"
  3426. #~ msgstr "&Desa F2"
  3427. #~ msgid "Save &as... F12"
  3428. #~ msgstr "desa com &a... F12"
  3429. #~ msgid "A&bout... "
  3430. #~ msgstr "a &Propòsit de... "
  3431. #~ msgid "&Quit F10"
  3432. #~ msgstr "&Surt F10"
  3433. #~ msgid "&New C-x k"
  3434. #~ msgstr "&Nou C-x k"
  3435. #~ msgid "Copy to &file... "
  3436. #~ msgstr "copia al &Fitxer... "
  3437. #, fuzzy
  3438. #~ msgid "&Toggle mark F3"
  3439. #~ msgstr "&Canvia inici/fi de marcador F3"
  3440. #, fuzzy
  3441. #~ msgid "Mar&k columns S-F3"
  3442. #~ msgstr "&Marca les columnes S-F3"
  3443. #, fuzzy
  3444. #~ msgid "&Copy F5"
  3445. #~ msgstr "&Copia F5"
  3446. #, fuzzy
  3447. #~ msgid "&Move F6"
  3448. #~ msgstr "&Mou F6"
  3449. #, fuzzy
  3450. #~ msgid "&Delete F8"
  3451. #~ msgstr "sup&Rimeix F8"
  3452. #, fuzzy
  3453. #~ msgid "&Next bookmark M-j"
  3454. #~ msgstr "&Nou C-n"
  3455. #, fuzzy
  3456. #~ msgid "&Undo C-u"
  3457. #~ msgstr "&Desfés C-u"
  3458. #, fuzzy
  3459. #~ msgid "&Beginning C-PgUp"
  3460. #~ msgstr "&Principi C-RePàg"
  3461. #, fuzzy
  3462. #~ msgid "&End C-PgDn"
  3463. #~ msgstr "&Final C-AvPàg"
  3464. #, fuzzy
  3465. #~ msgid "C&opy to clipfile M-w"
  3466. #~ msgstr "&Vés a la línia... M-l"
  3467. #, fuzzy
  3468. #~ msgid "C&ut to clipfile C-w"
  3469. #~ msgstr "&Vés a la línia... M-l"
  3470. #, fuzzy
  3471. #~ msgid "Toggle bookmar&k "
  3472. #~ msgstr "&Canvia inici/fi de marcador F3"
  3473. #, fuzzy
  3474. #~ msgid "&Next bookmark "
  3475. #~ msgstr "&Nou C-n"
  3476. #, fuzzy
  3477. #~ msgid "Pre&v bookmark "
  3478. #~ msgstr "&Ordena... M-t"
  3479. #, fuzzy
  3480. #~ msgid "&Flush bookmark "
  3481. #~ msgstr "envia per co&Rreu... "
  3482. #~ msgid "&Search... F7"
  3483. #~ msgstr "&Cerca... F7"
  3484. #~ msgid "&Replace... F4"
  3485. #~ msgstr "&Reemplaça... F4"
  3486. #~ msgid "&Go to line... M-l"
  3487. #~ msgstr "&Vés a la línia... M-l"
  3488. #, fuzzy
  3489. #~ msgid "Encod&ing... M-e"
  3490. #~ msgstr "&Ordena... M-t"
  3491. #~ msgid "Delete macr&o... "
  3492. #~ msgstr "&Esborra la macro... "
  3493. #~ msgid "Sor&t... M-t"
  3494. #~ msgstr "&Ordena... M-t"
  3495. #~ msgid "&Mail... "
  3496. #~ msgstr "envia per co&Rreu... "
  3497. #~ msgid "&Execute macro... C-x e, KEY"
  3498. #~ msgstr "e&Xecuta la macro... C-x e, TECLA"
  3499. #~ msgid "'ispell' s&pell check M-$"
  3500. #~ msgstr "comprova l'or&Tografia: ispell M-$"
  3501. #, fuzzy
  3502. #~ msgid "Save setu&p"
  3503. #~ msgstr "&Desa la configuració"
  3504. #~ msgid " Sear/Repl "
  3505. #~ msgstr " Cerca/Reempl "
  3506. #~ msgid " Command "
  3507. #~ msgstr " Ordres "
  3508. #~ msgid "Intuitive"
  3509. #~ msgstr "Intuïtiu"
  3510. #~ msgid "Emacs"
  3511. #~ msgstr "Emacs"
  3512. #, fuzzy
  3513. #~ msgid "User-defined"
  3514. #~ msgstr "definit per l'&Usuari:"
  3515. #~ msgid "Key emulation"
  3516. #~ msgstr "Emulació de tecles"
  3517. #~ msgid "Save"
  3518. #~ msgstr "Desa"
  3519. #~ msgid "Mark"
  3520. #~ msgstr "Marca"
  3521. #~ msgid "Replac"
  3522. #~ msgstr "Reempl"
  3523. #~ msgid "PullDn"
  3524. #~ msgstr "Desplega"
  3525. #~ msgid " Copy "
  3526. #~ msgstr " Copia "
  3527. #~ msgid " Move "
  3528. #~ msgstr " Mou "
  3529. #~ msgid " Delete "
  3530. #~ msgstr " Suprimeix "
  3531. #~ msgid "1Copy"
  3532. #~ msgstr "1Copia"
  3533. #~ msgid "1Move"
  3534. #~ msgstr "1Mou"
  3535. #~ msgid "1Delete"
  3536. #~ msgstr "1Suprimeix"
  3537. #~ msgid "Index"
  3538. #~ msgstr "Índex"
  3539. #~ msgid "Prev"
  3540. #~ msgstr "Anterior"
  3541. #~ msgid "&Quick view C-x q"
  3542. #~ msgstr "&Vista ràpida C-x q"
  3543. #~ msgid "&Info C-x i"
  3544. #~ msgstr "&Informació C-x i"
  3545. #~ msgid "&Rescan C-r"
  3546. #~ msgstr "&Rellegeix C-r"
  3547. #~ msgid "&View F3"
  3548. #~ msgstr "&Visualitza F3"
  3549. #~ msgid "Vie&w file... "
  3550. #~ msgstr "Visualitza el fi&Txer... "
  3551. #~ msgid "&Filtered view M-!"
  3552. #~ msgstr "vista &Filtrada M-!"
  3553. #~ msgid "&Edit F4"
  3554. #~ msgstr "&Edita F4"
  3555. #~ msgid "&Copy F5"
  3556. #~ msgstr "&Copia F5"
  3557. #~ msgid "c&Hmod C-x c"
  3558. #~ msgstr "permisos (c&Hmod) C-x c"
  3559. #~ msgid "&Link C-x l"
  3560. #~ msgstr "en&Llaça C-x l"
  3561. #~ msgid "&SymLink C-x s"
  3562. #~ msgstr "enllaç &Simbòlic C-x s"
  3563. #~ msgid "edit s&Ymlink C-x C-s"
  3564. #~ msgstr "e&Dita l'enllaç simbòlic C-x C-s"
  3565. #~ msgid "ch&Own C-x o"
  3566. #~ msgstr "canvia el propietari (ch&Own) C-x o"
  3567. #~ msgid "&Rename/Move F6"
  3568. #~ msgstr "&Reanomena/Mou F6"
  3569. #~ msgid "&Mkdir F7"
  3570. #~ msgstr "crea directori (&Mkdir) F7"
  3571. #~ msgid "&Delete F8"
  3572. #~ msgstr "sup&Rimeix F8"
  3573. #~ msgid "&Quick cd M-c"
  3574. #~ msgstr "&Canvi ràpid de directori M-c"
  3575. #~ msgid "select &Group M-+"
  3576. #~ msgstr "selecciona el &Grup M-+"
  3577. #~ msgid "u&Nselect group M-\\"
  3578. #~ msgstr "deseleccio&Na el grup M-\\"
  3579. #~ msgid "e&Xit F10"
  3580. #~ msgstr "&Surt F10"
  3581. #~ msgid "&User menu F2"
  3582. #~ msgstr "menú d'&Usuari F2"
  3583. #~ msgid "&Find file M-?"
  3584. #~ msgstr "&Cerca el fitxer M-?"
  3585. #~ msgid "s&Wap panels C-u"
  3586. #~ msgstr "I&ntercanvia els quadres C-u"
  3587. #~ msgid "&Compare directories C-x d"
  3588. #~ msgstr "c&Ompara directoris C-x d"
  3589. #~ msgid "e&Xternal panelize C-x !"
  3590. #~ msgstr "quadre de cerca e&Xterna C-x !"
  3591. #, fuzzy
  3592. #~ msgid "Command &history M-h"
  3593. #~ msgstr " Historial d'ordres "
  3594. #~ msgid "di&Rectory hotlist C-\\"
  3595. #~ msgstr "directoris fa&Vorits C-\\"
  3596. #~ msgid "&Background jobs C-x j"
  3597. #~ msgstr "tasques de &Fons C-x j"
  3598. #~ msgid "learn &Keys..."
  3599. #~ msgstr "defineix &Tecles..."
  3600. #~ msgid " &File "
  3601. #~ msgstr " &Fitxer "
  3602. #~ msgid " &Command "
  3603. #~ msgstr " &Ordre "
  3604. #~ msgid "Menu"
  3605. #~ msgstr "Menú"
  3606. #, fuzzy
  3607. #~ msgid "n"
  3608. #~ msgstr "Sobre"
  3609. #, fuzzy
  3610. #~ msgid "Extension"
  3611. #~ msgstr "Extensió:"
  3612. #~ msgid "ATime"
  3613. #~ msgstr "ATime"
  3614. #~ msgid "CTime"
  3615. #~ msgstr "CTime"
  3616. #~ msgid "Inode"
  3617. #~ msgstr "Inode"
  3618. #~ msgid "RenMov"
  3619. #~ msgstr "RenMov"
  3620. #~ msgid "Static"
  3621. #~ msgstr "Estàtic"
  3622. #~ msgid "Dynamc"
  3623. #~ msgstr "Dinàmic"
  3624. #~ msgid "Forget"
  3625. #~ msgstr "Oblida-ho"
  3626. #~ msgid "Rmdir"
  3627. #~ msgstr "SupDir"
  3628. #, fuzzy
  3629. #~ msgid "bind: Unknown command: `%s'"
  3630. #~ msgstr " Canvi de propietari "
  3631. #, fuzzy
  3632. #~ msgid "%s: Unknown command: `%s'"
  3633. #~ msgstr " Canvi de propietari "
  3634. #, fuzzy
  3635. #~ msgid "%s:%d: unknown command `%s'"
  3636. #~ msgstr " Canvi de propietari "
  3637. #, fuzzy
  3638. #~ msgid "%s not found!"
  3639. #~ msgstr "Avís: no s'ha trobat el fitxer %s\n"
  3640. #~ msgid "NumLock on keypad"
  3641. #~ msgstr "BloqNum teclat numèric"
  3642. #~ msgid " Emacs key: "
  3643. #~ msgstr " Tecla d'Emacs: "
  3644. #~ msgid " %d items found, %d bookmarks added "
  3645. #~ msgstr "S'han trobat %d resultats, s'han afegit %d marcadors"
  3646. #~ msgid "Displays this help message"
  3647. #~ msgstr "Mostra aquest missatge d'ajuda"
  3648. #~ msgid "Displays a help screen on how to change the color scheme"
  3649. #~ msgstr "Mostra una ajuda de com canviar l'esquema de colors"
  3650. #, fuzzy
  3651. #~ msgid "unknown option"
  3652. #~ msgstr "<Grup desconegut>"
  3653. #~ msgid "Show this help message"
  3654. #~ msgstr "Mostra aquest missatge d'ajuda"
  3655. #~ msgid "Display brief usage message"
  3656. #~ msgstr "Mostra un missatge breu d'ajuda"
  3657. #, fuzzy
  3658. #~ msgid "Usage:"
  3659. #~ msgstr "Nom d'usuari:"
  3660. #~ msgid "pro&Mpt on replace"
  3661. #~ msgstr "Preg&Unta en reemplaçar"
  3662. #~ msgid "replace &All"
  3663. #~ msgstr "reemplaça'ls &Tots"
  3664. #~ msgid "O&ne"
  3665. #~ msgstr "u&N"
  3666. #, fuzzy
  3667. #~ msgid "%b %d %H:%M"
  3668. #~ msgstr "%b %e %H:%M"
  3669. #, fuzzy
  3670. #~ msgid "%b %d %Y"
  3671. #~ msgstr "%b %e %Y"
  3672. #, fuzzy
  3673. #~ msgid " The current address is 0x%08"
  3674. #~ msgstr ""
  3675. #~ " L'adreça actual es 0x%lx.\n"
  3676. #~ " Introduïu la nova adreça:"
  3677. #~ msgid "scanf &Expression"
  3678. #~ msgstr "&Expressió de Scanf"
  3679. #~ msgid " Enter replacement argument order eg. 3,2,1,4 "
  3680. #~ msgstr " Introduïu l'ordre dels arguments per reemplaçar, p.ex. 3,2,1,4 "
  3681. #~ msgid ""
  3682. #~ " Invalid regular expression, or scanf expression with too many "
  3683. #~ "conversions "
  3684. #~ msgstr ""
  3685. #~ " Expressió habitual no vàlida, o expressió scanf amb massa conversions "
  3686. #~ msgid " Error in replacement format string. "
  3687. #~ msgstr " S'ha produït un error al format de la cadena reemplaçant. "
  3688. #, fuzzy
  3689. #~ msgid " Replacement too long. "
  3690. #~ msgstr " Introduïu la cadena per reemplaçar:"
  3691. #~ msgid "&Copy F5"
  3692. #~ msgstr "&Copia F5"
  3693. #~ msgid "&Delete F8"
  3694. #~ msgstr "&Suprimeix F8"
  3695. #~ msgid " The command history is empty "
  3696. #~ msgstr " L'historial d'ordres és buit "
  3697. #~ msgid "Edit edi&tor menu file"
  3698. #~ msgstr "Edició de l'edi&Tor de menús"
  3699. #~ msgid ""
  3700. #~ "To use this feature select your codepage in\n"
  3701. #~ "Setup / Display Bits dialog!\n"
  3702. #~ "Do not forget to save options."
  3703. #~ msgstr ""
  3704. #~ "Per utilitzar aquesta característica, seleccioneu la vostra pàgina de "
  3705. #~ "codis a\n"
  3706. #~ "Configuració / Visualitza el diàleg Bits!\n"
  3707. #~ "No oblideu desar les opcions."
  3708. #~ msgid "Invalid hex search expression"
  3709. #~ msgstr "L'expressió de cerca hexadecimal no es vàlida"
  3710. #~ msgid " Invalid regular expression "
  3711. #~ msgstr " L'expressió regular no és vàlida "
  3712. #~ msgid " Enter regexp:"
  3713. #~ msgstr " Introduïu l'expressió regular:"
  3714. #~ msgid "Using included S-Lang library"
  3715. #~ msgstr "S'està utilitzant la biblioteca S-Lang inclosa"
  3716. #~ msgid "with termcap database"
  3717. #~ msgstr "amb la base de dades termcap"
  3718. #~ msgid "&Home"
  3719. #~ msgstr "Directori de l'&Usuari "
  3720. #~ msgid "&Type"
  3721. #~ msgstr "&Tipus"
  3722. #~ msgid "N&GID"
  3723. #~ msgstr "&GID numèric"
  3724. #~ msgid "N&UID"
  3725. #~ msgstr "&UID numèric"
  3726. #~ msgid "&Owner"
  3727. #~ msgstr "&Propietari"
  3728. #~ msgid "&Group"
  3729. #~ msgstr "gr&Up"
  3730. #~ msgid "MC was unable to write ~/"
  3731. #~ msgstr "MC no ha pogut escriure al ~/"
  3732. #~ msgid " (%ld blocks)"
  3733. #~ msgstr " (%ld blocs)"
  3734. #~ msgid " Notice "
  3735. #~ msgstr " Avís "
  3736. #~ msgid ""
  3737. #~ " The Midnight Commander configuration files \n"
  3738. #~ " are now stored in the ~/.mc directory, the \n"
  3739. #~ " files have been moved now\n"
  3740. #~ msgstr ""
  3741. #~ " Els fitxers de configuració de Midnight Commander \n"
  3742. #~ " s'emmagatzemen ara al directori ~/.mc, on \n"
  3743. #~ " s'han mogut els fitxers\n"
  3744. #~ msgid "%s bytes in %d files"
  3745. #~ msgstr "%s bytes en %d fitxers"
  3746. #~ msgid " Cannot open file for reading: "
  3747. #~ msgstr " S'ha produït una fallada en intentar obrir un fitxer per llegir: "
  3748. #~ msgid " Not an ordinary file: "
  3749. #~ msgstr " No és un fitxer ordinari: "
  3750. #~ msgid "Format of the "
  3751. #~ msgstr "Formatatge del "
  3752. #~ msgid ""
  3753. #~ " file has changed\n"
  3754. #~ "with version 3.0. You may want either to\n"
  3755. #~ "copy it from "
  3756. #~ msgstr ""
  3757. #~ " el fitxer ha variat amb\n"
  3758. #~ "la versió 3.0. Potser vulgueu copiar-lo\n"
  3759. #~ "de "
  3760. #~ msgid ""
  3761. #~ "mc.ext or use that\n"
  3762. #~ "file as an example of how to write it.\n"
  3763. #~ msgstr ""
  3764. #~ "mc.ext o usar-lo\n"
  3765. #~ "com a exemple de com escriure'l.\n"
  3766. #~ msgid "mc.ext will be used for this moment."
  3767. #~ msgstr "mc.ext s'utilitzarà de moment."
  3768. #~ msgid " Cannot open file "
  3769. #~ msgstr " No puc obrir el fitxer "
  3770. #~ msgid "Col %d"
  3771. #~ msgstr "Columna %d"
  3772. #~ msgid " [grow]"
  3773. #~ msgstr " [expandit]"
  3774. #~ msgid "Ascii"
  3775. #~ msgstr "ASCII"
  3776. #~ msgid "Hex"
  3777. #~ msgstr "Hex"
  3778. #~ msgid "Line"
  3779. #~ msgstr "Línia"
  3780. #~ msgid "RxSrch"
  3781. #~ msgstr "RxSrch"
  3782. #~ msgid "EdHex"
  3783. #~ msgstr "EdHex"
  3784. #~ msgid "EdText"
  3785. #~ msgstr "EdText"
  3786. #~ msgid "UnWrap"
  3787. #~ msgstr "NoAjus"
  3788. #~ msgid "Wrap"
  3789. #~ msgstr "Ajusta"
  3790. #~ msgid "HxSrch"
  3791. #~ msgstr "HxSrch"
  3792. #~ msgid "Raw"
  3793. #~ msgstr "Brut"
  3794. #~ msgid "Parse"
  3795. #~ msgstr "Interp"
  3796. #~ msgid "Unform"
  3797. #~ msgstr "NoFrmt"
  3798. #~ msgid "User menu available only in mcedit invoked from mc"
  3799. #~ msgstr ""
  3800. #~ "El menú d'usuari només està disponible en el mcedit que s'activa des d'mc"
  3801. # Si té a veure amb SO_DONTROUTE amb això seria suficient iv
  3802. #~ msgid " Socket source routing setup "
  3803. #~ msgstr " Configuració del camí origen del sòcol "
  3804. #~ msgid " Enter host name to use as a source routing hop: "
  3805. #~ msgstr " Introduïu l'ordinador central que s'utilitzarà com a mitjancer: "
  3806. #~ msgid " Host name "
  3807. #~ msgstr " Nom de l'ordinador central "
  3808. #~ msgid " Error while looking up IP address "
  3809. #~ msgstr " S'ha produït un error en cercar l'adreça IP "
  3810. #~ msgid ""
  3811. #~ "\n"
  3812. #~ "\n"
  3813. #~ "\n"
  3814. #~ "refresh stack underflow!\n"
  3815. #~ "\n"
  3816. #~ "\n"
  3817. #~ msgstr ""
  3818. #~ "\n"
  3819. #~ "\n"
  3820. #~ "\n"
  3821. #~ "desbordament de la pila d'actualització!\n"
  3822. #~ "\n"
  3823. #~ "\n"
  3824. #~ msgid " Listing format edit "
  3825. #~ msgstr " Edició del format de llista "
  3826. #~ msgid " New mode is \"%s\" "
  3827. #~ msgstr " El nou mode és \"%s\" "
  3828. #~ msgid "&Drive... M-d"
  3829. #~ msgstr "&Unitat... M-d"
  3830. #~ msgid "Use to debug the background code"
  3831. #~ msgstr "S'utilitza per depurar el codi de fons"
  3832. #, fuzzy
  3833. #~ msgid "Force subshell execution"
  3834. #~ msgstr "executa amb l'ID del propietari"
  3835. #~ msgid " No action taken "
  3836. #~ msgstr " No s'ha fet res "
  3837. #~ msgid " Cannot set source routing (%s)"
  3838. #~ msgstr " No s'ha pogut establir l'encaminament (%s)"