wa.po 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413
  1. # Translation into the walloon language.
  2. #
  3. # Si vos voloz donner on côp di spale pol ratoûrnaedje di Gnome (ou des
  4. # ôtes libes programes) sicrijhoz-mu a l' adresse emile
  5. # <linux-wa@chanae.alphanet.ch>; nos avans co bråmint di l' ovraedje a fé.
  6. #
  7. # Copyright (C) 1999 Free Software Foundation, Inc.
  8. # Lorint Hendschel <LorintHendschel@skynet.be>, 1999-2000
  9. # Pablo Saratxaga <pablo@mandrakesoft.com>, 2000-2001
  10. # Lucyin Mahin, 2000
  11. #
  12. msgid ""
  13. msgstr ""
  14. "Project-Id-Version: mc 4.5.99a\n"
  15. "Report-Msgid-Bugs-To: mc-devel@gnome.org\n"
  16. "POT-Creation-Date: 2009-12-25 19:06+0200\n"
  17. "PO-Revision-Date: 1999-03-18 23:11+0100\n"
  18. "Last-Translator: Lorint Hendschel <LorintHendschel@skynet.be>\n"
  19. "Language-Team: Wallon <linux-wa@chanae.alphanet.ch>\n"
  20. "MIME-Version: 1.0\n"
  21. "Content-Type: text/plain; charset=UTF-8\n"
  22. "Content-Transfer-Encoding: 8bit\n"
  23. #, fuzzy
  24. msgid " Choose syntax highlighting "
  25. msgstr "mete e &valeur l' emantchaedje"
  26. #, fuzzy
  27. msgid "< Auto >"
  28. msgstr " Å dfait "
  29. msgid "< Reload Current Syntax >"
  30. msgstr ""
  31. #, fuzzy, c-format
  32. msgid " Cannot open %s for reading "
  33. msgstr " Dj' a fwait berwete come dji sayîve di drovî l' bûze po lére: "
  34. msgid "Error"
  35. msgstr "Aroke"
  36. #, fuzzy, c-format
  37. msgid " Error reading from pipe: %s "
  38. msgstr " Åk ni va nén cwand dji saye di lére del bûze: "
  39. #, fuzzy, c-format
  40. msgid " Cannot open pipe for reading: %s "
  41. msgstr " Dj' a fwait berwete come dji sayîve di drovî l' bûze po lére: "
  42. #, fuzzy, c-format
  43. msgid " Cannot get size/permissions for %s "
  44. msgstr " Dji n' sai obtni li grandeus ou les permissions pol fitchî: "
  45. #, fuzzy, c-format
  46. msgid " %s is not a regular file "
  47. msgstr " Dji n' sai håyner ci fitchî ci: ci n' est nén on fitchî normå "
  48. #, fuzzy, c-format
  49. msgid " File %s is too large "
  50. msgstr " Li fitchî est trop grand: "
  51. msgid " About "
  52. msgstr " Å dfait "
  53. msgid ""
  54. "\n"
  55. " Cooledit v3.11.5\n"
  56. "\n"
  57. " Copyright (C) 1996 the Free Software Foundation\n"
  58. "\n"
  59. " A user friendly text editor written\n"
  60. " for the Midnight Commander.\n"
  61. msgstr ""
  62. "\n"
  63. " Cooledit v3.11.5\n"
  64. "\n"
  65. " Copyright (C) 1996 li Free Software Foundation\n"
  66. "\n"
  67. " In amiståve aspougneu di tecse sicrit\n"
  68. " pol Midnight Commander.\n"
  69. msgid "&OK"
  70. msgstr "I &Va"
  71. msgid "Macro recursion is too deep"
  72. msgstr ""
  73. msgid "Search"
  74. msgstr "Cweri"
  75. msgid " Search string not found "
  76. msgstr " Dji n' a nén trové li tchinne ki dji cachîve après "
  77. msgid "Warning"
  78. msgstr "Advertixhmint"
  79. msgid " File has hard-links. Detach before saving? "
  80. msgstr ""
  81. msgid "&Yes"
  82. msgstr "&Oyi"
  83. msgid "&No"
  84. msgstr "&Neni"
  85. msgid "&Cancel"
  86. msgstr "&Rinoncî"
  87. msgid "The file has been modified in the meantime. Save anyway?"
  88. msgstr ""
  89. msgid " Error writing to pipe: "
  90. msgstr " Åk n' a nén stî come dji sayîve di scrire el bûze: "
  91. msgid " Cannot open pipe for writing: "
  92. msgstr " Dj' a fwait berwete come dji sayîve di drovî l' bûze po scrire: "
  93. #, fuzzy, c-format
  94. msgid " Cannot open file for writing: %s "
  95. msgstr " Dj' a fwait berwete come dji sayîve di drovî l' bûze po scrire: "
  96. #, fuzzy
  97. msgid "&Quick save"
  98. msgstr "Schaper al vole "
  99. #, fuzzy
  100. msgid "&Safe save"
  101. msgstr "Schaper a såvrité "
  102. msgid "&Do backups with following extension:"
  103. msgstr ""
  104. msgid "Check &POSIX new line"
  105. msgstr ""
  106. # (Edit + Save) mode / Edit (Save mode)???
  107. msgid " Edit Save Mode "
  108. msgstr " Môde Aspougnî Schaper "
  109. msgid "The file you are saving is not finished with a newline"
  110. msgstr ""
  111. #, fuzzy
  112. msgid "C&ontinue"
  113. msgstr "Continouwer"
  114. msgid "&Do not change"
  115. msgstr ""
  116. msgid "&Unix format (LF)"
  117. msgstr ""
  118. msgid "&Windows/DOS format (CR LF)"
  119. msgstr ""
  120. msgid "&Macintosh format (CR)"
  121. msgstr ""
  122. msgid "Change line breaks to:"
  123. msgstr ""
  124. #, fuzzy
  125. msgid " Enter file name: "
  126. msgstr " Diner roye: "
  127. msgid " Save As "
  128. msgstr " Schaper et rlomer "
  129. msgid " A file already exists with this name. "
  130. msgstr " I gn a ddja on fitchî lomé insi. "
  131. #, fuzzy
  132. msgid "&Overwrite"
  133. msgstr "Sipotchî"
  134. msgid " Cannot save file. "
  135. msgstr " Åk n' a nén stî come dji sayîve di schaper li fitchî. "
  136. msgid " Delete macro "
  137. msgstr " Disfacer macro "
  138. msgid " Cannot open temp file "
  139. msgstr " Åk n' a nén stî come dji sayîve di drovî on fitchî temp "
  140. msgid " Cannot open macro file "
  141. msgstr " Åk n' a nén stî come dji sayîve di drovî on fitchî macro "
  142. msgid " Cannot overwrite macro file "
  143. msgstr " Åk n' a nén stî come dji sayîve di spotchî li fitchî macro "
  144. msgid " Save macro "
  145. msgstr " Schaper li macro "
  146. msgid " Press the macro's new hotkey: "
  147. msgstr " Tchôkî li novele tape rascoûrti pol macro: "
  148. msgid " Press macro hotkey: "
  149. msgstr " Tchôkî sol Tape Rascoûrti pol Macro: "
  150. msgid " Load macro "
  151. msgstr " Tcherdjî li macro "
  152. msgid " Confirm save file? : "
  153. msgstr " Racertiner ki vos voloz bén schaper li fitchî? : "
  154. msgid " Save file "
  155. msgstr " Schaper Fitchî "
  156. msgid "&Save"
  157. msgstr "&Schaper"
  158. msgid ""
  159. " Current text was modified without a file save. \n"
  160. " Continue discards these changes. "
  161. msgstr ""
  162. " Li tecse do moumint a stî candjî mins nén schapé. \n"
  163. " Si vos tcheryîz pus lon, les candjmints seront pierdous. "
  164. #, fuzzy
  165. msgid "Syntax file edit"
  166. msgstr " Tcherdjî fitchî emantchaedje "
  167. #, fuzzy
  168. msgid " Which syntax file you want to edit? "
  169. msgstr " Kénès cawetes di fitchîs voloz-ve aspougnî? "
  170. msgid "&User"
  171. msgstr "&Ûzeu"
  172. msgid "&System Wide"
  173. msgstr "&Tot avå li Sistinme"
  174. msgid " Menu edit "
  175. msgstr " Aspougnî menu "
  176. msgid " Which menu file do you want to edit? "
  177. msgstr " Ké fitchî menu voloz-ve aspougnî? "
  178. msgid "&Local"
  179. msgstr "&Locå"
  180. msgid " Load "
  181. msgstr " Tcherdjî "
  182. msgid " Block is large, you may not be able to undo this action. "
  183. msgstr " Li blok est lådje; s' il astcheut, vos n' såroz disfé cist bezogne. "
  184. #, fuzzy
  185. msgid "Replace"
  186. msgstr "&Mete el Plaece"
  187. msgid " Replace "
  188. msgstr " Mete el plaece "
  189. #, c-format
  190. msgid " %ld replacements made. "
  191. msgstr " %ld discandjes di fwaites. "
  192. msgid "Quit"
  193. msgstr "Cwiter"
  194. msgid " File was modified, Save with exit? "
  195. msgstr " Li fitchî a stî candjî. El fåt-i schaper tot moussant foû? "
  196. #, fuzzy
  197. msgid "&Cancel quit"
  198. msgstr "Rinoncî a moussî foû"
  199. #, fuzzy
  200. msgid " Error "
  201. msgstr "Aroke"
  202. msgid " This function is not implemented. "
  203. msgstr ""
  204. msgid " Copy to clipboard "
  205. msgstr " Copyî e tchapea emacralé "
  206. msgid " Unable to save to file. "
  207. msgstr " Dji n' a savu schaper çoula dins on fitchî. "
  208. msgid " Cut to clipboard "
  209. msgstr " Côper evoye e tchapea emacralé "
  210. msgid " Goto line "
  211. msgstr " Potchî al roye "
  212. msgid " Enter line: "
  213. msgstr " Diner roye: "
  214. msgid " Save Block "
  215. msgstr " Schaper li blok "
  216. msgid " Insert File "
  217. msgstr " Sititchî on fitchî "
  218. msgid " Cannot insert file. "
  219. msgstr " Åk n' a nén stî come dji sayîve di stitchî on fitchî. "
  220. msgid " Sort block "
  221. msgstr " Relire li blok "
  222. msgid " You must first highlight a block of text. "
  223. msgstr " Po cmincî vos dvoz mete e valeur on blok di tecse. "
  224. msgid " Run Sort "
  225. msgstr " Relire "
  226. msgid " Enter sort options (see manpage) separated by whitespace: "
  227. msgstr ""
  228. " Dinez les tchûzes pol relîjhaedje (loukî el pådje man) avou on blanc inte: "
  229. msgid " Sort "
  230. msgstr " Relire "
  231. msgid " Cannot execute sort command "
  232. msgstr " Åk n' a nén stî come dji sayîve di relire "
  233. msgid " Sort returned non-zero: "
  234. msgstr " Li relîjhaedje a revoyî åk d' ôte ki zérô "
  235. msgid "Paste output of external command"
  236. msgstr ""
  237. #, fuzzy
  238. msgid "Enter shell command(s):"
  239. msgstr "Ôtès cmandes"
  240. #, fuzzy
  241. msgid "External command"
  242. msgstr "Ôtès cmandes"
  243. #, fuzzy
  244. msgid "Cannot execute command"
  245. msgstr " Åk n' a nén stî come dji sayîve di relire "
  246. msgid "Error creating script:"
  247. msgstr ""
  248. msgid "Error reading script:"
  249. msgstr ""
  250. msgid "Error closing script:"
  251. msgstr ""
  252. msgid "Script created:"
  253. msgstr ""
  254. #, fuzzy
  255. msgid "Process block"
  256. msgstr " Aspougnî li blok "
  257. msgid " Copies to"
  258. msgstr " Copyî po "
  259. msgid " Subject"
  260. msgstr " Sudjet"
  261. msgid " To"
  262. msgstr " Po"
  263. msgid " mail -s <subject> -c <cc> <to>"
  264. msgstr " mail -s <subject> -c <cc> <to>"
  265. # Viebe ou no?
  266. msgid " Mail "
  267. msgstr " Emile "
  268. msgid " Insert Literal "
  269. msgstr " Sititchî literål "
  270. msgid " Press any key: "
  271. msgstr " Tchôkî tot l' minme li kéne tape: "
  272. msgid " Execute Macro "
  273. msgstr " Enonder Macro "
  274. msgid "All charsets"
  275. msgstr ""
  276. #, fuzzy
  277. msgid "&Whole words"
  278. msgstr "Rén &ki des mots etirs"
  279. #, fuzzy
  280. msgid "In se&lection"
  281. msgstr "reverse selec&Tion M-*"
  282. msgid "&Backwards"
  283. msgstr "È&n erî"
  284. msgid "case &Sensitive"
  285. msgstr "Grandès <> ptitès letes"
  286. msgid " Enter replacement string:"
  287. msgstr " Dinez li tchinne pol discandje:"
  288. msgid " Enter search string:"
  289. msgstr " Dinez li tchinne a cweri après:"
  290. #, fuzzy
  291. msgid "&Find all"
  292. msgstr "Trover Fitchî"
  293. msgid "Cancel"
  294. msgstr "Rinoncî"
  295. msgid "&Skip"
  296. msgstr "&Passer"
  297. msgid "A&ll"
  298. msgstr "&Tertos"
  299. msgid "&Replace"
  300. msgstr "&Mete el Plaece"
  301. msgid " Replace with: "
  302. msgstr " Mete çouchal el plaece: "
  303. msgid " Confirm replace "
  304. msgstr " Racertiner li discandje "
  305. msgid "&Dismiss"
  306. msgstr "&Rinoncî"
  307. #, c-format
  308. msgid ""
  309. "File \"%s\" is already being edited\n"
  310. "User: %s\n"
  311. "Process ID: %d"
  312. msgstr ""
  313. msgid "File locked"
  314. msgstr ""
  315. msgid "&Grab lock"
  316. msgstr ""
  317. msgid "&Ignore lock"
  318. msgstr ""
  319. msgid "&Open file..."
  320. msgstr "&Drovî fitchî..."
  321. #, fuzzy
  322. msgid "&New"
  323. msgstr "&No"
  324. #, fuzzy
  325. msgid "Save &as..."
  326. msgstr "&Schaper l' apontiaedje"
  327. #, fuzzy
  328. msgid "&Insert file..."
  329. msgstr "S&itichî fitchî... F15"
  330. #, fuzzy
  331. msgid "Cop&y to file..."
  332. msgstr "copyî dins &Fitchî... C-f"
  333. #, fuzzy
  334. msgid "&User menu..."
  335. msgstr "Menu di l' &Ûzeu F11"
  336. #, fuzzy
  337. msgid "A&bout..."
  338. msgstr "arindj&mint del pådje..."
  339. msgid "&Quit"
  340. msgstr "&Cwiter"
  341. #, fuzzy
  342. msgid "&Toggle mark"
  343. msgstr "&Waester li mårke"
  344. msgid "&Mark columns"
  345. msgstr ""
  346. #, fuzzy
  347. msgid "Toggle &ins/overw"
  348. msgstr "st&itchî/spotchî Ins"
  349. #, fuzzy
  350. msgid "&Copy"
  351. msgstr "Copyî"
  352. msgid "&Move"
  353. msgstr "&Bodjî"
  354. msgid "&Delete"
  355. msgstr "&Disfacer"
  356. #, fuzzy
  357. msgid "C&opy to clipfile"
  358. msgstr "copyî dins &Fitchî... "
  359. #, fuzzy
  360. msgid "C&ut to clipfile"
  361. msgstr "&Potchî al roye... M-l"
  362. msgid "&Paste from clipfile"
  363. msgstr ""
  364. #, fuzzy
  365. msgid "Toggle bookmar&k"
  366. msgstr "&Discandjî Marke F3"
  367. #, fuzzy
  368. msgid "&Next bookmark"
  369. msgstr "M&ete li mårke"
  370. #, fuzzy
  371. msgid "Pre&v bookmark"
  372. msgstr "re&Lire... M-t"
  373. #, fuzzy
  374. msgid "&Flush bookmark"
  375. msgstr "e&Mîler... "
  376. msgid "&Undo"
  377. msgstr ""
  378. msgid "&Beginning"
  379. msgstr ""
  380. #, fuzzy
  381. msgid "&End"
  382. msgstr "&Inode"
  383. #, fuzzy
  384. msgid "&Search..."
  385. msgstr "Cweri"
  386. #, fuzzy
  387. msgid "Search &again"
  388. msgstr "cweri eco ene &Feye F17"
  389. #, fuzzy
  390. msgid "&Replace..."
  391. msgstr "&Mete el Plaece"
  392. #, fuzzy
  393. msgid "&Go to line..."
  394. msgstr " Potchî al roye "
  395. #, fuzzy
  396. msgid "Toggle li&ne state"
  397. msgstr "&Discandjî Marke F3"
  398. msgid "Go to matching &bracket"
  399. msgstr ""
  400. #, fuzzy
  401. msgid "Find declaration"
  402. msgstr "Trover les sacwè nén prijhes på patch"
  403. msgid "Back from declaration"
  404. msgstr ""
  405. msgid "Forward to declaration"
  406. msgstr ""
  407. #, fuzzy
  408. msgid "Encod&ing..."
  409. msgstr "re&Lire... M-t"
  410. #, fuzzy
  411. msgid "&Refresh screen"
  412. msgstr "&Riponde li waitroûle C-l"
  413. #, fuzzy
  414. msgid "&Start record macro"
  415. msgstr "&Ataker a eredjistrer ene macro C-r"
  416. #, fuzzy
  417. msgid "&Finish record macro..."
  418. msgstr "&Fini d' eredjistrer ene macro... C-r"
  419. #, fuzzy
  420. msgid "&Execute macro..."
  421. msgstr "&Enonder ene macro... C-a, TAPE"
  422. #, fuzzy
  423. msgid "Delete macr&o..."
  424. msgstr " Disfacer macro "
  425. #, fuzzy
  426. msgid "'ispell' s&pell check"
  427. msgstr "waitî li scrijhaedje avou 'ispell' C-p"
  428. #, fuzzy
  429. msgid "&Mail..."
  430. msgstr "&Passete..."
  431. #, fuzzy
  432. msgid "Insert &literal..."
  433. msgstr "sititchî &Literål... C-q"
  434. #, fuzzy
  435. msgid "Insert &date/time"
  436. msgstr "sititchî &Date/eure "
  437. #, fuzzy
  438. msgid "Format p&aragraph"
  439. msgstr "arindjî h&Agnon M-p"
  440. #, fuzzy
  441. msgid "Sor&t..."
  442. msgstr "Ôrde po &Relire..."
  443. msgid "Paste o&utput of..."
  444. msgstr ""
  445. #, fuzzy
  446. msgid "E&xternal formatter"
  447. msgstr "difoûtrin metaedje e &cogne F19"
  448. msgid "&General... "
  449. msgstr "&Djenerå... "
  450. #, fuzzy
  451. msgid "Save &mode..."
  452. msgstr "Môde &Schapaedje..."
  453. #, fuzzy
  454. msgid "Learn &keys..."
  455. msgstr "a&Prinde des tapes..."
  456. #, fuzzy
  457. msgid "Syntax &highlighting..."
  458. msgstr "mete e &valeur l' emantchaedje"
  459. #, fuzzy
  460. msgid "S&yntax file"
  461. msgstr " Tcherdjî fitchî emantchaedje "
  462. #, fuzzy
  463. msgid "&Menu file"
  464. msgstr "&Drovî fitchî..."
  465. msgid "&Save setup"
  466. msgstr "&Schaper l' apontiaedje"
  467. #, fuzzy
  468. msgid "&File"
  469. msgstr "fitchî"
  470. #, fuzzy
  471. msgid "&Edit"
  472. msgstr "Aspougnî"
  473. #, fuzzy
  474. msgid "&Search"
  475. msgstr "Cweri"
  476. #, fuzzy
  477. msgid "&Command"
  478. msgstr "Comande"
  479. #, fuzzy
  480. msgid "For&mat"
  481. msgstr "Rovyî"
  482. #, fuzzy
  483. msgid "&Options"
  484. msgstr " &Tchûzes "
  485. # Femrin ou omrin
  486. msgid "None"
  487. msgstr "Nouk"
  488. msgid "Dynamic paragraphing"
  489. msgstr "Fé les hagnons al voleye"
  490. msgid "Type writer wrap"
  491. msgstr ""
  492. msgid "Word wrap line length: "
  493. msgstr "Longueu del roye wice k' i fåt côper les mots : "
  494. msgid "Cursor beyond end of line"
  495. msgstr ""
  496. #, fuzzy
  497. msgid "Pers&istent selection"
  498. msgstr "reverse selec&Tion M-*"
  499. msgid "Synta&x highlighting"
  500. msgstr "mete e &valeur l' emantchaedje"
  501. msgid "Visible tabs"
  502. msgstr ""
  503. msgid "Visible trailing spaces"
  504. msgstr ""
  505. #, fuzzy
  506. msgid "Save file &position"
  507. msgstr " Schaper Fitchî "
  508. msgid "Confir&m before saving"
  509. msgstr "ra&certiner dvant di schaper"
  510. msgid "&Return does autoindent"
  511. msgstr "&Ritiraedje avou ene ritoûne"
  512. msgid "Tab spacing: "
  513. msgstr "Espåçmint del tabulåcion : "
  514. msgid "Fill tabs with &spaces"
  515. msgstr "rimpli les tabulåcions avou des &Vûdes"
  516. msgid "&Backspace through tabs"
  517. msgstr "&Backspace å d' triviè des rtiraedjes"
  518. msgid "&Fake half tabs"
  519. msgstr "&Fås dmeys ritiraedjes"
  520. msgid "Wrap mode"
  521. msgstr "Môde côpaedje di roye"
  522. msgid " Editor options "
  523. msgstr " Tchûzes po l' aspougneu "
  524. msgid "ButtonBar|Help"
  525. msgstr ""
  526. msgid "ButtonBar|Save"
  527. msgstr ""
  528. msgid "ButtonBar|Mark"
  529. msgstr ""
  530. msgid "ButtonBar|Replac"
  531. msgstr ""
  532. msgid "ButtonBar|Copy"
  533. msgstr ""
  534. msgid "ButtonBar|Move"
  535. msgstr ""
  536. msgid "ButtonBar|Search"
  537. msgstr ""
  538. msgid "ButtonBar|Delete"
  539. msgstr ""
  540. msgid "ButtonBar|PullDn"
  541. msgstr ""
  542. msgid "ButtonBar|Quit"
  543. msgstr ""
  544. msgid " Load syntax file "
  545. msgstr " Tcherdjî fitchî emantchaedje "
  546. #, c-format
  547. msgid ""
  548. " Cannot open file %s \n"
  549. " %s "
  550. msgstr ""
  551. " Dji n' sai drovî li fitchî %s \n"
  552. " %s "
  553. #, c-format
  554. msgid " Error in file %s on line %d "
  555. msgstr " Aroke e fitchî %s al roye %d "
  556. msgid "&Set"
  557. msgstr "&Mete"
  558. msgid "S&kip"
  559. msgstr "Pa&sser Hute"
  560. msgid "Set &all"
  561. msgstr "Mete &Totafwait"
  562. msgid "owner"
  563. msgstr "da"
  564. msgid "group"
  565. msgstr "groupe"
  566. msgid "other"
  567. msgstr "ôte"
  568. msgid "On"
  569. msgstr "Metou"
  570. msgid "Flag"
  571. msgstr "Drapea"
  572. msgid "Mode"
  573. msgstr "Môde"
  574. #, c-format
  575. msgid "%6d of %d"
  576. msgstr "%6d di %d"
  577. msgid " Chown advanced command "
  578. msgstr " Comande chown avanceye "
  579. #, c-format
  580. msgid ""
  581. " Cannot chmod \"%s\" \n"
  582. " %s "
  583. msgstr ""
  584. " Dji n' sai fé on chmod «%s» \n"
  585. " %s "
  586. #, c-format
  587. msgid ""
  588. " Cannot chown \"%s\" \n"
  589. " %s "
  590. msgstr ""
  591. " Dji n' sai fé on chown «%s» \n"
  592. " %s "
  593. msgid "Displays the current version"
  594. msgstr "Håyneye li modêye do moumint"
  595. #, fuzzy
  596. msgid "Print data directory"
  597. msgstr "ridant"
  598. #, fuzzy
  599. msgid "Print last working directory to specified file"
  600. msgstr "Håyner li ridant do moumint å moumint ki vos moussîz foû"
  601. msgid "Enables subshell support (default)"
  602. msgstr ""
  603. msgid "Disables subshell support"
  604. msgstr ""
  605. msgid "Log ftp dialog to specified file"
  606. msgstr ""
  607. msgid "Set debug level"
  608. msgstr ""
  609. msgid "Launches the file viewer on a file"
  610. msgstr "Enonder li håyneu di fitchî so on fitchî"
  611. msgid "Edits one file"
  612. msgstr "Aspougne on fitchî"
  613. msgid "Forces xterm features"
  614. msgstr ""
  615. msgid "Disable mouse support in text version"
  616. msgstr "Ni nén sopoirter li soris dvins li modêye tecse"
  617. msgid "Tries to use termcap instead of terminfo"
  618. msgstr ""
  619. msgid "To run on slow terminals"
  620. msgstr "Po-aler so des londjins terminås"
  621. msgid "Use stickchars to draw"
  622. msgstr ""
  623. msgid "Resets soft keys on HP terminals"
  624. msgstr ""
  625. msgid "Load definitions of key bindings from specified file"
  626. msgstr ""
  627. msgid "Requests to run in black and white"
  628. msgstr "Fé roter e noer et blanc"
  629. msgid "Request to run in color mode"
  630. msgstr "Fé roter e coleurs"
  631. msgid "Specifies a color configuration"
  632. msgstr "Dire avou kénès coleurs"
  633. msgid "Show mc with specified skin"
  634. msgstr ""
  635. #. TRANSLATORS: don't translate keywords and names of colors
  636. msgid ""
  637. "--colors KEYWORD={FORE},{BACK}\n"
  638. "\n"
  639. "{FORE} and {BACK} can be omitted, and the default will be used\n"
  640. "\n"
  641. "Keywords:\n"
  642. " Global: errors, reverse, gauge, input, viewunderline\n"
  643. " File display: normal, selected, marked, markselect\n"
  644. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  645. " errdhotfocus\n"
  646. " Menus: menu, menuhot, menusel, menuhotsel\n"
  647. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  648. " editlinestate\n"
  649. msgstr ""
  650. #. TRANSLATORS: don't translate keywords and names of colors
  651. msgid ""
  652. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  653. "\n"
  654. "Colors:\n"
  655. " black, gray, red, brightred, green, brightgreen, brown,\n"
  656. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  657. " brightcyan, lightgray and white\n"
  658. "\n"
  659. msgstr ""
  660. #, fuzzy
  661. msgid "Color options"
  662. msgstr "Apontyî les tchûzes"
  663. msgid "+number"
  664. msgstr ""
  665. msgid "[this_dir] [other_panel_dir]"
  666. msgstr ""
  667. msgid "Set initial line number for the internal editor"
  668. msgstr ""
  669. msgid ""
  670. "\n"
  671. "Please send any bug reports (including the output of `mc -V')\n"
  672. "to mc-devel@gnome.org\n"
  673. msgstr ""
  674. #, c-format
  675. msgid "GNU Midnight Commander %s\n"
  676. msgstr "GNU Midnight Commander %s\n"
  677. #, fuzzy
  678. msgid "Main options"
  679. msgstr " Tchûzes pol panea "
  680. #, fuzzy
  681. msgid "Terminal options"
  682. msgstr " Ôtès tchûzes "
  683. msgid " Background process error "
  684. msgstr " Aroke e processus di fond «"
  685. msgid " Unknown error in child "
  686. msgstr " Aroke nén cnoxhowe dins l' efant "
  687. msgid " Child died unexpectedly "
  688. msgstr " L' efant a morou tot d' on côp "
  689. msgid " Background protocol error "
  690. msgstr " Aroke e protocole di fond "
  691. msgid ""
  692. " Background process sent us a request for more arguments \n"
  693. " than we can handle. \n"
  694. msgstr ""
  695. " Li processus di fond nos a evoyî ene dimande po-z avu did pus\n"
  696. " d' årgumint ki çu ki dji såreu travayî avou. \n"
  697. msgid "&Full file list"
  698. msgstr "Djîvêye e&tire des fitchîs"
  699. msgid "&Brief file list"
  700. msgstr "&Coûte djîvêye des fitchîs"
  701. msgid "&Long file list"
  702. msgstr "&Longue djîvêye des fitchîs"
  703. msgid "&User defined:"
  704. msgstr "A vosse &Môde:"
  705. msgid "Listing mode"
  706. msgstr "Môde djîvêye"
  707. msgid "user &Mini status"
  708. msgstr "&Mini statut ûzeu"
  709. msgid "&Reverse"
  710. msgstr "Å&rvier"
  711. #, fuzzy
  712. msgid "Case sensi&tive"
  713. msgstr "grandès <> ptitès letes"
  714. msgid "Executable &first"
  715. msgstr ""
  716. msgid "Sort order"
  717. msgstr "Ôrde po relire"
  718. msgid " Confirmation "
  719. msgstr " Racertinaedje "
  720. #, fuzzy
  721. msgid " confirm di&Rectory hotlist delete "
  722. msgstr "djîvêye rascoûrti des &Ridants C-\\"
  723. msgid " confirm &Exit "
  724. msgstr " racertiner ki vos voloz bén &moussî foû "
  725. msgid " confirm e&Xecute "
  726. msgstr " racertiner ki vos voloz bén &enonder åk "
  727. msgid " confirm o&Verwrite "
  728. msgstr " racertiner ki vos voloz bén &spotchî åk "
  729. msgid " confirm &Delete "
  730. msgstr " racertiner ki vos voloz bén &disfacer åk "
  731. # Full?
  732. #, fuzzy
  733. msgid "UTF-8 output"
  734. msgstr "Sôrteye 8 bits"
  735. # Full?
  736. msgid "Full 8 bits output"
  737. msgstr "Sôrteye 8 bits"
  738. msgid "ISO 8859-1"
  739. msgstr "ISO 8859-1"
  740. msgid "7 bits"
  741. msgstr "7 bits"
  742. # Pocwè "full"?
  743. msgid "F&ull 8 bits input"
  744. msgstr "I&ntreye 8 bits etire"
  745. msgid " Display bits "
  746. msgstr " Håyner bits "
  747. msgid "Other 8 bit"
  748. msgstr "Ôte 8 bit"
  749. msgid "Input / display codepage:"
  750. msgstr "Ecôdaedje po ls intrêyes/rexhowes:"
  751. msgid "&Select"
  752. msgstr "T&chwezi"
  753. #, fuzzy
  754. msgid "Use passive mode over pro&xy"
  755. msgstr "Môde &Schapaedje..."
  756. #, fuzzy
  757. msgid "Use &passive mode"
  758. msgstr "Môde &Schapaedje..."
  759. msgid "&Use ~/.netrc"
  760. msgstr ""
  761. msgid "&Always use ftp proxy"
  762. msgstr "&Tofer eployî on proxy ftp"
  763. msgid "sec"
  764. msgstr "seg."
  765. msgid "ftpfs directory cache timeout:"
  766. msgstr "Tins a ratinde pol muchete do ridant ftpfs"
  767. msgid "ftp anonymous password:"
  768. msgstr "secret po ftp anonime:"
  769. msgid "Timeout for freeing VFSs:"
  770. msgstr "Tins a ratinde po delîberer les VFS:"
  771. msgid " Virtual File System Setting "
  772. msgstr " Apontiaedje do forveyou sistinme di fitchîs "
  773. msgid "cd"
  774. msgstr "cd"
  775. msgid "Quick cd"
  776. msgstr "Abeye cd"
  777. msgid "Symbolic link filename:"
  778. msgstr "No do fitchî loyén simbolike:"
  779. msgid "Existing filename (filename symlink will point to):"
  780. msgstr "No do fitchî k' egzisteye dedja (li loyén simbolike va loyî après):"
  781. msgid "Symbolic link"
  782. msgstr "Loyén simbolike"
  783. msgid "Running "
  784. msgstr "En alaedje "
  785. msgid "Stopped"
  786. msgstr "Djoké"
  787. msgid "&Stop"
  788. msgstr "&Håwe"
  789. msgid "&Resume"
  790. msgstr "&Rataker"
  791. msgid "&Kill"
  792. msgstr "&Touwer"
  793. msgid "Background Jobs"
  794. msgstr "Bezognes di fond"
  795. msgid "Domain:"
  796. msgstr "Dominne:"
  797. msgid "Username:"
  798. msgstr "No di l' ûzeu:"
  799. msgid "Password:"
  800. msgstr "Secret:"
  801. #, c-format
  802. msgid "Password for \\\\%s\\%s"
  803. msgstr "Mot di passe po \\\\%s\\%s"
  804. #, c-format
  805. msgid "Warning: file %s not found\n"
  806. msgstr "Advietixhmint: li fitchî «%s» n' a nén stî trové\n"
  807. msgid "7-bit ASCII"
  808. msgstr ""
  809. #, fuzzy, c-format
  810. msgid "Cannot translate from %s to %s"
  811. msgstr ""
  812. " Dji n' sai fé on stat sol fitchî «%s» \n"
  813. " %s "
  814. msgid "execute/search by others"
  815. msgstr "enonder/cweri påzès ôtes"
  816. msgid "write by others"
  817. msgstr "sicrire påzès ôtes"
  818. msgid "read by others"
  819. msgstr "lére påzès ôtes"
  820. msgid "execute/search by group"
  821. msgstr "enonder/cweri på groupe"
  822. msgid "write by group"
  823. msgstr "lére på groupe"
  824. msgid "read by group"
  825. msgstr "sicrire på groupe"
  826. msgid "execute/search by owner"
  827. msgstr "enonder/cweri pa prôpietaire"
  828. msgid "write by owner"
  829. msgstr "sicrire pa prôpietaire"
  830. msgid "read by owner"
  831. msgstr "lére pa prôpietaire"
  832. msgid "sticky bit"
  833. msgstr "bit aclapé"
  834. msgid "set group ID on execution"
  835. msgstr "mete l' ID pol groupe a l' enondaedje"
  836. msgid "set user ID on execution"
  837. msgstr "mete l' ID po l' ûzeu a l' enondaedje"
  838. msgid "C&lear marked"
  839. msgstr "&Waester li mårke"
  840. msgid "S&et marked"
  841. msgstr "M&ete li mårke"
  842. msgid "&Marked all"
  843. msgstr "&Mårker tot"
  844. msgid "Name"
  845. msgstr "No"
  846. msgid "Permissions (Octal)"
  847. msgstr "Permissions (Octå)"
  848. msgid "Owner name"
  849. msgstr "No do prôpietaire"
  850. msgid "Group name"
  851. msgstr "No do groupe"
  852. msgid "Use SPACE to change"
  853. msgstr "Eployîz ESPÅCE po candjî"
  854. msgid "an option, ARROW KEYS"
  855. msgstr "ene tchûze, les FLETCHES"
  856. msgid "to move between options"
  857. msgstr "po bodjî d' ene tchûze a l' ôte"
  858. msgid "and T or INS to mark"
  859. msgstr "eyet T ou INS po mårker"
  860. msgid " Permission "
  861. msgstr " Permission "
  862. msgid " File "
  863. msgstr " Fitchî "
  864. msgid "Chmod command"
  865. msgstr "Comande Chmod"
  866. msgid "Set &users"
  867. msgstr "Mete les û&zeus"
  868. msgid "Set &groups"
  869. msgstr "Mete les &groupe"
  870. msgid " Name "
  871. msgstr " No "
  872. msgid " Owner name "
  873. msgstr " No do prôpietaire "
  874. msgid " Group name "
  875. msgstr " No do groupe "
  876. msgid " Size "
  877. msgstr " Grandeu "
  878. msgid " User name "
  879. msgstr " No di l' ûzeu "
  880. msgid " Chown command "
  881. msgstr " Comande chown "
  882. msgid "<Unknown user>"
  883. msgstr "<Ûzeu nén cnoxhou>"
  884. msgid "<Unknown group>"
  885. msgstr "<Groupe nén cnoxhou>"
  886. msgid "Files tagged, want to cd?"
  887. msgstr "Essegne metowe so les fitchîs, voloz-ve fé on cd?"
  888. msgid "Cannot change directory"
  889. msgstr "Dji n' sai candjî di ridant"
  890. msgid " View file "
  891. msgstr " Loukî e fitchî "
  892. msgid " Filename:"
  893. msgstr " No do fitchî:"
  894. msgid " Filtered view "
  895. msgstr " Vey passé "
  896. msgid " Filter command and arguments:"
  897. msgstr " Comande po passer eyet ses årgumints:"
  898. msgid "Create a new Directory"
  899. msgstr "Fé on novea Ridant"
  900. msgid " Enter directory name:"
  901. msgstr " No do ridant:"
  902. msgid " Filter "
  903. msgstr " Passete "
  904. msgid " Set expression for filtering filenames"
  905. msgstr " Diner ene ratoûrneure po passer les nos di fitchîs"
  906. msgid "&Using shell patterns"
  907. msgstr "Dji m' &sieve des modeles do shell"
  908. #, fuzzy
  909. msgid "&Case sensitive"
  910. msgstr "grandès <> ptitès letes"
  911. #, fuzzy
  912. msgid "&Files only"
  913. msgstr "Rén ki li &Grandeu"
  914. msgid " Select "
  915. msgstr " Tchwezi "
  916. msgid " Unselect "
  917. msgstr " Distchwezi "
  918. msgid "Extension file edit"
  919. msgstr "Aspougnî les cawetes di fitchîs"
  920. msgid " Which extension file you want to edit? "
  921. msgstr " Kénès cawetes di fitchîs voloz-ve aspougnî? "
  922. msgid "Highlighting groups file edit"
  923. msgstr ""
  924. #, fuzzy
  925. msgid " Which highlighting file you want to edit? "
  926. msgstr " Kénès cawetes di fitchîs voloz-ve aspougnî? "
  927. msgid " Compare directories "
  928. msgstr " Rimete les ridants "
  929. msgid " Select compare method: "
  930. msgstr " Tchwezi li manire di rmete: "
  931. msgid "&Quick"
  932. msgstr "A&beye"
  933. msgid "&Size only"
  934. msgstr "Rén ki li &Grandeu"
  935. msgid "&Thorough"
  936. msgstr "E&tir"
  937. msgid " Both panels should be in the listing mode to use this command "
  938. msgstr ""
  939. " Les deus paneas dvèt esse veyous a môde di djîvêye por vos savu eployî "
  940. "cisse comande "
  941. msgid ""
  942. " Not an xterm or Linux console; \n"
  943. " the panels cannot be toggled. "
  944. msgstr ""
  945. " Ci n' est nén on xterm ni ene conzôle di Linux; \n"
  946. " dji n' såreu discandjî les paneas. "
  947. #, fuzzy, c-format
  948. msgid "Link %s to:"
  949. msgstr " loyén: %s "
  950. msgid " Link "
  951. msgstr " Loyén "
  952. #, c-format
  953. msgid " link: %s "
  954. msgstr " loyén: %s "
  955. #, c-format
  956. msgid " symlink: %s "
  957. msgstr " loyén simbolike: %s "
  958. #, c-format
  959. msgid " Symlink `%s' points to: "
  960. msgstr "«%s» e-st on loyén simbolike après: "
  961. msgid " Edit symlink "
  962. msgstr " Aspougnî li loyén simbolike "
  963. #, c-format
  964. msgid " edit symlink, unable to remove %s: %s "
  965. msgstr " aspougnî li loyén simbolike, dji n' sai waester %s: %s "
  966. #, c-format
  967. msgid " edit symlink: %s "
  968. msgstr " aspougnî loyén simbolike : %s "
  969. #, c-format
  970. msgid "`%s' is not a symbolic link"
  971. msgstr "«%s» n' est nén on loyén simbolike"
  972. #, c-format
  973. msgid " Cannot chdir to %s "
  974. msgstr " Dji n' a savu fé on chdir viè %s "
  975. msgid " Enter machine name (F1 for details): "
  976. msgstr " Intrer li no di l' éndjole (F1 po ndè savu did pus): "
  977. msgid " Link to a remote machine "
  978. msgstr " Loyén après ene éndjole å lon "
  979. msgid " FTP to machine "
  980. msgstr " FTP après ene éndjole "
  981. #, fuzzy
  982. msgid " Shell link to machine "
  983. msgstr " raloyaedje SMB so ene éndjole "
  984. msgid " SMB link to machine "
  985. msgstr " raloyaedje SMB so ene éndjole "
  986. msgid " Undelete files on an ext2 file system "
  987. msgstr " Disrafacer des fitchîs so on sistinme di fitchî ext2 "
  988. msgid ""
  989. " Enter device (without /dev/) to undelete\n"
  990. " files on: (F1 for details)"
  991. msgstr ""
  992. " Intrer l' éndjin (sins li /dev/) ki vos voloz disrafacer\n"
  993. " des fitchîs dsu: (F1 po ndè savu did pus)"
  994. msgid " Setup "
  995. msgstr " Apontiaedje "
  996. #, fuzzy, c-format
  997. msgid " Setup saved to ~/%s"
  998. msgstr " Apontiaedje schapé dins ~/"
  999. #, c-format
  1000. msgid ""
  1001. " Cannot chdir to \"%s\" \n"
  1002. " %s "
  1003. msgstr ""
  1004. " Dji n' sai fé on chdir dins «%s» \n"
  1005. " %s "
  1006. msgid " Cannot execute commands on non-local filesystems"
  1007. msgstr ""
  1008. " Vos n' poloz nén mete en oûve des cmande so on sistinme di fitchî nén locå"
  1009. msgid " The shell is already running a command "
  1010. msgstr "Li shell est ddja k' il enonde ene comande "
  1011. #, fuzzy
  1012. msgid "Cannot read directory contents"
  1013. msgstr "Dji n' sai candjî di ridant"
  1014. msgid ""
  1015. " The Commander can't change to the directory that \n"
  1016. " the subshell claims you are in. Perhaps you have \n"
  1017. " deleted your working directory, or given yourself \n"
  1018. " extra access permissions with the \"su\" command? "
  1019. msgstr ""
  1020. " Li Commander ni vs sait amwirner e ridant ki li \n"
  1021. " sorshell prétind ki vos estoz dvins. Mutwè avoz \n"
  1022. " disfacé l' ovrant ridant, oudobén vs avoz-ve diné \n"
  1023. " des novelès permissions po moussî avou li cmande «su» ? "
  1024. #, c-format
  1025. msgid "Press any key to continue..."
  1026. msgstr "Tchôkîz so tot l' minme li kéne tape po tcheryî pus lon..."
  1027. #, c-format
  1028. msgid "Type `exit' to return to the Midnight Commander"
  1029. msgstr "Tapez «exit» po-z eraler a Midnight Commander"
  1030. #, c-format
  1031. msgid " Cannot fetch a local copy of %s "
  1032. msgstr " Dji n' sai aminer ene copeye locåle di %s "
  1033. #, c-format
  1034. msgid ""
  1035. " Cannot create temporary command file \n"
  1036. " %s "
  1037. msgstr ""
  1038. " Dji n' sai fé on passant fitchî di cmande \n"
  1039. " %s "
  1040. msgid " Parameter "
  1041. msgstr " Pondant "
  1042. #, fuzzy, c-format
  1043. msgid " %s%s file error"
  1044. msgstr " aroke e fitchî "
  1045. #, c-format
  1046. msgid ""
  1047. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1048. "the installation failed. Please fetch a fresh copy from the Midnight "
  1049. "Commander package."
  1050. msgstr ""
  1051. #, fuzzy, c-format
  1052. msgid " ~/%s file error "
  1053. msgstr " aroke e fitchî "
  1054. #, c-format
  1055. msgid ""
  1056. "The format of the ~/%s file has changed with version 3.0. You may either "
  1057. "want to copy it from %smc.ext or use that file as an example of how to write "
  1058. "it."
  1059. msgstr ""
  1060. msgid "DialogTitle|Copy"
  1061. msgstr ""
  1062. msgid "DialogTitle|Move"
  1063. msgstr ""
  1064. msgid "DialogTitle|Delete"
  1065. msgstr ""
  1066. msgid " Cannot make the hardlink "
  1067. msgstr " Dji n' a savu fé li deur loyén "
  1068. #, c-format
  1069. msgid ""
  1070. " Cannot read source link \"%s\" \n"
  1071. " %s "
  1072. msgstr ""
  1073. " Dji n' sai lére li loyén soûrdant «%s» \n"
  1074. " %s "
  1075. msgid ""
  1076. " Cannot make stable symlinks across non-local filesystems: \n"
  1077. "\n"
  1078. " Option Stable Symlinks will be disabled "
  1079. msgstr ""
  1080. " Dji n' sai fé des stocaesses loyéns simbolike avou des sistinmes di fitchîs "
  1081. "nén locås: \n"
  1082. "\n"
  1083. " Li tchûze 'Stocaesse loyéns simbolikes' ni serè nén en alaedje "
  1084. #, c-format
  1085. msgid ""
  1086. " Cannot create target symlink \"%s\" \n"
  1087. " %s "
  1088. msgstr ""
  1089. " Dji n' sai fé li loyén simbolike såme «%s» \n"
  1090. " %s "
  1091. msgid "&Abort"
  1092. msgstr "Ri&noncî"
  1093. #, c-format
  1094. msgid ""
  1095. " Cannot overwrite directory \"%s\" \n"
  1096. " %s "
  1097. msgstr ""
  1098. " Dji n' sai spotchî li ridant «%s» \n"
  1099. " %s "
  1100. # sta_r_t?
  1101. #, c-format
  1102. msgid ""
  1103. " Cannot stat source file \"%s\" \n"
  1104. " %s "
  1105. msgstr ""
  1106. " Dji n' sai fé on stat sol fitchî soûrdant «%s» \n"
  1107. " %s "
  1108. #, fuzzy, c-format
  1109. msgid ""
  1110. " `%s' \n"
  1111. " and \n"
  1112. " `%s' \n"
  1113. " are the same file "
  1114. msgstr " «%s» eyet «%s» sont li minme fitchî "
  1115. #, c-format
  1116. msgid ""
  1117. " Cannot create special file \"%s\" \n"
  1118. " %s "
  1119. msgstr ""
  1120. " Dji n' sai fé li fitchî speciå «%s» \n"
  1121. " %s "
  1122. #, c-format
  1123. msgid ""
  1124. " Cannot chown target file \"%s\" \n"
  1125. " %s "
  1126. msgstr ""
  1127. " Dji n' sai fé on chown sol fitchî såme «%s» \n"
  1128. " %s "
  1129. #, c-format
  1130. msgid ""
  1131. " Cannot chmod target file \"%s\" \n"
  1132. " %s "
  1133. msgstr ""
  1134. " Dji n' sai fé on chmod sol fitchî såme «%s» \n"
  1135. " %s "
  1136. #, c-format
  1137. msgid ""
  1138. " Cannot open source file \"%s\" \n"
  1139. " %s "
  1140. msgstr ""
  1141. " Dji n' sai drovî li fitchî soûrdant «%s» \n"
  1142. " %s "
  1143. # reget?
  1144. msgid " Reget failed, about to overwrite file "
  1145. msgstr " Li rapexhaedje a fwait berwete, dji va spotchî li fitchî "
  1146. #, c-format
  1147. msgid ""
  1148. " Cannot fstat source file \"%s\" \n"
  1149. " %s "
  1150. msgstr ""
  1151. " Dji n' sai fé on fstat sol fitchî soûrdant «%s» \n"
  1152. " %s "
  1153. #, c-format
  1154. msgid ""
  1155. " Cannot create target file \"%s\" \n"
  1156. " %s "
  1157. msgstr ""
  1158. " Dji n' sai fé li fitchî såme «%s» \n"
  1159. " %s "
  1160. #, c-format
  1161. msgid ""
  1162. " Cannot fstat target file \"%s\" \n"
  1163. " %s "
  1164. msgstr ""
  1165. " Dji n' sai fé on fstat sol fitchî såme «%s» \n"
  1166. " %s "
  1167. #, c-format
  1168. msgid ""
  1169. " Cannot read source file \"%s\" \n"
  1170. " %s "
  1171. msgstr ""
  1172. " Dji n' sai lére li fitchî soûrdant «%s» \n"
  1173. " %s "
  1174. #, c-format
  1175. msgid ""
  1176. " Cannot write target file \"%s\" \n"
  1177. " %s "
  1178. msgstr ""
  1179. " Dji n' sai scrire li fitchî såme «%s» \n"
  1180. " %s "
  1181. msgid "(stalled)"
  1182. msgstr "(a djok)"
  1183. #, c-format
  1184. msgid ""
  1185. " Cannot close source file \"%s\" \n"
  1186. " %s "
  1187. msgstr ""
  1188. " Dji n' sai clôre li fitchî soûrdant «%s» \n"
  1189. " %s "
  1190. #, c-format
  1191. msgid ""
  1192. " Cannot close target file \"%s\" \n"
  1193. " %s "
  1194. msgstr ""
  1195. " Dji n' sai clôre li fitchî såme «%s» \n"
  1196. " %s "
  1197. msgid "Incomplete file was retrieved. Keep it?"
  1198. msgstr "Dj' a rapexhî on fitchî nén etir. El fåt-i wårder?"
  1199. msgid "&Keep"
  1200. msgstr "&Wårder"
  1201. #, c-format
  1202. msgid ""
  1203. " Cannot stat source directory \"%s\" \n"
  1204. " %s "
  1205. msgstr ""
  1206. " Dji n' sai fé on stat sol ridant soûrdant «%s» \n"
  1207. " %s "
  1208. #, c-format
  1209. msgid ""
  1210. " Source \"%s\" is not a directory \n"
  1211. " %s "
  1212. msgstr ""
  1213. " Li ridant soûrdant «%s» n' est nén on ridant \n"
  1214. " %s "
  1215. #, c-format
  1216. msgid ""
  1217. " Cannot copy cyclic symbolic link \n"
  1218. " `%s' "
  1219. msgstr ""
  1220. " Dji n' sai copyî on loyén simbolike ciclike \n"
  1221. " «%s» "
  1222. #, c-format
  1223. msgid ""
  1224. " Destination \"%s\" must be a directory \n"
  1225. " %s "
  1226. msgstr ""
  1227. " Li såme «%s» doet esse on ridant \n"
  1228. " %s "
  1229. #, c-format
  1230. msgid ""
  1231. " Cannot create target directory \"%s\" \n"
  1232. " %s "
  1233. msgstr ""
  1234. " Dji n' sai fé li ridant såme «%s» \n"
  1235. " %s "
  1236. #, c-format
  1237. msgid ""
  1238. " Cannot chown target directory \"%s\" \n"
  1239. " %s "
  1240. msgstr ""
  1241. " Dji n' sai fé on chown sol ridant såme «%s» \n"
  1242. " %s "
  1243. #, c-format
  1244. msgid ""
  1245. " Cannot stat file \"%s\" \n"
  1246. " %s "
  1247. msgstr ""
  1248. " Dji n' sai fé on stat sol fitchî «%s» \n"
  1249. " %s "
  1250. #, c-format
  1251. msgid " Cannot overwrite directory `%s' "
  1252. msgstr " Dji n' såreu spotchî li ridant «%s» "
  1253. #, c-format
  1254. msgid ""
  1255. " Cannot move file \"%s\" to \"%s\" \n"
  1256. " %s "
  1257. msgstr ""
  1258. " Dji n' såreu bodjî li fitchî «%s» dins «%s» \n"
  1259. " %s "
  1260. #, c-format
  1261. msgid ""
  1262. " Cannot remove file \"%s\" \n"
  1263. " %s "
  1264. msgstr ""
  1265. " Dji n' sai waester li fitchî «%s» \n"
  1266. " %s "
  1267. #, fuzzy, c-format
  1268. msgid ""
  1269. " `%s' \n"
  1270. " and \n"
  1271. " `%s' \n"
  1272. " are the same directory "
  1273. msgstr " «%s» eyet «%s» sont li minme ridant "
  1274. #, c-format
  1275. msgid " Cannot overwrite directory \"%s\" %s "
  1276. msgstr " Dji n' sai spotchî li ridant «%s» %s "
  1277. #, c-format
  1278. msgid " Cannot overwrite file \"%s\" %s "
  1279. msgstr " Dji n' sai spotchî «%s» %s "
  1280. #, c-format
  1281. msgid ""
  1282. " Cannot move directory \"%s\" to \"%s\" \n"
  1283. " %s "
  1284. msgstr ""
  1285. " Dji n' sai bodjî li ridant «%s» dins «%s» \n"
  1286. " %s "
  1287. #, c-format
  1288. msgid ""
  1289. " Cannot delete file \"%s\" \n"
  1290. " %s "
  1291. msgstr ""
  1292. " Dji n' sai disfacer li fitchî «%s» \n"
  1293. " %s "
  1294. #, c-format
  1295. msgid ""
  1296. " Cannot remove directory \"%s\" \n"
  1297. " %s "
  1298. msgstr ""
  1299. " Dji n' sai waester li ridant «%s» \n"
  1300. " %s "
  1301. #, fuzzy
  1302. msgid "Directory scanning"
  1303. msgstr "Tchimin viè li ridant"
  1304. msgid "FileOperation|Copy"
  1305. msgstr ""
  1306. msgid "FileOperation|Move"
  1307. msgstr ""
  1308. msgid "FileOperation|Delete"
  1309. msgstr ""
  1310. #, no-c-format
  1311. msgid "%o %f \"%s\"%m"
  1312. msgstr "%o %f «%s»%m"
  1313. #, no-c-format
  1314. msgid "%o %d %f%m"
  1315. msgstr "%o %d %f%m"
  1316. msgid "file"
  1317. msgstr "fitchî"
  1318. msgid "files"
  1319. msgstr "fitchîs"
  1320. msgid "directory"
  1321. msgstr "ridant"
  1322. msgid "directories"
  1323. msgstr "ridants"
  1324. msgid "files/directories"
  1325. msgstr "fitchîs/ridants"
  1326. msgid " with source mask:"
  1327. msgstr " avou li masse soûrdant:"
  1328. msgid " to:"
  1329. msgstr " a:"
  1330. #, c-format
  1331. msgid "%s?"
  1332. msgstr ""
  1333. msgid " Cannot operate on \"..\"! "
  1334. msgstr " Dji n' sai ovrer so «..» ! "
  1335. msgid " Sorry, I could not put the job in background "
  1336. msgstr " Dji rgrete, dji n' sai mete ci bezogne la e fond "
  1337. msgid "&Retry"
  1338. msgstr "&Rissayî"
  1339. msgid ""
  1340. "\n"
  1341. " Directory not empty. \n"
  1342. " Delete it recursively? "
  1343. msgstr ""
  1344. "\n"
  1345. " Li ridant n' est nén vûde. \n"
  1346. " El fåt-i disfacer avou tos ses efants? "
  1347. msgid ""
  1348. "\n"
  1349. " Background process: Directory not empty \n"
  1350. " Delete it recursively? "
  1351. msgstr ""
  1352. "\n"
  1353. " Bezogne di fond: li ridant n' est nén vûde \n"
  1354. " El fåt-i disfacer avou tos ses efants? "
  1355. msgid " Delete: "
  1356. msgstr " Disfacer: "
  1357. msgid "Non&e"
  1358. msgstr "&Nouk"
  1359. #, c-format
  1360. msgid "ETA %d:%02d.%02d"
  1361. msgstr ""
  1362. #, c-format
  1363. msgid "%.2f MB/s"
  1364. msgstr ""
  1365. #, c-format
  1366. msgid "%.2f KB/s"
  1367. msgstr ""
  1368. #, c-format
  1369. msgid "%ld B/s"
  1370. msgstr ""
  1371. msgid "File"
  1372. msgstr "fitchî"
  1373. msgid "Count"
  1374. msgstr "Conter"
  1375. msgid "Bytes"
  1376. msgstr "Octets"
  1377. msgid "Source"
  1378. msgstr "Soûrdant"
  1379. msgid "Target"
  1380. msgstr "Såme"
  1381. msgid "Deleting"
  1382. msgstr "Dji disface"
  1383. #, fuzzy
  1384. msgid "Target file already exists!"
  1385. msgstr "Li fitchî såme «%s» egzisteye dedja!"
  1386. #, fuzzy, c-format
  1387. msgid "Source date: %s, size %llu"
  1388. msgstr "Date soûrdant: %s, grandeu %llu"
  1389. #, fuzzy, c-format
  1390. msgid "Target date: %s, size %llu"
  1391. msgstr "Date såme: %s, grandeu %llu"
  1392. #, fuzzy, c-format
  1393. msgid "Source date: %s, size %u"
  1394. msgstr "Date soûrdant: %s, grandeu %u"
  1395. #, fuzzy, c-format
  1396. msgid "Target date: %s, size %u"
  1397. msgstr "Date såme: %s, grandeu %u"
  1398. msgid "If &size differs"
  1399. msgstr "si li &grandeu n' est nén li minme"
  1400. msgid "&Update"
  1401. msgstr "&Mete a djoû"
  1402. msgid "Overwrite all targets?"
  1403. msgstr "Sipotchî totes les såmes"
  1404. msgid "&Reget"
  1405. msgstr "&Rapexhî"
  1406. msgid "A&ppend"
  1407. msgstr "ra&djouter å coron"
  1408. msgid "Overwrite this target?"
  1409. msgstr "Sipotchî cisse såme chal?"
  1410. msgid " File exists "
  1411. msgstr " Li fitchî egzisteye dedja "
  1412. msgid " Background process: File exists "
  1413. msgstr " Bezogne di fond: li fitchî egzisteye dedja "
  1414. msgid "&Background"
  1415. msgstr "&Fond"
  1416. msgid "&Stable Symlinks"
  1417. msgstr "&Stocaesse loyéns simbolikes"
  1418. #, fuzzy
  1419. msgid "di&Ve into subdir if exists"
  1420. msgstr "&Plonker ezès ridants efants, s' i gn a"
  1421. msgid "preserve &Attributes"
  1422. msgstr "wårder les &Atributs"
  1423. msgid "follow &Links"
  1424. msgstr "shure les &Loyéns"
  1425. msgid "to:"
  1426. msgstr "a:"
  1427. #, fuzzy, c-format
  1428. msgid "Invalid source pattern `%s'"
  1429. msgstr ""
  1430. "Li modele soûrdant n' est nén valåbe «%s» \n"
  1431. " %s "
  1432. msgid "&Suspend"
  1433. msgstr "Mete a &Djok"
  1434. msgid "Con&tinue"
  1435. msgstr "&Tcheryî"
  1436. msgid "&Chdir"
  1437. msgstr "&Chdir"
  1438. msgid "&Again"
  1439. msgstr "&Eco on côp"
  1440. msgid "Pane&lize"
  1441. msgstr "Mete e &Panea"
  1442. msgid "&View - F3"
  1443. msgstr "&Loukî - F3"
  1444. msgid "&Edit - F4"
  1445. msgstr "&Aspougnî - F4"
  1446. #, c-format
  1447. msgid "Found: %ld"
  1448. msgstr ""
  1449. #, fuzzy
  1450. msgid " Malformed regular expression "
  1451. msgstr " Erûleye ratoûrneure må adjinçneye "
  1452. #, fuzzy
  1453. msgid "Cas&e sensitive"
  1454. msgstr "grandès <> ptitès letes"
  1455. msgid "&Find recursively"
  1456. msgstr ""
  1457. msgid "S&kip hidden"
  1458. msgstr ""
  1459. msgid "&All charsets"
  1460. msgstr ""
  1461. #, fuzzy
  1462. msgid "Case sens&itive"
  1463. msgstr "grandès <> ptitès letes"
  1464. #, fuzzy
  1465. msgid "Re&gular expression"
  1466. msgstr "Erûle&ye Ratoûrneure"
  1467. msgid "Fir&st hit"
  1468. msgstr ""
  1469. msgid "All cha&rsets"
  1470. msgstr ""
  1471. msgid "&Tree"
  1472. msgstr "Å&be"
  1473. msgid "Find File"
  1474. msgstr "Trover Fitchî"
  1475. #, fuzzy
  1476. msgid "Content:"
  1477. msgstr "Ådvins:"
  1478. #, fuzzy
  1479. msgid "File name:"
  1480. msgstr "No do fitchî:"
  1481. msgid "Start at:"
  1482. msgstr "Ataker a:"
  1483. #, c-format
  1484. msgid "Grepping in %s"
  1485. msgstr "Dji cwîr dins %s"
  1486. msgid "Finished"
  1487. msgstr "Fwait"
  1488. #, c-format
  1489. msgid "Searching %s"
  1490. msgstr "Dji cwîr %s"
  1491. msgid "Searching"
  1492. msgstr "Dji cwîr"
  1493. msgid " Help file format error\n"
  1494. msgstr " Ene sacwè ni va nén el cogne do fitchî d' aidance\n"
  1495. msgid " Internal bug: Double start of link area "
  1496. msgstr " Divintrin bug: dobe enondeye del coine loyén "
  1497. #, c-format
  1498. msgid " Cannot find node %s in help file "
  1499. msgstr " Dji n' trove nén li nouk %s e fitchî d' aidance "
  1500. msgid "Help"
  1501. msgstr "Aide"
  1502. msgid "ButtonBar|Index"
  1503. msgstr ""
  1504. msgid "ButtonBar|Prev"
  1505. msgstr ""
  1506. msgid "&Remove"
  1507. msgstr "&Waester"
  1508. msgid "&Append"
  1509. msgstr "&Mete å coron"
  1510. msgid "&Insert"
  1511. msgstr "&Sititchî"
  1512. msgid "New &Entry"
  1513. msgstr "Novele &Intrêye"
  1514. msgid "New &Group"
  1515. msgstr "Novea &Hopê"
  1516. msgid "&Up"
  1517. msgstr "&Dizeu"
  1518. msgid "&Add current"
  1519. msgstr "R&adjouter ci do moumint"
  1520. #, fuzzy
  1521. msgid "&Refresh"
  1522. msgstr "Å&rvier"
  1523. msgid "Fr&ee VFSs now"
  1524. msgstr ""
  1525. msgid "Change &To"
  1526. msgstr "Ca&ndjî A"
  1527. msgid "Subgroup - press ENTER to see list"
  1528. msgstr "Hopê efant - tchôkîz so ENTER po vey li djîvêye"
  1529. msgid "Active VFS directories"
  1530. msgstr "Ovrants ridants VFS"
  1531. msgid "Directory hotlist"
  1532. msgstr "Ridant pol Djîvêye Rascoûrti"
  1533. msgid " Directory path "
  1534. msgstr " Tchimin do ridant "
  1535. msgid " Directory label "
  1536. msgstr " Etikete do ridant "
  1537. #, fuzzy, c-format
  1538. msgid "Moving %s"
  1539. msgstr "Dji bodje"
  1540. msgid "New hotlist entry"
  1541. msgstr "Novele intrêye el djîvêye rascoûrti"
  1542. msgid "Directory label"
  1543. msgstr "No do ridant"
  1544. msgid "Directory path"
  1545. msgstr "Tchimin viè li ridant"
  1546. msgid " New hotlist group "
  1547. msgstr " Novea hopê el djîvêye rascoûrti "
  1548. msgid "Name of new group"
  1549. msgstr "No do novea hopê"
  1550. #, c-format
  1551. msgid "Label for \"%s\":"
  1552. msgstr "Etikete po «%s»:"
  1553. msgid " Add to hotlist "
  1554. msgstr " Radjouter el djîvêye rascoûrti "
  1555. msgid " Remove: "
  1556. msgstr " Waester: "
  1557. msgid ""
  1558. "\n"
  1559. " Are you sure you want to remove this entry?"
  1560. msgstr ""
  1561. msgid ""
  1562. "\n"
  1563. " Group not empty.\n"
  1564. " Remove it?"
  1565. msgstr ""
  1566. "\n"
  1567. " Li hopê n' est nén vûde.\n"
  1568. " El fåt-i waester?"
  1569. msgid " Top level group "
  1570. msgstr " Hopê do pus hôt livea "
  1571. msgid " Hotlist Load "
  1572. msgstr " Dji tchedje li djîvêye rascoûrti "
  1573. #, fuzzy, c-format
  1574. msgid ""
  1575. "MC was unable to write ~/%s file, your old hotlist entries were not deleted"
  1576. msgstr ""
  1577. "Do côp, vos vîyès intrêyes el djîvêye rascoûrti n' ont nén stî disfacêyes"
  1578. #, c-format
  1579. msgid "Midnight Commander %s"
  1580. msgstr "Midnight Commander %s"
  1581. #, c-format
  1582. msgid "File: %s"
  1583. msgstr "Fitchî: %s"
  1584. #, c-format
  1585. msgid "Free nodes: %d (%d%%) of %d"
  1586. msgstr "Nouks libes: %d (%d%%) so %d"
  1587. msgid "No node information"
  1588. msgstr "Nole informåcion sol nouk"
  1589. #, c-format
  1590. msgid "Free space: %s (%d%%) of %s"
  1591. msgstr "Espace Libe: %s (%d%%) so %s"
  1592. msgid "No space information"
  1593. msgstr "Nole informåcion so li stindeye"
  1594. #, c-format
  1595. msgid "Type: %s "
  1596. msgstr "Sôrt: %s "
  1597. msgid "non-local vfs"
  1598. msgstr "vfs nén locå"
  1599. #, c-format
  1600. msgid "Device: %s"
  1601. msgstr "Éndjin: %s"
  1602. #, c-format
  1603. msgid "Filesystem: %s"
  1604. msgstr "Sistinme di fitchîs: %s"
  1605. #, c-format
  1606. msgid "Accessed: %s"
  1607. msgstr "Eployî: %s"
  1608. #, c-format
  1609. msgid "Modified: %s"
  1610. msgstr "Candjî: %s"
  1611. #. TRANSLATORS: "Status changed", like in the stat(2) man page
  1612. #, fuzzy, c-format
  1613. msgid "Status: %s"
  1614. msgstr "Fwait: %s"
  1615. #, c-format
  1616. msgid "Dev. type: major %lu, minor %lu"
  1617. msgstr ""
  1618. #, c-format
  1619. msgid "Size: %s"
  1620. msgstr "Grandeu: %s"
  1621. #, fuzzy, c-format
  1622. msgid " (%ld block)"
  1623. msgid_plural " (%ld blocks)"
  1624. msgstr[0] " (%ld blok)"
  1625. msgstr[1] " (%ld blok)"
  1626. #, c-format
  1627. msgid "Owner: %s/%s"
  1628. msgstr "Da: %s/%s"
  1629. #, c-format
  1630. msgid "Links: %d"
  1631. msgstr "Loyéns: %d"
  1632. #, c-format
  1633. msgid "Mode: %s (%04o)"
  1634. msgstr "Môde: %s (%04o)"
  1635. #, c-format
  1636. msgid "Location: %Xh:%Xh"
  1637. msgstr "Eplaeçmint: %Xh:%Xh"
  1638. msgid "&Vertical"
  1639. msgstr "D' &Astampé"
  1640. msgid "&Horizontal"
  1641. msgstr "Di &Coûtchî"
  1642. msgid "show free sp&Ace"
  1643. msgstr ""
  1644. #, fuzzy
  1645. msgid "&Xterm window title"
  1646. msgstr "Bår ås racsegnes &Xterm"
  1647. msgid "h&Intbar visible"
  1648. msgstr "Bår ås racsegnes veyåve"
  1649. # Key? Clé? Tapes?
  1650. msgid "&Keybar visible"
  1651. msgstr ""
  1652. msgid "command &Prompt"
  1653. msgstr "&Houkete"
  1654. msgid "show &Mini status"
  1655. msgstr "vey mini &Statut"
  1656. msgid "menu&Bar visible"
  1657. msgstr "Bår ås &Menus veyåve"
  1658. msgid "&Equal split"
  1659. msgstr "Pårti e deus bokets les &minmes"
  1660. msgid "pe&Rmissions"
  1661. msgstr "pe&Rmissions"
  1662. msgid "&File types"
  1663. msgstr "Sôrts di &Fitchîs"
  1664. msgid " Panel split "
  1665. msgstr " Pårti panea "
  1666. msgid " Highlight... "
  1667. msgstr " Mete e Valeur... "
  1668. msgid " Other options "
  1669. msgstr " Ôtès tchûzes "
  1670. msgid "output lines"
  1671. msgstr "fé rexhe royes"
  1672. msgid "Layout"
  1673. msgstr "Adjinçmint"
  1674. msgid "Learn keys"
  1675. msgstr "Aprinde des tapes"
  1676. msgid " Teach me a key "
  1677. msgstr " Apurdoz-me ene tape "
  1678. #, c-format
  1679. msgid ""
  1680. "Please press the %s\n"
  1681. "and then wait until this message disappears.\n"
  1682. "\n"
  1683. "Then, press it again to see if OK appears\n"
  1684. "next to its button.\n"
  1685. "\n"
  1686. "If you want to escape, press a single Escape key\n"
  1687. "and wait as well."
  1688. msgstr ""
  1689. "Tchôkîz so %s\n"
  1690. "et s' rawårdez djusk' a tant ki li messaedje eva.\n"
  1691. "\n"
  1692. "Adon, tchôkîz co on côp sol minme tape po vey s' i gn a on 'I Va' k' "
  1693. "aparexhe\n"
  1694. "djusse asto do boton.\n"
  1695. "\n"
  1696. "Si vos voloz spiter foû, tchôkîz on côp so Escape\n"
  1697. "et ratindoz eto."
  1698. msgid " Cannot accept this key "
  1699. msgstr " Dji n' vou nén di cisse tape la "
  1700. #, c-format
  1701. msgid " You have entered \"%s\""
  1702. msgstr " Vos avoz tapé «%s»"
  1703. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  1704. msgid "OK"
  1705. msgstr "I Va"
  1706. msgid ""
  1707. "It seems that all your keys already\n"
  1708. "work fine. That's great."
  1709. msgstr ""
  1710. "Dj' a l' idêye ki totes vos tapes rotèt ddja \n"
  1711. "a môde di djin. Clapant, edon?"
  1712. msgid "&Discard"
  1713. msgstr "&Taper la hatch et match"
  1714. msgid ""
  1715. "Great! You have a complete terminal database!\n"
  1716. "All your keys work well."
  1717. msgstr ""
  1718. "Clapant! Li båze di dnêyes po vosse terminå est pår fwaite!\n"
  1719. "Totes vos tapes rotèt a l' idêye."
  1720. msgid "Press all the keys mentioned here. After you have done it, check"
  1721. msgstr ""
  1722. "Tchôkîz totes les tapes k' on vs dit vaici. On côp ki c' est fwait, waitîz"
  1723. msgid "which keys are not marked with OK. Press space on the missing"
  1724. msgstr ""
  1725. "les kénès tapes ni sont nén mårkeyes avou 'I Va'. Tchôkîz sol bår d' espåce "
  1726. "so les mankantès"
  1727. msgid "key, or click with the mouse to define it. Move around with Tab."
  1728. msgstr "tape, ou bén clitchîz avou vosse soris pol defini. Bodjî avou Tab."
  1729. msgid " The Midnight Commander "
  1730. msgstr " Li Midnight Commander "
  1731. msgid " Do you really want to quit the Midnight Commander? "
  1732. msgstr " Voloz moussî foû po do bon do Midnight Commander? "
  1733. msgid "&Listing mode..."
  1734. msgstr "Môde &Djîvêye..."
  1735. #, fuzzy
  1736. msgid "&Quick view"
  1737. msgstr "Schaper al vole "
  1738. #, fuzzy
  1739. msgid "&Info"
  1740. msgstr "&Inode"
  1741. msgid "&Sort order..."
  1742. msgstr "Ôrde po &Relire..."
  1743. msgid "&Filter..."
  1744. msgstr "&Passete..."
  1745. #, fuzzy
  1746. msgid "&Encoding..."
  1747. msgstr "re&Lire... M-t"
  1748. msgid "&Network link..."
  1749. msgstr "&Loyén Rantoele???"
  1750. msgid "FT&P link..."
  1751. msgstr "Loyén &FTP..."
  1752. #, fuzzy
  1753. msgid "S&hell link..."
  1754. msgstr "Loyén SM&B..."
  1755. msgid "SM&B link..."
  1756. msgstr "Loyén SM&B..."
  1757. #, fuzzy
  1758. msgid "&Rescan"
  1759. msgstr "Rilére"
  1760. #, fuzzy
  1761. msgid "&View"
  1762. msgstr "Vey"
  1763. #, fuzzy
  1764. msgid "Vie&w file..."
  1765. msgstr " Loukî e fitchî "
  1766. #, fuzzy
  1767. msgid "&Filtered view"
  1768. msgstr " Vey passé "
  1769. msgid "C&hmod"
  1770. msgstr ""
  1771. #, fuzzy
  1772. msgid "&Link"
  1773. msgstr "&Loyéns"
  1774. #, fuzzy
  1775. msgid "&SymLink"
  1776. msgstr "&Loyéns"
  1777. #, fuzzy
  1778. msgid "Edit s&ymlink"
  1779. msgstr " Aspougnî li loyén simbolike "
  1780. msgid "Ch&own"
  1781. msgstr ""
  1782. #, fuzzy
  1783. msgid "&Advanced chown"
  1784. msgstr "chown &Avancî "
  1785. #, fuzzy
  1786. msgid "&Rename/Move"
  1787. msgstr "&Waester"
  1788. #, fuzzy
  1789. msgid "&Mkdir"
  1790. msgstr "Mkdir"
  1791. #, fuzzy
  1792. msgid "&Quick cd"
  1793. msgstr "Abeye cd"
  1794. #, fuzzy
  1795. msgid "Select &group"
  1796. msgstr "Mete les &groupe"
  1797. #, fuzzy
  1798. msgid "U&nselect group"
  1799. msgstr " Distchwezi "
  1800. #, fuzzy
  1801. msgid "Reverse selec&tion"
  1802. msgstr "reverse selec&Tion M-*"
  1803. #, fuzzy
  1804. msgid "E&xit"
  1805. msgstr "Aspougnî"
  1806. #, fuzzy
  1807. msgid "&User menu"
  1808. msgstr " Menu di l' ûzeu "
  1809. msgid "&Directory tree"
  1810. msgstr "&Brantches do ridant"
  1811. #, fuzzy
  1812. msgid "&Find file"
  1813. msgstr "Trover Fitchî"
  1814. msgid "S&wap panels"
  1815. msgstr ""
  1816. #, fuzzy
  1817. msgid "Switch &panels on/off"
  1818. msgstr "mostrer/catchî les &Paneas C-o"
  1819. #, fuzzy
  1820. msgid "&Compare directories"
  1821. msgstr " Rimete les ridants "
  1822. #, fuzzy
  1823. msgid "E&xternal panelize"
  1824. msgstr "Difoûtrins paneas"
  1825. #, fuzzy
  1826. msgid "Show directory s&izes"
  1827. msgstr "mostrer grandeu des r&Idants"
  1828. #, fuzzy
  1829. msgid "Command &history"
  1830. msgstr "ist&were des cmandes"
  1831. #, fuzzy
  1832. msgid "Di&rectory hotlist"
  1833. msgstr "Ridant pol Djîvêye Rascoûrti"
  1834. #, fuzzy
  1835. msgid "&Active VFS list"
  1836. msgstr "Ovrants ridants VFS"
  1837. #, fuzzy
  1838. msgid "&Background jobs"
  1839. msgstr "Bezognes di fond"
  1840. msgid "&Undelete files (ext2fs only)"
  1841. msgstr "Disra&Facer des fitchîs (seulmint ext2fs)"
  1842. msgid "&Listing format edit"
  1843. msgstr ""
  1844. msgid "Edit &extension file"
  1845. msgstr ""
  1846. msgid "Edit &menu file"
  1847. msgstr ""
  1848. msgid "Edit hi&ghlighting group file"
  1849. msgstr ""
  1850. msgid "&Configuration..."
  1851. msgstr "&Apontiaedje..."
  1852. msgid "&Layout..."
  1853. msgstr "arindj&mint del pådje..."
  1854. #, fuzzy
  1855. msgid "C&onfirmation..."
  1856. msgstr "Ra&certiner..."
  1857. msgid "&Display bits..."
  1858. msgstr ""
  1859. msgid "&Virtual FS..."
  1860. msgstr ""
  1861. #, fuzzy
  1862. msgid "&Above"
  1863. msgstr " Diz&eu "
  1864. #, fuzzy
  1865. msgid "&Left"
  1866. msgstr " &Hintche "
  1867. #, fuzzy
  1868. msgid "&Below"
  1869. msgstr " Diz&o "
  1870. #, fuzzy
  1871. msgid "&Right"
  1872. msgstr " &Droete "
  1873. msgid " Information "
  1874. msgstr " Informåcion "
  1875. msgid ""
  1876. " Using the fast reload option may not reflect the exact \n"
  1877. " directory contents. In this case you'll need to do a \n"
  1878. " manual reload of the directory. See the man page for \n"
  1879. " the details. "
  1880. msgstr ""
  1881. msgid "ButtonBar|Menu"
  1882. msgstr ""
  1883. msgid "ButtonBar|View"
  1884. msgstr ""
  1885. msgid "ButtonBar|Edit"
  1886. msgstr ""
  1887. msgid "ButtonBar|RenMov"
  1888. msgstr ""
  1889. msgid "ButtonBar|Mkdir"
  1890. msgstr ""
  1891. msgid "The TERM environment variable is unset!\n"
  1892. msgstr "Li variåve d' evironmint TERM n' est nén metowe!\n"
  1893. #, fuzzy, c-format
  1894. msgid "Cannot create %s directory"
  1895. msgstr "Dji n' sai candjî di ridant"
  1896. msgid "safe de&Lete"
  1897. msgstr "disf&Acer a såvrité"
  1898. msgid "cd follows lin&Ks"
  1899. msgstr "cd shû&T les loyéns"
  1900. msgid "L&ynx-like motion"
  1901. msgstr "bodjî come dins L&ynx"
  1902. msgid "rotatin&G dash"
  1903. msgstr ""
  1904. msgid "co&Mplete: show all"
  1905. msgstr ""
  1906. msgid "&Use internal view"
  1907. msgstr ""
  1908. msgid "use internal ed&It"
  1909. msgstr ""
  1910. msgid "auto m&Enus"
  1911. msgstr ""
  1912. msgid "&Auto save setup"
  1913. msgstr ""
  1914. msgid "shell &Patterns"
  1915. msgstr ""
  1916. msgid "Compute &Totals"
  1917. msgstr ""
  1918. msgid "&Verbose operation"
  1919. msgstr ""
  1920. msgid "Mkdir autoname"
  1921. msgstr ""
  1922. msgid "&Fast dir reload"
  1923. msgstr ""
  1924. msgid "mi&X all files"
  1925. msgstr ""
  1926. msgid "&Drop down menus"
  1927. msgstr ""
  1928. msgid "ma&Rk moves down"
  1929. msgstr ""
  1930. msgid "show &Hidden files"
  1931. msgstr "mostrer &Fitchîs catchîs"
  1932. msgid "show &Backup files"
  1933. msgstr "mostrer les &Copeyes di såvrité"
  1934. msgid "Use SI si&ze units"
  1935. msgstr ""
  1936. msgid "&Never"
  1937. msgstr "&Måy"
  1938. msgid "on dumb &Terminals"
  1939. msgstr "so les mouwês &Terminås"
  1940. msgid "Alwa&ys"
  1941. msgstr "to&Fer"
  1942. msgid " Panel options "
  1943. msgstr " Tchûzes pol panea "
  1944. msgid " Pause after run... "
  1945. msgstr " Si djoker après avu enondé... "
  1946. msgid "Configure options"
  1947. msgstr "Apontyî les tchûzes"
  1948. msgid "&Add new"
  1949. msgstr "R&adjouter novea"
  1950. msgid "External panelize"
  1951. msgstr "Difoûtrins paneas"
  1952. msgid "Command"
  1953. msgstr "Comande"
  1954. msgid "Other command"
  1955. msgstr "Ôtès cmandes"
  1956. msgid " Add to external panelize "
  1957. msgstr ""
  1958. msgid " Enter command label: "
  1959. msgstr ""
  1960. msgid " Cannot run external panelize in a non-local directory "
  1961. msgstr ""
  1962. msgid "Find rejects after patching"
  1963. msgstr "Trover les sacwè nén prijhes på patch"
  1964. msgid "Find *.orig after patching"
  1965. msgstr ""
  1966. msgid "Find SUID and SGID programs"
  1967. msgstr "Trover les programes SUID eyet SGID"
  1968. msgid "Cannot invoke command."
  1969. msgstr "Dji n' sai enonder li cmande."
  1970. msgid "Pipe close failed"
  1971. msgstr "Li cloyaedje del bûze a fwait berwete"
  1972. msgid "[dev]"
  1973. msgstr ""
  1974. msgid "UP--DIR"
  1975. msgstr ""
  1976. msgid "SYMLINK"
  1977. msgstr ""
  1978. msgid "SUB-DIR"
  1979. msgstr ""
  1980. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  1981. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  1982. msgid "sort|u"
  1983. msgstr ""
  1984. msgid "&Unsorted"
  1985. msgstr "Nén r&elî"
  1986. #. TRANSLATORS: one single character to represent 'name' sort mode
  1987. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  1988. msgid "sort|n"
  1989. msgstr ""
  1990. msgid "&Name"
  1991. msgstr "&No"
  1992. #. TRANSLATORS: one single character to represent 'extension' sort mode
  1993. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  1994. #, fuzzy
  1995. msgid "sort|e"
  1996. msgstr "Nén r&elî"
  1997. msgid "&Extension"
  1998. msgstr "&Cawete"
  1999. #. TRANSLATORS: one single character to represent 'size' sort mode
  2000. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2001. msgid "sort|s"
  2002. msgstr ""
  2003. msgid "&Size"
  2004. msgstr "&Grandeu"
  2005. #, fuzzy
  2006. msgid "Block Size"
  2007. msgstr " Grandeu "
  2008. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2009. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2010. msgid "sort|m"
  2011. msgstr ""
  2012. msgid "&Modify time"
  2013. msgstr "C&andjî tins"
  2014. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2015. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2016. msgid "sort|a"
  2017. msgstr ""
  2018. msgid "&Access time"
  2019. msgstr "E&ployî"
  2020. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2021. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2022. msgid "sort|h"
  2023. msgstr ""
  2024. msgid "C&Hange time"
  2025. msgstr "As&pougnî"
  2026. msgid "Permission"
  2027. msgstr "Permission"
  2028. msgid "Perm"
  2029. msgstr ""
  2030. msgid "Nl"
  2031. msgstr ""
  2032. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2033. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2034. msgid "sort|i"
  2035. msgstr ""
  2036. msgid "&Inode"
  2037. msgstr "&Inode"
  2038. msgid "UID"
  2039. msgstr "UID"
  2040. msgid "GID"
  2041. msgstr "GID"
  2042. msgid "Owner"
  2043. msgstr "Da"
  2044. msgid "Group"
  2045. msgstr "Groupe"
  2046. msgid "<readlink failed>"
  2047. msgstr "<readlink a fwait berwete>"
  2048. #, fuzzy, c-format
  2049. msgid "%s byte"
  2050. msgid_plural "%s bytes"
  2051. msgstr[0] "%s octets"
  2052. msgstr[1] "%s octets"
  2053. #, fuzzy, c-format
  2054. msgid "%s in %d file"
  2055. msgid_plural "%s in %d files"
  2056. msgstr[0] "%s octets e fitchî %d"
  2057. msgstr[1] "%s octets e fitchî %d"
  2058. msgid "Unknown tag on display format: "
  2059. msgstr ""
  2060. msgid "User supplied format looks invalid, reverting to default."
  2061. msgstr ""
  2062. msgid " Do you really want to execute? "
  2063. msgstr " Voloz-ve enonder po do bon? "
  2064. msgid " Not implemented yet "
  2065. msgstr ""
  2066. msgid " Num of replace tokens not equal to num of found tokens "
  2067. msgstr ""
  2068. # Mask = umask (modele di cogne di fitchî?)??
  2069. #, fuzzy, c-format
  2070. msgid " Invalid token number %d "
  2071. msgstr " Li masse såme n' est nén valåbe "
  2072. msgid "Normal"
  2073. msgstr ""
  2074. msgid "&Regular expression"
  2075. msgstr "Erûle&ye Ratoûrneure"
  2076. msgid "Hexadecimal"
  2077. msgstr ""
  2078. msgid "Wildcard search"
  2079. msgstr ""
  2080. msgid "Choose codepage"
  2081. msgstr ""
  2082. msgid "- < No translation >"
  2083. msgstr ""
  2084. #, fuzzy, c-format
  2085. msgid ""
  2086. "Cannot save file %s:\n"
  2087. "%s"
  2088. msgstr " Åk n' a nén stî come dji sayîve di schaper li fitchî. "
  2089. #, c-format
  2090. msgid ""
  2091. "Unable to load '%s' skin.\n"
  2092. "Default skin has been loaded"
  2093. msgstr ""
  2094. #, c-format
  2095. msgid ""
  2096. "Unable to parse '%s' skin.\n"
  2097. "Default skin has been loaded"
  2098. msgstr ""
  2099. msgid ""
  2100. "GNU Midnight Commander is already\n"
  2101. "running on this terminal.\n"
  2102. "Subshell support will be disabled."
  2103. msgstr ""
  2104. #, c-format
  2105. msgid "Cannot open named pipe %s\n"
  2106. msgstr "Dji n' sai drovî li lomêye bûze %s\n"
  2107. msgid " The shell is still active. Quit anyway? "
  2108. msgstr " Li shell est co en alaedje. Voloz-ve tot l' minme moussî foû? "
  2109. #, c-format
  2110. msgid "Warning: Cannot change to %s.\n"
  2111. msgstr "Advertixhmint: dji n' sai candjî dins %s.\n"
  2112. msgid "With builtin Editor\n"
  2113. msgstr ""
  2114. msgid "Using system-installed S-Lang library"
  2115. msgstr ""
  2116. msgid "with terminfo database"
  2117. msgstr ""
  2118. #, fuzzy
  2119. msgid "Using the ncurses library"
  2120. msgstr "li lîvreye ncurses"
  2121. #, fuzzy
  2122. msgid "Using the ncursesw library"
  2123. msgstr "li lîvreye ncurses"
  2124. msgid "With optional subshell support"
  2125. msgstr ""
  2126. msgid "With subshell support as default"
  2127. msgstr ""
  2128. msgid "With support for background operations\n"
  2129. msgstr "Avou sopoirt po les bouyes di fond\n"
  2130. #, fuzzy
  2131. msgid "With mouse support on xterm and Linux console\n"
  2132. msgstr "avou sopoirt soris dins xterm et li conzôle Linux.\n"
  2133. #, fuzzy
  2134. msgid "With mouse support on xterm\n"
  2135. msgstr "avou sopoirt soris dins xterm.\n"
  2136. #, fuzzy
  2137. msgid "With support for X11 events\n"
  2138. msgstr "Avou sopoirt po les bouyes di fond\n"
  2139. msgid "With internationalization support\n"
  2140. msgstr ""
  2141. msgid "With multiple codepages support\n"
  2142. msgstr ""
  2143. #, c-format
  2144. msgid "Virtual File System:"
  2145. msgstr "Forveyou sistinme di fitchîs:"
  2146. #, c-format
  2147. msgid ""
  2148. "Cannot open the %s file for writing:\n"
  2149. "%s\n"
  2150. msgstr ""
  2151. "Dji n' sai drovî li fitchî %s po scrire divins:\n"
  2152. "%s\n"
  2153. #, c-format
  2154. msgid "Copy \"%s\" directory to:"
  2155. msgstr "Copyî li ridant «%s» dins:"
  2156. #, c-format
  2157. msgid "Move \"%s\" directory to:"
  2158. msgstr "Bodjî li ridant «%s» dins:"
  2159. #, c-format
  2160. msgid ""
  2161. " Cannot stat the destination \n"
  2162. " %s "
  2163. msgstr ""
  2164. #, c-format
  2165. msgid " Delete %s? "
  2166. msgstr " Disfacer %s? "
  2167. msgid "ButtonBar|Static"
  2168. msgstr ""
  2169. msgid "ButtonBar|Dynamc"
  2170. msgstr ""
  2171. msgid "ButtonBar|Rescan"
  2172. msgstr ""
  2173. msgid "ButtonBar|Forget"
  2174. msgstr ""
  2175. msgid "ButtonBar|Rmdir"
  2176. msgstr ""
  2177. #, c-format
  2178. msgid ""
  2179. "Cannot write to the %s file:\n"
  2180. "%s\n"
  2181. msgstr ""
  2182. "Dji n' sai scrire e fitchî %s :\n"
  2183. "%s\n"
  2184. msgid "Function key 1"
  2185. msgstr "F1"
  2186. msgid "Function key 2"
  2187. msgstr "F2"
  2188. msgid "Function key 3"
  2189. msgstr "F3"
  2190. msgid "Function key 4"
  2191. msgstr "F4"
  2192. msgid "Function key 5"
  2193. msgstr "F5"
  2194. msgid "Function key 6"
  2195. msgstr "F6"
  2196. msgid "Function key 7"
  2197. msgstr "F7"
  2198. msgid "Function key 8"
  2199. msgstr "F8"
  2200. msgid "Function key 9"
  2201. msgstr "F9"
  2202. msgid "Function key 10"
  2203. msgstr "F10"
  2204. msgid "Function key 11"
  2205. msgstr "F11"
  2206. msgid "Function key 12"
  2207. msgstr "F12"
  2208. msgid "Function key 13"
  2209. msgstr "F13"
  2210. msgid "Function key 14"
  2211. msgstr "F14"
  2212. msgid "Function key 15"
  2213. msgstr "F15"
  2214. msgid "Function key 16"
  2215. msgstr "F16"
  2216. msgid "Function key 17"
  2217. msgstr "F17"
  2218. msgid "Function key 18"
  2219. msgstr "F18"
  2220. msgid "Function key 19"
  2221. msgstr "F19"
  2222. msgid "Function key 20"
  2223. msgstr "F20"
  2224. msgid "Backspace key"
  2225. msgstr "Backspace"
  2226. msgid "End key"
  2227. msgstr "End"
  2228. msgid "Up arrow key"
  2229. msgstr "Fletche copete"
  2230. msgid "Down arrow key"
  2231. msgstr "Fletche valeye"
  2232. msgid "Left arrow key"
  2233. msgstr "Fletche hintche"
  2234. msgid "Right arrow key"
  2235. msgstr "Fletche droete"
  2236. msgid "Home key"
  2237. msgstr "Home"
  2238. msgid "Page Down key"
  2239. msgstr "Pådje copete"
  2240. msgid "Page Up key"
  2241. msgstr "Pådje valeye"
  2242. msgid "Insert key"
  2243. msgstr "Insert"
  2244. msgid "Delete key"
  2245. msgstr "Delete"
  2246. msgid "Completion/M-tab"
  2247. msgstr ""
  2248. msgid "+ on keypad"
  2249. msgstr ""
  2250. msgid "- on keypad"
  2251. msgstr ""
  2252. msgid "Slash on keypad"
  2253. msgstr ""
  2254. msgid "* on keypad"
  2255. msgstr ""
  2256. #, fuzzy
  2257. msgid "Escape key"
  2258. msgstr "Pådje copete"
  2259. msgid "Left arrow keypad"
  2260. msgstr ""
  2261. msgid "Right arrow keypad"
  2262. msgstr ""
  2263. msgid "Up arrow keypad"
  2264. msgstr ""
  2265. msgid "Down arrow keypad"
  2266. msgstr ""
  2267. msgid "Home on keypad"
  2268. msgstr ""
  2269. msgid "End on keypad"
  2270. msgstr ""
  2271. msgid "Page Down keypad"
  2272. msgstr ""
  2273. msgid "Page Up keypad"
  2274. msgstr ""
  2275. msgid "Insert on keypad"
  2276. msgstr ""
  2277. msgid "Delete on keypad"
  2278. msgstr ""
  2279. msgid "Enter on keypad"
  2280. msgstr ""
  2281. #, fuzzy
  2282. msgid "Function key 21"
  2283. msgstr "F1"
  2284. #, fuzzy
  2285. msgid "Function key 22"
  2286. msgstr "F2"
  2287. #, fuzzy
  2288. msgid "Function key 23"
  2289. msgstr "F2"
  2290. #, fuzzy
  2291. msgid "Function key 24"
  2292. msgstr "F2"
  2293. msgid "Plus"
  2294. msgstr ""
  2295. #, fuzzy
  2296. msgid "Minus"
  2297. msgstr "Menu"
  2298. msgid "Asterisk"
  2299. msgstr ""
  2300. msgid "Dot"
  2301. msgstr ""
  2302. msgid "Less than"
  2303. msgstr ""
  2304. msgid "Great than"
  2305. msgstr ""
  2306. msgid "Equal"
  2307. msgstr ""
  2308. #, fuzzy
  2309. msgid "Comma"
  2310. msgstr "Comande"
  2311. msgid "Apostrophe"
  2312. msgstr ""
  2313. #, fuzzy
  2314. msgid "Colon"
  2315. msgstr "Conter"
  2316. msgid "Exclamation mark"
  2317. msgstr ""
  2318. msgid "Question mark"
  2319. msgstr ""
  2320. #, fuzzy
  2321. msgid "Ampersand"
  2322. msgstr "ra&djouter å coron"
  2323. msgid "Dollar sign"
  2324. msgstr ""
  2325. msgid "Quotation mark"
  2326. msgstr ""
  2327. #, fuzzy
  2328. msgid "Caret"
  2329. msgstr "Såme"
  2330. msgid "Tilda"
  2331. msgstr ""
  2332. #, fuzzy
  2333. msgid "Prime"
  2334. msgstr "Divant"
  2335. #, fuzzy
  2336. msgid "Underline"
  2337. msgstr " Diner roye: "
  2338. msgid "Understrike"
  2339. msgstr ""
  2340. msgid "Pipe"
  2341. msgstr ""
  2342. #, fuzzy
  2343. msgid "Enter"
  2344. msgstr "da"
  2345. #, fuzzy
  2346. msgid "Tab key"
  2347. msgstr "Pådje copete"
  2348. #, fuzzy
  2349. msgid "Space key"
  2350. msgstr "Pådje copete"
  2351. msgid "Slash key"
  2352. msgstr ""
  2353. #, fuzzy
  2354. msgid "Backslash key"
  2355. msgstr "Backspace"
  2356. msgid "Number sign #"
  2357. msgstr ""
  2358. msgid "Ctrl"
  2359. msgstr ""
  2360. msgid "Alt"
  2361. msgstr ""
  2362. msgid "Shift"
  2363. msgstr ""
  2364. #, c-format
  2365. msgid ""
  2366. "Screen size %dx%d is not supported.\n"
  2367. "Check the TERM environment variable.\n"
  2368. msgstr ""
  2369. msgid " Format error on file Extensions File "
  2370. msgstr ""
  2371. #, c-format
  2372. msgid " The %%var macro has no default "
  2373. msgstr ""
  2374. #, c-format
  2375. msgid " The %%var macro has no variable "
  2376. msgstr ""
  2377. msgid " Debug "
  2378. msgstr " Disbuguer "
  2379. msgid " ERROR: "
  2380. msgstr " AROKE: "
  2381. msgid " True: "
  2382. msgstr " Veur: "
  2383. msgid " False: "
  2384. msgstr " Fås: "
  2385. msgid " Warning -- ignoring file "
  2386. msgstr " Advertixhmint -- dji passe hute do fitchî "
  2387. #, c-format
  2388. msgid ""
  2389. "File %s is not owned by root or you or is world writable.\n"
  2390. "Using it may compromise your security"
  2391. msgstr ""
  2392. "Li fitchî %s n' est ni da vosse ni da root. Tot l' monde pout bén scrire "
  2393. "divins.\n"
  2394. "Do côp, si vos vos e siervoz, ça pôreut esse dandjureu..."
  2395. #, c-format
  2396. msgid " No suitable entries found in %s "
  2397. msgstr ""
  2398. msgid " User menu "
  2399. msgstr " Menu di l' ûzeu "
  2400. msgid "%b %e %Y"
  2401. msgstr "%b %e %Y"
  2402. msgid "%b %e %H:%M"
  2403. msgstr "%b %e %H:%M"
  2404. #, fuzzy, c-format
  2405. msgid "%s is not a directory\n"
  2406. msgstr "ridant"
  2407. #, c-format
  2408. msgid "Directory %s is not owned by you\n"
  2409. msgstr ""
  2410. #, fuzzy, c-format
  2411. msgid "Cannot set correct permissions for directory %s\n"
  2412. msgstr ""
  2413. " Dji n' sai fé li ridant såme «%s» \n"
  2414. " %s "
  2415. #, fuzzy, c-format
  2416. msgid "Cannot create temporary directory %s: %s\n"
  2417. msgstr ""
  2418. " Dji n' sai fé li ridant såme «%s» \n"
  2419. " %s "
  2420. #, c-format
  2421. msgid "Temporary files will be created in %s\n"
  2422. msgstr ""
  2423. #, c-format
  2424. msgid "Temporary files will not be created\n"
  2425. msgstr ""
  2426. msgid " Pipe failed "
  2427. msgstr " Li bûze a fwait berwete "
  2428. msgid " Dup failed "
  2429. msgstr " Dup a fwait berwete "
  2430. #, fuzzy, c-format
  2431. msgid ""
  2432. " The current line number is %lld.\n"
  2433. " Enter the new line number:"
  2434. msgstr ""
  2435. " Li roye do moumint a li limerô %d.\n"
  2436. " Intrez li novea limerô del roye:"
  2437. #, fuzzy, c-format
  2438. msgid ""
  2439. " The current address is %s.\n"
  2440. " Enter the new address:"
  2441. msgstr ""
  2442. " Li roye do moumint a li limerô %d.\n"
  2443. " Intrez li novea limerô del roye:"
  2444. msgid " Goto Address "
  2445. msgstr " Potchî al Adresse "
  2446. # Mask = umask (modele di cogne di fitchî?)??
  2447. #, fuzzy
  2448. msgid " Invalid address "
  2449. msgstr " Li masse såme n' est nén valåbe "
  2450. #, fuzzy
  2451. msgid " Cannot spawn child process "
  2452. msgstr " Dji n' sai drovî li fitchî %s"
  2453. msgid "Empty output from child filter"
  2454. msgstr ""
  2455. msgid "ButtonBar|Ascii"
  2456. msgstr ""
  2457. msgid "ButtonBar|Goto"
  2458. msgstr ""
  2459. msgid "ButtonBar|HxSrch"
  2460. msgstr ""
  2461. msgid "ButtonBar|UnWrap"
  2462. msgstr ""
  2463. msgid "ButtonBar|Wrap"
  2464. msgstr ""
  2465. msgid "ButtonBar|Hex"
  2466. msgstr ""
  2467. msgid "ButtonBar|Line"
  2468. msgstr ""
  2469. msgid "ButtonBar|Raw"
  2470. msgstr ""
  2471. msgid "ButtonBar|Parse"
  2472. msgstr ""
  2473. msgid "ButtonBar|Unform"
  2474. msgstr ""
  2475. msgid "ButtonBar|Format"
  2476. msgstr ""
  2477. #, c-format
  2478. msgid "File: %s"
  2479. msgstr "Fitchî: %s"
  2480. #, c-format
  2481. msgid "Offset 0x%08lx"
  2482. msgstr ""
  2483. #, c-format
  2484. msgid "Line %lu Col %lu"
  2485. msgstr ""
  2486. #, c-format
  2487. msgid "%s bytes"
  2488. msgstr "%s octets"
  2489. #, fuzzy, c-format
  2490. msgid ">= %s bytes"
  2491. msgstr "%s octets"
  2492. #, c-format
  2493. msgid ""
  2494. " Error while closing the file: \n"
  2495. " %s \n"
  2496. " Data may have been written or not. "
  2497. msgstr ""
  2498. #, fuzzy, c-format
  2499. msgid ""
  2500. " Cannot save file: \n"
  2501. " %s "
  2502. msgstr " Åk n' a nén stî come dji sayîve di schaper li fitchî. "
  2503. #, c-format
  2504. msgid ""
  2505. " Cannot open \"%s\"\n"
  2506. " %s "
  2507. msgstr ""
  2508. " Dji n' sai drovî «%s»\n"
  2509. " %s "
  2510. #, c-format
  2511. msgid ""
  2512. " Cannot stat \"%s\"\n"
  2513. " %s "
  2514. msgstr ""
  2515. " Dji n' sai fé on stat so «%s»\n"
  2516. " %s "
  2517. msgid " Cannot view: not a regular file "
  2518. msgstr " Dji n' sai håyner ci fitchî ci: ci n' est nén on fitchî normå "
  2519. msgid "Seeking to search result"
  2520. msgstr ""
  2521. msgid " History "
  2522. msgstr " Istwere "
  2523. msgid "Background process:"
  2524. msgstr "Porcessus di fond:"
  2525. #, c-format
  2526. msgid ""
  2527. "Cannot open cpio archive\n"
  2528. "%s"
  2529. msgstr ""
  2530. "Dji n' sai drovî li fitchî cpio\n"
  2531. "%s"
  2532. #, c-format
  2533. msgid ""
  2534. "Premature end of cpio archive\n"
  2535. "%s"
  2536. msgstr ""
  2537. #, c-format
  2538. msgid ""
  2539. "Inconsistent hardlinks of\n"
  2540. "%s\n"
  2541. "in cpio archive\n"
  2542. "%s"
  2543. msgstr ""
  2544. #, c-format
  2545. msgid "%s contains duplicate entries! Skipping!"
  2546. msgstr ""
  2547. #, c-format
  2548. msgid ""
  2549. "Corrupted cpio header encountered in\n"
  2550. "%s"
  2551. msgstr ""
  2552. #, c-format
  2553. msgid ""
  2554. "Unexpected end of file\n"
  2555. "%s"
  2556. msgstr ""
  2557. #, c-format
  2558. msgid "Directory cache expired for %s"
  2559. msgstr ""
  2560. msgid "Starting linear transfer..."
  2561. msgstr ""
  2562. #, c-format
  2563. msgid "%s: %s: %s %3d%% (%lu bytes transferred)"
  2564. msgstr ""
  2565. #, c-format
  2566. msgid "%s: %s: %s %lu bytes transferred"
  2567. msgstr ""
  2568. msgid "Getting file"
  2569. msgstr "Aberwetant l' fitchî"
  2570. #, c-format
  2571. msgid ""
  2572. "Cannot open %s archive\n"
  2573. "%s"
  2574. msgstr ""
  2575. msgid "Inconsistent extfs archive"
  2576. msgstr ""
  2577. #, c-format
  2578. msgid "fish: Disconnecting from %s"
  2579. msgstr "fish: Dji m' disraloye di %s"
  2580. msgid "fish: Waiting for initial line..."
  2581. msgstr ""
  2582. msgid "Sorry, we cannot do password authenticated connections for now."
  2583. msgstr ""
  2584. msgid " fish: Password required for "
  2585. msgstr " fish: Secret dmandé po "
  2586. msgid "fish: Sending password..."
  2587. msgstr "fish: dj' evoye li scret di l' ûzeu..."
  2588. msgid "fish: Sending initial line..."
  2589. msgstr ""
  2590. msgid "fish: Handshaking version..."
  2591. msgstr ""
  2592. msgid "fish: Setting up current directory..."
  2593. msgstr ""
  2594. #, c-format
  2595. msgid "fish: Connected, home %s."
  2596. msgstr "fish: Raloyi, måjhon %s."
  2597. #, c-format
  2598. msgid "fish: Reading directory %s..."
  2599. msgstr "fish: Dji lé li ridant FTP %s..."
  2600. #, c-format
  2601. msgid "%s: done."
  2602. msgstr ""
  2603. #, c-format
  2604. msgid "%s: failure"
  2605. msgstr "%s: berwete"
  2606. #, c-format
  2607. msgid "fish: store %s: sending command..."
  2608. msgstr ""
  2609. msgid "fish: Local read failed, sending zeros"
  2610. msgstr ""
  2611. #, c-format
  2612. msgid "fish: storing %s %d (%lu)"
  2613. msgstr ""
  2614. msgid "zeros"
  2615. msgstr ""
  2616. msgid "Aborting transfer..."
  2617. msgstr ""
  2618. msgid "Error reported after abort."
  2619. msgstr ""
  2620. msgid "Aborted transfer would be successful."
  2621. msgstr ""
  2622. #, c-format
  2623. msgid "ftpfs: Disconnecting from %s"
  2624. msgstr "ftpfs: Dji m' disraloye di %s"
  2625. msgid " FTP: Password required for "
  2626. msgstr " FTP: Secret dmandé po "
  2627. msgid "ftpfs: sending login name"
  2628. msgstr "ftpfs: dj' evoye li no di login"
  2629. msgid "ftpfs: sending user password"
  2630. msgstr "ftpfs: dj' evoye li scret di l' ûzeu"
  2631. #, fuzzy, c-format
  2632. msgid "FTP: Account required for user %s"
  2633. msgstr " FTP: Secret dmandé po "
  2634. #, fuzzy
  2635. msgid "Account:"
  2636. msgstr "Conter"
  2637. #, fuzzy
  2638. msgid "ftpfs: sending user account"
  2639. msgstr "ftpfs: dj' evoye li scret di l' ûzeu"
  2640. msgid "ftpfs: logged in"
  2641. msgstr "ftpfs: moussî dvins"
  2642. #, c-format
  2643. msgid "ftpfs: Login incorrect for user %s "
  2644. msgstr "ftpfs: måva login po l' ûzeu %s "
  2645. msgid "ftpfs: Invalid host name."
  2646. msgstr "ftpfs: måva no di lodjeu."
  2647. #, c-format
  2648. msgid "ftpfs: %s"
  2649. msgstr ""
  2650. #, c-format
  2651. msgid "ftpfs: making connection to %s"
  2652. msgstr "ftpfs: dji m' raloye a %s"
  2653. msgid "ftpfs: connection interrupted by user"
  2654. msgstr "ftpfs: disraloyî pa l' ûzeu"
  2655. #, c-format
  2656. msgid "ftpfs: connection to server failed: %s"
  2657. msgstr "ftpfs: dj' a fwait berwete come dji m' raloyîve å sierveu: %s"
  2658. #, c-format
  2659. msgid "Waiting to retry... %d (Control-C to cancel)"
  2660. msgstr "Dji rawåde divant do rataker... %d (Control-C po rnoncî)"
  2661. #, fuzzy
  2662. msgid "ftpfs: invalid address family"
  2663. msgstr "ftpfs: mwaijhe adresse di lodjeu."
  2664. #, fuzzy, c-format
  2665. msgid "ftpfs: could not setup passive mode: %s"
  2666. msgstr "ftpfs: dj' a fwait berwete come dji m' raloyîve å sierveu: %s"
  2667. #, fuzzy, c-format
  2668. msgid "ftpfs: could not create socket: %s"
  2669. msgstr " Dji n' sai fé on soket: %s "
  2670. msgid "ftpfs: could not setup passive mode"
  2671. msgstr ""
  2672. msgid "ftpfs: aborting transfer."
  2673. msgstr ""
  2674. #, c-format
  2675. msgid "ftpfs: abort error: %s"
  2676. msgstr ""
  2677. msgid "ftpfs: abort failed"
  2678. msgstr ""
  2679. msgid "ftpfs: CWD failed."
  2680. msgstr "ftpfs: CWD a fwait berwete."
  2681. msgid "ftpfs: couldn't resolve symlink"
  2682. msgstr ""
  2683. msgid "Resolving symlink..."
  2684. msgstr ""
  2685. #, c-format
  2686. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2687. msgstr "ftpfs: Dji lé li ridant FTP %s... %s%s"
  2688. msgid "(strict rfc959)"
  2689. msgstr ""
  2690. msgid "(chdir first)"
  2691. msgstr ""
  2692. msgid "ftpfs: failed; nowhere to fallback to"
  2693. msgstr ""
  2694. #, c-format
  2695. msgid "ftpfs: storing file %lu (%lu)"
  2696. msgstr ""
  2697. msgid ""
  2698. "~/.netrc file has incorrect mode.\n"
  2699. "Remove password or correct mode."
  2700. msgstr ""
  2701. msgid " MCFS "
  2702. msgstr " MCFS "
  2703. msgid " The server does not support this version "
  2704. msgstr " Li sierveu n' sopoite nén cisse modêye ci "
  2705. msgid ""
  2706. " The remote server is not running on a system port \n"
  2707. " you need a password to log in, but the information may \n"
  2708. " not be safe on the remote side. Continue? \n"
  2709. msgstr ""
  2710. msgid " MCFS Password required "
  2711. msgstr ""
  2712. msgid " Invalid password "
  2713. msgstr ""
  2714. #, c-format
  2715. msgid " Cannot locate hostname: %s "
  2716. msgstr " Dji n' sai trover li lodjeu: %s "
  2717. #, c-format
  2718. msgid " Cannot create socket: %s "
  2719. msgstr " Dji n' sai fé on soket: %s "
  2720. #, c-format
  2721. msgid " Cannot connect to server: %s "
  2722. msgstr "Dji n' pout m' raloyî å sierveu: %s"
  2723. msgid " Too many open connections "
  2724. msgstr ""
  2725. #, c-format
  2726. msgid ""
  2727. "Warning: Invalid line in %s:\n"
  2728. "%s\n"
  2729. msgstr ""
  2730. #, c-format
  2731. msgid ""
  2732. "Warning: Invalid flag %c in %s:\n"
  2733. "%s\n"
  2734. msgstr ""
  2735. #, c-format
  2736. msgid ""
  2737. " reconnect to %s failed\n"
  2738. " "
  2739. msgstr ""
  2740. msgid " Authentication failed "
  2741. msgstr ""
  2742. #, c-format
  2743. msgid " Error %s creating directory %s "
  2744. msgstr " %s fjhant on mkdir %s "
  2745. #, c-format
  2746. msgid " Error %s removing directory %s "
  2747. msgstr " %s fjhant on rmdir %s "
  2748. #, c-format
  2749. msgid " %s opening remote file %s "
  2750. msgstr ""
  2751. #, fuzzy, c-format
  2752. msgid " %s removing remote file %s "
  2753. msgstr " %s fitchîs ki restèt\n"
  2754. #, c-format
  2755. msgid " %s renaming files\n"
  2756. msgstr " %s fitchîs ki restèt\n"
  2757. #, c-format
  2758. msgid ""
  2759. "Cannot open tar archive\n"
  2760. "%s"
  2761. msgstr ""
  2762. msgid "Inconsistent tar archive"
  2763. msgstr ""
  2764. msgid "Unexpected EOF on archive file"
  2765. msgstr ""
  2766. #, c-format
  2767. msgid ""
  2768. "Hmm,...\n"
  2769. "%s\n"
  2770. "doesn't look like a tar archive."
  2771. msgstr ""
  2772. msgid " undelfs: error "
  2773. msgstr " undelfs: aroke "
  2774. msgid " not enough memory "
  2775. msgstr ""
  2776. msgid " while allocating block buffer "
  2777. msgstr ""
  2778. #, c-format
  2779. msgid " open_inode_scan: %d "
  2780. msgstr ""
  2781. #, c-format
  2782. msgid " while starting inode scan %d "
  2783. msgstr ""
  2784. #, c-format
  2785. msgid "undelfs: loading deleted files information %d inodes"
  2786. msgstr ""
  2787. #, c-format
  2788. msgid " while calling ext2_block_iterate %d "
  2789. msgstr ""
  2790. msgid " no more memory while reallocating array "
  2791. msgstr ""
  2792. #, c-format
  2793. msgid " while doing inode scan %d "
  2794. msgstr ""
  2795. msgid " Ext2lib error "
  2796. msgstr " Aroke di ext2lib "
  2797. #, c-format
  2798. msgid " Cannot open file %s "
  2799. msgstr " Dji n' sai drovî li fitchî %s"
  2800. msgid "undelfs: reading inode bitmap..."
  2801. msgstr ""
  2802. #, fuzzy, c-format
  2803. msgid ""
  2804. " Cannot load inode bitmap from: \n"
  2805. " %s \n"
  2806. msgstr " Dji n' a savu fé on chdir viè %s "
  2807. msgid "undelfs: reading block bitmap..."
  2808. msgstr ""
  2809. #, c-format
  2810. msgid ""
  2811. " Cannot load block bitmap from: \n"
  2812. " %s \n"
  2813. msgstr ""
  2814. msgid " vfs_info is not fs! "
  2815. msgstr ""
  2816. msgid " You have to chdir to extract files first "
  2817. msgstr ""
  2818. msgid " while iterating over blocks "
  2819. msgstr ""
  2820. #, fuzzy
  2821. msgid "Cannot parse:"
  2822. msgstr ""
  2823. "Dji n' sai enonder li foncsion stat %s\n"
  2824. "%s"
  2825. msgid "More parsing errors will be ignored."
  2826. msgstr ""
  2827. msgid "Internal error:"
  2828. msgstr "Divintrinne aroke:"
  2829. msgid "Changes to file lost"
  2830. msgstr "Les candjmints do fitchî ont stî pierdous"
  2831. #~ msgid "File: None"
  2832. #~ msgstr "Fitchî: Pont"
  2833. #~ msgid "Do backups -->"
  2834. #~ msgstr "Fé des copeyes di såvrité -->"
  2835. #~ msgid "Extension:"
  2836. #~ msgstr "Cawete:"
  2837. #~ msgid "&New C-n"
  2838. #~ msgstr "&Novea C-n"
  2839. #~ msgid "&Save F2"
  2840. #~ msgstr "&Schaper F2"
  2841. #~ msgid "Save &as... F12"
  2842. #~ msgstr "Schaper et &rlomer... F12"
  2843. #~ msgid "A&bout... "
  2844. #~ msgstr "Å&dfait... "
  2845. #~ msgid "&Quit F10"
  2846. #~ msgstr "&Cwiter F10"
  2847. #~ msgid "&New C-x k"
  2848. #~ msgstr "&Novea C-x k"
  2849. #~ msgid "Copy to &file... "
  2850. #~ msgstr "copyî dins &Fitchî... "
  2851. #, fuzzy
  2852. #~ msgid "&Toggle mark F3"
  2853. #~ msgstr "&Discandjî Marke F3"
  2854. #, fuzzy
  2855. #~ msgid "Mar&k columns S-F3"
  2856. #~ msgstr "&Marker Colones S-F3"
  2857. #, fuzzy
  2858. #~ msgid "&Copy F5"
  2859. #~ msgstr "&Copyî F5"
  2860. #, fuzzy
  2861. #~ msgid "&Move F6"
  2862. #~ msgstr "&Bodjî F6"
  2863. #, fuzzy
  2864. #~ msgid "&Delete F8"
  2865. #~ msgstr "&Disfacer F8"
  2866. #, fuzzy
  2867. #~ msgid "&Next bookmark M-j"
  2868. #~ msgstr "&Novea C-n"
  2869. #, fuzzy
  2870. #~ msgid "&Undo C-u"
  2871. #~ msgstr "Di&sfé C-u"
  2872. #, fuzzy
  2873. #~ msgid "&Beginning C-PgUp"
  2874. #~ msgstr "Co&pete C-PgUp"
  2875. #, fuzzy
  2876. #~ msgid "&End C-PgDn"
  2877. #~ msgstr "&Valeye C-PgDn"
  2878. #, fuzzy
  2879. #~ msgid "C&opy to clipfile M-w"
  2880. #~ msgstr "&Potchî al roye... M-l"
  2881. #, fuzzy
  2882. #~ msgid "C&ut to clipfile C-w"
  2883. #~ msgstr "&Potchî al roye... M-l"
  2884. #, fuzzy
  2885. #~ msgid "Toggle bookmar&k "
  2886. #~ msgstr "&Discandjî Marke F3"
  2887. #, fuzzy
  2888. #~ msgid "&Next bookmark "
  2889. #~ msgstr "&Novea C-n"
  2890. #, fuzzy
  2891. #~ msgid "Pre&v bookmark "
  2892. #~ msgstr "re&Lire... M-t"
  2893. #, fuzzy
  2894. #~ msgid "&Flush bookmark "
  2895. #~ msgstr "e&Mîler... "
  2896. #~ msgid "&Search... F7"
  2897. #~ msgstr "C&weri... F7"
  2898. #~ msgid "&Replace... F4"
  2899. #~ msgstr "Discand&jî... F4"
  2900. #~ msgid "&Go to line... M-l"
  2901. #~ msgstr "&Potchî al roye... M-l"
  2902. #, fuzzy
  2903. #~ msgid "Encod&ing... M-e"
  2904. #~ msgstr "re&Lire... M-t"
  2905. #~ msgid "Delete macr&o... "
  2906. #~ msgstr "disfacer ene macr&O... "
  2907. #~ msgid "Sor&t... M-t"
  2908. #~ msgstr "re&Lire... M-t"
  2909. #~ msgid "&Mail... "
  2910. #~ msgstr "e&Mîler... "
  2911. #~ msgid "&Execute macro... C-x e, KEY"
  2912. #~ msgstr "&Enonder ene macro... C-x e, TAPE"
  2913. #~ msgid "'ispell' s&pell check M-$"
  2914. #~ msgstr "waitî li scrijhaedje avou 'ispell' M-$"
  2915. #, fuzzy
  2916. #~ msgid "Save setu&p"
  2917. #~ msgstr "&Schaper l' apontiaedje"
  2918. #~ msgid " Edit "
  2919. #~ msgstr " Aspougnî "
  2920. #~ msgid " Sear/Repl "
  2921. #~ msgstr " Cweri/Discandjî "
  2922. #~ msgid " Command "
  2923. #~ msgstr " Comande "
  2924. #~ msgid " Options "
  2925. #~ msgstr " Tchûzes "
  2926. #~ msgid "Intuitive"
  2927. #~ msgstr "A sinti"
  2928. #~ msgid "Emacs"
  2929. #~ msgstr "Emacs"
  2930. #, fuzzy
  2931. #~ msgid "User-defined"
  2932. #~ msgstr "A vosse &Môde:"
  2933. #~ msgid "Key emulation"
  2934. #~ msgstr "Chinaedje des tapes"
  2935. #~ msgid "Save"
  2936. #~ msgstr "Schaper"
  2937. #~ msgid "Mark"
  2938. #~ msgstr "Marker"
  2939. #~ msgid "Replac"
  2940. #~ msgstr "Discandjî"
  2941. #~ msgid "Move"
  2942. #~ msgstr "Bodjî"
  2943. #~ msgid "Delete"
  2944. #~ msgstr "Disfacer"
  2945. #~ msgid "PullDn"
  2946. #~ msgstr "Djus"
  2947. #~ msgid " Copy "
  2948. #~ msgstr " Copyî "
  2949. #~ msgid " Move "
  2950. #~ msgstr " Bodjî "
  2951. #~ msgid " Delete "
  2952. #~ msgstr " Disfacer "
  2953. #~ msgid "1Copy"
  2954. #~ msgstr "1Copyî"
  2955. #~ msgid "1Move"
  2956. #~ msgstr "1Bodjî"
  2957. #~ msgid "1Delete"
  2958. #~ msgstr "1Disfacer"
  2959. #~ msgid "Index"
  2960. #~ msgstr "Indecs"
  2961. #~ msgid "Prev"
  2962. #~ msgstr "Divant"
  2963. #~ msgid "&Quick view C-x q"
  2964. #~ msgstr "&Vey al vole C-x q"
  2965. #~ msgid "&Info C-x i"
  2966. #~ msgstr "&Info C-x i"
  2967. #~ msgid "&Rescan C-r"
  2968. #~ msgstr "&Rilére C-r"
  2969. #~ msgid "&View F3"
  2970. #~ msgstr "&Vey F3"
  2971. #~ msgid "Vie&w file... "
  2972. #~ msgstr "Vey& fitchî... "
  2973. #~ msgid "&Filtered view M-!"
  2974. #~ msgstr "Vey avou ene &Passete M-!"
  2975. #~ msgid "&Edit F4"
  2976. #~ msgstr "&Aspougnî F4"
  2977. #~ msgid "&Copy F5"
  2978. #~ msgstr "&Copyî F5"
  2979. #~ msgid "c&Hmod C-x c"
  2980. #~ msgstr "c&Hmod C-x c"
  2981. #~ msgid "&Link C-x l"
  2982. #~ msgstr "&Loyén C-x l"
  2983. #~ msgid "&SymLink C-x s"
  2984. #~ msgstr "Loyén &Simbolike C-x s"
  2985. #~ msgid "edit s&Ymlink C-x C-s"
  2986. #~ msgstr "candjî lo&yén simbolike C-x C-s"
  2987. #~ msgid "ch&Own C-x o"
  2988. #~ msgstr "ch&Own C-x o"
  2989. #~ msgid "&Rename/Move F6"
  2990. #~ msgstr "&Rilomes/bodjî F6"
  2991. #~ msgid "&Mkdir F7"
  2992. #~ msgstr "&Mkdir F7"
  2993. #~ msgid "&Delete F8"
  2994. #~ msgstr "&Disfacer F8"
  2995. #~ msgid "&Quick cd M-c"
  2996. #~ msgstr "cd al &Vole M-c"
  2997. #~ msgid "select &Group M-+"
  2998. #~ msgstr "tchwezi &Hopê M-+"
  2999. #~ msgid "u&Nselect group M-\\"
  3000. #~ msgstr "di&Stchwezi hopê M-\\"
  3001. #~ msgid "e&Xit F10"
  3002. #~ msgstr "moussî &Foû F10"
  3003. #~ msgid "&User menu F2"
  3004. #~ msgstr "Menu di l' &Ûzeu F2"
  3005. #~ msgid "&Find file M-?"
  3006. #~ msgstr "&Trover Fitchî M-?"
  3007. #~ msgid "s&Wap panels C-u"
  3008. #~ msgstr "discandjî les &Paneas C-u"
  3009. #~ msgid "&Compare directories C-x d"
  3010. #~ msgstr "ri&mete des ridants C-x d"
  3011. #, fuzzy
  3012. #~ msgid "Command &history M-h"
  3013. #~ msgstr " Istwere des cmandes "
  3014. #~ msgid "di&Rectory hotlist C-\\"
  3015. #~ msgstr "djîvêye rascoûrti des &Ridants C-\\"
  3016. #~ msgid "&Background jobs C-x j"
  3017. #~ msgstr "&Bouyes di fond C-x j"
  3018. #~ msgid "learn &Keys..."
  3019. #~ msgstr "a&Prinde des tapes..."
  3020. #~ msgid " &File "
  3021. #~ msgstr " &Fitchî "
  3022. #~ msgid " &Command "
  3023. #~ msgstr " &Comande "
  3024. #~ msgid "Menu"
  3025. #~ msgstr "Menu"
  3026. #, fuzzy
  3027. #~ msgid "n"
  3028. #~ msgstr "Metou"
  3029. #, fuzzy
  3030. #~ msgid "Extension"
  3031. #~ msgstr "Cawete:"
  3032. #~ msgid "Size"
  3033. #~ msgstr "Grandeu"
  3034. #~ msgid "MTime"
  3035. #~ msgstr "MTime"
  3036. #~ msgid "ATime"
  3037. #~ msgstr "ATime"
  3038. #~ msgid "CTime"
  3039. #~ msgstr "CTime"
  3040. #~ msgid "Inode"
  3041. #~ msgstr "Inode"
  3042. #~ msgid "RenMov"
  3043. #~ msgstr "RenMov"
  3044. #~ msgid "Static"
  3045. #~ msgstr "Staté"
  3046. #~ msgid "Dynamc"
  3047. #~ msgstr "Bodjant"
  3048. #~ msgid "Rmdir"
  3049. #~ msgstr "Rmdir"
  3050. #, fuzzy
  3051. #~ msgid "bind: Unknown command: `%s'"
  3052. #~ msgstr " Comande chown "
  3053. #, fuzzy
  3054. #~ msgid "%s: Unknown command: `%s'"
  3055. #~ msgstr " Comande chown "
  3056. #, fuzzy
  3057. #~ msgid "%s:%d: unknown command `%s'"
  3058. #~ msgstr " Comande chown "
  3059. #, fuzzy
  3060. #~ msgid "%s not found!"
  3061. #~ msgstr "Advietixhmint: li fitchî «%s» n' a nén stî trové\n"
  3062. #~ msgid " Emacs key: "
  3063. #~ msgstr " Tape di Emacs: "
  3064. #~ msgid "Displays this help message"
  3065. #~ msgstr "Mostere ci messaedje d' aide chal"
  3066. #~ msgid "Displays a help screen on how to change the color scheme"
  3067. #~ msgstr "Po vs mostrer comint c' est k' on candje l' arindjmint des coleurs"
  3068. #, fuzzy
  3069. #~ msgid "unknown option"
  3070. #~ msgstr "<Groupe nén cnoxhou>"
  3071. #~ msgid "Show this help message"
  3072. #~ msgstr "Mostrer ci messaedje d' aide ci"
  3073. #~ msgid "Display brief usage message"
  3074. #~ msgstr "Mostrer on ptit messaedje po savu cmint fé"
  3075. #, fuzzy
  3076. #~ msgid "Usage:"
  3077. #~ msgstr "No di l' ûzeu:"
  3078. #~ msgid "pro&Mpt on replace"
  3079. #~ msgstr "&Dimander cwè divant do discandjî"
  3080. #~ msgid "replace &All"
  3081. #~ msgstr "mete el plaece tot &costé"
  3082. #~ msgid "O&ne"
  3083. #~ msgstr "&onk"
  3084. #, fuzzy
  3085. #~ msgid "%b %d %H:%M"
  3086. #~ msgstr "%b %e %H:%M"
  3087. #, fuzzy
  3088. #~ msgid "%b %d %Y"
  3089. #~ msgstr "%b %e %Y"
  3090. #, fuzzy
  3091. #~ msgid " The current address is 0x%08"
  3092. #~ msgstr ""
  3093. #~ " L' adresse do moumint est 0x%lx.\n"
  3094. #~ " Intrez li novele adresse:"
  3095. #~ msgid "scanf &Expression"
  3096. #~ msgstr "scanf sol &Ratoûrneure"
  3097. #~ msgid " Enter replacement argument order eg. 3,2,1,4 "
  3098. #~ msgstr " Dinez l' ôrde des årgumints di discandje, metans: 3, 2, 1, 4 "
  3099. #~ msgid ""
  3100. #~ " Invalid regular expression, or scanf expression with too many "
  3101. #~ "conversions "
  3102. #~ msgstr ""
  3103. #~ "Erûleye ratoûrneure nén valåbe ou ratoûrneure scanf avou trop di "
  3104. #~ "conviertixhmints "
  3105. #~ msgid " Error in replacement format string. "
  3106. #~ msgstr " Li tchinne di discandje est må fwaite "
  3107. #, fuzzy
  3108. #~ msgid " Replacement too long. "
  3109. #~ msgstr " Dinez li tchinne pol discandje:"
  3110. #~ msgid "&Copy F5"
  3111. #~ msgstr "&Copyî F5"
  3112. #~ msgid "&Delete F8"
  3113. #~ msgstr "&Disfacer F8"
  3114. #~ msgid " The command history is empty "
  3115. #~ msgstr " I gn a rén e l' istwere des cmandes "
  3116. #, fuzzy
  3117. #~ msgid "Edit edi&tor menu file"
  3118. #~ msgstr "Aspougnî fitchî menu"
  3119. #, fuzzy
  3120. #~ msgid "Edit &syntax file"
  3121. #~ msgstr " Tcherdjî fitchî emantchaedje "
  3122. #, fuzzy
  3123. #~ msgid "Invalid hex search expression"
  3124. #~ msgstr " Voste erûleye ratoûrneure n' est nén valåbe "
  3125. #~ msgid " Invalid regular expression "
  3126. #~ msgstr " Voste erûleye ratoûrneure n' est nén valåbe "
  3127. #~ msgid " Enter regexp:"
  3128. #~ msgstr " Intrez l' erûleye ratoûrneure:"
  3129. #, fuzzy
  3130. #~ msgid "Using included S-Lang library"
  3131. #~ msgstr "lîvreye S-lang avou "
  3132. #, fuzzy
  3133. #~ msgid "with termcap database"
  3134. #~ msgstr " båze di dnêyes"
  3135. #~ msgid "&Home"
  3136. #~ msgstr "&Måjhon"
  3137. #~ msgid "&Type"
  3138. #~ msgstr "&Sôrt"
  3139. #~ msgid "N&GID"
  3140. #~ msgstr "L° &GID"
  3141. #~ msgid "N&UID"
  3142. #~ msgstr "L° &UID"
  3143. #~ msgid "&Owner"
  3144. #~ msgstr "&Da"
  3145. #~ msgid "&Group"
  3146. #~ msgstr "&Groupe"
  3147. #~ msgid "MC was unable to write ~/"
  3148. #~ msgstr "MC n' a savu scrire li fitchî ~/"
  3149. #~ msgid " (%ld blocks)"
  3150. #~ msgstr " (%ld bloks)"
  3151. #~ msgid " Notice "
  3152. #~ msgstr " Advertixhmint "
  3153. #~ msgid ""
  3154. #~ " The Midnight Commander configuration files \n"
  3155. #~ " are now stored in the ~/.mc directory, the \n"
  3156. #~ " files have been moved now\n"
  3157. #~ msgstr ""
  3158. #~ " Les fitchîs d' apontiaedje di Midnight Commander \n"
  3159. #~ " sont-st asteure e ridant ~/.mc; les fitchîs \n"
  3160. #~ " ont stî bodjîs\n"
  3161. #~ msgid "%s bytes in %d files"
  3162. #~ msgstr "%s octets e fitchî %d"
  3163. #~ msgid " Cannot open file for reading: "
  3164. #~ msgstr " Dj' a fwait berwete come dji sayîve di drovî li fitchî po lére: "
  3165. #~ msgid " Not an ordinary file: "
  3166. #~ msgstr " Çouchal, ci n' est nén on fitchî ôrdinaire: "
  3167. #~ msgid "Format of the "
  3168. #~ msgstr " Li cogne do fitchî "
  3169. #~ msgid ""
  3170. #~ " file has changed\n"
  3171. #~ "with version 3.0. You may want either to\n"
  3172. #~ "copy it from "
  3173. #~ msgstr ""
  3174. #~ " a candjî\n"
  3175. #~ "avou li modêye 3.0. Vos l' duvrîz seuye-t i \n"
  3176. #~ "copyî foû di "
  3177. #~ msgid ""
  3178. #~ "mc.ext or use that\n"
  3179. #~ "file as an example of how to write it.\n"
  3180. #~ msgstr ""
  3181. #~ "mc.ext, seuye-t i eployî ci fitchî la\n"
  3182. #~ "come egzimpe por vos vey comint c' est k' on s' î prind.\n"
  3183. #~ msgid "mc.ext will be used for this moment."
  3184. #~ msgstr "Nos nos siervrans di mc.ext pol moumint."
  3185. #~ msgid " Cannot open file "
  3186. #~ msgstr " Dji n' sai drovî li fitchî "
  3187. #~ msgid "Col %d"
  3188. #~ msgstr "Col %d"
  3189. #~ msgid " [grow]"
  3190. #~ msgstr " [grandit]"
  3191. #~ msgid "Ascii"
  3192. #~ msgstr "Ascii"
  3193. #~ msgid "Hex"
  3194. #~ msgstr "Hex"
  3195. #~ msgid "Line"
  3196. #~ msgstr "Roye"
  3197. #~ msgid "RxSrch"
  3198. #~ msgstr "RxSrch"
  3199. #~ msgid "EdHex"
  3200. #~ msgstr "EdHex"
  3201. #~ msgid "EdText"
  3202. #~ msgstr "EdText"
  3203. #~ msgid " Socket source routing setup "
  3204. #~ msgstr " Apontyî l' aminaedje do soûrdant do soket "
  3205. #~ msgid " Host name "
  3206. #~ msgstr " No do lodjeu "
  3207. #~ msgid " Error while looking up IP address "
  3208. #~ msgstr " Åk n' a nén stî come dji waitîve après l' adresse IP "
  3209. #~ msgid " Listing format edit "
  3210. #~ msgstr " Candjî l' cogne del djîvêye "
  3211. #~ msgid " New mode is \"%s\" "
  3212. #~ msgstr " Li novea môde est «%s» "
  3213. #~ msgid "&Drive... M-d"
  3214. #~ msgstr "&Léjheu... M-d"
  3215. #, fuzzy
  3216. #~ msgid "Force subshell execution"
  3217. #~ msgstr "mete l' ID po l' ûzeu a l' enondaedje"
  3218. #~ msgid " No action taken "
  3219. #~ msgstr " Rén di fwait "