zh_TW.po 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701
  1. # traditional chinese translation for mc.
  2. # Copyright (C) 2001 Free Software Foundation, Inc.
  3. # Jing-Jong Shyue <shyue@sonoma.com.tw>, 2000
  4. # Abel Cheung <maddog@linux.org.hk>, 2001
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: mc 4.5.54a\n"
  9. "Report-Msgid-Bugs-To: mc-devel@gnome.org\n"
  10. "POT-Creation-Date: 2010-05-05 22:32+0300\n"
  11. "PO-Revision-Date: 2001-07-27 03:02+0800\n"
  12. "Last-Translator: Jing-Jong Shyue <shyue@sonoma.com.tw>\n"
  13. "Language-Team: Chinese Traditional <zh-l10n@linux.org.tw>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8-bit\n"
  17. msgid " Search string not found "
  18. msgstr " 找不到要搜尋的字串 "
  19. msgid " Not implemented yet "
  20. msgstr ""
  21. msgid " Num of replace tokens not equal to num of found tokens "
  22. msgstr ""
  23. #, fuzzy, c-format
  24. msgid " Invalid token number %d "
  25. msgstr " 無效的目標遮罩 "
  26. #, fuzzy
  27. msgid "Normal"
  28. msgstr "格式"
  29. msgid "&Regular expression"
  30. msgstr " 正規表示式 "
  31. msgid "Hexadecimal"
  32. msgstr ""
  33. msgid "Wildcard search"
  34. msgstr ""
  35. #, c-format
  36. msgid ""
  37. "Unable to load '%s' skin.\n"
  38. "Default skin has been loaded"
  39. msgstr ""
  40. #, c-format
  41. msgid ""
  42. "Unable to parse '%s' skin.\n"
  43. "Default skin has been loaded"
  44. msgstr ""
  45. msgid "Function key 1"
  46. msgstr "功能鍵 1"
  47. msgid "Function key 2"
  48. msgstr "功能鍵 2"
  49. msgid "Function key 3"
  50. msgstr "功能鍵 3"
  51. msgid "Function key 4"
  52. msgstr "功能鍵 4"
  53. msgid "Function key 5"
  54. msgstr "功能鍵 5"
  55. msgid "Function key 6"
  56. msgstr "功能鍵 6"
  57. msgid "Function key 7"
  58. msgstr "功能鍵 7"
  59. msgid "Function key 8"
  60. msgstr "功能鍵 8"
  61. msgid "Function key 9"
  62. msgstr "功能鍵 9"
  63. msgid "Function key 10"
  64. msgstr "功能鍵 10"
  65. msgid "Function key 11"
  66. msgstr "功能鍵 11"
  67. msgid "Function key 12"
  68. msgstr "功能鍵 12"
  69. msgid "Function key 13"
  70. msgstr "功能鍵 13"
  71. msgid "Function key 14"
  72. msgstr "功能鍵 14"
  73. msgid "Function key 15"
  74. msgstr "功能鍵 15"
  75. msgid "Function key 16"
  76. msgstr "功能鍵 16"
  77. msgid "Function key 17"
  78. msgstr "功能鍵 17"
  79. msgid "Function key 18"
  80. msgstr "功能鍵 18"
  81. msgid "Function key 19"
  82. msgstr "功能鍵 19"
  83. msgid "Function key 20"
  84. msgstr "功能鍵 20"
  85. msgid "Backspace key"
  86. msgstr "Backspace 鍵"
  87. msgid "End key"
  88. msgstr "End 鍵"
  89. msgid "Up arrow key"
  90. msgstr "向上鍵"
  91. msgid "Down arrow key"
  92. msgstr "向下鍵"
  93. msgid "Left arrow key"
  94. msgstr "向左鍵"
  95. msgid "Right arrow key"
  96. msgstr "向右鍵"
  97. msgid "Home key"
  98. msgstr "Home 鍵"
  99. msgid "Page Down key"
  100. msgstr "Page Down 鍵"
  101. msgid "Page Up key"
  102. msgstr "Page Up 鍵"
  103. msgid "Insert key"
  104. msgstr "Insert 鍵"
  105. msgid "Delete key"
  106. msgstr "Delete 鍵"
  107. msgid "Completion/M-tab"
  108. msgstr "Completion/M-tab 鍵"
  109. msgid "+ on keypad"
  110. msgstr "數字區的 +"
  111. msgid "- on keypad"
  112. msgstr "數字區的 -"
  113. msgid "Slash on keypad"
  114. msgstr "數字區的 / 鍵"
  115. msgid "* on keypad"
  116. msgstr "數字區的 *"
  117. #, fuzzy
  118. msgid "Escape key"
  119. msgstr "數字區的 / 鍵"
  120. msgid "Left arrow keypad"
  121. msgstr "數字區的向左鍵"
  122. msgid "Right arrow keypad"
  123. msgstr "數字區的向右鍵"
  124. msgid "Up arrow keypad"
  125. msgstr "數字區的向上鍵"
  126. msgid "Down arrow keypad"
  127. msgstr "數字區的向下鍵"
  128. msgid "Home on keypad"
  129. msgstr "數字區的 Home 鍵"
  130. msgid "End on keypad"
  131. msgstr "數字區的 End 鍵"
  132. msgid "Page Down keypad"
  133. msgstr "數字區的 Page Down 鍵"
  134. msgid "Page Up keypad"
  135. msgstr "數字區的 Page Up鍵"
  136. msgid "Insert on keypad"
  137. msgstr "數字區的 Insert 鍵"
  138. msgid "Delete on keypad"
  139. msgstr "數字區的 Del 鍵"
  140. msgid "Enter on keypad"
  141. msgstr "數字區的 Enter 鍵"
  142. #, fuzzy
  143. msgid "Function key 21"
  144. msgstr "功能鍵 1"
  145. #, fuzzy
  146. msgid "Function key 22"
  147. msgstr "功能鍵 2"
  148. #, fuzzy
  149. msgid "Function key 23"
  150. msgstr "功能鍵 2"
  151. #, fuzzy
  152. msgid "Function key 24"
  153. msgstr "功能鍵 2"
  154. msgid "Plus"
  155. msgstr ""
  156. #, fuzzy
  157. msgid "Minus"
  158. msgstr "選單"
  159. msgid "Asterisk"
  160. msgstr ""
  161. msgid "Dot"
  162. msgstr ""
  163. msgid "Less than"
  164. msgstr ""
  165. msgid "Great than"
  166. msgstr ""
  167. msgid "Equal"
  168. msgstr ""
  169. #, fuzzy
  170. msgid "Comma"
  171. msgstr "指令"
  172. msgid "Apostrophe"
  173. msgstr ""
  174. #, fuzzy
  175. msgid "Colon"
  176. msgstr "計數"
  177. msgid "Exclamation mark"
  178. msgstr ""
  179. msgid "Question mark"
  180. msgstr ""
  181. #, fuzzy
  182. msgid "Ampersand"
  183. msgstr "追加"
  184. msgid "Dollar sign"
  185. msgstr ""
  186. msgid "Quotation mark"
  187. msgstr ""
  188. #, fuzzy
  189. msgid "Caret"
  190. msgstr "目標"
  191. msgid "Tilda"
  192. msgstr ""
  193. #, fuzzy
  194. msgid "Prime"
  195. msgstr "往前"
  196. #, fuzzy
  197. msgid "Underline"
  198. msgstr " 輸入行號: "
  199. msgid "Understrike"
  200. msgstr ""
  201. msgid "Pipe"
  202. msgstr ""
  203. #, fuzzy
  204. msgid "Enter"
  205. msgstr "擁有者"
  206. #, fuzzy
  207. msgid "Tab key"
  208. msgstr "數字區的 +"
  209. #, fuzzy
  210. msgid "Space key"
  211. msgstr "數字區的 / 鍵"
  212. #, fuzzy
  213. msgid "Slash key"
  214. msgstr "數字區的 / 鍵"
  215. #, fuzzy
  216. msgid "Backslash key"
  217. msgstr "Backspace 鍵"
  218. msgid "Number sign #"
  219. msgstr ""
  220. msgid "Ctrl"
  221. msgstr ""
  222. msgid "Alt"
  223. msgstr ""
  224. msgid "Shift"
  225. msgstr ""
  226. #, c-format
  227. msgid ""
  228. "Screen size %dx%d is not supported.\n"
  229. "Check the TERM environment variable.\n"
  230. msgstr ""
  231. "不支援 %dx%d 的螢幕大小。\n"
  232. "請檢查 TERM 環境變數。\n"
  233. #, fuzzy, c-format
  234. msgid "%s is not a directory\n"
  235. msgstr "建立新目錄"
  236. #, c-format
  237. msgid "Directory %s is not owned by you\n"
  238. msgstr ""
  239. #, fuzzy, c-format
  240. msgid "Cannot set correct permissions for directory %s\n"
  241. msgstr ""
  242. " 無法建立目標目錄 \"%s\" \n"
  243. " %s "
  244. #, fuzzy, c-format
  245. msgid "Cannot create temporary directory %s: %s\n"
  246. msgstr ""
  247. " 無法建立目標目錄 \"%s\" \n"
  248. " %s "
  249. #, c-format
  250. msgid "Temporary files will be created in %s\n"
  251. msgstr ""
  252. #, c-format
  253. msgid "Temporary files will not be created\n"
  254. msgstr ""
  255. #, c-format
  256. msgid "Press any key to continue..."
  257. msgstr "按任意鍵繼續..."
  258. msgid "Warning"
  259. msgstr "警告"
  260. msgid " Pipe failed "
  261. msgstr " 管線失敗 "
  262. msgid " Dup failed "
  263. msgstr " 抄寫失敗 "
  264. #, fuzzy
  265. msgid "Error dup'ing old error pipe"
  266. msgstr " 從管線讀取資料時發生錯誤: "
  267. #, c-format
  268. msgid ""
  269. "Cannot open cpio archive\n"
  270. "%s"
  271. msgstr ""
  272. "無法開啟 cpio 檔案集\n"
  273. "%s"
  274. #, c-format
  275. msgid ""
  276. "Premature end of cpio archive\n"
  277. "%s"
  278. msgstr ""
  279. "cpio 檔案集的結尾過早出現\n"
  280. "%s"
  281. #, c-format
  282. msgid ""
  283. "Inconsistent hardlinks of\n"
  284. "%s\n"
  285. "in cpio archive\n"
  286. "%s"
  287. msgstr ""
  288. "錯誤的硬連結\n"
  289. "%s\n"
  290. "在 cpio 檔案集\n"
  291. "%s"
  292. #, c-format
  293. msgid "%s contains duplicate entries! Skipping!"
  294. msgstr "%s 有重複的進入點! 放棄中!"
  295. #, c-format
  296. msgid ""
  297. "Corrupted cpio header encountered in\n"
  298. "%s"
  299. msgstr ""
  300. "發現不完整的 cpio 標頭\n"
  301. "%s"
  302. #, c-format
  303. msgid ""
  304. "Unexpected end of file\n"
  305. "%s"
  306. msgstr ""
  307. "未預期的檔案結束\n"
  308. "%s"
  309. #, c-format
  310. msgid "Directory cache expired for %s"
  311. msgstr "%s 的路徑快取過期"
  312. msgid "Starting linear transfer..."
  313. msgstr "開始線性傳輸...."
  314. #, c-format
  315. msgid "%s: %s: %s %3d%% (%lu bytes transferred)"
  316. msgstr "%s: %s: %s %3d%% (已傳送 %lu 位元組)"
  317. #, c-format
  318. msgid "%s: %s: %s %lu bytes transferred"
  319. msgstr "%s: %s: %s 已傳送 %lu 位元組"
  320. msgid "Getting file"
  321. msgstr "取得檔案中"
  322. #, c-format
  323. msgid ""
  324. "Cannot open %s archive\n"
  325. "%s"
  326. msgstr ""
  327. "無法開啟 %s 檔案集\n"
  328. "%s"
  329. msgid "Inconsistent extfs archive"
  330. msgstr "不完整的 extfs 檔案集"
  331. #, fuzzy, c-format
  332. msgid "Warning: cannot open %s directory\n"
  333. msgstr "無法改變目錄"
  334. #, c-format
  335. msgid "fish: Disconnecting from %s"
  336. msgstr "fish: 結束至 %s 的連線"
  337. msgid "fish: Waiting for initial line..."
  338. msgstr "fish: 等待起始化訊息"
  339. msgid "Sorry, we cannot do password authenticated connections for now."
  340. msgstr "不好意思,目前無法進行經過密碼認證的連線。"
  341. msgid " fish: Password required for "
  342. msgstr " fish: 必需有密碼 "
  343. msgid "fish: Sending password..."
  344. msgstr "fish: 正在送出登入密碼"
  345. msgid "fish: Sending initial line..."
  346. msgstr "fish: 送出起始化訊息"
  347. msgid "fish: Handshaking version..."
  348. msgstr "fish: 交握版本"
  349. msgid "fish: Setting up current directory..."
  350. msgstr "fish: 設定讀取目錄內容"
  351. #, c-format
  352. msgid "fish: Connected, home %s."
  353. msgstr "fisk: 連結至 %s"
  354. #, c-format
  355. msgid "fish: Reading directory %s..."
  356. msgstr "fisk: 讀取目錄 %s..."
  357. #, c-format
  358. msgid "%s: done."
  359. msgstr "%s: 完成."
  360. #, c-format
  361. msgid "%s: failure"
  362. msgstr "%s: 失敗"
  363. #, c-format
  364. msgid "fish: store %s: sending command..."
  365. msgstr "fish: 儲存%s: 送出命令"
  366. msgid "fish: Local read failed, sending zeros"
  367. msgstr "fish: 本地端讀取錯誤, 沒有送出"
  368. #, fuzzy, c-format
  369. msgid "fish: storing %s %d (%lu)"
  370. msgstr "fish: 儲存%s %d(%d)"
  371. msgid "zeros"
  372. msgstr "0"
  373. msgid "file"
  374. msgstr "檔案"
  375. msgid "Aborting transfer..."
  376. msgstr "放棄傳輸...."
  377. msgid "Error reported after abort."
  378. msgstr "放棄後回報錯誤"
  379. msgid "Aborted transfer would be successful."
  380. msgstr "將成功放棄傳輸"
  381. #, c-format
  382. msgid "ftpfs: Disconnecting from %s"
  383. msgstr "ftpfs: 結束至 %s 的連線"
  384. msgid " FTP: Password required for "
  385. msgstr " FTP: 必需有密碼 -> "
  386. msgid "ftpfs: sending login name"
  387. msgstr "ftpfs: 正在送出登入名稱"
  388. msgid "ftpfs: sending user password"
  389. msgstr "ftpfs: 正在送出登入密碼"
  390. #, fuzzy, c-format
  391. msgid "FTP: Account required for user %s"
  392. msgstr " FTP: 必需有密碼 -> "
  393. #, fuzzy
  394. msgid "Account:"
  395. msgstr "計數"
  396. #, fuzzy
  397. msgid "ftpfs: sending user account"
  398. msgstr "ftpfs: 正在送出登入密碼"
  399. msgid "ftpfs: logged in"
  400. msgstr "ftpfs: 登入"
  401. #, c-format
  402. msgid "ftpfs: Login incorrect for user %s "
  403. msgstr "ftpfs: 使用者 %s 登入錯誤"
  404. msgid "ftpfs: Invalid host name."
  405. msgstr "ftpfs: 無效的主機名稱。"
  406. #, c-format
  407. msgid "ftpfs: %s"
  408. msgstr ""
  409. #, c-format
  410. msgid "ftpfs: making connection to %s"
  411. msgstr "ftpfs: 建立至 %s 的連線"
  412. msgid "ftpfs: connection interrupted by user"
  413. msgstr "ftpfs: 使用者中斷連線"
  414. #, c-format
  415. msgid "ftpfs: connection to server failed: %s"
  416. msgstr "ftpfs: 連結到伺服器發生錯誤: %s"
  417. #, c-format
  418. msgid "Waiting to retry... %d (Control-C to cancel)"
  419. msgstr "等候重試... %d (Control-C 結束)"
  420. #, fuzzy
  421. msgid "ftpfs: invalid address family"
  422. msgstr "ftpfs: 無效的主機位址。"
  423. #, fuzzy, c-format
  424. msgid "ftpfs: could not setup passive mode: %s"
  425. msgstr "ftpfs: 無法設定 passive mode"
  426. #, fuzzy, c-format
  427. msgid "ftpfs: could not create socket: %s"
  428. msgstr " 無法建立插座: %s"
  429. msgid "ftpfs: could not setup passive mode"
  430. msgstr "ftpfs: 無法設定 passive mode"
  431. msgid "ftpfs: aborting transfer."
  432. msgstr "ftpfs: 傳輸中斷"
  433. #, c-format
  434. msgid "ftpfs: abort error: %s"
  435. msgstr "ftpfs: 造成中斷的錯誤: %s"
  436. msgid "ftpfs: abort failed"
  437. msgstr "ftpfs: 中斷失敗"
  438. msgid "ftpfs: CWD failed."
  439. msgstr "ftpfs: 改變目錄失敗"
  440. msgid "ftpfs: couldn't resolve symlink"
  441. msgstr "FTPFS: 無法解讀符號連結"
  442. msgid "Resolving symlink..."
  443. msgstr "解讀符號連結..."
  444. #, c-format
  445. msgid "ftpfs: Reading FTP directory %s... %s%s"
  446. msgstr "ftpfs: 讀取 FTP 目錄 %s... %s%s"
  447. msgid "(strict rfc959)"
  448. msgstr "(嚴謹的 rfc959)"
  449. msgid "(chdir first)"
  450. msgstr "(先切換路徑)"
  451. msgid "ftpfs: failed; nowhere to fallback to"
  452. msgstr "ftpfs: 失敗; 無法轉移到其它目錄"
  453. #, fuzzy, c-format
  454. msgid "ftpfs: storing file %lu (%lu)"
  455. msgstr "ftpfs: 儲存檔案 %d (%d)"
  456. msgid ""
  457. "~/.netrc file has incorrect mode.\n"
  458. "Remove password or correct mode."
  459. msgstr ""
  460. "~/.netrc 檔案的模式不正確。移除寫在裡面 \n"
  461. "的密碼或修正 ~/.netrc 檔案的模式。 "
  462. msgid " MCFS "
  463. msgstr " MCFS "
  464. msgid " The server does not support this version "
  465. msgstr " 伺服器並不支援此一版本 "
  466. msgid ""
  467. " The remote server is not running on a system port \n"
  468. " you need a password to log in, but the information may \n"
  469. " not be safe on the remote side. Continue? \n"
  470. msgstr ""
  471. " 遠端主機並未在正常 port 上執行伺服軟體, \n"
  472. " 您必須輸入密碼以登入主機,可是密碼資訊經過 \n"
  473. " 網路傳輸可能不太安全,還要繼續嗎? \n"
  474. msgid "&Yes"
  475. msgstr "是(&Y)"
  476. msgid "&No"
  477. msgstr "否(&N)"
  478. msgid " MCFS Password required "
  479. msgstr " 必需有 MCFS 密碼 "
  480. msgid " Invalid password "
  481. msgstr " 密碼無效 "
  482. #, c-format
  483. msgid " Cannot locate hostname: %s "
  484. msgstr " 找不到主機: %s"
  485. #, c-format
  486. msgid " Cannot create socket: %s "
  487. msgstr " 無法建立插座: %s"
  488. #, c-format
  489. msgid " Cannot connect to server: %s "
  490. msgstr " 無法連結到伺服器: %s"
  491. msgid " Too many open connections "
  492. msgstr " 太多開啟的連結了 "
  493. #, c-format
  494. msgid "Warning: file %s not found\n"
  495. msgstr "警告:找不到檔案 %s\n"
  496. #, c-format
  497. msgid ""
  498. "Warning: Invalid line in %s:\n"
  499. "%s\n"
  500. msgstr ""
  501. "警告:%s 中此行不正確:\n"
  502. "%s\n"
  503. #, c-format
  504. msgid ""
  505. "Warning: Invalid flag %c in %s:\n"
  506. "%s\n"
  507. msgstr ""
  508. "警告:%2$s 中的旗標 %1$c 不正確:\n"
  509. "%3$s\n"
  510. #, c-format
  511. msgid ""
  512. " reconnect to %s failed\n"
  513. " "
  514. msgstr ""
  515. " 重新連結到 %s 失敗\n"
  516. " "
  517. msgid " Authentication failed "
  518. msgstr " 認證錯誤 "
  519. #, c-format
  520. msgid " Error %s creating directory %s "
  521. msgstr "%s 建立 %s 目錄中"
  522. #, c-format
  523. msgid " Error %s removing directory %s "
  524. msgstr "%s 刪除 %s 目錄中"
  525. #, c-format
  526. msgid " %s opening remote file %s "
  527. msgstr "%s 開啟遠端檔案 %s 中"
  528. #, fuzzy, c-format
  529. msgid " %s removing remote file %s "
  530. msgstr "%s 開啟遠端檔案 %s 中"
  531. #, c-format
  532. msgid " %s renaming files\n"
  533. msgstr " %s 剩下的檔案\n"
  534. #, c-format
  535. msgid ""
  536. "Cannot open tar archive\n"
  537. "%s"
  538. msgstr ""
  539. "無法開啟 tar 檔案集\n"
  540. "%s"
  541. msgid "Inconsistent tar archive"
  542. msgstr "不完整的 tar 檔案集"
  543. msgid "Unexpected EOF on archive file"
  544. msgstr "檔案集的檔案結尾不正常"
  545. #, c-format
  546. msgid ""
  547. "Hmm,...\n"
  548. "%s\n"
  549. "doesn't look like a tar archive."
  550. msgstr ""
  551. "嗯...\n"
  552. "%s\n"
  553. "看起來不像是一個 tar 檔案集。"
  554. msgid " undelfs: error "
  555. msgstr " undelfs: 錯誤 "
  556. msgid " not enough memory "
  557. msgstr " 不足的記憶體 "
  558. msgid " while allocating block buffer "
  559. msgstr " 檔配置區塊緩衝區時 "
  560. #, c-format
  561. msgid " open_inode_scan: %d "
  562. msgstr " 開啟 inode 掃描: %d "
  563. #, c-format
  564. msgid " while starting inode scan %d "
  565. msgstr " 當啟動 inode 掃描時 %d"
  566. #, c-format
  567. msgid "undelfs: loading deleted files information %d inodes"
  568. msgstr "undelfs: 載入刪除的檔案資訊 %d inode"
  569. #, c-format
  570. msgid " while calling ext2_block_iterate %d "
  571. msgstr " 當呼叫 ext2 區塊覆合時 %d "
  572. msgid " no more memory while reallocating array "
  573. msgstr " 當重新配置陣列時沒有更多的記憶體"
  574. #, c-format
  575. msgid " while doing inode scan %d "
  576. msgstr " 當進行 inode 掃描時 %d"
  577. msgid " Ext2lib error "
  578. msgstr " ext2lib 錯誤 "
  579. #, c-format
  580. msgid " Cannot open file %s "
  581. msgstr " 無法開啟檔案 %s "
  582. msgid "undelfs: reading inode bitmap..."
  583. msgstr "undelfs: 讀取 inode 點陣圖..."
  584. #, c-format
  585. msgid ""
  586. " Cannot load inode bitmap from: \n"
  587. " %s \n"
  588. msgstr ""
  589. " 無法從 %s 中 \n"
  590. " 載入 inode 點陣圖 \n"
  591. msgid "undelfs: reading block bitmap..."
  592. msgstr "undelfs: 讀取區塊點陣圖中..."
  593. #, c-format
  594. msgid ""
  595. " Cannot load block bitmap from: \n"
  596. " %s \n"
  597. msgstr ""
  598. " 無法從 %s 中 \n"
  599. " 載入區塊點陣圖 \n"
  600. msgid " vfs_info is not fs! "
  601. msgstr " vfs_info 不是檔案系統! "
  602. msgid " You have to chdir to extract files first "
  603. msgstr " 您必須先變換路徑到解開的檔案 "
  604. msgid " while iterating over blocks "
  605. msgstr " 當由 block 覆合時"
  606. msgid "Cannot parse:"
  607. msgstr "無法分析:"
  608. msgid "More parsing errors will be ignored."
  609. msgstr "更多的分析錯誤將會被忽略"
  610. msgid "Internal error:"
  611. msgstr "內部錯誤:"
  612. msgid "Password:"
  613. msgstr "密碼:"
  614. msgid "Changes to file lost"
  615. msgstr "改變到檔案遺失"
  616. msgid "&Cancel"
  617. msgstr "取消"
  618. msgid "&Set"
  619. msgstr "設定"
  620. msgid "S&kip"
  621. msgstr "跳過"
  622. msgid "Set &all"
  623. msgstr "設定全部"
  624. msgid "owner"
  625. msgstr "擁有者"
  626. msgid "group"
  627. msgstr "群組"
  628. msgid "other"
  629. msgstr "其它"
  630. msgid "On"
  631. msgstr "開"
  632. msgid "Flag"
  633. msgstr "旗標"
  634. msgid "Mode"
  635. msgstr "模式"
  636. #, c-format
  637. msgid "%6d of %d"
  638. msgstr "%6d 之 %d"
  639. msgid " Chown advanced command "
  640. msgstr " 進階的 chown 指令 "
  641. #, c-format
  642. msgid ""
  643. " Cannot chmod \"%s\" \n"
  644. " %s "
  645. msgstr ""
  646. " 無法 chmod \"%s\" \n"
  647. " %s "
  648. #, c-format
  649. msgid ""
  650. " Cannot chown \"%s\" \n"
  651. " %s "
  652. msgstr ""
  653. " 無法 chown \"%s\" \n"
  654. " %s "
  655. msgid "Displays the current version"
  656. msgstr "顯示目前的版本"
  657. #, fuzzy
  658. msgid "Print data directory"
  659. msgstr "建立新目錄"
  660. #, fuzzy
  661. msgid "Print last working directory to specified file"
  662. msgstr "程式結束時印出當前目錄"
  663. msgid "Enables subshell support (default)"
  664. msgstr "支援使用次殼層 (預設值)"
  665. msgid "Disables subshell support"
  666. msgstr "不支援使用次殼層 (subshell)"
  667. msgid "Log ftp dialog to specified file"
  668. msgstr "紀錄 FTP 對話框到特定檔案"
  669. msgid "Set debug level"
  670. msgstr ""
  671. msgid "Launches the file viewer on a file"
  672. msgstr "對某個檔案執行檔案檢視程式"
  673. msgid "Edits one file"
  674. msgstr "編輯一個檔案"
  675. msgid "Forces xterm features"
  676. msgstr "強迫使用 xterm 特性"
  677. msgid "Disable mouse support in text version"
  678. msgstr "文字模式下不使用滑鼠支援"
  679. msgid "Tries to use termcap instead of terminfo"
  680. msgstr "試著使用 termcap 來代替 terminfo"
  681. msgid "To run on slow terminals"
  682. msgstr "於慢速的終端機上執行"
  683. msgid "Use stickchars to draw"
  684. msgstr "使用stickchars繪製"
  685. msgid "Resets soft keys on HP terminals"
  686. msgstr "在 HP 終端機上重設軟鍵 (soft keys)"
  687. #, fuzzy
  688. msgid "Load definitions of key bindings from specified file"
  689. msgstr "紀錄 FTP 對話框到特定檔案"
  690. msgid "Requests to run in black and white"
  691. msgstr "要求在黑白模式下執行"
  692. msgid "Request to run in color mode"
  693. msgstr "要求在彩色模式中執行"
  694. msgid "Specifies a color configuration"
  695. msgstr "指定一組色彩設定"
  696. msgid "Show mc with specified skin"
  697. msgstr ""
  698. #. TRANSLATORS: don't translate keywords and names of colors
  699. #, fuzzy
  700. msgid ""
  701. "--colors KEYWORD={FORE},{BACK}\n"
  702. "\n"
  703. "{FORE} and {BACK} can be omitted, and the default will be used\n"
  704. "\n"
  705. "Keywords:\n"
  706. " Global: errors, reverse, gauge, input, viewunderline\n"
  707. " File display: normal, selected, marked, markselect\n"
  708. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  709. " errdhotfocus\n"
  710. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  711. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  712. " editlinestate\n"
  713. msgstr ""
  714. "--colors 關鍵字={前景},{背景}\n"
  715. "\n"
  716. "{前景} 與 {背景} 可以被省略, 且預設值會被使用\n"
  717. "\n"
  718. "關鍵字:\n"
  719. " Global: errors, reverse, gauge, input\n"
  720. " File display: normal, selected, marked, markselect\n"
  721. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus\n"
  722. " Menus: menu, menuhot, menusel, menuhotsel\n"
  723. " Help: helpnormal, helpitalic, helplink, helpslink\n"
  724. " File types: directory, executable, link, stalelink, device, special, "
  725. "core\n"
  726. "\n"
  727. "顏色:\n"
  728. " black, gray, red, brightred, green, brightgreen, brown,\n"
  729. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  730. " brightcyan, lightgray and white\n"
  731. "\n"
  732. msgid ""
  733. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  734. "\n"
  735. "Colors:\n"
  736. " black, gray, red, brightred, green, brightgreen, brown,\n"
  737. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  738. " brightcyan, lightgray and white\n"
  739. "\n"
  740. msgstr ""
  741. #, fuzzy
  742. msgid "Color options"
  743. msgstr "設定選項"
  744. #, fuzzy
  745. msgid "+number"
  746. msgstr "Inode 號碼"
  747. #, fuzzy
  748. msgid "[this_dir] [other_panel_dir]"
  749. msgstr "[選項標籤] [路徑] [另一個路徑]\n"
  750. msgid "Set initial line number for the internal editor"
  751. msgstr ""
  752. msgid ""
  753. "\n"
  754. "Please send any bug reports (including the output of `mc -V')\n"
  755. "to mc-devel@gnome.org\n"
  756. msgstr ""
  757. "\n"
  758. "請將臭蟲回報 (包含 `mc -V' 的輸出)\n"
  759. "給 mc-devel@gnome.org\n"
  760. #, c-format
  761. msgid "GNU Midnight Commander %s\n"
  762. msgstr "GNU Midnight Commander %s\n"
  763. #, fuzzy
  764. msgid "Main options"
  765. msgstr " 面板選項 "
  766. #, fuzzy
  767. msgid "Terminal options"
  768. msgstr " 其它選項 "
  769. msgid " Background process error "
  770. msgstr " 背景程序錯誤 "
  771. msgid " Unknown error in child "
  772. msgstr " 子程序發生未知的錯誤 "
  773. msgid " Child died unexpectedly "
  774. msgstr " 子程序不預期的結束 "
  775. msgid " Background protocol error "
  776. msgstr " 背景 protocol 錯誤 "
  777. #, fuzzy
  778. msgid "Reading failed"
  779. msgstr "<連結讀取錯誤>"
  780. msgid ""
  781. " Background process sent us a request for more arguments \n"
  782. " than we can handle. \n"
  783. msgstr ""
  784. " 背景程序要求的參數太多,超出程式能夠處理的 \n"
  785. " 數目了! \n"
  786. msgid "&Full file list"
  787. msgstr "完整檔案列表"
  788. msgid "&Brief file list"
  789. msgstr "簡要的檔案列表"
  790. msgid "&Long file list"
  791. msgstr "長檔案列表"
  792. msgid "&User defined:"
  793. msgstr "使用者自定:"
  794. msgid "Listing mode"
  795. msgstr "列表模式"
  796. msgid "user &Mini status"
  797. msgstr "使用者迷你狀態"
  798. msgid "&OK"
  799. msgstr "確定 (&O)"
  800. msgid "&Reverse"
  801. msgstr "反向"
  802. #, fuzzy
  803. msgid "Case sensi&tive"
  804. msgstr "大小寫不同"
  805. msgid "Executable &first"
  806. msgstr ""
  807. msgid "Sort order"
  808. msgstr "排序的順序"
  809. #, fuzzy
  810. msgid "Confirmation"
  811. msgstr " 確認 "
  812. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  813. #. 2
  814. #, fuzzy
  815. msgid "Confirmation|&History cleanup"
  816. msgstr " 確認 "
  817. #, fuzzy
  818. msgid "Confirmation|&Directory hotlist delete"
  819. msgstr "目錄熱門列表 C-\\"
  820. #, fuzzy
  821. msgid "Confirmation|E&xit"
  822. msgstr " 確認 "
  823. #, fuzzy
  824. msgid "Confirmation|&Execute"
  825. msgstr " 確認 "
  826. #, fuzzy
  827. msgid "Confirmation|O&verwrite"
  828. msgstr " 確定蓋寫 "
  829. #, fuzzy
  830. msgid "Confirmation|&Delete"
  831. msgstr " 確認 "
  832. #, fuzzy
  833. msgid "UTF-8 output"
  834. msgstr "完整的八位元輸出"
  835. msgid "Full 8 bits output"
  836. msgstr "完整的八位元輸出"
  837. msgid "ISO 8859-1"
  838. msgstr "ISO 8859-1"
  839. msgid "7 bits"
  840. msgstr "七位元"
  841. msgid "F&ull 8 bits input"
  842. msgstr "完整的八位元輸入"
  843. msgid " Display bits "
  844. msgstr " 顯示位元數 "
  845. msgid "Other 8 bit"
  846. msgstr "其它八位元"
  847. msgid "Input / display codepage:"
  848. msgstr "輸入/顯示 頁碼:"
  849. msgid "&Select"
  850. msgstr "選取(&S)"
  851. #, fuzzy
  852. msgid "Use passive mode over pro&xy"
  853. msgstr "儲存模式"
  854. #, fuzzy
  855. msgid "Use &passive mode"
  856. msgstr "儲存模式"
  857. msgid "&Use ~/.netrc"
  858. msgstr ""
  859. msgid "&Always use ftp proxy"
  860. msgstr "永遠使用檔案傳輸代理伺服器"
  861. msgid "sec"
  862. msgstr "秒"
  863. msgid "ftpfs directory cache timeout:"
  864. msgstr "檔案傳輸目錄快取逾時:"
  865. msgid "ftp anonymous password:"
  866. msgstr "匿名檔案傳輸密碼:"
  867. msgid "Timeout for freeing VFSs:"
  868. msgstr "關閉虛擬檔案系統逾時:"
  869. msgid " Virtual File System Setting "
  870. msgstr " 虛擬檔案系統設定 "
  871. msgid "cd"
  872. msgstr "改變目錄"
  873. msgid "Quick cd"
  874. msgstr "快速改變目錄"
  875. msgid "Symbolic link filename:"
  876. msgstr "符號連結名稱:"
  877. msgid "Existing filename (filename symlink will point to):"
  878. msgstr "既存的檔案名稱 (符號連結要指到的檔案):"
  879. msgid "Symbolic link"
  880. msgstr "符號連結"
  881. msgid "Running "
  882. msgstr "正在執行 "
  883. msgid "Stopped"
  884. msgstr "停止了"
  885. msgid "&Stop"
  886. msgstr "停止"
  887. msgid "&Resume"
  888. msgstr "繼續"
  889. msgid "&Kill"
  890. msgstr "關閉"
  891. msgid "Background Jobs"
  892. msgstr "背景工作"
  893. msgid "Domain:"
  894. msgstr "網域: "
  895. msgid "Username:"
  896. msgstr "使用者名稱: "
  897. #, c-format
  898. msgid "Password for \\\\%s\\%s"
  899. msgstr "\\\\%s\\%s 的密碼"
  900. msgid "7-bit ASCII"
  901. msgstr ""
  902. #, c-format
  903. msgid "Cannot translate from %s to %s"
  904. msgstr "無法由 %s 轉換到 %s"
  905. msgid "execute/search by others"
  906. msgstr "不同群組的用戶可執行/搜尋"
  907. msgid "write by others"
  908. msgstr "不同群組的用戶可寫入"
  909. msgid "read by others"
  910. msgstr "不同群組的用戶可讀取"
  911. msgid "execute/search by group"
  912. msgstr "同群組的用戶可執行/搜尋"
  913. msgid "write by group"
  914. msgstr "同群組的用戶可寫入"
  915. msgid "read by group"
  916. msgstr "同群組的用戶可讀取"
  917. msgid "execute/search by owner"
  918. msgstr "擁有者可執行/搜尋"
  919. msgid "write by owner"
  920. msgstr "擁有者可寫入"
  921. msgid "read by owner"
  922. msgstr "擁有者可讀取"
  923. msgid "sticky bit"
  924. msgstr "sticky 位元"
  925. msgid "set group ID on execution"
  926. msgstr "執行時 sGID"
  927. msgid "set user ID on execution"
  928. msgstr "執行時 sUID"
  929. msgid "C&lear marked"
  930. msgstr "清除標示區"
  931. msgid "S&et marked"
  932. msgstr "標示區設定"
  933. msgid "&Marked all"
  934. msgstr "標示全部"
  935. msgid "Name"
  936. msgstr "名稱"
  937. msgid "Permissions (Octal)"
  938. msgstr "權限 (八進位)"
  939. msgid "Owner name"
  940. msgstr "擁有者名稱"
  941. msgid "Group name"
  942. msgstr "群組名稱"
  943. msgid "Use SPACE to change"
  944. msgstr "使用空白鍵來改變"
  945. msgid "an option, ARROW KEYS"
  946. msgstr "一個選項,方向鍵"
  947. msgid "to move between options"
  948. msgstr "在選項間移動"
  949. msgid "and T or INS to mark"
  950. msgstr ",T 或 INS 鍵標示"
  951. msgid " Permission "
  952. msgstr " 權限 "
  953. msgid " File "
  954. msgstr " 檔案 "
  955. msgid "Chmod command"
  956. msgstr "chmod 指令"
  957. msgid "Set &users"
  958. msgstr "設定使用者"
  959. msgid "Set &groups"
  960. msgstr "設定群組"
  961. msgid " Name "
  962. msgstr " 名稱 "
  963. msgid " Owner name "
  964. msgstr " 擁有者名稱 "
  965. msgid " Group name "
  966. msgstr " 群組名稱 "
  967. msgid " Size "
  968. msgstr "大小 "
  969. msgid " User name "
  970. msgstr " 使用者名稱 "
  971. msgid " Chown command "
  972. msgstr " chmod 指令 "
  973. msgid "<Unknown user>"
  974. msgstr "<不明的使用者>"
  975. msgid "<Unknown group>"
  976. msgstr "<不明的群組>"
  977. msgid " Confirmation "
  978. msgstr " 確認 "
  979. msgid "Files tagged, want to cd?"
  980. msgstr "有檔案貼上標籤了,還是要改變目錄?"
  981. msgid "Cannot change directory"
  982. msgstr "無法改變目錄"
  983. msgid " View file "
  984. msgstr " 檢視檔案 "
  985. msgid " Filename:"
  986. msgstr " 檔名:"
  987. msgid " Filtered view "
  988. msgstr " 選擇性的顯示 "
  989. msgid " Filter command and arguments:"
  990. msgstr " 過濾器指令與參數:"
  991. msgid "Create a new Directory"
  992. msgstr "建立新目錄"
  993. msgid " Enter directory name:"
  994. msgstr " 輸入目錄名稱:"
  995. msgid " Filter "
  996. msgstr " 過濾器 "
  997. msgid " Set expression for filtering filenames"
  998. msgstr " 設定過濾檔名的表示式"
  999. msgid "&Using shell patterns"
  1000. msgstr "使用系統殼萬用字元"
  1001. #, fuzzy
  1002. msgid "&Case sensitive"
  1003. msgstr "大小寫不同"
  1004. #, fuzzy
  1005. msgid "&Files only"
  1006. msgstr "大小"
  1007. msgid " Select "
  1008. msgstr " 選取 "
  1009. msgid " Unselect "
  1010. msgstr " 取消選取 "
  1011. msgid "Extension file edit"
  1012. msgstr "擴充檔案編輯"
  1013. msgid " Which extension file you want to edit? "
  1014. msgstr " 您想要編輯哪個擴充檔案? "
  1015. msgid "&User"
  1016. msgstr "使用者"
  1017. msgid "&System Wide"
  1018. msgstr "全系統的"
  1019. msgid " Menu edit "
  1020. msgstr " 選單檔編輯"
  1021. msgid " Which menu file do you want to edit? "
  1022. msgstr " 您準備編輯哪個選單檔? "
  1023. msgid "&Local"
  1024. msgstr "本地"
  1025. msgid "Highlighting groups file edit"
  1026. msgstr ""
  1027. #, fuzzy
  1028. msgid " Which highlighting file you want to edit? "
  1029. msgstr " 您想要編輯哪個擴充檔案? "
  1030. msgid " Compare directories "
  1031. msgstr " 比較目錄 "
  1032. msgid " Select compare method: "
  1033. msgstr " 選擇比較方式: "
  1034. msgid "&Quick"
  1035. msgstr "快速"
  1036. msgid "&Size only"
  1037. msgstr "大小"
  1038. msgid "&Thorough"
  1039. msgstr "徹底的"
  1040. msgid " Both panels should be in the listing mode to use this command "
  1041. msgstr " 使用此一指令時,兩個面板都要在列表顯示模式 "
  1042. msgid ""
  1043. " Not an xterm or Linux console; \n"
  1044. " the panels cannot be toggled. "
  1045. msgstr ""
  1046. " 並非在 xterm 或 Linux 主控台下執行; \n"
  1047. " 無法切換面板。 "
  1048. #, fuzzy, c-format
  1049. msgid "Link %s to:"
  1050. msgstr " 連結: %s "
  1051. msgid " Link "
  1052. msgstr " 連結 "
  1053. #, c-format
  1054. msgid " link: %s "
  1055. msgstr " 連結: %s "
  1056. #, c-format
  1057. msgid " symlink: %s "
  1058. msgstr " 符號連結: %s "
  1059. #, c-format
  1060. msgid " Symlink `%s' points to: "
  1061. msgstr " 符號連結 `%s' 指到:"
  1062. msgid " Edit symlink "
  1063. msgstr " 編輯符號連結 "
  1064. #, c-format
  1065. msgid " edit symlink, unable to remove %s: %s "
  1066. msgstr " 編輯符號連結,無法移除 %s: %s "
  1067. #, c-format
  1068. msgid " edit symlink: %s "
  1069. msgstr " 編輯符號連結: %s "
  1070. #, c-format
  1071. msgid "`%s' is not a symbolic link"
  1072. msgstr "`%s' 不是符號連結"
  1073. #, c-format
  1074. msgid " Cannot chdir to %s "
  1075. msgstr " 無法將目錄改變至 %s "
  1076. msgid " Enter machine name (F1 for details): "
  1077. msgstr " 輸入主機名稱 (按 F1 獲取進一步的資訊): "
  1078. msgid " Link to a remote machine "
  1079. msgstr " 連結至遠端主機 "
  1080. msgid " FTP to machine "
  1081. msgstr " 遠端FTP檔案傳輸的主機 "
  1082. #, fuzzy
  1083. msgid " Shell link to machine "
  1084. msgstr " 遠端SMB檔案傳輸的主機 "
  1085. msgid " SMB link to machine "
  1086. msgstr " 遠端SMB檔案傳輸的主機 "
  1087. msgid " Undelete files on an ext2 file system "
  1088. msgstr " 在 ext2 檔案系統上復原已刪除之檔案 "
  1089. msgid ""
  1090. " Enter device (without /dev/) to undelete\n"
  1091. " files on: (F1 for details)"
  1092. msgstr ""
  1093. " 輸入要復原已刪除檔案的裝置名稱:\n"
  1094. " (不包括 /dev/,按 F1 以獲知詳情)"
  1095. msgid " Setup "
  1096. msgstr " 設定 "
  1097. #, fuzzy, c-format
  1098. msgid " Setup saved to ~/%s"
  1099. msgstr " 將設定儲存至 ~/"
  1100. #, c-format
  1101. msgid ""
  1102. " Cannot chdir to \"%s\" \n"
  1103. " %s "
  1104. msgstr ""
  1105. " 無法改變目錄至 \"%s\" \n"
  1106. " %s "
  1107. msgid " Cannot execute commands on non-local filesystems"
  1108. msgstr " 不能在非本地端的檔案系統上執行指令 "
  1109. msgid " The shell is already running a command "
  1110. msgstr " 此系統殼正在執行指令中 "
  1111. msgid "&Dismiss"
  1112. msgstr "關閉"
  1113. msgid "All charsets"
  1114. msgstr ""
  1115. #, fuzzy
  1116. msgid "&Whole words"
  1117. msgstr " 只匹配整個單字 "
  1118. msgid "&Backwards"
  1119. msgstr " 向後 "
  1120. msgid "case &Sensitive"
  1121. msgstr "大小寫不同"
  1122. msgid " Enter search string:"
  1123. msgstr " 輸入要搜尋的字串: "
  1124. msgid "Search"
  1125. msgstr "搜尋"
  1126. msgid " Search is disabled "
  1127. msgstr ""
  1128. #, fuzzy, c-format
  1129. msgid ""
  1130. " Cannot create temporary diff file \n"
  1131. " %s "
  1132. msgstr ""
  1133. " 無法建立指令暫存檔 \n"
  1134. " %s "
  1135. #, fuzzy, c-format
  1136. msgid ""
  1137. " Cannot create backup file \n"
  1138. " %s%s \n"
  1139. " %s "
  1140. msgstr ""
  1141. " 無法建立目標檔案 \"%s\" \n"
  1142. " %s "
  1143. #, fuzzy, c-format
  1144. msgid ""
  1145. " Cannot create temporary merge file \n"
  1146. " %s "
  1147. msgstr ""
  1148. " 無法建立指令暫存檔 \n"
  1149. " %s "
  1150. #, fuzzy
  1151. msgid "&Normal"
  1152. msgstr "格式"
  1153. msgid "&Fastest (Assume large files)"
  1154. msgstr ""
  1155. msgid "&Minimal (Find a smaller set of change)"
  1156. msgstr ""
  1157. msgid "Strip &trailing carriage return"
  1158. msgstr ""
  1159. msgid "Ignore all &whitespace"
  1160. msgstr ""
  1161. msgid "Ignore &space change"
  1162. msgstr ""
  1163. msgid "Ignore tab &expansion"
  1164. msgstr ""
  1165. msgid "&Ignore case"
  1166. msgstr ""
  1167. #, fuzzy
  1168. msgid "Diff extra options"
  1169. msgstr " 其它選項 "
  1170. msgid "Diff algorithm"
  1171. msgstr ""
  1172. #, fuzzy
  1173. msgid "Diff Options"
  1174. msgstr " 選項 "
  1175. #, fuzzy
  1176. msgid "Edit"
  1177. msgstr "編輯"
  1178. msgid " Edit is disabled "
  1179. msgstr ""
  1180. msgid " Enter line: "
  1181. msgstr " 輸入行號: "
  1182. msgid "ButtonBar|Help"
  1183. msgstr ""
  1184. msgid "ButtonBar|Save"
  1185. msgstr ""
  1186. msgid "ButtonBar|Edit"
  1187. msgstr ""
  1188. msgid "ButtonBar|Merge"
  1189. msgstr ""
  1190. msgid "ButtonBar|Search"
  1191. msgstr ""
  1192. msgid "ButtonBar|Options"
  1193. msgstr ""
  1194. msgid "ButtonBar|Quit"
  1195. msgstr ""
  1196. msgid "Quit"
  1197. msgstr "結束"
  1198. msgid " File was modified, Save with exit? "
  1199. msgstr " 檔案已經有更動過,在離開前先存檔? "
  1200. msgid "Two files are needed to compare"
  1201. msgstr ""
  1202. #, fuzzy
  1203. msgid "Cannot read directory contents"
  1204. msgstr "無法改變目錄"
  1205. #, fuzzy
  1206. msgid " Choose syntax highlighting "
  1207. msgstr "依語法改變顏色"
  1208. #, fuzzy
  1209. msgid "< Auto >"
  1210. msgstr " 關於 "
  1211. msgid "< Reload Current Syntax >"
  1212. msgstr ""
  1213. #, fuzzy, c-format
  1214. msgid " Cannot open %s for reading "
  1215. msgstr " 在開啟管線用來讀取時失敗: "
  1216. msgid "Error"
  1217. msgstr "錯誤"
  1218. #, fuzzy, c-format
  1219. msgid " Error reading %s "
  1220. msgstr "讀取指令稿時時發生錯誤: "
  1221. #, fuzzy, c-format
  1222. msgid " Error reading from pipe: %s "
  1223. msgstr " 從管線讀取資料時發生錯誤: "
  1224. #, fuzzy, c-format
  1225. msgid " Cannot open pipe for reading: %s "
  1226. msgstr " 在開啟管線用來讀取時失敗: "
  1227. #, fuzzy, c-format
  1228. msgid " Cannot get size/permissions for %s "
  1229. msgstr " 無法獲得檔案的大小/權限資訊: "
  1230. #, fuzzy, c-format
  1231. msgid " %s is not a regular file "
  1232. msgstr " 無法檢視:並非一常規檔案 "
  1233. #, fuzzy, c-format
  1234. msgid " File %s is too large "
  1235. msgstr " 檔案太大了: "
  1236. msgid " About "
  1237. msgstr " 關於 "
  1238. msgid ""
  1239. "\n"
  1240. " Cooledit v3.11.5\n"
  1241. "\n"
  1242. " Copyright (C) 1996 the Free Software Foundation\n"
  1243. "\n"
  1244. " A user friendly text editor written\n"
  1245. " for the Midnight Commander.\n"
  1246. msgstr ""
  1247. "\n"
  1248. " Cooledit v3.11.5\n"
  1249. "\n"
  1250. " Copyright (C) 1996 the Free Software Foundation\n"
  1251. "\n"
  1252. " Midnight Commander的文字編輯程式.\n"
  1253. msgid "Macro recursion is too deep"
  1254. msgstr ""
  1255. msgid " File has hard-links. Detach before saving? "
  1256. msgstr ""
  1257. msgid "The file has been modified in the meantime. Save anyway?"
  1258. msgstr ""
  1259. msgid " Error writing to pipe: "
  1260. msgstr " 寫入管線時發生錯誤 "
  1261. msgid " Cannot open pipe for writing: "
  1262. msgstr " 在開啟管線用來寫入時失敗: "
  1263. #, fuzzy, c-format
  1264. msgid " Cannot open file for writing: %s "
  1265. msgstr " 在開啟管線用來寫入時失敗: "
  1266. #, fuzzy
  1267. msgid "&Quick save"
  1268. msgstr "快速存檔"
  1269. #, fuzzy
  1270. msgid "&Safe save"
  1271. msgstr "安全存檔"
  1272. msgid "&Do backups with following extension:"
  1273. msgstr ""
  1274. msgid "Check &POSIX new line"
  1275. msgstr ""
  1276. msgid " Edit Save Mode "
  1277. msgstr " 改變存檔模式 "
  1278. msgid "The file you are saving is not finished with a newline"
  1279. msgstr ""
  1280. #, fuzzy
  1281. msgid "C&ontinue"
  1282. msgstr "繼續"
  1283. msgid "&Do not change"
  1284. msgstr ""
  1285. msgid "&Unix format (LF)"
  1286. msgstr ""
  1287. msgid "&Windows/DOS format (CR LF)"
  1288. msgstr ""
  1289. msgid "&Macintosh format (CR)"
  1290. msgstr ""
  1291. msgid "Change line breaks to:"
  1292. msgstr ""
  1293. msgid " Enter file name: "
  1294. msgstr " 輸入檔名: "
  1295. msgid " Save As "
  1296. msgstr " 另存新檔 "
  1297. msgid " A file already exists with this name. "
  1298. msgstr " 同名的檔案已經存在。 "
  1299. #, fuzzy
  1300. msgid "&Overwrite"
  1301. msgstr "蓋寫"
  1302. msgid " Cannot save file. "
  1303. msgstr " 試著存檔時發生錯誤。 "
  1304. msgid " Delete macro "
  1305. msgstr " 刪除巨集 "
  1306. msgid " Cannot open temp file "
  1307. msgstr " 嘗試開啟暫存檔時發生錯誤 "
  1308. msgid " Cannot open macro file "
  1309. msgstr " 嘗試開啟巨集檔時發生錯誤 "
  1310. msgid " Cannot overwrite macro file "
  1311. msgstr " 嘗試蓋寫巨集檔時發生錯誤 "
  1312. msgid " Save macro "
  1313. msgstr " 儲存巨集 "
  1314. msgid " Press the macro's new hotkey: "
  1315. msgstr " 請按下啟動此一巨集的熱鍵: "
  1316. msgid " Press macro hotkey: "
  1317. msgstr " 按下巨集熱鍵: "
  1318. msgid " Load macro "
  1319. msgstr " 載入巨集 "
  1320. msgid " Confirm save file? : "
  1321. msgstr " 確定要儲存檔案?: "
  1322. msgid " Save file "
  1323. msgstr " 儲存檔案 "
  1324. msgid "&Save"
  1325. msgstr "存檔"
  1326. msgid ""
  1327. " Current text was modified without a file save. \n"
  1328. " Continue discards these changes. "
  1329. msgstr ""
  1330. " 目前的文件內容已經被更動過,而且尚未存檔。 \n"
  1331. " 忽略作過的改變並繼續工作。 "
  1332. #, fuzzy
  1333. msgid "Syntax file edit"
  1334. msgstr "編輯選單檔"
  1335. #, fuzzy
  1336. msgid " Which syntax file you want to edit? "
  1337. msgstr " 您想要編輯哪個擴充檔案? "
  1338. msgid " Load "
  1339. msgstr " 載入 "
  1340. msgid " Block is large, you may not be able to undo this action. "
  1341. msgstr " 區塊太大了,您可能無法復原這個動作。 "
  1342. #, fuzzy
  1343. msgid "Replace"
  1344. msgstr "替換"
  1345. msgid " Replace "
  1346. msgstr " 替換 "
  1347. #, c-format
  1348. msgid " %ld replacements made. "
  1349. msgstr " 執行了 %ld 次替換。 "
  1350. #, fuzzy
  1351. msgid "&Cancel quit"
  1352. msgstr "取消結束"
  1353. #, fuzzy
  1354. msgid " Error "
  1355. msgstr "錯誤"
  1356. msgid " This function is not implemented. "
  1357. msgstr ""
  1358. msgid " Copy to clipboard "
  1359. msgstr " 複製到剪貼簿 "
  1360. msgid " Unable to save to file. "
  1361. msgstr " 無法儲存至檔案。 "
  1362. msgid " Cut to clipboard "
  1363. msgstr " 剪下到剪貼簿 "
  1364. msgid " Goto line "
  1365. msgstr " 跳至某行 "
  1366. msgid " Save Block "
  1367. msgstr " 儲存區塊 "
  1368. msgid " Insert File "
  1369. msgstr " 插入檔案 "
  1370. msgid " Cannot insert file. "
  1371. msgstr " 嘗試插入檔案時發生錯誤。 "
  1372. msgid " Sort block "
  1373. msgstr " 排序區塊 "
  1374. msgid " You must first highlight a block of text. "
  1375. msgstr " 您必須先選取一個文字區塊。 "
  1376. msgid " Run Sort "
  1377. msgstr " 進行排序 "
  1378. msgid " Enter sort options (see manpage) separated by whitespace: "
  1379. msgstr " 輸入 sort 的選項,以空白字元分隔 (參考 sort 的 man page): "
  1380. msgid " Sort "
  1381. msgstr " 排序 "
  1382. msgid " Cannot execute sort command "
  1383. msgstr " 嘗試執行 sort 指令時發生錯誤 "
  1384. msgid " Sort returned non-zero: "
  1385. msgstr " sort 傳回非零的值: "
  1386. msgid "Paste output of external command"
  1387. msgstr ""
  1388. #, fuzzy
  1389. msgid "Enter shell command(s):"
  1390. msgstr " 請輸入指令標籤: "
  1391. #, fuzzy
  1392. msgid "External command"
  1393. msgstr "其它指令"
  1394. #, fuzzy
  1395. msgid "Cannot execute command"
  1396. msgstr " 嘗試執行 sort 指令時發生錯誤 "
  1397. msgid "Error creating script:"
  1398. msgstr "建立指令稿時發生錯誤: "
  1399. msgid "Error reading script:"
  1400. msgstr "讀取指令稿時時發生錯誤: "
  1401. msgid "Error closing script:"
  1402. msgstr "關閉指令稿錯誤:"
  1403. msgid "Script created:"
  1404. msgstr "建立的指令稿:"
  1405. msgid "Process block"
  1406. msgstr "處理區塊 "
  1407. #, fuzzy
  1408. msgid "Error calling program"
  1409. msgstr "關閉指令稿錯誤:"
  1410. msgid " Copies to"
  1411. msgstr " 複製到 "
  1412. msgid " Subject"
  1413. msgstr " 標題 "
  1414. msgid " To"
  1415. msgstr " 到 "
  1416. msgid " mail -s <subject> -c <cc> <to>"
  1417. msgstr " mail -s <標題> -c <副本> <目地>"
  1418. msgid " Mail "
  1419. msgstr " 郵件 "
  1420. msgid " Insert Literal "
  1421. msgstr " 逐字插入 "
  1422. msgid " Press any key: "
  1423. msgstr " 按下任意鍵:"
  1424. msgid " Execute Macro "
  1425. msgstr " 執行巨集 "
  1426. #, fuzzy
  1427. msgid "In se&lection"
  1428. msgstr "反向選取 M-*"
  1429. msgid " Enter replacement string:"
  1430. msgstr " 輸入要替換的字串:"
  1431. #, fuzzy
  1432. msgid "&Find all"
  1433. msgstr "尋找檔案"
  1434. msgid "Cancel"
  1435. msgstr "取消"
  1436. msgid "&Skip"
  1437. msgstr "跳過"
  1438. msgid "A&ll"
  1439. msgstr "全部"
  1440. msgid "&Replace"
  1441. msgstr "替換"
  1442. msgid " Replace with: "
  1443. msgstr " 以此替換: "
  1444. msgid " Confirm replace "
  1445. msgstr " 確定替換 "
  1446. #, c-format
  1447. msgid ""
  1448. "File \"%s\" is already being edited\n"
  1449. "User: %s\n"
  1450. "Process ID: %d"
  1451. msgstr ""
  1452. msgid "File locked"
  1453. msgstr ""
  1454. msgid "&Grab lock"
  1455. msgstr ""
  1456. msgid "&Ignore lock"
  1457. msgstr ""
  1458. #, fuzzy
  1459. msgid "&Open file..."
  1460. msgstr " 以此開啟..."
  1461. #, fuzzy
  1462. msgid "&New"
  1463. msgstr "名稱"
  1464. #, fuzzy
  1465. msgid "Save &as..."
  1466. msgstr "儲存設定"
  1467. #, fuzzy
  1468. msgid "&Insert file..."
  1469. msgstr "插入檔案... F15"
  1470. #, fuzzy
  1471. msgid "Cop&y to file..."
  1472. msgstr "複製到檔案... C-f"
  1473. #, fuzzy
  1474. msgid "&User menu..."
  1475. msgstr "使用者選單(&U) F11"
  1476. #, fuzzy
  1477. msgid "A&bout..."
  1478. msgstr "樣式"
  1479. msgid "&Quit"
  1480. msgstr "結束"
  1481. msgid "&Undo"
  1482. msgstr ""
  1483. #, fuzzy
  1484. msgid "&Toggle ins/overw"
  1485. msgstr "切換蓋寫/插入 Ins"
  1486. #, fuzzy
  1487. msgid "To&ggle mark"
  1488. msgstr "清除標示區"
  1489. msgid "&Mark columns"
  1490. msgstr ""
  1491. #, fuzzy
  1492. msgid "Mark &all"
  1493. msgstr "標示全部"
  1494. msgid "Unmar&k"
  1495. msgstr ""
  1496. #, fuzzy
  1497. msgid "Cop&y"
  1498. msgstr "複製"
  1499. #, fuzzy
  1500. msgid "Mo&ve"
  1501. msgstr "搬移"
  1502. msgid "&Delete"
  1503. msgstr "刪除"
  1504. #, fuzzy
  1505. msgid "Co&py to clipfile"
  1506. msgstr "複製到檔案... "
  1507. #, fuzzy
  1508. msgid "&Cut to clipfile"
  1509. msgstr "跳至某行... M-l"
  1510. #, fuzzy
  1511. msgid "Pa&ste from clipfile"
  1512. msgstr "跳至某行... M-l"
  1513. msgid "&Beginning"
  1514. msgstr ""
  1515. #, fuzzy
  1516. msgid "&End"
  1517. msgstr "節點"
  1518. #, fuzzy
  1519. msgid "&Search..."
  1520. msgstr "搜尋"
  1521. #, fuzzy
  1522. msgid "Search &again"
  1523. msgstr "再次搜尋 F17"
  1524. #, fuzzy
  1525. msgid "&Replace..."
  1526. msgstr "替換"
  1527. #, fuzzy
  1528. msgid "&Toggle bookmark"
  1529. msgstr "切換標示區域 F3"
  1530. #, fuzzy
  1531. msgid "&Next bookmark"
  1532. msgstr "標示區設定"
  1533. #, fuzzy
  1534. msgid "&Prev bookmark"
  1535. msgstr "排序... M-t"
  1536. #, fuzzy
  1537. msgid "&Flush bookmark"
  1538. msgstr "郵件 "
  1539. #, fuzzy
  1540. msgid "&Go to line..."
  1541. msgstr " 跳至某行 "
  1542. #, fuzzy
  1543. msgid "&Toggle line state"
  1544. msgstr "切換標示區域 F3"
  1545. #, fuzzy
  1546. msgid "Go to matching &bracket"
  1547. msgstr "跳到符合的括號"
  1548. #, fuzzy
  1549. msgid "&Find declaration"
  1550. msgstr "在補強後找出被拒絕的補強檔 (patch)"
  1551. #, fuzzy
  1552. msgid "Back from &declaration"
  1553. msgstr "在補強後找出被拒絕的補強檔 (patch)"
  1554. #, fuzzy
  1555. msgid "For&ward to declaration"
  1556. msgstr "在補強後找出被拒絕的補強檔 (patch)"
  1557. #, fuzzy
  1558. msgid "Encod&ing..."
  1559. msgstr "排序... M-t"
  1560. #, fuzzy
  1561. msgid "&Refresh screen"
  1562. msgstr "重繪螢幕 C-l"
  1563. #, fuzzy
  1564. msgid "&Start record macro"
  1565. msgstr "開始巨集錄製 C-r"
  1566. #, fuzzy
  1567. msgid "Finis&h record macro..."
  1568. msgstr "完成巨集錄製... C-r"
  1569. #, fuzzy
  1570. msgid "&Execute macro..."
  1571. msgstr "執行巨集... C-a, KEY"
  1572. #, fuzzy
  1573. msgid "Delete macr&o..."
  1574. msgstr " 刪除巨集 "
  1575. #, fuzzy
  1576. msgid "'ispell' s&pell check"
  1577. msgstr "'ispell' 拼字檢查 C-p"
  1578. #, fuzzy
  1579. msgid "&Mail..."
  1580. msgstr "過濾器..."
  1581. #, fuzzy
  1582. msgid "Insert &literal..."
  1583. msgstr "逐字插入... C-q"
  1584. #, fuzzy
  1585. msgid "Insert &date/time"
  1586. msgstr "插入日期/時間 "
  1587. #, fuzzy
  1588. msgid "&Format paragraph"
  1589. msgstr "將段落格式化 M-p"
  1590. #, fuzzy
  1591. msgid "&Sort..."
  1592. msgstr "排列順序..."
  1593. msgid "&Paste output of..."
  1594. msgstr ""
  1595. #, fuzzy
  1596. msgid "&External formatter"
  1597. msgstr "外部格式器(&X) F19"
  1598. msgid "&General... "
  1599. msgstr "一般"
  1600. #, fuzzy
  1601. msgid "Save &mode..."
  1602. msgstr "儲存模式"
  1603. #, fuzzy
  1604. msgid "Learn &keys..."
  1605. msgstr "認識按鍵..."
  1606. #, fuzzy
  1607. msgid "Syntax &highlighting..."
  1608. msgstr "依語法改變顏色"
  1609. #, fuzzy
  1610. msgid "S&yntax file"
  1611. msgstr "編輯選單檔"
  1612. #, fuzzy
  1613. msgid "&Menu file"
  1614. msgstr "編輯選單檔"
  1615. msgid "&Save setup"
  1616. msgstr "儲存設定"
  1617. #, fuzzy
  1618. msgid "&File"
  1619. msgstr "檔案"
  1620. #, fuzzy
  1621. msgid "&Edit"
  1622. msgstr "編輯"
  1623. #, fuzzy
  1624. msgid "&Search"
  1625. msgstr "搜尋"
  1626. #, fuzzy
  1627. msgid "&Command"
  1628. msgstr "指令"
  1629. #, fuzzy
  1630. msgid "For&mat"
  1631. msgstr "格式"
  1632. #, fuzzy
  1633. msgid "&Options"
  1634. msgstr " 選項 "
  1635. msgid "None"
  1636. msgstr "無"
  1637. msgid "Dynamic paragraphing"
  1638. msgstr "動態分段"
  1639. msgid "Type writer wrap"
  1640. msgstr "打字輸入換行"
  1641. msgid "Word wrap line length: "
  1642. msgstr " 輸入每行長度: "
  1643. msgid "Cursor beyond end of line"
  1644. msgstr ""
  1645. #, fuzzy
  1646. msgid "Pers&istent selection"
  1647. msgstr "反向選取 M-*"
  1648. msgid "Synta&x highlighting"
  1649. msgstr "依語法改變顏色"
  1650. msgid "Visible tabs"
  1651. msgstr ""
  1652. msgid "Visible trailing spaces"
  1653. msgstr ""
  1654. #, fuzzy
  1655. msgid "Save file &position"
  1656. msgstr " 儲存檔案 "
  1657. msgid "Confir&m before saving"
  1658. msgstr "存檔前先確認"
  1659. msgid "&Return does autoindent"
  1660. msgstr "換行時自動縮排"
  1661. msgid "Tab spacing: "
  1662. msgstr "Tab 空格 : "
  1663. msgid "Fill tabs with &spaces"
  1664. msgstr "以空白填滿移位鍵 (tab)"
  1665. msgid "&Backspace through tabs"
  1666. msgstr "Backspace 刪除移位鍵"
  1667. msgid "&Fake half tabs"
  1668. msgstr "半個 TAB"
  1669. msgid "Wrap mode"
  1670. msgstr "換行模式"
  1671. msgid " Editor options "
  1672. msgstr " 編輯器選項 "
  1673. msgid "ButtonBar|Mark"
  1674. msgstr ""
  1675. msgid "ButtonBar|Replac"
  1676. msgstr ""
  1677. msgid "ButtonBar|Copy"
  1678. msgstr ""
  1679. msgid "ButtonBar|Move"
  1680. msgstr ""
  1681. msgid "ButtonBar|Delete"
  1682. msgstr ""
  1683. msgid "ButtonBar|PullDn"
  1684. msgstr ""
  1685. msgid " Load syntax file "
  1686. msgstr " 載入語法檔案 "
  1687. #, c-format
  1688. msgid ""
  1689. " Cannot open file %s \n"
  1690. " %s "
  1691. msgstr ""
  1692. " 無法開啟檔案 %s \n"
  1693. " %s "
  1694. #, c-format
  1695. msgid " Error in file %s on line %d "
  1696. msgstr " 檔案 %s 的第 %d 行有語法錯誤 "
  1697. msgid ""
  1698. " The Commander can't change to the directory that \n"
  1699. " the subshell claims you are in. Perhaps you have \n"
  1700. " deleted your working directory, or given yourself \n"
  1701. " extra access permissions with the \"su\" command? "
  1702. msgstr ""
  1703. " Commander 無法改變目錄到您原來 \n"
  1704. " 所在的地方,您可能刪除了您的工作 \n"
  1705. " 目錄,或者因為執行過 \"su\" 指令 \n"
  1706. " 而改變了權限狀態? "
  1707. #, c-format
  1708. msgid "Type `exit' to return to the Midnight Commander"
  1709. msgstr "輸入 `exit' 就可以回到 Midnight Commander"
  1710. #, c-format
  1711. msgid " Cannot fetch a local copy of %s "
  1712. msgstr " 無法抓取一份 %s 的暫存檔 "
  1713. #, c-format
  1714. msgid ""
  1715. " Cannot create temporary command file \n"
  1716. " %s "
  1717. msgstr ""
  1718. " 無法建立指令暫存檔 \n"
  1719. " %s "
  1720. msgid " Parameter "
  1721. msgstr " 參數 "
  1722. #, fuzzy, c-format
  1723. msgid " %s%s file error"
  1724. msgstr " 檔案錯誤 "
  1725. #, fuzzy, c-format
  1726. msgid ""
  1727. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1728. "the installation failed. Please fetch a fresh copy from the Midnight "
  1729. "Commander package."
  1730. msgstr ""
  1731. "mc.ext 在 3.0 版時有更改。\n"
  1732. "似乎是安裝失敗了。\n"
  1733. "請由最新的 Midnight Commander\n"
  1734. "套件取得最新版本的檔案。"
  1735. #, fuzzy, c-format
  1736. msgid " ~/%s file error "
  1737. msgstr " 檔案錯誤 "
  1738. #, c-format
  1739. msgid ""
  1740. "The format of the ~/%s file has changed with version 3.0. You may either "
  1741. "want to copy it from %smc.ext or use that file as an example of how to write "
  1742. "it."
  1743. msgstr ""
  1744. msgid "DialogTitle|Copy"
  1745. msgstr ""
  1746. msgid "DialogTitle|Move"
  1747. msgstr ""
  1748. msgid "DialogTitle|Delete"
  1749. msgstr ""
  1750. msgid " Cannot make the hardlink "
  1751. msgstr " 無法製造此一硬連結 "
  1752. #, c-format
  1753. msgid ""
  1754. " Cannot read source link \"%s\" \n"
  1755. " %s "
  1756. msgstr ""
  1757. " 無法讀取來源連結 \"%s\" \n"
  1758. " %s "
  1759. msgid ""
  1760. " Cannot make stable symlinks across non-local filesystems: \n"
  1761. "\n"
  1762. " Option Stable Symlinks will be disabled "
  1763. msgstr ""
  1764. " 不能橫跨不同的非本地端檔案系統來建立穩定的連結:\n"
  1765. "\n"
  1766. " 選項『穩定符號連結』將不能使用 "
  1767. #, c-format
  1768. msgid ""
  1769. " Cannot create target symlink \"%s\" \n"
  1770. " %s "
  1771. msgstr ""
  1772. " 無法建立目標符號連結 \"%s\" \n"
  1773. " %s "
  1774. msgid "&Abort"
  1775. msgstr "中斷"
  1776. #, c-format
  1777. msgid ""
  1778. " Cannot overwrite directory \"%s\" \n"
  1779. " %s "
  1780. msgstr ""
  1781. " 無法蓋寫目錄 \"%s\" \n"
  1782. " %s "
  1783. #, c-format
  1784. msgid ""
  1785. " Cannot stat source file \"%s\" \n"
  1786. " %s "
  1787. msgstr ""
  1788. " 無法 stat 來源檔案 \"%s\" \n"
  1789. " %s "
  1790. #, fuzzy, c-format
  1791. msgid ""
  1792. " `%s' \n"
  1793. " and \n"
  1794. " `%s' \n"
  1795. " are the same file "
  1796. msgstr " `%s' 與 `%s' 是同一個檔案 "
  1797. #, c-format
  1798. msgid ""
  1799. " Cannot create special file \"%s\" \n"
  1800. " %s "
  1801. msgstr ""
  1802. " 無法建立特殊檔案 \"%s\" \n"
  1803. " %s "
  1804. #, c-format
  1805. msgid ""
  1806. " Cannot chown target file \"%s\" \n"
  1807. " %s "
  1808. msgstr ""
  1809. " 無法改變目標檔案 \"%s\" 的擁有狀態 \n"
  1810. " %s "
  1811. #, c-format
  1812. msgid ""
  1813. " Cannot chmod target file \"%s\" \n"
  1814. " %s "
  1815. msgstr ""
  1816. " 無法改變目標檔案 \"%s\" 的模式\n"
  1817. " %s "
  1818. #, c-format
  1819. msgid ""
  1820. " Cannot open source file \"%s\" \n"
  1821. " %s "
  1822. msgstr ""
  1823. " 無法開啟來源檔 \"%s\" \n"
  1824. " %s "
  1825. msgid " Reget failed, about to overwrite file "
  1826. msgstr " 重新抓取失敗,準備蓋寫原有檔案 "
  1827. #, c-format
  1828. msgid ""
  1829. " Cannot fstat source file \"%s\" \n"
  1830. " %s "
  1831. msgstr ""
  1832. " 無法 fstat 來源檔 \"%s\" \n"
  1833. " %s "
  1834. #, c-format
  1835. msgid ""
  1836. " Cannot create target file \"%s\" \n"
  1837. " %s "
  1838. msgstr ""
  1839. " 無法建立目標檔案 \"%s\" \n"
  1840. " %s "
  1841. #, c-format
  1842. msgid ""
  1843. " Cannot fstat target file \"%s\" \n"
  1844. " %s "
  1845. msgstr ""
  1846. " 無法 fstat 目標檔 \"%s\" \n"
  1847. " %s "
  1848. #, c-format
  1849. msgid ""
  1850. " Cannot read source file \"%s\" \n"
  1851. " %s "
  1852. msgstr ""
  1853. " 無法讀取來源檔 \"%s\" \n"
  1854. " %s "
  1855. #, c-format
  1856. msgid ""
  1857. " Cannot write target file \"%s\" \n"
  1858. " %s "
  1859. msgstr ""
  1860. " 無法寫入目標檔案 \"%s\" \n"
  1861. " %s "
  1862. msgid "(stalled)"
  1863. msgstr "(暫停了)"
  1864. #, c-format
  1865. msgid ""
  1866. " Cannot close source file \"%s\" \n"
  1867. " %s "
  1868. msgstr ""
  1869. " 無法關閉來源檔案 \"%s\" \n"
  1870. " %s "
  1871. #, c-format
  1872. msgid ""
  1873. " Cannot close target file \"%s\" \n"
  1874. " %s "
  1875. msgstr ""
  1876. " 無法關閉目標檔案 \"%s\" \n"
  1877. " %s "
  1878. msgid "Incomplete file was retrieved. Keep it?"
  1879. msgstr "抓回的檔案不完全,要保留嗎?"
  1880. msgid "&Keep"
  1881. msgstr "保留"
  1882. #, c-format
  1883. msgid ""
  1884. " Cannot stat source directory \"%s\" \n"
  1885. " %s "
  1886. msgstr ""
  1887. " 無法 stat 來源目錄 \"%s\" \n"
  1888. " %s "
  1889. #, c-format
  1890. msgid ""
  1891. " Source \"%s\" is not a directory \n"
  1892. " %s "
  1893. msgstr ""
  1894. " 給定的來源目錄 \"%s\" 並不是一個目錄 \n"
  1895. " %s "
  1896. #, c-format
  1897. msgid ""
  1898. " Cannot copy cyclic symbolic link \n"
  1899. " `%s' "
  1900. msgstr ""
  1901. " 無法複製循環的符號連結 \n"
  1902. " `%s' "
  1903. #, c-format
  1904. msgid ""
  1905. " Destination \"%s\" must be a directory \n"
  1906. " %s "
  1907. msgstr ""
  1908. " 目的 \"%s\" 必須是一個目錄 \n"
  1909. " %s "
  1910. #, c-format
  1911. msgid ""
  1912. " Cannot create target directory \"%s\" \n"
  1913. " %s "
  1914. msgstr ""
  1915. " 無法建立目標目錄 \"%s\" \n"
  1916. " %s "
  1917. #, c-format
  1918. msgid ""
  1919. " Cannot chown target directory \"%s\" \n"
  1920. " %s "
  1921. msgstr ""
  1922. " 無法改變目標目錄 \"%s\" 的擁有狀態 \n"
  1923. " %s "
  1924. #, c-format
  1925. msgid ""
  1926. " Cannot stat file \"%s\" \n"
  1927. " %s "
  1928. msgstr ""
  1929. " 無法 stat 檔案 \"%s\" \n"
  1930. " %s "
  1931. #, c-format
  1932. msgid " Cannot overwrite directory `%s' "
  1933. msgstr " 無法蓋寫目錄 `%s' "
  1934. #, c-format
  1935. msgid ""
  1936. " Cannot move file \"%s\" to \"%s\" \n"
  1937. " %s "
  1938. msgstr ""
  1939. " 無法將檔案 \"%s\" 搬移至 \"%s\" \n"
  1940. " %s "
  1941. #, c-format
  1942. msgid ""
  1943. " Cannot remove file \"%s\" \n"
  1944. " %s "
  1945. msgstr ""
  1946. " 無法移除檔案 \"%s\" \n"
  1947. " %s "
  1948. #, fuzzy, c-format
  1949. msgid ""
  1950. " `%s' \n"
  1951. " and \n"
  1952. " `%s' \n"
  1953. " are the same directory "
  1954. msgstr " `%s' 與 `%s' 是同一個檔案 "
  1955. #, c-format
  1956. msgid " Cannot overwrite directory \"%s\" %s "
  1957. msgstr " 無法蓋寫目錄 \"%s\" %s "
  1958. #, c-format
  1959. msgid " Cannot overwrite file \"%s\" %s "
  1960. msgstr " 無法蓋寫檔案 \"%s\" %s "
  1961. #, c-format
  1962. msgid ""
  1963. " Cannot move directory \"%s\" to \"%s\" \n"
  1964. " %s "
  1965. msgstr ""
  1966. " 無法把目錄 \"%s\" 搬移至 \"%s\" \n"
  1967. " %s "
  1968. #, c-format
  1969. msgid ""
  1970. " Cannot delete file \"%s\" \n"
  1971. " %s "
  1972. msgstr ""
  1973. " 無法刪除檔案 \"%s\" \n"
  1974. " %s "
  1975. #, c-format
  1976. msgid ""
  1977. " Cannot remove directory \"%s\" \n"
  1978. " %s "
  1979. msgstr ""
  1980. " 無法移除目錄 \"%s\" \n"
  1981. " %s "
  1982. #, fuzzy
  1983. msgid "Directory scanning"
  1984. msgstr "目錄途徑"
  1985. msgid "FileOperation|Copy"
  1986. msgstr ""
  1987. msgid "FileOperation|Move"
  1988. msgstr ""
  1989. msgid "FileOperation|Delete"
  1990. msgstr ""
  1991. #, no-c-format
  1992. msgid "%o %f \"%s\"%m"
  1993. msgstr "%o %f \"%s\"%m"
  1994. #, no-c-format
  1995. msgid "%o %d %f%m"
  1996. msgstr "%o %d %f%m"
  1997. msgid "files"
  1998. msgstr "檔案"
  1999. msgid "directory"
  2000. msgstr "目錄"
  2001. msgid "directories"
  2002. msgstr "目錄"
  2003. msgid "files/directories"
  2004. msgstr "檔案/目錄"
  2005. msgid " with source mask:"
  2006. msgstr " 以來源遮罩:"
  2007. msgid " to:"
  2008. msgstr " 至:"
  2009. #, c-format
  2010. msgid "%s?"
  2011. msgstr ""
  2012. msgid " Cannot operate on \"..\"! "
  2013. msgstr " 無法操作 \"..\"! "
  2014. msgid " Sorry, I could not put the job in background "
  2015. msgstr " 抱歉,無法將此一工作放到背景裡執行 "
  2016. msgid "&Retry"
  2017. msgstr "重試"
  2018. msgid ""
  2019. "\n"
  2020. " Directory not empty. \n"
  2021. " Delete it recursively? "
  2022. msgstr ""
  2023. "\n"
  2024. " 目錄裡面還有東西; \n"
  2025. " 確定要完全刪除? "
  2026. msgid ""
  2027. "\n"
  2028. " Background process: Directory not empty \n"
  2029. " Delete it recursively? "
  2030. msgstr ""
  2031. "\n"
  2032. " 背景程序: 目錄裡面還有東西, \n"
  2033. " 確定要完全刪除? "
  2034. msgid " Delete: "
  2035. msgstr " 刪除: "
  2036. msgid "Non&e"
  2037. msgstr "無"
  2038. #, c-format
  2039. msgid "%d:%02d.%02d"
  2040. msgstr ""
  2041. #, c-format
  2042. msgid "ETA %s"
  2043. msgstr ""
  2044. #, c-format
  2045. msgid "%.2f MB/s"
  2046. msgstr ""
  2047. #, c-format
  2048. msgid "%.2f KB/s"
  2049. msgstr ""
  2050. #, c-format
  2051. msgid "%ld B/s"
  2052. msgstr ""
  2053. #, c-format
  2054. msgid "Files processed: %llu of %llu"
  2055. msgstr ""
  2056. #, fuzzy, c-format
  2057. msgid "Time: %s %s (%s)"
  2058. msgstr "大小: "
  2059. #, c-format
  2060. msgid " Total: %s of %s "
  2061. msgstr ""
  2062. msgid "Source"
  2063. msgstr "來源"
  2064. msgid "Target"
  2065. msgstr "目標"
  2066. msgid "Deleting"
  2067. msgstr "刪除中"
  2068. #, fuzzy
  2069. msgid "Target file already exists!"
  2070. msgstr "目標檔案 \"%s\" 已經存在!"
  2071. #, fuzzy, c-format
  2072. msgid "Source date: %s, size %llu"
  2073. msgstr "來源檔日期: %s, 大小 %llu"
  2074. #, fuzzy, c-format
  2075. msgid "Target date: %s, size %llu"
  2076. msgstr "目標檔日期: %s, 大小 %llu"
  2077. #, fuzzy, c-format
  2078. msgid "Source date: %s, size %u"
  2079. msgstr "來源檔日期: %s, 大小 %u"
  2080. #, fuzzy, c-format
  2081. msgid "Target date: %s, size %u"
  2082. msgstr "目標檔日期: %s, 大小 %u"
  2083. msgid "If &size differs"
  2084. msgstr "若大小不同"
  2085. msgid "&Update"
  2086. msgstr "更新"
  2087. msgid "Overwrite all targets?"
  2088. msgstr "要全部蓋寫?"
  2089. msgid "&Reget"
  2090. msgstr "重抓"
  2091. msgid "A&ppend"
  2092. msgstr "追加"
  2093. msgid "Overwrite this target?"
  2094. msgstr "蓋寫?"
  2095. msgid " File exists "
  2096. msgstr " 檔案已經存在 "
  2097. msgid " Background process: File exists "
  2098. msgstr " 背景程序:檔案已經存在 "
  2099. msgid "&Background"
  2100. msgstr "背景"
  2101. msgid "&Stable Symlinks"
  2102. msgstr "穩定符號連結"
  2103. #, fuzzy
  2104. msgid "di&Ve into subdir if exists"
  2105. msgstr "進入每個存在的子目錄"
  2106. msgid "preserve &Attributes"
  2107. msgstr "保留檔案屬性"
  2108. msgid "follow &Links"
  2109. msgstr "跟隨連結"
  2110. msgid "to:"
  2111. msgstr "到:"
  2112. #, fuzzy, c-format
  2113. msgid "Invalid source pattern `%s'"
  2114. msgstr ""
  2115. "無效的來源樣式 `%s' \n"
  2116. " %s "
  2117. msgid "&Suspend"
  2118. msgstr "暫停"
  2119. msgid "Con&tinue"
  2120. msgstr "繼續"
  2121. msgid "&Chdir"
  2122. msgstr "改變目錄"
  2123. msgid "&Again"
  2124. msgstr "再一次"
  2125. msgid "Pane&lize"
  2126. msgstr "面板化"
  2127. msgid "&View - F3"
  2128. msgstr "檢視 - F3"
  2129. msgid "&Edit - F4"
  2130. msgstr "編輯 - F4"
  2131. #, c-format
  2132. msgid "Found: %ld"
  2133. msgstr ""
  2134. #, fuzzy
  2135. msgid " Malformed regular expression "
  2136. msgstr " 變形的正規運算式 "
  2137. #, fuzzy
  2138. msgid "Cas&e sensitive"
  2139. msgstr "大小寫不同"
  2140. msgid "&Find recursively"
  2141. msgstr ""
  2142. msgid "S&kip hidden"
  2143. msgstr ""
  2144. msgid "&All charsets"
  2145. msgstr ""
  2146. #, fuzzy
  2147. msgid "Case sens&itive"
  2148. msgstr "大小寫不同"
  2149. #, fuzzy
  2150. msgid "Re&gular expression"
  2151. msgstr " 正規表示式 "
  2152. msgid "Fir&st hit"
  2153. msgstr ""
  2154. msgid "All cha&rsets"
  2155. msgstr ""
  2156. msgid "&Tree"
  2157. msgstr "樹狀"
  2158. msgid "Find File"
  2159. msgstr "尋找檔案"
  2160. #, fuzzy
  2161. msgid "Content:"
  2162. msgstr "內容:"
  2163. #, fuzzy
  2164. msgid "File name:"
  2165. msgstr "檔名:"
  2166. msgid "Start at:"
  2167. msgstr "開始於:"
  2168. #, c-format
  2169. msgid "Grepping in %s"
  2170. msgstr "在 %s 裡搜尋字串"
  2171. msgid "Finished"
  2172. msgstr "完成"
  2173. #, c-format
  2174. msgid "Searching %s"
  2175. msgstr "搜尋 %s"
  2176. msgid "Searching"
  2177. msgstr "搜尋中"
  2178. msgid " Help file format error\n"
  2179. msgstr " 說明檔格式錯誤\n"
  2180. msgid " Internal bug: Double start of link area "
  2181. msgstr " 內部臭蟲: 重覆的連結區域開頭 "
  2182. #, c-format
  2183. msgid " Cannot find node %s in help file "
  2184. msgstr " 無法在說明檔裡找到節點 %s "
  2185. msgid "Help"
  2186. msgstr "說明"
  2187. msgid "ButtonBar|Index"
  2188. msgstr ""
  2189. msgid "ButtonBar|Prev"
  2190. msgstr ""
  2191. msgid "&Move"
  2192. msgstr "移動"
  2193. msgid "&Remove"
  2194. msgstr "移除"
  2195. msgid "&Append"
  2196. msgstr "增加"
  2197. msgid "&Insert"
  2198. msgstr "插入"
  2199. msgid "New &Entry"
  2200. msgstr "新增項目"
  2201. msgid "New &Group"
  2202. msgstr "新增群組"
  2203. msgid "&Up"
  2204. msgstr "往上"
  2205. msgid "&Add current"
  2206. msgstr "加入目前的"
  2207. #, fuzzy
  2208. msgid "&Refresh"
  2209. msgstr "反向"
  2210. msgid "Fr&ee VFSs now"
  2211. msgstr "立刻釋放虛擬檔案系統"
  2212. msgid "Change &To"
  2213. msgstr "更換至"
  2214. msgid "Subgroup - press ENTER to see list"
  2215. msgstr "Subgroup - 按 ENTER 以檢視列表"
  2216. msgid "Active VFS directories"
  2217. msgstr "啟動虛擬檔案系統目錄"
  2218. msgid "Directory hotlist"
  2219. msgstr "熱門目錄列表"
  2220. msgid " Directory path "
  2221. msgstr " 目錄途徑 "
  2222. msgid " Directory label "
  2223. msgstr " 目錄標籤 "
  2224. #, c-format
  2225. msgid "Moving %s"
  2226. msgstr "正在移動 %s"
  2227. msgid "New hotlist entry"
  2228. msgstr "新的熱門列表項目"
  2229. msgid "Directory label"
  2230. msgstr "目錄標籤"
  2231. msgid "Directory path"
  2232. msgstr "目錄途徑"
  2233. msgid " New hotlist group "
  2234. msgstr " 新的熱門列表群組 "
  2235. msgid "Name of new group"
  2236. msgstr "新群組的名稱"
  2237. #, c-format
  2238. msgid "Label for \"%s\":"
  2239. msgstr " \"%s\" 的標籤:"
  2240. msgid " Add to hotlist "
  2241. msgstr " 新增至熱門列表 "
  2242. msgid " Remove: "
  2243. msgstr " 移除: "
  2244. msgid ""
  2245. "\n"
  2246. " Are you sure you want to remove this entry?"
  2247. msgstr ""
  2248. msgid ""
  2249. "\n"
  2250. " Group not empty.\n"
  2251. " Remove it?"
  2252. msgstr ""
  2253. "\n"
  2254. " 群組還有內容,\n"
  2255. " 確定要移除?"
  2256. msgid " Top level group "
  2257. msgstr " 最上層群組 "
  2258. msgid " Hotlist Load "
  2259. msgstr " 載入熱門列表 "
  2260. #, fuzzy, c-format
  2261. msgid ""
  2262. "MC was unable to write ~/%s file, your old hotlist entries were not deleted"
  2263. msgstr "檔案,您舊有的熱門列表沒有刪除"
  2264. #, c-format
  2265. msgid "Midnight Commander %s"
  2266. msgstr "Midnight Commander %s"
  2267. #, c-format
  2268. msgid "File: %s"
  2269. msgstr "檔案: %s"
  2270. #, fuzzy, c-format
  2271. msgid "Free nodes: %d (%d%%) of %d"
  2272. msgstr "空節點 %d (%d%%) 之 %d"
  2273. msgid "No node information"
  2274. msgstr "沒有節點資訊"
  2275. #, fuzzy, c-format
  2276. msgid "Free space: %s (%d%%) of %s"
  2277. msgstr "空節點 %d (%d%%) 之 %d"
  2278. msgid "No space information"
  2279. msgstr "沒有空間資訊"
  2280. #, c-format
  2281. msgid "Type: %s "
  2282. msgstr "類型: %s "
  2283. msgid "non-local vfs"
  2284. msgstr "非本地的虛擬檔案系統"
  2285. #, c-format
  2286. msgid "Device: %s"
  2287. msgstr "裝置: %s"
  2288. #, c-format
  2289. msgid "Filesystem: %s"
  2290. msgstr "檔案系統: %s"
  2291. #, c-format
  2292. msgid "Accessed: %s"
  2293. msgstr "存取: %s"
  2294. #, c-format
  2295. msgid "Modified: %s"
  2296. msgstr "更動: %s"
  2297. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2298. #, fuzzy, c-format
  2299. msgid "Changed: %s"
  2300. msgstr "更換至"
  2301. #, c-format
  2302. msgid "Dev. type: major %lu, minor %lu"
  2303. msgstr ""
  2304. #, fuzzy, c-format
  2305. msgid "Size: %s"
  2306. msgstr "大小: "
  2307. #, fuzzy, c-format
  2308. msgid " (%ld block)"
  2309. msgid_plural " (%ld blocks)"
  2310. msgstr[0] " (%ld 個區塊)"
  2311. msgstr[1] " (%ld 個區塊)"
  2312. #, c-format
  2313. msgid "Owner: %s/%s"
  2314. msgstr "擁有者: %s/%s"
  2315. #, c-format
  2316. msgid "Links: %d"
  2317. msgstr "連結: %d"
  2318. #, c-format
  2319. msgid "Mode: %s (%04o)"
  2320. msgstr "模式: %s (%04o)"
  2321. #, c-format
  2322. msgid "Location: %Xh:%Xh"
  2323. msgstr "位置: %Xh:%Xh"
  2324. msgid "&Vertical"
  2325. msgstr "垂直"
  2326. msgid "&Horizontal"
  2327. msgstr "水平"
  2328. msgid "show free sp&Ace"
  2329. msgstr ""
  2330. #, fuzzy
  2331. msgid "&Xterm window title"
  2332. msgstr "xterm 提示列"
  2333. msgid "h&Intbar visible"
  2334. msgstr "顯示提示列"
  2335. msgid "&Keybar visible"
  2336. msgstr "顯示鍵盤列"
  2337. msgid "command &Prompt"
  2338. msgstr "指令提示符號"
  2339. msgid "show &Mini status"
  2340. msgstr "顯示迷你狀態"
  2341. msgid "menu&Bar visible"
  2342. msgstr "顯示選單列"
  2343. msgid "&Equal split"
  2344. msgstr "等量分割"
  2345. msgid "pe&Rmissions"
  2346. msgstr "權限"
  2347. msgid "&File types"
  2348. msgstr "檔案類型"
  2349. msgid " Panel split "
  2350. msgstr " 分割面板 "
  2351. msgid " Highlight... "
  2352. msgstr " 選取... "
  2353. msgid " Other options "
  2354. msgstr " 其它選項 "
  2355. msgid "output lines"
  2356. msgstr "輸出行數"
  2357. msgid "Layout"
  2358. msgstr "樣式"
  2359. msgid "Learn keys"
  2360. msgstr "認識按鍵"
  2361. msgid " Teach me a key "
  2362. msgstr " 教我認識一個按鍵 "
  2363. #, c-format
  2364. msgid ""
  2365. "Please press the %s\n"
  2366. "and then wait until this message disappears.\n"
  2367. "\n"
  2368. "Then, press it again to see if OK appears\n"
  2369. "next to its button.\n"
  2370. "\n"
  2371. "If you want to escape, press a single Escape key\n"
  2372. "and wait as well."
  2373. msgstr ""
  2374. "請按下 %s\n"
  2375. "然後等到此一訊息消失。\n"
  2376. "\n"
  2377. "接著再按一次,看看在按鈕旁邊是不是有\n"
  2378. "顯示 \"好\"。\n"
  2379. "\n"
  2380. "要離開的話,按一下 Esc 鍵,然後等待\n"
  2381. "一下子就可以了。"
  2382. msgid " Cannot accept this key "
  2383. msgstr " 無法讀取這個按鍵 "
  2384. #, c-format
  2385. msgid " You have entered \"%s\""
  2386. msgstr " 您剛剛按下了 \"%s\""
  2387. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2388. msgid "OK"
  2389. msgstr "好"
  2390. msgid ""
  2391. "It seems that all your keys already\n"
  2392. "work fine. That's great."
  2393. msgstr ""
  2394. "看起來您所有的按鍵都\n"
  2395. "正常無誤,很好。"
  2396. msgid "&Discard"
  2397. msgstr "忽略"
  2398. msgid ""
  2399. "Great! You have a complete terminal database!\n"
  2400. "All your keys work well."
  2401. msgstr ""
  2402. "太好了!您的終端機資料庫很完整! \n"
  2403. "所有的按鍵都可以正常使用。"
  2404. msgid "Press all the keys mentioned here. After you have done it, check"
  2405. msgstr "一個個按下這邊顯示的這些按鍵,在您按完以後,檢查一下"
  2406. msgid "which keys are not marked with OK. Press space on the missing"
  2407. msgstr "哪個按鍵沒有標上 \"好\",在這些地方按一下空白鍵,或者"
  2408. msgid "key, or click with the mouse to define it. Move around with Tab."
  2409. msgstr "用滑鼠控制來設定這些按鍵。用 Tab 鍵可以在選項之間移動。"
  2410. msgid " The Midnight Commander "
  2411. msgstr " The Midnight Commander "
  2412. msgid " Do you really want to quit the Midnight Commander? "
  2413. msgstr " 你確定要離開本程式?"
  2414. msgid "&Listing mode..."
  2415. msgstr "列出模式中..."
  2416. #, fuzzy
  2417. msgid "&Quick view"
  2418. msgstr "快速存檔"
  2419. #, fuzzy
  2420. msgid "&Info"
  2421. msgstr "節點"
  2422. msgid "&Sort order..."
  2423. msgstr "排列順序..."
  2424. msgid "&Filter..."
  2425. msgstr "過濾器..."
  2426. #, fuzzy
  2427. msgid "&Encoding..."
  2428. msgstr "排序... M-t"
  2429. msgid "&Network link..."
  2430. msgstr "網路連結..."
  2431. msgid "FT&P link..."
  2432. msgstr "檔案傳輸連結..."
  2433. #, fuzzy
  2434. msgid "S&hell link..."
  2435. msgstr "SMB 連結..."
  2436. msgid "SM&B link..."
  2437. msgstr "SMB 連結..."
  2438. #, fuzzy
  2439. msgid "&Rescan"
  2440. msgstr "重新讀取"
  2441. #, fuzzy
  2442. msgid "&View"
  2443. msgstr "檢視"
  2444. #, fuzzy
  2445. msgid "Vie&w file..."
  2446. msgstr " 檢視檔案 "
  2447. #, fuzzy
  2448. msgid "&Filtered view"
  2449. msgstr " 選擇性的顯示 "
  2450. #, fuzzy
  2451. msgid "&Copy"
  2452. msgstr "複製"
  2453. msgid "C&hmod"
  2454. msgstr ""
  2455. #, fuzzy
  2456. msgid "&Link"
  2457. msgstr "連結"
  2458. #, fuzzy
  2459. msgid "&SymLink"
  2460. msgstr "連結"
  2461. #, fuzzy
  2462. msgid "Edit s&ymlink"
  2463. msgstr " 編輯符號連結 "
  2464. msgid "Ch&own"
  2465. msgstr ""
  2466. #, fuzzy
  2467. msgid "&Advanced chown"
  2468. msgstr "進階的改變擁有狀態 "
  2469. #, fuzzy
  2470. msgid "&Rename/Move"
  2471. msgstr "移除"
  2472. #, fuzzy
  2473. msgid "&Mkdir"
  2474. msgstr "新目錄"
  2475. #, fuzzy
  2476. msgid "&Quick cd"
  2477. msgstr "快速改變目錄"
  2478. #, fuzzy
  2479. msgid "Select &group"
  2480. msgstr "設定群組"
  2481. #, fuzzy
  2482. msgid "U&nselect group"
  2483. msgstr " 取消選取 "
  2484. #, fuzzy
  2485. msgid "Reverse selec&tion"
  2486. msgstr "反向選取 M-*"
  2487. #, fuzzy
  2488. msgid "E&xit"
  2489. msgstr "編輯"
  2490. #, fuzzy
  2491. msgid "&User menu"
  2492. msgstr " 使用者選單 "
  2493. msgid "&Directory tree"
  2494. msgstr "目錄樹"
  2495. #, fuzzy
  2496. msgid "&Find file"
  2497. msgstr "尋找檔案"
  2498. msgid "S&wap panels"
  2499. msgstr ""
  2500. #, fuzzy
  2501. msgid "Switch &panels on/off"
  2502. msgstr "切換面板開關 C-o"
  2503. #, fuzzy
  2504. msgid "&Compare directories"
  2505. msgstr " 比較目錄 "
  2506. #, fuzzy
  2507. msgid "&View diff files"
  2508. msgstr " 檢視檔案 "
  2509. #, fuzzy
  2510. msgid "E&xternal panelize"
  2511. msgstr "外部面板化"
  2512. #, fuzzy
  2513. msgid "Show directory s&izes"
  2514. msgstr "顯示目錄大小"
  2515. #, fuzzy
  2516. msgid "Command &history"
  2517. msgstr "指令歷史紀錄"
  2518. #, fuzzy
  2519. msgid "Di&rectory hotlist"
  2520. msgstr "熱門目錄列表"
  2521. #, fuzzy
  2522. msgid "&Active VFS list"
  2523. msgstr "啟動的虛擬檔案系統列表 C-x a"
  2524. #, fuzzy
  2525. msgid "&Background jobs"
  2526. msgstr "背景工作"
  2527. msgid "&Undelete files (ext2fs only)"
  2528. msgstr "復原檔案 (只能用在 ext2fs 上面)"
  2529. msgid "&Listing format edit"
  2530. msgstr "編輯列表格式"
  2531. msgid "Edit &extension file"
  2532. msgstr "編輯擴充檔"
  2533. msgid "Edit &menu file"
  2534. msgstr "編輯選單檔"
  2535. msgid "Edit hi&ghlighting group file"
  2536. msgstr ""
  2537. msgid "&Configuration..."
  2538. msgstr "設定..."
  2539. msgid "&Layout..."
  2540. msgstr "樣式"
  2541. #, fuzzy
  2542. msgid "C&onfirmation..."
  2543. msgstr "確認..."
  2544. msgid "&Display bits..."
  2545. msgstr "顯示位元數..."
  2546. msgid "&Virtual FS..."
  2547. msgstr "虛擬檔案系統..."
  2548. #, fuzzy
  2549. msgid "&Above"
  2550. msgstr " 上方 "
  2551. #, fuzzy
  2552. msgid "&Left"
  2553. msgstr " 左方 "
  2554. #, fuzzy
  2555. msgid "&Below"
  2556. msgstr " 下方 "
  2557. #, fuzzy
  2558. msgid "&Right"
  2559. msgstr " 右方 "
  2560. msgid " Information "
  2561. msgstr " 訊息 "
  2562. msgid ""
  2563. " Using the fast reload option may not reflect the exact \n"
  2564. " directory contents. In this case you'll need to do a \n"
  2565. " manual reload of the directory. See the man page for \n"
  2566. " the details. "
  2567. msgstr ""
  2568. " 使用快速重載功能的話,有可能會造成 \n"
  2569. " 無法正確顯示目錄的內容,這時候您需要 \n"
  2570. " 自行手動重新載入目錄內容,請參考 man \n"
  2571. " page 以獲得詳細資訊。 "
  2572. msgid "ButtonBar|Menu"
  2573. msgstr ""
  2574. msgid "ButtonBar|View"
  2575. msgstr ""
  2576. msgid "ButtonBar|RenMov"
  2577. msgstr ""
  2578. msgid "ButtonBar|Mkdir"
  2579. msgstr ""
  2580. msgid "The TERM environment variable is unset!\n"
  2581. msgstr "環境變數 TERM 並未設定! \n"
  2582. #, fuzzy, c-format
  2583. msgid "Cannot create %s directory"
  2584. msgstr "無法改變目錄"
  2585. msgid "safe de&Lete"
  2586. msgstr "安全的刪除 (&L)"
  2587. msgid "cd follows lin&Ks"
  2588. msgstr "變更目錄時跟隨連結 (&K)"
  2589. msgid "L&ynx-like motion"
  2590. msgstr "類似 lynx 的移動方式"
  2591. msgid "rotatin&G dash"
  2592. msgstr "旋轉的斜線"
  2593. msgid "co&Mplete: show all"
  2594. msgstr "完成: 顯示全部"
  2595. msgid "&Use internal view"
  2596. msgstr "使用內部檢視"
  2597. msgid "use internal ed&It"
  2598. msgstr "使用內部編輯"
  2599. msgid "auto m&Enus"
  2600. msgstr "自動選單"
  2601. msgid "&Auto save setup"
  2602. msgstr "自動儲存設定"
  2603. msgid "shell &Patterns"
  2604. msgstr "系統殼萬用字元"
  2605. msgid "Compute &Totals"
  2606. msgstr "計算總值"
  2607. msgid "&Verbose operation"
  2608. msgstr "詳細的操作過程"
  2609. msgid "Mkdir autoname"
  2610. msgstr ""
  2611. msgid "&Fast dir reload"
  2612. msgstr "快速目錄重載"
  2613. msgid "mi&X all files"
  2614. msgstr "所有檔案混合顯示"
  2615. msgid "&Drop down menus"
  2616. msgstr "下拉選單"
  2617. msgid "ma&Rk moves down"
  2618. msgstr "標示下移"
  2619. msgid "show &Hidden files"
  2620. msgstr "顯示隱藏檔"
  2621. msgid "show &Backup files"
  2622. msgstr "顯示備份檔"
  2623. msgid "Use SI si&ze units"
  2624. msgstr ""
  2625. msgid "&Never"
  2626. msgstr "從不"
  2627. msgid "on dumb &Terminals"
  2628. msgstr "於笨蛋終端機上"
  2629. msgid "Alwa&ys"
  2630. msgstr "永遠"
  2631. msgid " Panel options "
  2632. msgstr " 面板選項 "
  2633. msgid " Pause after run... "
  2634. msgstr " 執行後暫停... "
  2635. msgid "Configure options"
  2636. msgstr "設定選項"
  2637. msgid "&Add new"
  2638. msgstr "新增"
  2639. msgid "External panelize"
  2640. msgstr "外部面板化"
  2641. msgid "Command"
  2642. msgstr "指令"
  2643. msgid "Other command"
  2644. msgstr "其它指令"
  2645. msgid " Add to external panelize "
  2646. msgstr " 加到外部面板化中 "
  2647. msgid " Enter command label: "
  2648. msgstr " 請輸入指令標籤: "
  2649. msgid " Cannot run external panelize in a non-local directory "
  2650. msgstr " 登入在非本地端檔案系統時無法執行外部面板化 "
  2651. msgid "Find rejects after patching"
  2652. msgstr "在補強後找出被拒絕的補強檔 (patch)"
  2653. msgid "Find *.orig after patching"
  2654. msgstr "在補強後找出 *.orig"
  2655. msgid "Find SUID and SGID programs"
  2656. msgstr "找出 SUID 與 SGID 的程式"
  2657. msgid "Cannot invoke command."
  2658. msgstr "無法呼叫指令。"
  2659. msgid "Pipe close failed"
  2660. msgstr "管線關閉失敗"
  2661. msgid "[dev]"
  2662. msgstr ""
  2663. msgid "UP--DIR"
  2664. msgstr "上層目錄"
  2665. msgid "SYMLINK"
  2666. msgstr ""
  2667. msgid "SUB-DIR"
  2668. msgstr "子目錄"
  2669. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2670. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2671. msgid "sort|u"
  2672. msgstr ""
  2673. msgid "&Unsorted"
  2674. msgstr "未排序的"
  2675. #. TRANSLATORS: one single character to represent 'name' sort mode
  2676. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2677. msgid "sort|n"
  2678. msgstr ""
  2679. msgid "&Name"
  2680. msgstr "名稱"
  2681. #. TRANSLATORS: one single character to represent 'version' sort mode
  2682. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2683. #, fuzzy
  2684. msgid "sort|v"
  2685. msgstr "未排序的"
  2686. #, fuzzy
  2687. msgid "&Version"
  2688. msgstr "權限"
  2689. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2690. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2691. #, fuzzy
  2692. msgid "sort|e"
  2693. msgstr "未排序的"
  2694. msgid "&Extension"
  2695. msgstr "擴充"
  2696. #. TRANSLATORS: one single character to represent 'size' sort mode
  2697. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2698. msgid "sort|s"
  2699. msgstr ""
  2700. msgid "&Size"
  2701. msgstr "大小"
  2702. #, fuzzy
  2703. msgid "Block Size"
  2704. msgstr "大小 "
  2705. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2706. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2707. msgid "sort|m"
  2708. msgstr ""
  2709. msgid "&Modify time"
  2710. msgstr "更動時間"
  2711. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2712. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2713. msgid "sort|a"
  2714. msgstr ""
  2715. msgid "&Access time"
  2716. msgstr "存取時間"
  2717. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2718. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2719. msgid "sort|h"
  2720. msgstr ""
  2721. msgid "C&Hange time"
  2722. msgstr "改變時間"
  2723. msgid "Permission"
  2724. msgstr "權限"
  2725. msgid "Perm"
  2726. msgstr "權限"
  2727. msgid "Nl"
  2728. msgstr "Nl"
  2729. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2730. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2731. msgid "sort|i"
  2732. msgstr ""
  2733. msgid "&Inode"
  2734. msgstr "節點"
  2735. msgid "UID"
  2736. msgstr "UID"
  2737. msgid "GID"
  2738. msgstr "GID"
  2739. msgid "Owner"
  2740. msgstr "擁有者"
  2741. msgid "Group"
  2742. msgstr "群組"
  2743. msgid "<readlink failed>"
  2744. msgstr "<連結讀取錯誤>"
  2745. #, fuzzy, c-format
  2746. msgid "%s byte"
  2747. msgid_plural "%s bytes"
  2748. msgstr[0] "%s 位元組"
  2749. msgstr[1] "%s 位元組"
  2750. #, fuzzy, c-format
  2751. msgid "%s in %d file"
  2752. msgid_plural "%s in %d files"
  2753. msgstr[0] "%s 位元組,%d 個檔案"
  2754. msgstr[1] "%s 位元組,%d 個檔案"
  2755. #, fuzzy
  2756. msgid "Unknown tag on display format: "
  2757. msgstr "不明的顯示格式標籤: "
  2758. msgid "User supplied format looks invalid, reverting to default."
  2759. msgstr "使用者提供的格式似乎是錯誤的, 回復到預設值."
  2760. msgid " Do you really want to execute? "
  2761. msgstr "您確定要執行? "
  2762. #, fuzzy
  2763. msgid "Choose codepage"
  2764. msgstr " 選擇輸入頁碼 "
  2765. msgid "- < No translation >"
  2766. msgstr "- < 不轉換 >"
  2767. msgid "%b %e %Y"
  2768. msgstr "%b %e %Y"
  2769. msgid "%b %e %H:%M"
  2770. msgstr "%b %e %H:%M"
  2771. #, fuzzy, c-format
  2772. msgid ""
  2773. "Cannot save file %s:\n"
  2774. "%s"
  2775. msgstr " 試著存檔時發生錯誤。 "
  2776. msgid ""
  2777. "GNU Midnight Commander is already\n"
  2778. "running on this terminal.\n"
  2779. "Subshell support will be disabled."
  2780. msgstr ""
  2781. #, c-format
  2782. msgid "Cannot open named pipe %s\n"
  2783. msgstr "無法開啟具名管線 %s\n"
  2784. msgid " The shell is still active. Quit anyway? "
  2785. msgstr " 系統殼仍未結束,無論如何都要結束? "
  2786. #, c-format
  2787. msgid "Warning: Cannot change to %s.\n"
  2788. msgstr "警告: 無法改變到 %s.\n"
  2789. msgid "With builtin Editor\n"
  2790. msgstr "使用內建編輯器\n"
  2791. msgid "Using system-installed S-Lang library"
  2792. msgstr "使用已安裝的系統 S-Lang 函式庫"
  2793. msgid "with terminfo database"
  2794. msgstr "使用 terminfo 資料庫"
  2795. msgid "Using the ncurses library"
  2796. msgstr "使用 ncurses 函式庫"
  2797. #, fuzzy
  2798. msgid "Using the ncursesw library"
  2799. msgstr "使用 ncurses 函式庫"
  2800. msgid "With optional subshell support"
  2801. msgstr "選擇性支援 subshell"
  2802. msgid "With subshell support as default"
  2803. msgstr "預設支援 subshell"
  2804. msgid "With support for background operations\n"
  2805. msgstr "支援背景執行程序\n"
  2806. msgid "With mouse support on xterm and Linux console\n"
  2807. msgstr "在 xterm 與主控台支援滑鼠\n"
  2808. msgid "With mouse support on xterm\n"
  2809. msgstr "在 xterm 支援滑鼠\n"
  2810. #, fuzzy
  2811. msgid "With support for X11 events\n"
  2812. msgstr "支援背景執行程序\n"
  2813. msgid "With internationalization support\n"
  2814. msgstr ""
  2815. msgid "With multiple codepages support\n"
  2816. msgstr "使用多頁碼支援\n"
  2817. #, fuzzy, c-format
  2818. msgid "Virtual File Systems:"
  2819. msgstr "虛擬檔案系統: "
  2820. #, c-format
  2821. msgid "Data types:"
  2822. msgstr ""
  2823. #, c-format
  2824. msgid ""
  2825. "Cannot open the %s file for writing:\n"
  2826. "%s\n"
  2827. msgstr ""
  2828. "無法開啟檔案 %s 來寫入資料:\n"
  2829. "%s\n"
  2830. #, c-format
  2831. msgid "Copy \"%s\" directory to:"
  2832. msgstr "複製目錄 \"%s\" 至:"
  2833. #, c-format
  2834. msgid "Move \"%s\" directory to:"
  2835. msgstr "搬移目錄 \"%s\" 至:"
  2836. #, c-format
  2837. msgid ""
  2838. " Cannot stat the destination \n"
  2839. " %s "
  2840. msgstr ""
  2841. " 無法 stat 目的地 \n"
  2842. " %s "
  2843. #, c-format
  2844. msgid " Delete %s? "
  2845. msgstr " 刪除 %s? "
  2846. msgid "ButtonBar|Static"
  2847. msgstr ""
  2848. msgid "ButtonBar|Dynamc"
  2849. msgstr ""
  2850. msgid "ButtonBar|Rescan"
  2851. msgstr ""
  2852. msgid "ButtonBar|Forget"
  2853. msgstr ""
  2854. msgid "ButtonBar|Rmdir"
  2855. msgstr ""
  2856. #, c-format
  2857. msgid ""
  2858. "Cannot write to the %s file:\n"
  2859. "%s\n"
  2860. msgstr ""
  2861. "無法寫入到檔案 %s :\n"
  2862. "%s\n"
  2863. msgid " Format error on file Extensions File "
  2864. msgstr "現存的檔案中有格式錯誤"
  2865. #, c-format
  2866. msgid " The %%var macro has no default "
  2867. msgstr " %%var 巨集沒有預設值 "
  2868. #, c-format
  2869. msgid " The %%var macro has no variable "
  2870. msgstr " %%var 巨集沒有變數 "
  2871. msgid " Debug "
  2872. msgstr " 除錯 "
  2873. msgid " ERROR: "
  2874. msgstr " 錯誤: "
  2875. msgid " True: "
  2876. msgstr " 真的: "
  2877. msgid " False: "
  2878. msgstr " 假的: "
  2879. msgid " Warning -- ignoring file "
  2880. msgstr " 警告 -- 忽略檔案 "
  2881. #, c-format
  2882. msgid ""
  2883. "File %s is not owned by root or you or is world writable.\n"
  2884. "Using it may compromise your security"
  2885. msgstr ""
  2886. "檔案 %s 的擁有者並不是 root 或您,或者檔案允許任何人寫入;\n"
  2887. "使用這個檔案對您系統的安全造成危害。"
  2888. #, c-format
  2889. msgid " No suitable entries found in %s "
  2890. msgstr "沒有在 %s 中找到符合的項目"
  2891. msgid " User menu "
  2892. msgstr " 使用者選單 "
  2893. #, fuzzy
  2894. msgid "Invalid value"
  2895. msgstr " 密碼無效 "
  2896. #, fuzzy
  2897. msgid " Cannot spawn child process "
  2898. msgstr " 無法產生子程式 "
  2899. msgid "Empty output from child filter"
  2900. msgstr ""
  2901. msgid "&Line number (decimal)"
  2902. msgstr ""
  2903. msgid "Pe&rcents"
  2904. msgstr ""
  2905. msgid "&Decimal offset"
  2906. msgstr ""
  2907. msgid "He&xadecimal offset"
  2908. msgstr ""
  2909. msgid "Goto"
  2910. msgstr "移至"
  2911. msgid "ButtonBar|Ascii"
  2912. msgstr ""
  2913. msgid "ButtonBar|HxSrch"
  2914. msgstr ""
  2915. msgid "ButtonBar|UnWrap"
  2916. msgstr ""
  2917. msgid "ButtonBar|Wrap"
  2918. msgstr ""
  2919. msgid "ButtonBar|Hex"
  2920. msgstr ""
  2921. msgid "ButtonBar|Goto"
  2922. msgstr ""
  2923. msgid "ButtonBar|Raw"
  2924. msgstr ""
  2925. msgid "ButtonBar|Parse"
  2926. msgstr ""
  2927. msgid "ButtonBar|Unform"
  2928. msgstr ""
  2929. msgid "ButtonBar|Format"
  2930. msgstr ""
  2931. #, c-format
  2932. msgid ""
  2933. " Error while closing the file: \n"
  2934. " %s \n"
  2935. " Data may have been written or not. "
  2936. msgstr ""
  2937. #, fuzzy, c-format
  2938. msgid ""
  2939. " Cannot save file: \n"
  2940. " %s "
  2941. msgstr " 試著存檔時發生錯誤。 "
  2942. #, c-format
  2943. msgid ""
  2944. " Cannot open \"%s\"\n"
  2945. " %s "
  2946. msgstr ""
  2947. " 無法開啟檔案 \"%s\" \n"
  2948. " %s "
  2949. #, c-format
  2950. msgid ""
  2951. " Cannot stat \"%s\"\n"
  2952. " %s "
  2953. msgstr ""
  2954. " 無法 stat %s \n"
  2955. " %s "
  2956. msgid " Cannot view: not a regular file "
  2957. msgstr " 無法檢視:並非一常規檔案 "
  2958. msgid "Seeking to search result"
  2959. msgstr ""
  2960. #, fuzzy
  2961. msgid "Search done"
  2962. msgstr "搜尋"
  2963. msgid "Continue from begining?"
  2964. msgstr ""
  2965. msgid " History "
  2966. msgstr " 歷史紀錄 "
  2967. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  2968. msgid "DialogTitle|History cleanup"
  2969. msgstr ""
  2970. msgid "Do you want clean this history?"
  2971. msgstr ""
  2972. msgid "Background process:"
  2973. msgstr "背景程序:"
  2974. #, fuzzy
  2975. #~ msgid "Status: %s"
  2976. #~ msgstr "建立: %s"
  2977. #~ msgid "File"
  2978. #~ msgstr "檔案"
  2979. #~ msgid "Count"
  2980. #~ msgstr "計數"
  2981. #~ msgid "Bytes"
  2982. #~ msgstr "位元組"
  2983. #~ msgid " confirm &Exit "
  2984. #~ msgstr " 確定離開 "
  2985. #~ msgid " confirm e&Xecute "
  2986. #~ msgstr " 確定執行 "
  2987. #~ msgid " confirm &Delete "
  2988. #~ msgstr " 確定刪除 "
  2989. #, fuzzy
  2990. #~ msgid ""
  2991. #~ " The current line number is %lld.\n"
  2992. #~ " Enter the new line number:"
  2993. #~ msgstr ""
  2994. #~ " 目前行號是 %d,\n"
  2995. #~ " 請輸入新行號:"
  2996. #, fuzzy
  2997. #~ msgid ""
  2998. #~ " The current address is %s.\n"
  2999. #~ " Enter the new address:"
  3000. #~ msgstr ""
  3001. #~ " 目前行號是 %d,\n"
  3002. #~ " 請輸入新行號:"
  3003. #~ msgid " Goto Address "
  3004. #~ msgstr " 跳至某行 "
  3005. #~ msgid "File: %s"
  3006. #~ msgstr "檔案: %s"
  3007. #~ msgid "Offset 0x%08lx"
  3008. #~ msgstr "偏移值 0x%08lx"
  3009. #~ msgid "%s bytes"
  3010. #~ msgstr "%s 位元組"
  3011. #, fuzzy
  3012. #~ msgid ">= %s bytes"
  3013. #~ msgstr "%s 位元組"
  3014. #~ msgid "File: None"
  3015. #~ msgstr "檔案: 無"
  3016. #~ msgid "Do backups -->"
  3017. #~ msgstr "進行備份 -->"
  3018. #~ msgid "Extension:"
  3019. #~ msgstr "擴充:"
  3020. #~ msgid "&New C-n"
  3021. #~ msgstr "開新檔案 C-n"
  3022. #~ msgid "&Save F2"
  3023. #~ msgstr "存檔 F2"
  3024. #~ msgid "Save &as... F12"
  3025. #~ msgstr "另存新檔... F12"
  3026. #~ msgid "A&bout... "
  3027. #~ msgstr "關於... "
  3028. #~ msgid "&Quit F10"
  3029. #~ msgstr "結束 F10"
  3030. #~ msgid "&New C-x k"
  3031. #~ msgstr "新的 C-x k"
  3032. #~ msgid "Copy to &file... "
  3033. #~ msgstr "複製到檔案... "
  3034. #, fuzzy
  3035. #~ msgid "&Toggle mark F3"
  3036. #~ msgstr "切換標示區域 F3"
  3037. #, fuzzy
  3038. #~ msgid "Mar&k columns S-F3"
  3039. #~ msgstr "選取欄 S-F3"
  3040. #, fuzzy
  3041. #~ msgid "&Copy F5"
  3042. #~ msgstr "複製 F5"
  3043. #, fuzzy
  3044. #~ msgid "&Move F6"
  3045. #~ msgstr "搬移 F6"
  3046. #, fuzzy
  3047. #~ msgid "&Delete F8"
  3048. #~ msgstr "刪除 F8"
  3049. #, fuzzy
  3050. #~ msgid "&Next bookmark M-j"
  3051. #~ msgstr "開新檔案 C-n"
  3052. #, fuzzy
  3053. #~ msgid "&Undo C-u"
  3054. #~ msgstr "復原 C-u"
  3055. #, fuzzy
  3056. #~ msgid "&Beginning C-PgUp"
  3057. #~ msgstr "檔案開頭 C-PgUp"
  3058. #, fuzzy
  3059. #~ msgid "&End C-PgDn"
  3060. #~ msgstr "檔案結尾 C-PgDn"
  3061. #, fuzzy
  3062. #~ msgid "C&opy to clipfile M-w"
  3063. #~ msgstr "跳至某行... M-l"
  3064. #, fuzzy
  3065. #~ msgid "C&ut to clipfile C-w"
  3066. #~ msgstr "跳至某行... M-l"
  3067. #, fuzzy
  3068. #~ msgid "Toggle bookmar&k "
  3069. #~ msgstr "切換標示區域 F3"
  3070. #, fuzzy
  3071. #~ msgid "&Next bookmark "
  3072. #~ msgstr "開新檔案 C-n"
  3073. #, fuzzy
  3074. #~ msgid "Pre&v bookmark "
  3075. #~ msgstr "排序... M-t"
  3076. #, fuzzy
  3077. #~ msgid "&Flush bookmark "
  3078. #~ msgstr "郵件 "
  3079. #~ msgid "&Search... F7"
  3080. #~ msgstr "搜尋 F7"
  3081. #~ msgid "&Replace... F4"
  3082. #~ msgstr "替換 F4"
  3083. #~ msgid "&Go to line... M-l"
  3084. #~ msgstr "跳至某行... M-l"
  3085. #, fuzzy
  3086. #~ msgid "Encod&ing... M-e"
  3087. #~ msgstr "排序... M-t"
  3088. #~ msgid "Delete macr&o... "
  3089. #~ msgstr "刪除巨集... "
  3090. #~ msgid "Sor&t... M-t"
  3091. #~ msgstr "排序... M-t"
  3092. #~ msgid "&Mail... "
  3093. #~ msgstr "郵件 "
  3094. #~ msgid "&Execute macro... C-x e, KEY"
  3095. #~ msgstr "執行巨集... C-x e, KEY"
  3096. #~ msgid "'ispell' s&pell check M-$"
  3097. #~ msgstr "'ispell' 拼字檢查 M-$"
  3098. #, fuzzy
  3099. #~ msgid "Save setu&p"
  3100. #~ msgstr "儲存設定"
  3101. #~ msgid " Edit "
  3102. #~ msgstr " 編輯 "
  3103. #~ msgid " Sear/Repl "
  3104. #~ msgstr " 搜尋/替換 "
  3105. #~ msgid " Command "
  3106. #~ msgstr " 指令 "
  3107. #~ msgid "Intuitive"
  3108. #~ msgstr "Intuitive"
  3109. #~ msgid "Emacs"
  3110. #~ msgstr "Emacs"
  3111. #, fuzzy
  3112. #~ msgid "User-defined"
  3113. #~ msgstr "使用者自定:"
  3114. #~ msgid "Key emulation"
  3115. #~ msgstr "按鍵模擬"
  3116. #~ msgid "Save"
  3117. #~ msgstr "存檔"
  3118. #~ msgid "Mark"
  3119. #~ msgstr "標示"
  3120. #~ msgid "Replac"
  3121. #~ msgstr "替換"
  3122. #~ msgid "Delete"
  3123. #~ msgstr "刪除..."
  3124. #~ msgid "PullDn"
  3125. #~ msgstr "拉下"
  3126. #~ msgid " Copy "
  3127. #~ msgstr " 複製 "
  3128. #~ msgid " Move "
  3129. #~ msgstr " 搬移"
  3130. #~ msgid " Delete "
  3131. #~ msgstr " 刪除 "
  3132. #~ msgid "1Copy"
  3133. #~ msgstr "1複製"
  3134. #~ msgid "1Move"
  3135. #~ msgstr "1搬移"
  3136. #~ msgid "1Delete"
  3137. #~ msgstr "1刪除"
  3138. #~ msgid "Index"
  3139. #~ msgstr "索引"
  3140. #~ msgid "Prev"
  3141. #~ msgstr "往前"
  3142. #~ msgid "&Quick view C-x q"
  3143. #~ msgstr "快速檢視 C-x q"
  3144. #~ msgid "&Info C-x i"
  3145. #~ msgstr "訊息 C-x i"
  3146. #~ msgid "&Rescan C-r"
  3147. #~ msgstr "重新讀取 C-r"
  3148. #~ msgid "&View F3"
  3149. #~ msgstr "檢視 F3"
  3150. #~ msgid "Vie&w file... "
  3151. #~ msgstr "檢視檔案... "
  3152. #~ msgid "&Filtered view M-!"
  3153. #~ msgstr "檢視前先過濾 M-!"
  3154. #~ msgid "&Edit F4"
  3155. #~ msgstr "編輯 F4"
  3156. #~ msgid "&Copy F5"
  3157. #~ msgstr "複製 F5"
  3158. #~ msgid "c&Hmod C-x c"
  3159. #~ msgstr "改變檔案模式 C-x c"
  3160. #~ msgid "&Link C-x l"
  3161. #~ msgstr "連結 C-x l"
  3162. #~ msgid "&SymLink C-x s"
  3163. #~ msgstr "符號連結 C-x s"
  3164. #~ msgid "edit s&Ymlink C-x C-s"
  3165. #~ msgstr "編輯符號連結 C-x C-s"
  3166. #~ msgid "ch&Own C-x o"
  3167. #~ msgstr "改變擁有狀態 C-x o"
  3168. #~ msgid "&Rename/Move F6"
  3169. #~ msgstr "更改名稱/搬移 F6"
  3170. #~ msgid "&Mkdir F7"
  3171. #~ msgstr "製造目錄 F7"
  3172. #~ msgid "&Delete F8"
  3173. #~ msgstr "刪除 F8"
  3174. #~ msgid "&Quick cd M-c"
  3175. #~ msgstr "快速改變目錄 M-c"
  3176. #~ msgid "select &Group M-+"
  3177. #~ msgstr "選取群組 M-+"
  3178. #~ msgid "u&Nselect group M-\\"
  3179. #~ msgstr "取消選取群組 M-\\"
  3180. #~ msgid "e&Xit F10"
  3181. #~ msgstr "離開 F10"
  3182. #~ msgid "&User menu F2"
  3183. #~ msgstr "使用者選單 F2"
  3184. #~ msgid "&Find file M-?"
  3185. #~ msgstr "尋找檔案 M-?"
  3186. #~ msgid "s&Wap panels C-u"
  3187. #~ msgstr "調換面板 C-u"
  3188. #~ msgid "&Compare directories C-x d"
  3189. #~ msgstr "比較目錄 C-x d"
  3190. #~ msgid "e&Xternal panelize C-x !"
  3191. #~ msgstr "外部面板化 C-x !"
  3192. #, fuzzy
  3193. #~ msgid "Command &history M-h"
  3194. #~ msgstr " 指令歷史紀錄 "
  3195. #~ msgid "di&Rectory hotlist C-\\"
  3196. #~ msgstr "目錄熱門列表 C-\\"
  3197. #~ msgid "&Background jobs C-x j"
  3198. #~ msgstr "背景工作 C-x j"
  3199. #~ msgid "learn &Keys..."
  3200. #~ msgstr "認識按鍵..."
  3201. #~ msgid " &File "
  3202. #~ msgstr " 檔案 "
  3203. #~ msgid " &Command "
  3204. #~ msgstr "指令 "
  3205. #~ msgid "Menu"
  3206. #~ msgstr "選單"
  3207. #, fuzzy
  3208. #~ msgid "n"
  3209. #~ msgstr "開"
  3210. #, fuzzy
  3211. #~ msgid "Extension"
  3212. #~ msgstr "擴充:"
  3213. #~ msgid "Size"
  3214. #~ msgstr "大小"
  3215. #~ msgid "MTime"
  3216. #~ msgstr "修改時間"
  3217. #~ msgid "ATime"
  3218. #~ msgstr "存取時間"
  3219. #~ msgid "CTime"
  3220. #~ msgstr "建立時間"
  3221. #~ msgid "Inode"
  3222. #~ msgstr "i 節點"
  3223. #~ msgid "RenMov"
  3224. #~ msgstr "改名/搬移"
  3225. #~ msgid "Static"
  3226. #~ msgstr "靜態"
  3227. #~ msgid "Dynamc"
  3228. #~ msgstr "動態"
  3229. #~ msgid "Forget"
  3230. #~ msgstr "忽略"
  3231. #~ msgid "Rmdir"
  3232. #~ msgstr "刪目錄"
  3233. #, fuzzy
  3234. #~ msgid "bind: Unknown command: `%s'"
  3235. #~ msgstr " chmod 指令 "
  3236. #, fuzzy
  3237. #~ msgid "%s: Unknown command: `%s'"
  3238. #~ msgstr " chmod 指令 "
  3239. #, fuzzy
  3240. #~ msgid "%s:%d: unknown command `%s'"
  3241. #~ msgstr " chmod 指令 "
  3242. #, fuzzy
  3243. #~ msgid "%s not found!"
  3244. #~ msgstr "警告:找不到檔案 %s\n"
  3245. #~ msgid "NumLock on keypad"
  3246. #~ msgstr "數字區的 NumLock 鍵"
  3247. #~ msgid " Emacs key: "
  3248. #~ msgstr " Emacs 按鍵:"
  3249. #~ msgid " %d items found, %d bookmarks added "
  3250. #~ msgstr " %d 找到建立, %d 書籤被加入 "
  3251. #~ msgid "Displays this help message"
  3252. #~ msgstr "顯示此說明訊息"
  3253. #~ msgid "Displays a help screen on how to change the color scheme"
  3254. #~ msgstr "顯示如何改變色彩設定的說明畫面"
  3255. #, fuzzy
  3256. #~ msgid "unknown option"
  3257. #~ msgstr "<不明的群組>"
  3258. #~ msgid "Show this help message"
  3259. #~ msgstr "顯示此說明訊息"
  3260. #~ msgid "Display brief usage message"
  3261. #~ msgstr "顯示簡單使用說明"
  3262. #, fuzzy
  3263. #~ msgid "Usage:"
  3264. #~ msgstr "使用者名稱: "
  3265. #~ msgid "pro&Mpt on replace"
  3266. #~ msgstr " 替換之前要先詢問 "
  3267. #~ msgid "replace &All"
  3268. #~ msgstr "全部替換"
  3269. #~ msgid "O&ne"
  3270. #~ msgstr "單一"
  3271. #, fuzzy
  3272. #~ msgid "%b %d %H:%M"
  3273. #~ msgstr "%b %e %H:%M"
  3274. #, fuzzy
  3275. #~ msgid "%b %d %Y"
  3276. #~ msgstr "%b %e %Y"
  3277. #, fuzzy
  3278. #~ msgid " The current address is 0x%08"
  3279. #~ msgstr ""
  3280. #~ " 目前行號是 0x%lx,\n"
  3281. #~ " 請輸入新行號:"
  3282. #~ msgid "scanf &Expression"
  3283. #~ msgstr " Scanf 表示式 "
  3284. #~ msgid " Enter replacement argument order eg. 3,2,1,4 "
  3285. #~ msgstr " 輸入參數的順序, eg. 3,2,1,4 "
  3286. #~ msgid ""
  3287. #~ " Invalid regular expression, or scanf expression with too many "
  3288. #~ "conversions "
  3289. #~ msgstr " 不正確的正規運算式,或是 scanf 表示式裡有太多的轉換。 "
  3290. #~ msgid " Error in replacement format string. "
  3291. #~ msgstr " 用來替換的格式化字串有錯誤。 "
  3292. #, fuzzy
  3293. #~ msgid " Replacement too long. "
  3294. #~ msgstr " 輸入要替換的字串:"
  3295. #~ msgid "&Copy F5"
  3296. #~ msgstr "複製 F5"
  3297. #~ msgid "&Delete F8"
  3298. #~ msgstr "刪除 F8"
  3299. #~ msgid " The command history is empty "
  3300. #~ msgstr " 指令歷史紀錄是空的 "
  3301. #~ msgid "Edit edi&tor menu file"
  3302. #~ msgstr "選單檔編輯器編輯(&T)"
  3303. #, fuzzy
  3304. #~ msgid "Edit &syntax file"
  3305. #~ msgstr "編輯選單檔"
  3306. #~ msgid ""
  3307. #~ "To use this feature select your codepage in\n"
  3308. #~ "Setup / Display Bits dialog!\n"
  3309. #~ "Do not forget to save options."
  3310. #~ msgstr ""
  3311. #~ "要使用此功能,在「設定 / 顯示位元數」\n"
  3312. #~ "對話窗中選擇頁碼!\n"
  3313. #~ "不要忘記儲存設定。"
  3314. #~ msgid "Invalid hex search expression"
  3315. #~ msgstr " 無效的 16 進位搜尋字串 "
  3316. #~ msgid " Invalid regular expression "
  3317. #~ msgstr " 無效的正規表示式 "
  3318. #~ msgid " Enter regexp:"
  3319. #~ msgstr "輸入正規式:"
  3320. #, fuzzy
  3321. #~ msgid "Using included S-Lang library"
  3322. #~ msgstr "使用 S-Lang 函式庫"
  3323. #~ msgid "with termcap database"
  3324. #~ msgstr "使用 termcap 資料庫"
  3325. #~ msgid "&Home"
  3326. #~ msgstr "家目錄"
  3327. #~ msgid "&Type"
  3328. #~ msgstr "類型"
  3329. #~ msgid "N&GID"
  3330. #~ msgstr "NGID"
  3331. #~ msgid "N&UID"
  3332. #~ msgstr "NUID"
  3333. #~ msgid "&Owner"
  3334. #~ msgstr "擁有者"
  3335. #~ msgid "&Group"
  3336. #~ msgstr "群組"
  3337. #~ msgid "MC was unable to write ~/"
  3338. #~ msgstr "MC 無法寫入 ~/"
  3339. #~ msgid " (%ld blocks)"
  3340. #~ msgstr " (%ld 個區塊)"
  3341. #~ msgid " Notice "
  3342. #~ msgstr " 注意 "
  3343. #~ msgid ""
  3344. #~ " The Midnight Commander configuration files \n"
  3345. #~ " are now stored in the ~/.mc directory, the \n"
  3346. #~ " files have been moved now\n"
  3347. #~ msgstr ""
  3348. #~ " Midnight Commander 的\n"
  3349. #~ " 設定檔已經改放到\n"
  3350. #~ " ~/.mc 目錄底下了。\n"
  3351. #~ msgid "%s bytes in %d files"
  3352. #~ msgstr "%s 位元組,共 %d 個檔案"
  3353. #~ msgid " Cannot open file for reading: "
  3354. #~ msgstr " 在開啟檔案用來讀取時失敗: "
  3355. #~ msgid " Not an ordinary file: "
  3356. #~ msgstr " 不是常規檔案: "
  3357. #~ msgid "Format of the "
  3358. #~ msgstr "格式問題: "
  3359. #~ msgid ""
  3360. #~ " file has changed\n"
  3361. #~ "with version 3.0. You may want either to\n"
  3362. #~ "copy it from "
  3363. #~ msgstr ""
  3364. #~ " 檔案已經被第 3.0 版\n"
  3365. #~ "更改過了,您要嘛就從\n"
  3366. #~ "這裡複製一份 "
  3367. #~ msgid ""
  3368. #~ "mc.ext or use that\n"
  3369. #~ "file as an example of how to write it.\n"
  3370. #~ msgstr ""
  3371. #~ "mc.ext,否則就以這個檔案\n"
  3372. #~ "當範本重寫一個。\n"
  3373. #~ msgid "mc.ext will be used for this moment."
  3374. #~ msgstr "mc.ext 在這個時候先被拿來用了。"
  3375. #~ msgid " Cannot open file "
  3376. #~ msgstr " 無法開啟檔案 "
  3377. #~ msgid "Col %d"
  3378. #~ msgstr "欄 %d"
  3379. #~ msgid " [grow]"
  3380. #~ msgstr " [成長] "
  3381. #~ msgid "Ascii"
  3382. #~ msgstr "Ascii"
  3383. #~ msgid "Hex"
  3384. #~ msgstr "Hex"
  3385. #~ msgid "Line"
  3386. #~ msgstr "行"
  3387. #~ msgid "RxSrch"
  3388. #~ msgstr "正規搜尋"
  3389. #~ msgid "EdHex"
  3390. #~ msgstr "編輯 Hex"
  3391. #~ msgid "EdText"
  3392. #~ msgstr "編輯文字"
  3393. #~ msgid "UnWrap"
  3394. #~ msgstr "不換行 "
  3395. #~ msgid "Wrap"
  3396. #~ msgstr "換行"
  3397. #~ msgid "HxSrch"
  3398. #~ msgstr "十六進位搜尋"
  3399. #~ msgid "Raw"
  3400. #~ msgstr "原始"
  3401. #~ msgid "Parse"
  3402. #~ msgstr "剖析"
  3403. #~ msgid "Unform"
  3404. #~ msgstr "無格式"
  3405. #~ msgid "User menu available only in mcedit invoked from mc"
  3406. #~ msgstr "使用者選單只在 mc 中的 mcedit 中存在."
  3407. #~ msgid " Socket source routing setup "
  3408. #~ msgstr " 封包來源路由設定 "
  3409. #~ msgid " Enter host name to use as a source routing hop: "
  3410. #~ msgstr " 輸入要用來作為來源路由中繼器的主機名稱: "
  3411. #~ msgid " Host name "
  3412. #~ msgstr "主機名稱"
  3413. #~ msgid " Error while looking up IP address "
  3414. #~ msgstr " 查詢 IP 位址時發生錯誤 "
  3415. #~ msgid ""
  3416. #~ "\n"
  3417. #~ "\n"
  3418. #~ "\n"
  3419. #~ "refresh stack underflow!\n"
  3420. #~ "\n"
  3421. #~ "\n"
  3422. #~ msgstr ""
  3423. #~ "\n"
  3424. #~ "\n"
  3425. #~ "\n"
  3426. #~ "重繪用堆疊欠位!\n"
  3427. #~ "\n"
  3428. #~ "\n"
  3429. #~ msgid " Listing format edit "
  3430. #~ msgstr "編輯列表格式"
  3431. #~ msgid " New mode is \"%s\" "
  3432. #~ msgstr "新模式為 \"%s\""
  3433. #~ msgid "&Drive... M-d"
  3434. #~ msgstr "磁碟... M-d"
  3435. #~ msgid "Use to debug the background code"
  3436. #~ msgstr "用來對背景程式碼偵錯"
  3437. #, fuzzy
  3438. #~ msgid "Force subshell execution"
  3439. #~ msgstr "執行時 sUID"
  3440. #~ msgid " No action taken "
  3441. #~ msgstr " 不作任何動作 "
  3442. #~ msgid " Cannot set source routing (%s)"
  3443. #~ msgstr " 無法設定來源路由 (%s)"