zh_CN.po 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. #
  5. # Translators:
  6. # Jake Li <gnozil@gmail.com>, 2012
  7. # qingxianhao <qinghao1@foxmail.com>, 2012
  8. # qingxianhao <qinghao1@foxmail.com>, 2012
  9. # Slava Zanko <slavazanko@gmail.com>, 2011
  10. # walking <waling@mail.i2p>, 2013
  11. # xtoaster <zhazhenzhong@gmail.com>, 2013
  12. msgid ""
  13. msgstr ""
  14. "Project-Id-Version: Midnight Commander\n"
  15. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
  16. "POT-Creation-Date: 2015-02-26 09:43+0300\n"
  17. "PO-Revision-Date: 2015-02-26 09:48+0000\n"
  18. "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
  19. "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mc/language/zh_CN/)\n"
  20. "MIME-Version: 1.0\n"
  21. "Content-Type: text/plain; charset=UTF-8\n"
  22. "Content-Transfer-Encoding: 8bit\n"
  23. "Language: zh_CN\n"
  24. "Plural-Forms: nplurals=1; plural=0;\n"
  25. # "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  26. msgid "Warning: cannot load codepages list"
  27. msgstr "警告: 无法加载代码页列表"
  28. msgid "7-bit ASCII"
  29. msgstr "7-bit ASCII"
  30. #, c-format
  31. msgid "Cannot translate from %s to %s"
  32. msgstr "无法从 %s 翻译到 %s"
  33. msgid "Event system already initialized"
  34. msgstr "事件系统已初始化"
  35. msgid "Failed to initialize event system"
  36. msgstr "事件系统初始化失败"
  37. msgid "Event system not initialized"
  38. msgstr "事件系统未初始化"
  39. msgid "Check input data! Some of parameters are NULL!"
  40. msgstr "请检查输入数据! 某些参数为空 (NULL)!"
  41. #, c-format
  42. msgid "Unable to create group '%s' for events!"
  43. msgstr "无法创建事件组“%s”!"
  44. #, c-format
  45. msgid "Unable to create event '%s'!"
  46. msgstr "无法创建事件“%s”!"
  47. #, c-format
  48. msgid ""
  49. "File \"%s\" is already being edited.\n"
  50. "User: %s\n"
  51. "Process ID: %d"
  52. msgstr "文件“%s”正在被编辑。\n用户: %s\n进程 ID: %d"
  53. msgid "File locked"
  54. msgstr "文件被锁定"
  55. msgid "&Grab lock"
  56. msgstr "获取锁(&G)"
  57. msgid "&Ignore lock"
  58. msgstr "忽略锁(&I)"
  59. #, c-format
  60. msgid "Cannot create %s directory"
  61. msgstr "无法建立目录%s"
  62. msgid "FATAL: not a directory:"
  63. msgstr "严重错误: 不是一个目录: "
  64. #, c-format
  65. msgid "An error occurred while migrating user settings: %s"
  66. msgstr "迁移用户设置时发生了一个错误: %s"
  67. #, c-format
  68. msgid ""
  69. "Your old settings were migrated from %s\n"
  70. "to Freedesktop recommended dirs.\n"
  71. "To get more info, please visit\n"
  72. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  73. msgstr "您的旧设置被从 %s 迁移\n到 Freedesktop 推荐目录。\n更多信息,请访问\nhttp://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  74. #, c-format
  75. msgid ""
  76. "Your old settings were migrated from %s\n"
  77. "to %s\n"
  78. msgstr "您的旧设置被从 %s 迁移\n到 %s\n"
  79. msgid "Search string not found"
  80. msgstr "没有找到要搜索的字符串"
  81. msgid "Not implemented yet"
  82. msgstr "尚未实现"
  83. msgid "Num of replace tokens not equal to num of found tokens"
  84. msgstr "替换的标记与找到的标记个数不相等"
  85. #, c-format
  86. msgid "Invalid token number %d"
  87. msgstr "无效的标记个数 %d"
  88. msgid "Regular expression error"
  89. msgstr "正则表达式错误"
  90. msgid "No&rmal"
  91. msgstr "普通(&R)"
  92. msgid "Re&gular expression"
  93. msgstr "正规表达式(&R)"
  94. msgid "He&xadecimal"
  95. msgstr "十六进制(&X)"
  96. msgid "Wil&dcard search"
  97. msgstr "通配符查找(&D)"
  98. #, c-format
  99. msgid ""
  100. "Unable to load '%s' skin.\n"
  101. "Default skin has been loaded"
  102. msgstr "无法加载皮肤“%s”。\n已加载默认皮肤"
  103. #, c-format
  104. msgid ""
  105. "Unable to parse '%s' skin.\n"
  106. "Default skin has been loaded"
  107. msgstr "无法解析皮肤“%s”。\n已加载默认皮肤"
  108. #, c-format
  109. msgid ""
  110. "Unable to use '%s' skin with 256 colors support\n"
  111. "on non-256 colors terminal.\n"
  112. "Default skin has been loaded"
  113. msgstr "无法在非256色终端上使用\n支持256色的皮肤“%s”。\n已加载默认皮肤"
  114. msgid "Escape"
  115. msgstr ""
  116. msgid "Function key 1"
  117. msgstr "F1"
  118. msgid "Function key 2"
  119. msgstr "F2"
  120. msgid "Function key 3"
  121. msgstr "F3"
  122. msgid "Function key 4"
  123. msgstr "F4"
  124. msgid "Function key 5"
  125. msgstr "F5"
  126. msgid "Function key 6"
  127. msgstr "F6"
  128. msgid "Function key 7"
  129. msgstr "F7"
  130. msgid "Function key 8"
  131. msgstr "F8"
  132. msgid "Function key 9"
  133. msgstr "F9"
  134. msgid "Function key 10"
  135. msgstr "F10"
  136. msgid "Function key 11"
  137. msgstr "F11"
  138. msgid "Function key 12"
  139. msgstr "F12"
  140. msgid "Function key 13"
  141. msgstr "F13"
  142. msgid "Function key 14"
  143. msgstr "F14"
  144. msgid "Function key 15"
  145. msgstr "F15"
  146. msgid "Function key 16"
  147. msgstr "F16"
  148. msgid "Function key 17"
  149. msgstr "F17"
  150. msgid "Function key 18"
  151. msgstr "F18"
  152. msgid "Function key 19"
  153. msgstr "F19"
  154. msgid "Function key 20"
  155. msgstr "F20"
  156. msgid "Completion/M-tab"
  157. msgstr "补全/M-Tab"
  158. msgid "BackTab/S-tab"
  159. msgstr ""
  160. msgid "Backspace"
  161. msgstr ""
  162. msgid "Up arrow"
  163. msgstr ""
  164. msgid "Down arrow"
  165. msgstr ""
  166. msgid "Left arrow"
  167. msgstr ""
  168. msgid "Right arrow"
  169. msgstr ""
  170. msgid "Insert"
  171. msgstr ""
  172. msgid "Delete"
  173. msgstr ""
  174. msgid "Home"
  175. msgstr ""
  176. msgid "End key"
  177. msgstr "End 键"
  178. msgid "Page Up"
  179. msgstr ""
  180. msgid "Page Down"
  181. msgstr ""
  182. msgid "/ on keypad"
  183. msgstr ""
  184. msgid "* on keypad"
  185. msgstr "小键盘 *"
  186. msgid "- on keypad"
  187. msgstr "小键盘 -"
  188. msgid "+ on keypad"
  189. msgstr "小键盘 +"
  190. msgid "Left arrow keypad"
  191. msgstr "小键盘向左键"
  192. msgid "Right arrow keypad"
  193. msgstr "小键盘向右键"
  194. msgid "Up arrow keypad"
  195. msgstr "小键盘向上键"
  196. msgid "Down arrow keypad"
  197. msgstr "小键盘向下键"
  198. msgid "Home on keypad"
  199. msgstr "小键盘 Home 键"
  200. msgid "End on keypad"
  201. msgstr "小键盘 End 键"
  202. msgid "Page Down keypad"
  203. msgstr "小键盘 Page Down 键"
  204. msgid "Page Up keypad"
  205. msgstr "小键盘 Page Up 键"
  206. msgid "Insert on keypad"
  207. msgstr "小键盘 Insert 键"
  208. msgid "Delete on keypad"
  209. msgstr "小键盘 Del 键"
  210. msgid "Enter on keypad"
  211. msgstr "小键盘 Enter 键"
  212. msgid "Function key 21"
  213. msgstr "F21"
  214. msgid "Function key 22"
  215. msgstr "F22"
  216. msgid "Function key 23"
  217. msgstr "F23"
  218. msgid "Function key 24"
  219. msgstr "F24"
  220. msgid "A1 key"
  221. msgstr "A1键"
  222. msgid "C1 key"
  223. msgstr "C1键"
  224. msgid "Asterisk"
  225. msgstr "星号"
  226. msgid "Minus"
  227. msgstr "减号"
  228. msgid "Plus"
  229. msgstr "加号"
  230. msgid "Dot"
  231. msgstr "句号"
  232. msgid "Less than"
  233. msgstr "小于"
  234. msgid "Great than"
  235. msgstr "大于"
  236. msgid "Equal"
  237. msgstr "等于"
  238. msgid "Comma"
  239. msgstr "逗号"
  240. msgid "Apostrophe"
  241. msgstr "撇号"
  242. msgid "Colon"
  243. msgstr "冒号"
  244. msgid "Semicolon"
  245. msgstr ""
  246. msgid "Exclamation mark"
  247. msgstr "感叹号"
  248. msgid "Question mark"
  249. msgstr "问号"
  250. msgid "Ampersand"
  251. msgstr "与号(&)"
  252. msgid "Dollar sign"
  253. msgstr "美元符"
  254. msgid "Quotation mark"
  255. msgstr "引号"
  256. msgid "Percent sign"
  257. msgstr "百分号"
  258. msgid "Caret"
  259. msgstr "脱字符(^)"
  260. msgid "Tilda"
  261. msgstr "波浪号(~)"
  262. msgid "Prime"
  263. msgstr "重音符(`)"
  264. msgid "Underline"
  265. msgstr "下划线"
  266. msgid "Understrike"
  267. msgstr "着重线"
  268. msgid "Pipe"
  269. msgstr "管道符(|)"
  270. msgid "Left parenthesis"
  271. msgstr "左圆括号"
  272. msgid "Right parenthesis"
  273. msgstr "右圆括号"
  274. msgid "Left bracket"
  275. msgstr "左方括号"
  276. msgid "Right bracket"
  277. msgstr "右方括号"
  278. msgid "Left brace"
  279. msgstr "左花括号"
  280. msgid "Right brace"
  281. msgstr "右花括号"
  282. msgid "Enter"
  283. msgstr "回车"
  284. msgid "Tab key"
  285. msgstr "Tab 键"
  286. msgid "Space key"
  287. msgstr "空格键"
  288. msgid "Slash key"
  289. msgstr "/ 键"
  290. msgid "Backslash key"
  291. msgstr "\\ 键"
  292. msgid "Number sign #"
  293. msgstr "井号(#)"
  294. #. TRANSLATORS: Please translate as in "at sign" (@).
  295. msgid "At sign"
  296. msgstr "at 符"
  297. msgid "Ctrl"
  298. msgstr "Ctrl 键"
  299. msgid "Alt"
  300. msgstr "Alt 键"
  301. msgid "Shift"
  302. msgstr "Shift 键"
  303. msgid "The TERM environment variable is unset!\n"
  304. msgstr "没有设置 TERM 环境变量!\n"
  305. #, c-format
  306. msgid ""
  307. "Screen size %dx%d is not supported.\n"
  308. "Check the TERM environment variable.\n"
  309. msgstr "不支持屏幕大小 %dx%d。\n检查 TERM 环境变量。\n"
  310. msgid "Cannot create pipe descriptor"
  311. msgstr ""
  312. msgid "Cannot parse command for pipe"
  313. msgstr ""
  314. msgid "Cannot create pipe streams"
  315. msgstr ""
  316. #, c-format
  317. msgid ""
  318. "Unexpected error in select() reading data from a child process:\n"
  319. "%s"
  320. msgstr ""
  321. #, c-format
  322. msgid ""
  323. "Unexpected error in waitpid():\n"
  324. "%s"
  325. msgstr ""
  326. msgid "Warning"
  327. msgstr "警告"
  328. msgid "Pipe failed"
  329. msgstr "管道失败"
  330. msgid "Dup failed"
  331. msgstr "复制失败"
  332. msgid "Error dup'ing old error pipe"
  333. msgstr "复制原有出错管道时发生错误"
  334. #, c-format
  335. msgid "Directory cache expired for %s"
  336. msgstr "%s 的目录缓存已过期"
  337. msgid "bytes transferred"
  338. msgstr "已传输字节数"
  339. msgid "Starting linear transfer..."
  340. msgstr "正在开始线性传输..."
  341. msgid "Getting file"
  342. msgstr "正在获取文件"
  343. msgid "Changes to file lost"
  344. msgstr "对文件的修改被丢失"
  345. #, c-format
  346. msgid "%s is not a directory\n"
  347. msgstr "%s 不是目录\n"
  348. #, c-format
  349. msgid "Directory %s is not owned by you\n"
  350. msgstr "目录 %s 的所有者不是您\n"
  351. #, c-format
  352. msgid "Cannot set correct permissions for directory %s\n"
  353. msgstr "无法正确设置目录 %s 的权限\n"
  354. #, c-format
  355. msgid "Cannot create temporary directory %s: %s\n"
  356. msgstr "无法创建临时目录 %s: %s\n"
  357. #, c-format
  358. msgid "Temporary files will be created in %s\n"
  359. msgstr "在 %s 中创建临时文件\n"
  360. #, c-format
  361. msgid "Temporary files will not be created\n"
  362. msgstr "无法创建临时文件\n"
  363. #, c-format
  364. msgid "Press any key to continue..."
  365. msgstr "按任意键继续..."
  366. msgid "Cannot parse:"
  367. msgstr "无法解析: "
  368. msgid "More parsing errors will be ignored."
  369. msgstr "以后的解析错误将被忽略。"
  370. msgid "Internal error:"
  371. msgstr "内部错误: "
  372. msgid "Password:"
  373. msgstr "密码: "
  374. msgid "Screens"
  375. msgstr "屏幕"
  376. msgid "History"
  377. msgstr "历史"
  378. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  379. msgid "DialogTitle|History cleanup"
  380. msgstr "DialogTitle|清除历史"
  381. msgid "Do you want clean this history?"
  382. msgstr "您确认要清除历史?"
  383. msgid "&Yes"
  384. msgstr "是(&Y)"
  385. msgid "&No"
  386. msgstr "否(&N)"
  387. msgid "&OK"
  388. msgstr "确认(&O)"
  389. msgid "&Cancel"
  390. msgstr "取消(&C)"
  391. msgid "Background process:"
  392. msgstr "后台进程: "
  393. msgid "Error"
  394. msgstr "错误"
  395. #, c-format
  396. msgid "%d: %s"
  397. msgstr ""
  398. msgid "&Abort"
  399. msgstr "中止(&A)"
  400. msgid "Displays the current version"
  401. msgstr "显示当前版本"
  402. msgid "Print data directory"
  403. msgstr "打印数据目录"
  404. msgid "Print extended info about used data directories"
  405. msgstr "打印已使用数据目录的扩展信息"
  406. msgid "Print configure options"
  407. msgstr "打印配置选项"
  408. msgid "Print last working directory to specified file"
  409. msgstr "将工作目录打印到指定文件"
  410. msgid "Enables subshell support (default)"
  411. msgstr "启用子 shell 支持(默认)"
  412. msgid "Disables subshell support"
  413. msgstr "禁用子 shell 支持"
  414. msgid "Log ftp dialog to specified file"
  415. msgstr "记录 ftp 对话到指定的文件"
  416. msgid "Set debug level"
  417. msgstr "设置调试级别"
  418. msgid "Launches the file viewer on a file"
  419. msgstr "在文件上启动文件查看器"
  420. msgid "Edit files"
  421. msgstr "编辑文件"
  422. msgid "Forces xterm features"
  423. msgstr "强制使用 xterm 特性"
  424. msgid "Disable X11 support"
  425. msgstr "禁用 X11 支持"
  426. msgid "Tries to use an old highlight mouse tracking"
  427. msgstr "尝试使用老式高亮鼠标跟踪"
  428. msgid "Disable mouse support in text version"
  429. msgstr "在文本模式下禁用鼠标支持"
  430. msgid "Tries to use termcap instead of terminfo"
  431. msgstr "尝试使用 termcap 而不是 terminfo"
  432. msgid "To run on slow terminals"
  433. msgstr "若要在缓慢的终端上运行"
  434. msgid "Use stickchars to draw"
  435. msgstr "用线条字符绘制"
  436. msgid "Resets soft keys on HP terminals"
  437. msgstr "在 HP 终端上复位软键"
  438. msgid "Load definitions of key bindings from specified file"
  439. msgstr "从指定的文件加载键绑定定义"
  440. msgid "Don't load definitions of key bindings from file, use defaults"
  441. msgstr "不从文件中载入键盘绑定定义,使用默认值"
  442. msgid "Requests to run in black and white"
  443. msgstr "请求运行在黑白模式"
  444. msgid "Request to run in color mode"
  445. msgstr "请求运行在彩色模式"
  446. msgid "Specifies a color configuration"
  447. msgstr "指定颜色配置"
  448. msgid "Show mc with specified skin"
  449. msgstr "用指定的皮肤显示 MC"
  450. #. TRANSLATORS: don't translate keywords
  451. msgid ""
  452. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  453. "\n"
  454. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  455. "\n"
  456. " Keywords:\n"
  457. " Global: errors, disabled, reverse, gauge, header\n"
  458. " input, inputmark, inputunchanged, commandlinemark\n"
  459. " bbarhotkey, bbarbutton, statusbar\n"
  460. " File display: normal, selected, marked, markselect\n"
  461. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  462. " errdhotfocus\n"
  463. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  464. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  465. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  466. " editlinestate, editbg, editframe, editframeactive\n"
  467. " editframedrag\n"
  468. " Viewer: viewnormal,viewbold, viewunderline, viewselected\n"
  469. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  470. msgstr ""
  471. #. TRANSLATORS: don't translate color names and attributes
  472. msgid ""
  473. "Standard Colors:\n"
  474. " black, gray, red, brightred, green, brightgreen, brown,\n"
  475. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  476. " brightcyan, lightgray and white\n"
  477. "\n"
  478. "Extended colors, when 256 colors are available:\n"
  479. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  480. "\n"
  481. "Attributes:\n"
  482. " bold, italic, underline, reverse, blink; append more with '+'\n"
  483. msgstr ""
  484. msgid "Color options"
  485. msgstr "颜色选项"
  486. msgid "+number"
  487. msgstr "+数字"
  488. msgid "[this_dir] [other_panel_dir]"
  489. msgstr "[this_dir] [other_panel_dir]"
  490. msgid "Set initial line number for the internal editor"
  491. msgstr "设置内部编辑器的初始行号"
  492. msgid ""
  493. "\n"
  494. "Please send any bug reports (including the output of 'mc -V')\n"
  495. "as tickets at www.midnight-commander.org\n"
  496. msgstr "\n错误报告 (包括 'mc -V' 输出结果)\n请以 ticket 的形式发至 www.midnight-commander.org\n"
  497. #, c-format
  498. msgid "GNU Midnight Commander %s\n"
  499. msgstr "GNU Midnight Commander %s\n"
  500. msgid "Main options"
  501. msgstr "主要选项"
  502. msgid "Terminal options"
  503. msgstr "终端选项"
  504. msgid "Arguments parse error!"
  505. msgstr "参数解析错误!"
  506. msgid "No arguments given to the viewer."
  507. msgstr "查看器没有指定参数。"
  508. msgid "Two files are required to evoke the diffviewer."
  509. msgstr "两个文件需要调用差异查看器。"
  510. msgid "Background protocol error"
  511. msgstr "后台协议错误"
  512. msgid "Reading failed"
  513. msgstr "读失败"
  514. msgid "Background process error"
  515. msgstr "后台进程错误"
  516. msgid "Unknown error in child"
  517. msgstr "子进程未知错误"
  518. msgid "Child died unexpectedly"
  519. msgstr "子进程异常退出"
  520. msgid ""
  521. "Background process sent us a request for more arguments\n"
  522. "than we can handle."
  523. msgstr "后台进程请求的参数个数\n多于我们能处理的。"
  524. msgid "&Dismiss"
  525. msgstr "取消(&D)"
  526. msgid "Enter search string:"
  527. msgstr "输入查找字符串: "
  528. msgid "Cas&e sensitive"
  529. msgstr "大小写敏感(&e)"
  530. msgid "&Backwards"
  531. msgstr "向上(&B)"
  532. msgid "&Whole words"
  533. msgstr "仅整词(&W)"
  534. msgid "&All charsets"
  535. msgstr "所有字符集(&A)"
  536. msgid "Search"
  537. msgstr "搜索"
  538. msgid "Search is disabled"
  539. msgstr "禁止搜索"
  540. #, c-format
  541. msgid ""
  542. "Cannot create temporary diff file\n"
  543. "%s"
  544. msgstr "无法创建临时 diff 文件 \n%s"
  545. #, c-format
  546. msgid ""
  547. "Cannot create backup file\n"
  548. "%s%s\n"
  549. "%s"
  550. msgstr "无法创建备份文件\n%s%s\n%s"
  551. #, c-format
  552. msgid ""
  553. "Cannot create temporary merge file\n"
  554. "%s"
  555. msgstr "无法创建临时合并文件\n%s"
  556. msgid "&Fastest (Assume large files)"
  557. msgstr "最快(&F针对大文件)"
  558. msgid "&Minimal (Find a smaller set of change)"
  559. msgstr "最小(&M查找较小的更改集)"
  560. msgid "Diff algorithm"
  561. msgstr "Diff 算法"
  562. msgid "Diff extra options"
  563. msgstr "Diff 其它选项"
  564. msgid "&Ignore case"
  565. msgstr "忽略大小写(&I)"
  566. msgid "Ignore tab &expansion"
  567. msgstr "忽略 Tab 展开(&E)"
  568. msgid "Ignore &space change"
  569. msgstr "忽略空格变化(&S)"
  570. msgid "Ignore all &whitespace"
  571. msgstr "忽略所有空白(&W)"
  572. msgid "Strip &trailing carriage return"
  573. msgstr "去除行末的回车换行(&T)"
  574. msgid "Diff Options"
  575. msgstr "Diff 选项"
  576. msgid "Edit"
  577. msgstr "编辑"
  578. msgid "Edit is disabled"
  579. msgstr "禁止编辑"
  580. msgid "Goto line (left)"
  581. msgstr "跳转到行(左)"
  582. msgid "Goto line (right)"
  583. msgstr "跳转到行(右)"
  584. msgid "Enter line:"
  585. msgstr "输入行号: "
  586. msgid "ButtonBar|Help"
  587. msgstr "ButtonBar|帮助"
  588. msgid "ButtonBar|Save"
  589. msgstr "ButtonBar|保存"
  590. msgid "ButtonBar|Edit"
  591. msgstr "ButtonBar|编辑"
  592. msgid "ButtonBar|Merge"
  593. msgstr "ButtonBar|合并"
  594. msgid "ButtonBar|Search"
  595. msgstr "ButtonBar|搜索"
  596. msgid "ButtonBar|Options"
  597. msgstr "ButtonBar|选项"
  598. msgid "ButtonBar|Quit"
  599. msgstr "ButtonBar|退出"
  600. msgid "Quit"
  601. msgstr "退出"
  602. msgid "File(s) was modified. Save with exit?"
  603. msgstr "文件已被修改,保存并退出?"
  604. msgid ""
  605. "Midnight Commander is being shut down.\n"
  606. "Save modified file(s)?"
  607. msgstr "Midnight Commander 即将被关闭。\n要保存修改过的文件吗?"
  608. msgid "Diff:"
  609. msgstr "差异: "
  610. #, c-format
  611. msgid "\"%s\" is a directory"
  612. msgstr "“%s”是一个目录"
  613. #, c-format
  614. msgid ""
  615. "Cannot stat \"%s\"\n"
  616. "%s"
  617. msgstr "无法查看“%s”的状态\n%s"
  618. msgid "Diff viewer: invalid mode"
  619. msgstr "Diff 查看器: 模式无效"
  620. msgid "Two files are needed to compare"
  621. msgstr "比较时需要两个文件"
  622. msgid "Choose syntax highlighting"
  623. msgstr "选择语法突出显示"
  624. msgid "< Auto >"
  625. msgstr "<自动>"
  626. msgid "< Reload Current Syntax >"
  627. msgstr "<重新加载当前语法>"
  628. #, c-format
  629. msgid "Loading: %3d%%"
  630. msgstr ""
  631. msgid "Loading..."
  632. msgstr ""
  633. #, c-format
  634. msgid "Cannot open %s for reading"
  635. msgstr "无法打开 %s 读取内容"
  636. msgid "Load file"
  637. msgstr ""
  638. #, c-format
  639. msgid "Error reading %s"
  640. msgstr "读取错误 %s"
  641. #, c-format
  642. msgid "Cannot get size/permissions for %s"
  643. msgstr "无法获取文件 %s 的大小和权限信息"
  644. #, c-format
  645. msgid "\"%s\" is not a regular file"
  646. msgstr "“%s”不是一个常规文件"
  647. #, c-format
  648. msgid ""
  649. "File \"%s\" is too large.\n"
  650. "Open it anyway?"
  651. msgstr "文件“%s”体积过大。\n仍然打开?"
  652. #, c-format
  653. msgid "Error reading from pipe: %s"
  654. msgstr "读取管道时发生错误: %s"
  655. #, c-format
  656. msgid "Cannot open pipe for reading: %s"
  657. msgstr "无法打开管道读取: %s"
  658. #, c-format
  659. msgid "Searching %s: %3d%%"
  660. msgstr ""
  661. #, c-format
  662. msgid "Searching %s"
  663. msgstr "正在搜索 %s"
  664. msgid "File has hard-links. Detach before saving?"
  665. msgstr "文件有硬链接。保存文件前分离该链接吗?"
  666. msgid "The file has been modified in the meantime. Save anyway?"
  667. msgstr "文件同时已经被修改。仍然保存吗?"
  668. #, c-format
  669. msgid "Error writing to pipe: %s"
  670. msgstr "写入管道时发生错误: %s"
  671. #, c-format
  672. msgid "Cannot open pipe for writing: %s"
  673. msgstr "试图打开管道写入时失败: %s"
  674. #, c-format
  675. msgid "Cannot open file for writing: %s"
  676. msgstr "无法打开文件进行写操作: %s"
  677. msgid "The file you are saving does not end with a newline."
  678. msgstr ""
  679. msgid "C&ontinue"
  680. msgstr "继续(&O)"
  681. msgid "&Do not change"
  682. msgstr "不修改(&D)"
  683. msgid "&Unix format (LF)"
  684. msgstr "&Unix格式 (LF)"
  685. msgid "&Windows/DOS format (CR LF)"
  686. msgstr "&Windows/DOS格式 (CR LF)"
  687. msgid "&Macintosh format (CR)"
  688. msgstr "&Macintosh格式 (CR)"
  689. msgid "Enter file name:"
  690. msgstr "输入文件名: "
  691. msgid "Change line breaks to:"
  692. msgstr "更改换行符为: "
  693. msgid "Save As"
  694. msgstr "另存为"
  695. msgid "Block is large, you may not be able to undo this action"
  696. msgstr "块过大,您可能无法撤消这个操作"
  697. msgid "Collect completions"
  698. msgstr ""
  699. msgid "&Quick save"
  700. msgstr "快速保存(&Q)"
  701. msgid "&Safe save"
  702. msgstr "安全保存(&S)"
  703. msgid "&Do backups with following extension:"
  704. msgstr "使用下面后缀备份文件(&B): "
  705. msgid "Check &POSIX new line"
  706. msgstr "检查 &POSIX 换行"
  707. msgid "Edit Save Mode"
  708. msgstr "编辑保存模式"
  709. msgid "Save as"
  710. msgstr "另存为"
  711. msgid "Cannot save: destination is not a regular file"
  712. msgstr "无法保存: 目标位置不是常规文件"
  713. msgid "A file already exists with this name"
  714. msgstr "同名文件已存在"
  715. msgid "&Overwrite"
  716. msgstr "覆盖(&O)"
  717. msgid "Cannot save file"
  718. msgstr "无法保存文件"
  719. msgid "Delete macro"
  720. msgstr "删除宏"
  721. msgid "Press macro hotkey:"
  722. msgstr "按下宏热键: "
  723. msgid "Macro not deleted"
  724. msgstr "宏没有删除"
  725. msgid "Save macro"
  726. msgstr "保存宏"
  727. msgid "Press the macro's new hotkey:"
  728. msgstr "为该宏按下新热键: "
  729. msgid "Repeat last commands"
  730. msgstr "重复上一个命令"
  731. msgid "Repeat times:"
  732. msgstr "重复次数: "
  733. #, c-format
  734. msgid "Confirm save file: \"%s\""
  735. msgstr "确认保存文件:“%s”"
  736. msgid "Save file"
  737. msgstr "保存文件"
  738. msgid "&Save"
  739. msgstr "保存(&S)"
  740. msgid "Load"
  741. msgstr "加载"
  742. msgid "Syntax file edit"
  743. msgstr "语法文件编辑"
  744. msgid "Which syntax file you want to edit?"
  745. msgstr "您要编辑哪个语法文件?"
  746. msgid "&User"
  747. msgstr "用户(&U)"
  748. msgid "&System wide"
  749. msgstr "系统范围(&S)"
  750. msgid "Menu edit"
  751. msgstr "菜单编辑"
  752. msgid "Which menu file do you want to edit?"
  753. msgstr "您要编辑哪个菜单文件?"
  754. msgid "&Local"
  755. msgstr "本地(&L)"
  756. msgid "Replace"
  757. msgstr "替换"
  758. #, c-format
  759. msgid "%ld replacements made"
  760. msgstr "替换了 %ld 处"
  761. msgid "[NoName]"
  762. msgstr "[未命名]"
  763. #, c-format
  764. msgid ""
  765. "File %s was modified.\n"
  766. "Save before close?"
  767. msgstr "文件 %s 已修改。\n关闭前保存?"
  768. msgid "Close file"
  769. msgstr "关闭文件"
  770. #, c-format
  771. msgid ""
  772. "Midnight Commander is being shut down.\n"
  773. "Save modified file %s?"
  774. msgstr "Midnight Commander 即将被关闭。\n要保存修改过的文件 %s 吗?"
  775. msgid "This function is not implemented"
  776. msgstr "该功能尚未实现"
  777. msgid "Copy to clipboard"
  778. msgstr "复制到剪贴板"
  779. msgid "Unable to save to file"
  780. msgstr "无法保存到文件"
  781. msgid "Cut to clipboard"
  782. msgstr "剪切到剪贴板"
  783. msgid "Goto line"
  784. msgstr "转到行"
  785. msgid "Save block"
  786. msgstr "保存块"
  787. msgid "Insert file"
  788. msgstr "插入文件"
  789. msgid "Cannot insert file"
  790. msgstr "无法插入文件"
  791. msgid "Sort block"
  792. msgstr "排序块"
  793. msgid "You must first highlight a block of text"
  794. msgstr "您必需先突出显示一个文字块"
  795. msgid "Run sort"
  796. msgstr "运行 sort"
  797. msgid "Enter sort options (see manpage) separated by whitespace:"
  798. msgstr "输入排序选项(查看 manpage)用空格分隔: "
  799. msgid "Sort"
  800. msgstr "排序"
  801. msgid "Cannot execute sort command"
  802. msgstr "试图执行 sort 命令时发生错误"
  803. #, c-format
  804. msgid "Sort returned non-zero: %s"
  805. msgstr "Sort 返回非零值: %s"
  806. msgid "Paste output of external command"
  807. msgstr "粘贴外部命令的输出"
  808. msgid "Enter shell command(s):"
  809. msgstr "输入Shell 命令: "
  810. msgid "External command"
  811. msgstr "外部命令"
  812. msgid "Cannot execute command"
  813. msgstr "无法执行命令"
  814. msgid "mail -s <subject> -c <cc> <to>"
  815. msgstr "mail -s <subject> -c <cc> <to>"
  816. msgid "To"
  817. msgstr "收件人"
  818. msgid "Subject"
  819. msgstr "主题"
  820. msgid "Copies to"
  821. msgstr "复制到"
  822. msgid "Mail"
  823. msgstr "邮件"
  824. msgid "Insert literal"
  825. msgstr "插入文字"
  826. msgid "Press any key:"
  827. msgstr "按下任意键: "
  828. msgid ""
  829. "Current text was modified without a file save.\n"
  830. "Continue discards these changes"
  831. msgstr "当前文本被修改但没有保存文件。\n选择继续将丢失这些修改"
  832. msgid "In se&lection"
  833. msgstr "在选择区域(&L)"
  834. msgid "&Find all"
  835. msgstr "查找全部(&F)"
  836. msgid "Enter replacement string:"
  837. msgstr "输入替换字符串: "
  838. msgid "Replace with:"
  839. msgstr "替换为: "
  840. msgid "&Replace"
  841. msgstr "替换(&R)"
  842. msgid "A&ll"
  843. msgstr "全部(&L)"
  844. msgid "&Skip"
  845. msgstr "跳过(&S)"
  846. msgid "Confirm replace"
  847. msgstr "确认替换"
  848. msgid "Cancel"
  849. msgstr "取消"
  850. msgid ""
  851. "Current text was modified without a file save.\n"
  852. "Continue discards these changes."
  853. msgstr "当前文字被修改但没有保存。\n选择继续将丢失这些修改。"
  854. msgid "NoName"
  855. msgstr "未命名"
  856. msgid "&Open file..."
  857. msgstr "打开文件(&O)..."
  858. msgid "&New"
  859. msgstr "新建(&N)"
  860. msgid "&Close"
  861. msgstr "关闭(&C)"
  862. msgid "Save &as..."
  863. msgstr "另存为(&A)..."
  864. msgid "&Insert file..."
  865. msgstr "插入文件(&I)..."
  866. msgid "Cop&y to file..."
  867. msgstr "复制到文件(&Y)..."
  868. msgid "&User menu..."
  869. msgstr "用户菜单(&U)..."
  870. msgid "A&bout..."
  871. msgstr "关于(&B)..."
  872. msgid "&Quit"
  873. msgstr "退出(&Q)"
  874. msgid "&Undo"
  875. msgstr "撤消(&U)"
  876. msgid "&Redo"
  877. msgstr "重做(&R)"
  878. msgid "&Toggle ins/overw"
  879. msgstr "翻转插入/覆盖(&T)"
  880. msgid "To&ggle mark"
  881. msgstr "翻转标记(&G)"
  882. msgid "&Mark columns"
  883. msgstr "按列标记(&M)"
  884. msgid "Mark &all"
  885. msgstr "全部标记(&A)"
  886. msgid "Unmar&k"
  887. msgstr "取消标记(&K)"
  888. msgid "Cop&y"
  889. msgstr "复制(&Y)"
  890. msgid "Mo&ve"
  891. msgstr "移动(&V)"
  892. msgid "&Delete"
  893. msgstr "删除(&D)"
  894. msgid "Co&py to clipfile"
  895. msgstr "复制到剪切板文件(&P)"
  896. msgid "&Cut to clipfile"
  897. msgstr "删除到剪切板文件(&C)"
  898. msgid "Pa&ste from clipfile"
  899. msgstr "从剪切板文件粘贴(&S)"
  900. msgid "&Beginning"
  901. msgstr "起始(&B)"
  902. msgid "&End"
  903. msgstr "末尾(&E)"
  904. msgid "&Search..."
  905. msgstr "搜索(&S)..."
  906. msgid "Search &again"
  907. msgstr "重新搜索(&S)"
  908. msgid "&Replace..."
  909. msgstr "替换(&R)..."
  910. msgid "&Toggle bookmark"
  911. msgstr "翻转书签(&T)"
  912. msgid "&Next bookmark"
  913. msgstr "下一个书签(&N)"
  914. msgid "&Prev bookmark"
  915. msgstr "上一个书签(&P)"
  916. msgid "&Flush bookmarks"
  917. msgstr "清理书签(&F)"
  918. msgid "&Go to line..."
  919. msgstr "转到行(&G)..."
  920. msgid "&Toggle line state"
  921. msgstr "翻转行状态(&T)"
  922. msgid "Go to matching &bracket"
  923. msgstr "转到匹配的括号(&B)"
  924. msgid "Toggle s&yntax highlighting"
  925. msgstr "切换语法突出显示(&Y)"
  926. msgid "&Find declaration"
  927. msgstr "查找申明(&F)"
  928. msgid "Back from &declaration"
  929. msgstr "向后查找申明(&D)"
  930. msgid "For&ward to declaration"
  931. msgstr "向前查找申明(&W)"
  932. msgid "Encod&ing..."
  933. msgstr "编码(&I)..."
  934. msgid "&Refresh screen"
  935. msgstr "刷新屏幕(&R)"
  936. msgid "&Start/Stop record macro"
  937. msgstr "开始/停止录制宏(&S)"
  938. msgid "Delete macr&o..."
  939. msgstr "删除宏(&O)..."
  940. msgid "Record/Repeat &actions"
  941. msgstr "录制/重复动作(&A)"
  942. msgid "S&pell check"
  943. msgstr "拼写检查(&P)"
  944. msgid "C&heck word"
  945. msgstr "检查单词(&H)"
  946. msgid "Change spelling &language..."
  947. msgstr "更改拼写语言(&L)..."
  948. msgid "&Mail..."
  949. msgstr "发送邮件(&M)..."
  950. msgid "Insert &literal..."
  951. msgstr "插入文字(&L)..."
  952. msgid "Insert &date/time"
  953. msgstr "插入日期/时间(&D)"
  954. msgid "&Format paragraph"
  955. msgstr "格式化段落(&F)"
  956. msgid "&Sort..."
  957. msgstr "排序(&S)..."
  958. msgid "&Paste output of..."
  959. msgstr "粘贴输出(&P)..."
  960. msgid "&External formatter"
  961. msgstr "外部格式化工具(&E)"
  962. msgid "&Move"
  963. msgstr "移动(&M)"
  964. msgid "&Resize"
  965. msgstr "调整大小(&R)"
  966. msgid "&Toggle fullscreen"
  967. msgstr "切换全屏显示(&T)"
  968. msgid "&Next"
  969. msgstr "下一个(&N)"
  970. msgid "&Previous"
  971. msgstr "前一个(&P)"
  972. msgid "&List..."
  973. msgstr "窗口列表(&L)..."
  974. msgid "&General..."
  975. msgstr "常规(&G)..."
  976. msgid "Save &mode..."
  977. msgstr "保存模式(&M)..."
  978. msgid "Learn &keys..."
  979. msgstr "学习按键(&K)..."
  980. msgid "Syntax &highlighting..."
  981. msgstr "语法突出显示(&h)..."
  982. msgid "S&yntax file"
  983. msgstr "语法文件(&Y)"
  984. msgid "&Menu file"
  985. msgstr "菜单文件(&M)"
  986. msgid "&Save setup"
  987. msgstr "保存设置(&S)"
  988. msgid "&File"
  989. msgstr "文件(&F)"
  990. msgid "&Edit"
  991. msgstr "编辑(&E)"
  992. msgid "&Search"
  993. msgstr "搜索(&S)"
  994. msgid "&Command"
  995. msgstr "命令(&C)"
  996. msgid "For&mat"
  997. msgstr "格式化(&r)"
  998. msgid "&Window"
  999. msgstr "窗口(&W)"
  1000. msgid "&Options"
  1001. msgstr "选项(&O)"
  1002. msgid "&None"
  1003. msgstr "无(&N)"
  1004. msgid "&Dynamic paragraphing"
  1005. msgstr "动态分段(&D)"
  1006. msgid "Type &writer wrap"
  1007. msgstr "硬回车换行(&W)"
  1008. msgid "Wrap mode"
  1009. msgstr "换行模式"
  1010. msgid "Tabulation"
  1011. msgstr "制表"
  1012. msgid "&Fake half tabs"
  1013. msgstr "模拟半个制表符(&F)"
  1014. msgid "&Backspace through tabs"
  1015. msgstr "退格键删除制表符(&B)"
  1016. msgid "Fill tabs with &spaces"
  1017. msgstr "使用空格填充制表位(&S)"
  1018. msgid "Tab spacing:"
  1019. msgstr "制表位间距: "
  1020. msgid "Other options"
  1021. msgstr "其它选项"
  1022. msgid "&Return does autoindent"
  1023. msgstr "回车不自动缩进(&R)"
  1024. msgid "Confir&m before saving"
  1025. msgstr "保存前确认(&M)"
  1026. msgid "Save file &position"
  1027. msgstr "保存文件位置(&P)"
  1028. msgid "&Visible trailing spaces"
  1029. msgstr "行尾空格可见(&V)"
  1030. msgid "Visible &tabs"
  1031. msgstr "制表位可见(&T)"
  1032. msgid "Synta&x highlighting"
  1033. msgstr "语法突出显示(&X)"
  1034. msgid "C&ursor after inserted block"
  1035. msgstr "光标置于插入块之后(&U)"
  1036. msgid "Pers&istent selection"
  1037. msgstr "永久选择(&I)"
  1038. msgid "Cursor be&yond end of line"
  1039. msgstr "光标不受行尾限制(&Y)"
  1040. msgid "&Group undo"
  1041. msgstr "组撤消(&G)"
  1042. msgid "Word wrap line length:"
  1043. msgstr "换行位置: "
  1044. msgid "Editor options"
  1045. msgstr "编辑器选项"
  1046. msgid ""
  1047. "A user friendly text editor\n"
  1048. "written for the Midnight Commander."
  1049. msgstr "为 Midnight Commander 编写的\n一个界面友好的文本编辑器。"
  1050. msgid "Copyright (C) 1996-2015 the Free Software Foundation"
  1051. msgstr ""
  1052. msgid "About"
  1053. msgstr "关于"
  1054. msgid "Open files"
  1055. msgstr "打开文件"
  1056. msgid "Edit: "
  1057. msgstr "编辑: "
  1058. msgid "ButtonBar|Mark"
  1059. msgstr "ButtonBar|标记"
  1060. msgid "ButtonBar|Replac"
  1061. msgstr "ButtonBar|替换"
  1062. msgid "ButtonBar|Copy"
  1063. msgstr "ButtonBar|复制"
  1064. msgid "ButtonBar|Move"
  1065. msgstr "ButtonBar|移动"
  1066. msgid "ButtonBar|Delete"
  1067. msgstr "ButtonBar|删除"
  1068. msgid "ButtonBar|PullDn"
  1069. msgstr "ButtonBar|菜单"
  1070. msgid "Breton"
  1071. msgstr ""
  1072. msgid "Czech"
  1073. msgstr ""
  1074. msgid "Welsh"
  1075. msgstr ""
  1076. msgid "Danish"
  1077. msgstr ""
  1078. msgid "German"
  1079. msgstr ""
  1080. msgid "Greek"
  1081. msgstr ""
  1082. msgid "English"
  1083. msgstr ""
  1084. msgid "British English"
  1085. msgstr ""
  1086. msgid "Canadian English"
  1087. msgstr ""
  1088. msgid "American English"
  1089. msgstr ""
  1090. msgid "Esperanto"
  1091. msgstr ""
  1092. msgid "Spanish"
  1093. msgstr ""
  1094. msgid "Faroese"
  1095. msgstr ""
  1096. msgid "French"
  1097. msgstr ""
  1098. msgid "Italian"
  1099. msgstr ""
  1100. msgid "Dutch"
  1101. msgstr ""
  1102. msgid "Norwegian"
  1103. msgstr ""
  1104. msgid "Polish"
  1105. msgstr ""
  1106. msgid "Portuguese"
  1107. msgstr ""
  1108. msgid "Romanian"
  1109. msgstr ""
  1110. msgid "Russian"
  1111. msgstr ""
  1112. msgid "Slovak"
  1113. msgstr ""
  1114. msgid "Swedish"
  1115. msgstr ""
  1116. msgid "Ukrainian"
  1117. msgstr ""
  1118. msgid "&Add word"
  1119. msgstr "添加单词(&A)"
  1120. msgid "Language"
  1121. msgstr "语言"
  1122. msgid "Misspelled"
  1123. msgstr "拼写错误"
  1124. msgid "Check word"
  1125. msgstr "检查单词"
  1126. msgid "Suggest"
  1127. msgstr "建议"
  1128. msgid "Select language"
  1129. msgstr "选择语言"
  1130. msgid "Load syntax file"
  1131. msgstr "加载语法文件"
  1132. #, c-format
  1133. msgid ""
  1134. "Cannot open file %s\n"
  1135. "%s"
  1136. msgstr "无法打开文件 %s\n%s"
  1137. #, c-format
  1138. msgid "Error in file %s on line %d"
  1139. msgstr "在文件 %s 的第 %d 行有错误"
  1140. msgid ""
  1141. "The Commander can't change to the directory that\n"
  1142. "the subshell claims you are in. Perhaps you have\n"
  1143. "deleted your working directory, or given yourself\n"
  1144. "extra access permissions with the \"su\" command?"
  1145. msgstr "MC 无法进入 subshell 所声称的您的所在的目录。\n也许您已删除了工作目录,或者通过 \"su\" 命令\n给予此进程额外的访问权限?"
  1146. #, c-format
  1147. msgid "Cannot fetch a local copy of %s"
  1148. msgstr "无法获取 %s 的本地副本"
  1149. msgid "The shell is already running a command"
  1150. msgstr "Shell 正在运行一个命令"
  1151. #, c-format
  1152. msgid "Type 'exit' to return to the Midnight Commander"
  1153. msgstr "输入 'exit' 返回 Midnight Commander"
  1154. msgid "Set &all"
  1155. msgstr "全部设置(&A)"
  1156. msgid "S&kip"
  1157. msgstr "跳过(&K)"
  1158. msgid "&Set"
  1159. msgstr "设置(&S)"
  1160. msgid "owner"
  1161. msgstr "属主"
  1162. msgid "group"
  1163. msgstr "群组"
  1164. msgid "other"
  1165. msgstr "其它"
  1166. msgid "Flag"
  1167. msgstr "标志"
  1168. msgid "Chown advanced command"
  1169. msgstr "Chown 高级命令"
  1170. #, c-format
  1171. msgid ""
  1172. "Cannot chmod \"%s\"\n"
  1173. "%s"
  1174. msgstr "无法 chmod“%s”\n%s"
  1175. #, c-format
  1176. msgid ""
  1177. "Cannot chown \"%s\"\n"
  1178. "%s"
  1179. msgstr "无法 chown“%s”\n%s"
  1180. msgid "< Default >"
  1181. msgstr ""
  1182. msgid "Skins"
  1183. msgstr ""
  1184. msgid "Other 8 bit"
  1185. msgstr "其它 8 位"
  1186. msgid "Running"
  1187. msgstr "正在运行"
  1188. msgid "Stopped"
  1189. msgstr "已停止"
  1190. msgid "&Never"
  1191. msgstr "从不(&N)"
  1192. msgid "On dum&b terminals"
  1193. msgstr "在简易终端上(&b)"
  1194. msgid "Alwa&ys"
  1195. msgstr "总是(&Y)"
  1196. msgid "File operations"
  1197. msgstr "文件操作"
  1198. msgid "&Verbose operation"
  1199. msgstr "冗余操作(&V)"
  1200. msgid "Compute tota&ls"
  1201. msgstr "计算总和(&L)"
  1202. msgid "Classic pro&gressbar"
  1203. msgstr "经典进度条(&G)"
  1204. msgid "Mkdi&r autoname"
  1205. msgstr "创建目录时自动命名(&R)"
  1206. msgid "&Preallocate space"
  1207. msgstr "预分配空间(&P)"
  1208. msgid "Esc key mode"
  1209. msgstr "ESC 键模式"
  1210. msgid "S&ingle press"
  1211. msgstr "按下单个键(&I)"
  1212. msgid "Timeout:"
  1213. msgstr "超时: "
  1214. msgid "Pause after run"
  1215. msgstr "运行后暂停"
  1216. msgid "Use internal edi&t"
  1217. msgstr "使用内部编辑器(&T)"
  1218. msgid "Use internal vie&w"
  1219. msgstr "使用内部查看器(&W)"
  1220. msgid "A&sk new file name"
  1221. msgstr "询问新文件名(&S)"
  1222. msgid "Auto m&enus"
  1223. msgstr "自动菜单(&E)"
  1224. msgid "&Drop down menus"
  1225. msgstr "下拉菜单(&D)"
  1226. msgid "S&hell patterns"
  1227. msgstr "S&hell 通配符"
  1228. msgid "Co&mplete: show all"
  1229. msgstr "完全: 显示全部(&M)"
  1230. msgid "Rotating d&ash"
  1231. msgstr "旋转线(&A)"
  1232. msgid "Cd follows lin&ks"
  1233. msgstr "切换目录跟随链接(&K)"
  1234. msgid "Sa&fe delete"
  1235. msgstr "安全删除(&F)"
  1236. msgid "A&uto save setup"
  1237. msgstr "自动保存设置(&U)"
  1238. msgid "Configure options"
  1239. msgstr "配置选项"
  1240. msgid "Skin:"
  1241. msgstr ""
  1242. msgid "Appearance"
  1243. msgstr ""
  1244. msgid "Case &insensitive"
  1245. msgstr "大小写不敏感(&I)"
  1246. msgid "Use panel sort mo&de"
  1247. msgstr "使用面板排序模式(&D)"
  1248. msgid "Show mi&ni-status"
  1249. msgstr "显示最少状态(&N)"
  1250. msgid "Use SI si&ze units"
  1251. msgstr "使用SI大小单位(&Z)"
  1252. msgid "Mi&x all files"
  1253. msgstr "混合所有文件(&X)"
  1254. msgid "Show &backup files"
  1255. msgstr "显示备份文件(&B)"
  1256. msgid "Show &hidden files"
  1257. msgstr "显示隐藏文件(&H)"
  1258. msgid "&Fast dir reload"
  1259. msgstr "快速重载目录(&F)"
  1260. msgid "Ma&rk moves down"
  1261. msgstr "标记文件后光标下移(&R)"
  1262. msgid "Re&verse files only"
  1263. msgstr "仅反选文件(&V)"
  1264. msgid "Simple s&wap"
  1265. msgstr "简单交换(&W)"
  1266. msgid "A&uto save panels setup"
  1267. msgstr "自动保存面板设置(&U)"
  1268. msgid "Navigation"
  1269. msgstr "导航"
  1270. msgid "L&ynx-like motion"
  1271. msgstr "类似 Lynx 动作(&Y)"
  1272. msgid "Pa&ge scrolling"
  1273. msgstr "页面滚动(&G)"
  1274. msgid "&Mouse page scrolling"
  1275. msgstr "用鼠标滚动页(&M)"
  1276. msgid "File highlight"
  1277. msgstr "文件突出显示"
  1278. msgid "File &types"
  1279. msgstr "文件类型(&T)"
  1280. msgid "&Permissions"
  1281. msgstr "权限(&P)"
  1282. msgid "Quick search"
  1283. msgstr "快速查找"
  1284. msgid "Panel options"
  1285. msgstr "面板选项"
  1286. msgid "Information"
  1287. msgstr "信息"
  1288. msgid ""
  1289. "Using the fast reload option may not reflect the exact\n"
  1290. "directory contents. In this case you'll need to do a\n"
  1291. "manual reload of the directory. See the man page for\n"
  1292. "the details."
  1293. msgstr "使用快速重载选项可能无法反映目录的真实内容。\n在这种情况下,您需要手工刷新目录的内容。\n请参考手册获得详细的信息。"
  1294. msgid "&Full file list"
  1295. msgstr "完整文件列表(&F)"
  1296. msgid "&Brief file list"
  1297. msgstr "简要文件列表(&B)"
  1298. msgid "&Long file list"
  1299. msgstr "长文件列表(&L)"
  1300. msgid "&User defined:"
  1301. msgstr "用户自定义(&U): "
  1302. msgid "User &mini status"
  1303. msgstr "用户简要状态(&M)"
  1304. msgid "Listing mode"
  1305. msgstr "列表模式"
  1306. msgid "Executable &first"
  1307. msgstr "可执行文件优先(&f)"
  1308. msgid "&Reverse"
  1309. msgstr "反向(&R)"
  1310. msgid "Sort order"
  1311. msgstr "排序"
  1312. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context
  1313. #. prefix
  1314. msgid "Confirmation|&Delete"
  1315. msgstr "Confirmation|删除(&D)"
  1316. msgid "Confirmation|O&verwrite"
  1317. msgstr "Confirmation|覆盖时(&V)"
  1318. msgid "Confirmation|&Execute"
  1319. msgstr "Confirmation|执行(&E)"
  1320. msgid "Confirmation|E&xit"
  1321. msgstr "Confirmation|退出(&X)"
  1322. msgid "Confirmation|Di&rectory hotlist delete"
  1323. msgstr "Confirmation|删除目录活动表(&R)"
  1324. msgid "Confirmation|&History cleanup"
  1325. msgstr "Confirmation|清除历史(&H)"
  1326. msgid "Confirmation"
  1327. msgstr "确认"
  1328. msgid "&UTF-8 output"
  1329. msgstr "&UTF-8 输出"
  1330. msgid "&Full 8 bits output"
  1331. msgstr "完整的 8 bit 输出(&F)"
  1332. msgid "&ISO 8859-1"
  1333. msgstr "&ISO 8859-1"
  1334. msgid "7 &bits"
  1335. msgstr "7-bit(&B)"
  1336. msgid "F&ull 8 bits input"
  1337. msgstr "全8位输入(&U)"
  1338. msgid "Display bits"
  1339. msgstr "显示位"
  1340. msgid "Input / display codepage:"
  1341. msgstr "输入/显示代码页: "
  1342. msgid "Directory tree"
  1343. msgstr "目录树"
  1344. msgid "Timeout for freeing VFSs (sec):"
  1345. msgstr "释放 VFS 超时(秒): "
  1346. msgid "FTP anonymous password:"
  1347. msgstr "FTP 匿名密码: "
  1348. msgid "FTP directory cache timeout (sec):"
  1349. msgstr "FTP 目录缓存超时(秒): "
  1350. msgid "&Always use ftp proxy:"
  1351. msgstr "总是使用 FTP 代理(&A): "
  1352. msgid "&Use ~/.netrc"
  1353. msgstr "使用 ~/.netrc(&U)"
  1354. msgid "Use &passive mode"
  1355. msgstr "使用被动模式(&P)"
  1356. msgid "Use passive mode over pro&xy"
  1357. msgstr "通过代理时使用被动模式(&X)"
  1358. msgid "Virtual File System Setting"
  1359. msgstr "虚拟文件系统设置"
  1360. msgid "cd"
  1361. msgstr "切换目录"
  1362. msgid "Quick cd"
  1363. msgstr "快速切换目录"
  1364. msgid "Existing filename (filename symlink will point to):"
  1365. msgstr "已存在文件名(文件名符号链接指向): "
  1366. msgid "Symbolic link filename:"
  1367. msgstr "符号链接文件名: "
  1368. msgid "Symbolic link"
  1369. msgstr "符号链接"
  1370. msgid "&Stop"
  1371. msgstr "停止(&S)"
  1372. msgid "&Resume"
  1373. msgstr "恢复(&R)"
  1374. msgid "&Kill"
  1375. msgstr "杀死(&K)"
  1376. msgid "Background jobs"
  1377. msgstr "后台作业"
  1378. #, c-format
  1379. msgid "Password for \\\\%s\\%s"
  1380. msgstr "\\\\%s\\%s 的密码"
  1381. msgid "Domain:"
  1382. msgstr "域: "
  1383. msgid "Username:"
  1384. msgstr "用户名: "
  1385. msgid "SMB authentication"
  1386. msgstr "SMB 认证"
  1387. msgid "set &user ID on execution"
  1388. msgstr "执行时设置用户 ID(&U)"
  1389. msgid "set &group ID on execution"
  1390. msgstr "执行时设置组 ID(&G)"
  1391. msgid "stick&y bit"
  1392. msgstr "防删位(&Y)"
  1393. msgid "&read by owner"
  1394. msgstr "所有者读取(&R)"
  1395. msgid "&write by owner"
  1396. msgstr "所有者写入(&W)"
  1397. msgid "e&xecute/search by owner"
  1398. msgstr "所有者执行/搜索(&X)"
  1399. msgid "rea&d by group"
  1400. msgstr "用户组读取(&D)"
  1401. msgid "write by grou&p"
  1402. msgstr "用户组写入(&P)"
  1403. msgid "execu&te/search by group"
  1404. msgstr "用户组执行/搜索(&T)"
  1405. msgid "read &by others"
  1406. msgstr "其他人读取(&B)"
  1407. msgid "wr&ite by others"
  1408. msgstr "其他人写入(&I)"
  1409. msgid "execute/searc&h by others"
  1410. msgstr "其他人执行/搜索(&H)"
  1411. msgid "Name:"
  1412. msgstr "名字: "
  1413. msgid "Permissions (octal):"
  1414. msgstr "权限(8进制): "
  1415. msgid "Owner name:"
  1416. msgstr "所有者名字: "
  1417. msgid "Group name:"
  1418. msgstr "组名字: "
  1419. msgid "&Marked all"
  1420. msgstr "全部标记(&M)"
  1421. msgid "S&et marked"
  1422. msgstr "设置已标记的(&E)"
  1423. msgid "C&lear marked"
  1424. msgstr "清除已标记的(&L)"
  1425. msgid "Chmod command"
  1426. msgstr "Chmod 命令"
  1427. msgid "Permission"
  1428. msgstr "权限"
  1429. msgid "File"
  1430. msgstr "文件"
  1431. msgid "Set &groups"
  1432. msgstr "设置群组(&G)"
  1433. msgid "Set &users"
  1434. msgstr "设置用户(&U)"
  1435. msgid "Name"
  1436. msgstr "名字"
  1437. msgid "Owner name"
  1438. msgstr "所有者名"
  1439. msgid "Group name"
  1440. msgstr "群组名"
  1441. msgid "Size"
  1442. msgstr "大小"
  1443. msgid "Chown command"
  1444. msgstr "Chown 命令"
  1445. msgid "User name"
  1446. msgstr "用户名"
  1447. msgid "<Unknown user>"
  1448. msgstr "<未知用户>"
  1449. msgid "<Unknown group>"
  1450. msgstr "<未知群组>"
  1451. msgid "Enter machine name (F1 for details):"
  1452. msgstr "输入机器名 (F1 查看细节): "
  1453. msgid "Files tagged, want to cd?"
  1454. msgstr "文件已经标记,要更改目录吗?"
  1455. msgid "Cannot change directory"
  1456. msgstr "无法改变目录"
  1457. msgid "Filter"
  1458. msgstr "过滤"
  1459. msgid "Set expression for filtering filenames"
  1460. msgstr "设置过滤文件名的表达式"
  1461. #, c-format
  1462. msgid "Link %s to:"
  1463. msgstr "链接 %s 到: "
  1464. msgid "Link"
  1465. msgstr "链接"
  1466. #, c-format
  1467. msgid "link: %s"
  1468. msgstr "链接: %s"
  1469. #, c-format
  1470. msgid "symlink: %s"
  1471. msgstr "符号链接: %s"
  1472. #, c-format
  1473. msgid "Cannot chdir to \"%s\""
  1474. msgstr "无法进入目录“%s”"
  1475. msgid "View file"
  1476. msgstr "查看文件"
  1477. msgid "Filename:"
  1478. msgstr "文件名: "
  1479. msgid "Filtered view"
  1480. msgstr "过滤视图"
  1481. msgid "Filter command and arguments:"
  1482. msgstr "过滤命令和参数: "
  1483. msgid "Edit file"
  1484. msgstr "编辑文件"
  1485. msgid "Create a new Directory"
  1486. msgstr "创建新目录"
  1487. msgid "Enter directory name:"
  1488. msgstr "输入目录名称: "
  1489. msgid "Extension file edit"
  1490. msgstr "扩展文件编辑"
  1491. msgid "Which extension file you want to edit?"
  1492. msgstr "您要编辑哪个扩展文件?"
  1493. msgid "&System Wide"
  1494. msgstr "系统范围(&S)"
  1495. msgid "Highlighting groups file edit"
  1496. msgstr "突出显示组文件编辑"
  1497. msgid "Which highlighting file you want to edit?"
  1498. msgstr "您要编辑哪个突出显示的文件?"
  1499. msgid "Compare directories"
  1500. msgstr "比较目录"
  1501. msgid "Select compare method:"
  1502. msgstr "选择比较方法: "
  1503. msgid "&Quick"
  1504. msgstr "快速(&Q)"
  1505. msgid "&Size only"
  1506. msgstr "仅大小(&S)"
  1507. msgid "&Thorough"
  1508. msgstr "全面(&T)"
  1509. msgid ""
  1510. "Both panels should be in the listing mode\n"
  1511. "to use this command"
  1512. msgstr "若要使用该命令,\n两个面板必需都处于列表视图模式"
  1513. msgid ""
  1514. "Not an xterm or Linux console;\n"
  1515. "the panels cannot be toggled."
  1516. msgstr "不是一个 xterm 或 Linux 控制台;\n无法切换面板。"
  1517. #, c-format
  1518. msgid "Symlink '%s' points to:"
  1519. msgstr "符号链接“%s”指向: "
  1520. msgid "Edit symlink"
  1521. msgstr "编辑符号链接"
  1522. #, c-format
  1523. msgid "edit symlink, unable to remove %s: %s"
  1524. msgstr "编辑符号链接,无法删除 %s: %s"
  1525. #, c-format
  1526. msgid "edit symlink: %s"
  1527. msgstr "编辑符号链接: %s"
  1528. #, c-format
  1529. msgid "'%s' is not a symbolic link"
  1530. msgstr "“%s”不是一个符号链接"
  1531. msgid "FTP to machine"
  1532. msgstr "FTP 到主机"
  1533. msgid "SFTP to machine"
  1534. msgstr "SFTP 到主机"
  1535. msgid "Shell link to machine"
  1536. msgstr "Shell 链接到主机"
  1537. msgid "SMB link to machine"
  1538. msgstr "SMB 链接到主机"
  1539. msgid "Undelete files on an ext2 file system"
  1540. msgstr "反删除 ext2 文件系统上的文件"
  1541. msgid ""
  1542. "Enter device (without /dev/) to undelete\n"
  1543. "files on: (F1 for details)"
  1544. msgstr "输入要反删除的文件所在的设备(不带 /dev/)\n(F1 获取详细信息)"
  1545. msgid "Directory scanning"
  1546. msgstr "扫描目录"
  1547. msgid "Setup"
  1548. msgstr "设置"
  1549. #, c-format
  1550. msgid "Setup saved to %s"
  1551. msgstr "设置保存到 %s"
  1552. #, c-format
  1553. msgid "Unable to save setup to %s"
  1554. msgstr "无法保存设置到 %s"
  1555. msgid "Cannot execute commands on non-local filesystems"
  1556. msgstr "您无法在非本地文件系统上执行命令"
  1557. #, c-format
  1558. msgid ""
  1559. "Cannot chdir to \"%s\"\n"
  1560. "%s"
  1561. msgstr "无法进入目录“%s”\n%s"
  1562. msgid "Cannot read directory contents"
  1563. msgstr "无法读取目录内容"
  1564. msgid "Parameter"
  1565. msgstr "参数"
  1566. #, c-format
  1567. msgid ""
  1568. "Cannot create temporary command file\n"
  1569. "%s"
  1570. msgstr "无法创建临时命令文件\n%s"
  1571. #, c-format
  1572. msgid " %s%s file error"
  1573. msgstr " %s%s 文件错误"
  1574. #, c-format
  1575. msgid ""
  1576. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1577. "the installation failed. Please fetch a fresh copy from the Midnight "
  1578. "Commander package."
  1579. msgstr "文件 %smc.ext 的格式在3.0版本时已经被修改。似乎安装有错误。请获取新的Midnight Commander软件包。"
  1580. #, c-format
  1581. msgid "%s file error"
  1582. msgstr "%s 文件错误"
  1583. #, c-format
  1584. msgid ""
  1585. "The format of the %s file has changed with version 3.0. You may either want "
  1586. "to copy it from %smc.ext or use that file as an example of how to write it."
  1587. msgstr "%s 文件的格式在 3.0 版中已经改变。您可以或者将 %smc.ext 文件复制过来,或者将其为作为范本撰写您自己的版本。"
  1588. msgid "DialogTitle|Copy"
  1589. msgstr "DialogTitle|复制"
  1590. msgid "DialogTitle|Move"
  1591. msgstr "DialogTitle|移动"
  1592. msgid "DialogTitle|Delete"
  1593. msgstr "DialogTitle|删除"
  1594. msgid "FileOperation|Copy"
  1595. msgstr "FileOperation|复制"
  1596. msgid "FileOperation|Move"
  1597. msgstr "FileOperation|移动"
  1598. msgid "FileOperation|Delete"
  1599. msgstr "FileOperation|删除"
  1600. #, no-c-format
  1601. msgid "%o %f%n\"%s\"%m"
  1602. msgstr ""
  1603. #, no-c-format
  1604. msgid "%o %d %f%m"
  1605. msgstr "%o %d %f%m"
  1606. msgid "file"
  1607. msgstr "文件"
  1608. msgid "files"
  1609. msgstr "文件"
  1610. msgid "directory"
  1611. msgstr "目录"
  1612. msgid "directories"
  1613. msgstr "目录"
  1614. msgid "files/directories"
  1615. msgstr "文件/目录"
  1616. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1617. msgid " with source mask:"
  1618. msgstr " 源掩码: "
  1619. msgid "Cannot make the hardlink"
  1620. msgstr "无法创建硬链接"
  1621. #, c-format
  1622. msgid ""
  1623. "Cannot read source link \"%s\"\n"
  1624. "%s"
  1625. msgstr "无法读取源链接“%s”\n%s"
  1626. msgid ""
  1627. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1628. "\n"
  1629. "Option Stable Symlinks will be disabled"
  1630. msgstr "无法在非本地文件系统上创建稳定的符号链接: \n\n稳定的符号链接选项将被取消"
  1631. #, c-format
  1632. msgid ""
  1633. "Cannot create target symlink \"%s\"\n"
  1634. "%s"
  1635. msgstr "无法创建目标符号链接“%s”\n%s"
  1636. msgid "Ski&p all"
  1637. msgstr "路过全部(&I)"
  1638. msgid "&Retry"
  1639. msgstr "重试(&R)"
  1640. #, c-format
  1641. msgid ""
  1642. "Directory \"%s\" not empty.\n"
  1643. "Delete it recursively?"
  1644. msgstr "目录“%s”不为空。\n递归删除其中内容?"
  1645. #, c-format
  1646. msgid ""
  1647. "Background process:\n"
  1648. "Directory \"%s\" not empty.\n"
  1649. "Delete it recursively?"
  1650. msgstr "后台进程: \n目录“%s”不为空。\n递归删除其中内容?"
  1651. msgid "Non&e"
  1652. msgstr "无(&E)"
  1653. #, c-format
  1654. msgid ""
  1655. "Cannot stat file \"%s\"\n"
  1656. "%s"
  1657. msgstr "无法 stat 文件“%s”\n%s"
  1658. #, c-format
  1659. msgid ""
  1660. "\"%s\"\n"
  1661. "and\n"
  1662. "\"%s\"\n"
  1663. "are the same file"
  1664. msgstr "“%s”\n和\n“%s”\n是同一个文件"
  1665. #, c-format
  1666. msgid "Cannot overwrite directory \"%s\""
  1667. msgstr "无法覆盖目录“%s”"
  1668. #, c-format
  1669. msgid ""
  1670. "Cannot move file \"%s\" to \"%s\"\n"
  1671. "%s"
  1672. msgstr "无法移动文件“%s”到“%s”\n%s"
  1673. #, c-format
  1674. msgid ""
  1675. "Cannot remove file \"%s\"\n"
  1676. "%s"
  1677. msgstr "无法删除文件“%s”\n%s"
  1678. #, c-format
  1679. msgid ""
  1680. "Cannot delete file \"%s\"\n"
  1681. "%s"
  1682. msgstr "无法删除文件“%s”\n%s"
  1683. #, c-format
  1684. msgid ""
  1685. "Cannot remove directory \"%s\"\n"
  1686. "%s"
  1687. msgstr "无法删除目录“%s”\n%s"
  1688. #, c-format
  1689. msgid ""
  1690. "Cannot overwrite directory \"%s\"\n"
  1691. "%s"
  1692. msgstr "无法覆盖目录“%s”\n%s"
  1693. #, c-format
  1694. msgid ""
  1695. "Cannot stat source file \"%s\"\n"
  1696. "%s"
  1697. msgstr "无法 stat 源文件“%s”\n%s"
  1698. #, c-format
  1699. msgid ""
  1700. "Cannot create special file \"%s\"\n"
  1701. "%s"
  1702. msgstr "无法创建特殊文件“%s”\n%s"
  1703. #, c-format
  1704. msgid ""
  1705. "Cannot chown target file \"%s\"\n"
  1706. "%s"
  1707. msgstr "无法 chown 目标文件“%s”\n%s"
  1708. #, c-format
  1709. msgid ""
  1710. "Cannot chmod target file \"%s\"\n"
  1711. "%s"
  1712. msgstr "无法 chmod 目标文件“%s”\n%s"
  1713. #, c-format
  1714. msgid ""
  1715. "Cannot open source file \"%s\"\n"
  1716. "%s"
  1717. msgstr "无法打开源文件“%s”\n%s"
  1718. msgid "Reget failed, about to overwrite file"
  1719. msgstr "重取失败,准备覆盖文件"
  1720. #, c-format
  1721. msgid ""
  1722. "Cannot fstat source file \"%s\"\n"
  1723. "%s"
  1724. msgstr "无法 fstat 源文件“%s”\n%s"
  1725. #, c-format
  1726. msgid ""
  1727. "Cannot create target file \"%s\"\n"
  1728. "%s"
  1729. msgstr "无法创建目标文件“%s”\n%s"
  1730. #, c-format
  1731. msgid ""
  1732. "Cannot fstat target file \"%s\"\n"
  1733. "%s"
  1734. msgstr "无法 fstat 目标文件\"%s\"\n%s"
  1735. #, c-format
  1736. msgid ""
  1737. "Cannot preallocate space for target file \"%s\"\n"
  1738. "%s"
  1739. msgstr "无法预分配空间给目标文件 “%s”\n%s"
  1740. #, c-format
  1741. msgid ""
  1742. "Cannot read source file\"%s\"\n"
  1743. "%s"
  1744. msgstr "无法读取源文件“%s”\n%s"
  1745. #, c-format
  1746. msgid ""
  1747. "Cannot write target file \"%s\"\n"
  1748. "%s"
  1749. msgstr "无法写入目标文件“%s”\n%s"
  1750. msgid "(stalled)"
  1751. msgstr "(暂停)"
  1752. #, c-format
  1753. msgid ""
  1754. "Cannot close source file \"%s\"\n"
  1755. "%s"
  1756. msgstr "无法关闭源文件“%s”\n%s"
  1757. #, c-format
  1758. msgid ""
  1759. "Cannot close target file \"%s\"\n"
  1760. "%s"
  1761. msgstr "无法关闭目标文件“%s”\n%s"
  1762. msgid "Incomplete file was retrieved. Keep it?"
  1763. msgstr "文件没有完整获取。保留它吗?"
  1764. msgid "&Keep"
  1765. msgstr "保留(&K)"
  1766. #, c-format
  1767. msgid ""
  1768. "Cannot stat source directory \"%s\"\n"
  1769. "%s"
  1770. msgstr "无法 stat 源目录“%s”\n%s"
  1771. #, c-format
  1772. msgid ""
  1773. "Source \"%s\" is not a directory\n"
  1774. "%s"
  1775. msgstr "源“%s”不是一个目录\n%s"
  1776. #, c-format
  1777. msgid ""
  1778. "Cannot copy cyclic symbolic link\n"
  1779. "\"%s\""
  1780. msgstr "无法复制循环的符号链接\n“%s”"
  1781. #, c-format
  1782. msgid ""
  1783. "Destination \"%s\" must be a directory\n"
  1784. "%s"
  1785. msgstr "目标“%s”必需是一个目录\n%s"
  1786. #, c-format
  1787. msgid ""
  1788. "Cannot create target directory \"%s\"\n"
  1789. "%s"
  1790. msgstr "无法创建目标目录“%s”\n%s"
  1791. #, c-format
  1792. msgid ""
  1793. "Cannot chown target directory \"%s\"\n"
  1794. "%s"
  1795. msgstr "无法 chown 目标目录“%s”\n%s"
  1796. #, c-format
  1797. msgid ""
  1798. "\"%s\"\n"
  1799. "and\n"
  1800. "\"%s\"\n"
  1801. "are the same directory"
  1802. msgstr "“%s”\n和\n“%s”\n是同一个目录"
  1803. #, c-format
  1804. msgid ""
  1805. "Cannot overwrite file \"%s\"\n"
  1806. "%s"
  1807. msgstr "无法覆盖文件“%s”\n%s"
  1808. #, c-format
  1809. msgid ""
  1810. "Cannot move directory \"%s\" to \"%s\"\n"
  1811. "%s"
  1812. msgstr "无法移动目录“%s”到“%s”\n%s"
  1813. #, c-format
  1814. msgid "Directories: %zd, total size: %s"
  1815. msgstr ""
  1816. msgid "Cannot operate on \"..\"!"
  1817. msgstr "无法操作\"..\"!"
  1818. msgid "Sorry, I could not put the job in background"
  1819. msgstr "抱歉,无法将任务放到后台"
  1820. msgid "S&uspend"
  1821. msgstr "挂起(&U)"
  1822. msgid "Con&tinue"
  1823. msgstr "继续(&T)"
  1824. #, c-format
  1825. msgid "%d:%02d.%02d"
  1826. msgstr "%d:%02d.%02d"
  1827. #, c-format
  1828. msgid "ETA %s"
  1829. msgstr "估计完成时间 %s"
  1830. #, c-format
  1831. msgid "%.2f MB/s"
  1832. msgstr "%.2f MB/s"
  1833. #, c-format
  1834. msgid "%.2f KB/s"
  1835. msgstr "%.2f KB/s"
  1836. #, c-format
  1837. msgid "%ld B/s"
  1838. msgstr "%ld B/s"
  1839. msgid "Target file already exists!"
  1840. msgstr "目标文件已存在!"
  1841. #, c-format
  1842. msgid "New : %s, size %s"
  1843. msgstr "新文件: %s,体积 %s"
  1844. #, c-format
  1845. msgid "Existing: %s, size %s"
  1846. msgstr "原文件: %s,体积%s"
  1847. msgid "Overwrite this target?"
  1848. msgstr "覆盖该目标?"
  1849. msgid "A&ppend"
  1850. msgstr "追加(&P)"
  1851. msgid "&Reget"
  1852. msgstr "重新获取(&R)"
  1853. msgid "Overwrite all targets?"
  1854. msgstr "覆盖所有目标?"
  1855. msgid "&Update"
  1856. msgstr "更新(&U)"
  1857. msgid "If &size differs"
  1858. msgstr "如果大小有差别(&S)"
  1859. msgid "File exists"
  1860. msgstr "文件已存在"
  1861. msgid "Background process: File exists"
  1862. msgstr "后台进程: 文件已存在"
  1863. #, c-format
  1864. msgid "Files processed: %zu/%zu"
  1865. msgstr "已处理文件: %zu/%zu"
  1866. #, c-format
  1867. msgid "Files processed: %zu"
  1868. msgstr "已处理文件: %zu"
  1869. #, c-format
  1870. msgid "Time: %s %s"
  1871. msgstr "时间: %s %s"
  1872. #, c-format
  1873. msgid "Time: %s %s (%s)"
  1874. msgstr "时间: %s %s (%s)"
  1875. #, c-format
  1876. msgid "Time: %s"
  1877. msgstr "时间: %s"
  1878. #, c-format
  1879. msgid "Time: %s (%s)"
  1880. msgstr "时间: %s (%s)"
  1881. #, c-format
  1882. msgid " Total: %s "
  1883. msgstr " 总共: %s "
  1884. #, c-format
  1885. msgid " Total: %s/%s "
  1886. msgstr " 总共: %s/%s "
  1887. msgid "Source"
  1888. msgstr "来源"
  1889. msgid "Target"
  1890. msgstr "目标"
  1891. msgid "Deleting"
  1892. msgstr ""
  1893. msgid "&Using shell patterns"
  1894. msgstr "使用 shell 模式(&U)"
  1895. msgid "to:"
  1896. msgstr "至: "
  1897. msgid "Follow &links"
  1898. msgstr "跟随链接(&L)"
  1899. msgid "Preserve &attributes"
  1900. msgstr "保留属性(&A)"
  1901. msgid "Di&ve into subdir if exists"
  1902. msgstr "如果有子目录则进入(&V)"
  1903. msgid "&Stable symlinks"
  1904. msgstr "简化符号链接(&S)"
  1905. msgid "&Background"
  1906. msgstr "后台(&B)"
  1907. #, c-format
  1908. msgid "Invalid source pattern '%s'"
  1909. msgstr "源模式“%s”无效"
  1910. msgid "&Chdir"
  1911. msgstr "改目录(&C)"
  1912. msgid "&Again"
  1913. msgstr "再次(&A)"
  1914. msgid "Pane&lize"
  1915. msgstr "面板化"
  1916. msgid "&View - F3"
  1917. msgstr "查看(&V) - F3"
  1918. msgid "&Edit - F4"
  1919. msgstr "编辑(&E) - F4"
  1920. #, c-format
  1921. msgid "Found: %ld"
  1922. msgstr "找到: %ld"
  1923. msgid "Malformed regular expression"
  1924. msgstr "不正确的正规表达式"
  1925. msgid "File name:"
  1926. msgstr "文件名: "
  1927. msgid "&Find recursively"
  1928. msgstr "递归查找(&F)"
  1929. msgid "S&kip hidden"
  1930. msgstr "跳过隐藏(&K)"
  1931. msgid "Content:"
  1932. msgstr "内容: "
  1933. msgid "Sea&rch for content"
  1934. msgstr "搜索内容(&R)"
  1935. msgid "Case sens&itive"
  1936. msgstr "大小写敏感(&T)"
  1937. msgid "A&ll charsets"
  1938. msgstr "所有字符集(&L)"
  1939. msgid "Fir&st hit"
  1940. msgstr "第一个命中(&S)"
  1941. msgid "&Tree"
  1942. msgstr "树(&T)"
  1943. msgid "Find File"
  1944. msgstr "搜索文件"
  1945. msgid "Start at:"
  1946. msgstr "开始于: "
  1947. msgid "Ena&ble ignore directories:"
  1948. msgstr "启用忽略目录(&B): "
  1949. #, c-format
  1950. msgid "Grepping in %s"
  1951. msgstr "在 %s 中查找字符串"
  1952. msgid "Finished"
  1953. msgstr "完成"
  1954. #, c-format
  1955. msgid "Finished (ignored %zd directory)"
  1956. msgid_plural "Finished (ignored %zd directories)"
  1957. msgstr[0] "完成 (忽略 %zd 个目录)"
  1958. msgid "Searching"
  1959. msgstr "正在搜索"
  1960. msgid "Change &to"
  1961. msgstr "切换到(&T)"
  1962. msgid "&Free VFSs now"
  1963. msgstr "立刻释放 VFS (&F)"
  1964. msgid "&Refresh"
  1965. msgstr "刷新(&R)"
  1966. msgid "&Add current"
  1967. msgstr "添加当前(&A)"
  1968. msgid "&Up"
  1969. msgstr "上(&U)"
  1970. msgid "New &group"
  1971. msgstr "新建组(&G)"
  1972. msgid "New &entry"
  1973. msgstr "新建项(&E)"
  1974. msgid "&Insert"
  1975. msgstr "插入(&I)"
  1976. msgid "&Remove"
  1977. msgstr "删除(&R)"
  1978. msgid "Subgroup - press ENTER to see list"
  1979. msgstr "子组-按 ENTER 查看列表"
  1980. msgid "Active VFS directories"
  1981. msgstr "活动的 VFS 目录"
  1982. msgid "Directory hotlist"
  1983. msgstr "目录活动表"
  1984. msgid "Top level group"
  1985. msgstr "顶级组"
  1986. msgid "Directory path"
  1987. msgstr "目录路径"
  1988. #, c-format
  1989. msgid "Moving %s"
  1990. msgstr "正在移动 %s"
  1991. msgid "Directory label"
  1992. msgstr "目录标签"
  1993. msgid "&Append"
  1994. msgstr "追加(&A)"
  1995. msgid "New hotlist entry"
  1996. msgstr "新建活动表条目"
  1997. msgid "Directory label:"
  1998. msgstr "目录标签: "
  1999. msgid "Directory path:"
  2000. msgstr "目录路径: "
  2001. msgid "New hotlist group"
  2002. msgstr "新建活动表组"
  2003. msgid "Name of new group:"
  2004. msgstr "新建组名: "
  2005. #, c-format
  2006. msgid "Are you sure you want to remove entry \"%s\"?"
  2007. msgstr "您确定要删除“%s”?"
  2008. #, c-format
  2009. msgid ""
  2010. "Group \"%s\" is not empty.\n"
  2011. "Remove it?"
  2012. msgstr "组“%s”不为空。\n要删除它吗?"
  2013. msgid "Hotlist Load"
  2014. msgstr "加载活动表"
  2015. #, c-format
  2016. msgid ""
  2017. "MC was unable to write %s file,\n"
  2018. "your old hotlist entries were not deleted"
  2019. msgstr "MC 无法写文件 %s ,\n您活动表中的旧条目未被删除"
  2020. #, c-format
  2021. msgid "Label for \"%s\":"
  2022. msgstr "“%s”的标签: "
  2023. msgid "Add to hotlist"
  2024. msgstr "添加到活动表"
  2025. #, c-format
  2026. msgid "Midnight Commander %s"
  2027. msgstr "Midnight Commander %s"
  2028. #, c-format
  2029. msgid "File: %s"
  2030. msgstr "文件: %s"
  2031. msgid "No node information"
  2032. msgstr "没有节点信息"
  2033. msgid "Free nodes:"
  2034. msgstr "空闲结点:"
  2035. msgid "No space information"
  2036. msgstr "没有空间信息"
  2037. #, c-format
  2038. msgid "Free space: %s/%s (%d%%)"
  2039. msgstr "空余空间: %s/%s (%d%%)"
  2040. #, c-format
  2041. msgid "Type: %s"
  2042. msgstr "类型: %s"
  2043. msgid "non-local vfs"
  2044. msgstr "非本地 vfs"
  2045. #, c-format
  2046. msgid "Device: %s"
  2047. msgstr "设备: %s"
  2048. #, c-format
  2049. msgid "Filesystem: %s"
  2050. msgstr "文件系统: %s"
  2051. #, c-format
  2052. msgid "Accessed: %s"
  2053. msgstr "最后访问时间: %s"
  2054. #, c-format
  2055. msgid "Modified: %s"
  2056. msgstr "最后修改时间: %s"
  2057. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2058. #, c-format
  2059. msgid "Changed: %s"
  2060. msgstr "创建时间: %s"
  2061. #, c-format
  2062. msgid "Dev. type: major %lu, minor %lu"
  2063. msgstr "设备类型: 主要%lu,次要%lu"
  2064. #, c-format
  2065. msgid "Size: %s"
  2066. msgstr "文件大小: %s"
  2067. #, c-format
  2068. msgid " (%ld block)"
  2069. msgid_plural " (%ld blocks)"
  2070. msgstr[0] " (%ld 块)"
  2071. #, c-format
  2072. msgid "Owner: %s/%s"
  2073. msgstr "所有者: %s/%s"
  2074. #, c-format
  2075. msgid "Links: %d"
  2076. msgstr "链接: %d"
  2077. #, c-format
  2078. msgid "Mode: %s (%04o)"
  2079. msgstr "模式: %s (%04o)"
  2080. #, c-format
  2081. msgid "Location: %Xh:%Xh"
  2082. msgstr "位置: %Xh:%Xh"
  2083. msgid "&Equal split"
  2084. msgstr "平分(&E)"
  2085. msgid "&Menubar visible"
  2086. msgstr "显示菜单栏(&M)"
  2087. msgid "Command &prompt"
  2088. msgstr "显示命令提示行(&P)"
  2089. msgid "&Keybar visible"
  2090. msgstr "显示按键条(&K)"
  2091. msgid "H&intbar visible"
  2092. msgstr "显示提示栏(&I)"
  2093. msgid "&XTerm window title"
  2094. msgstr "Xterm 窗口标题(&X)"
  2095. msgid "&Show free space"
  2096. msgstr "显示剩余空间(&S)"
  2097. msgid "Panel split"
  2098. msgstr "分隔面板"
  2099. msgid "Console output"
  2100. msgstr "控制台输出"
  2101. msgid "&Vertical"
  2102. msgstr "垂直(&V)"
  2103. msgid "&Horizontal"
  2104. msgstr "水平(&H)"
  2105. msgid "Output lines:"
  2106. msgstr "输出行: "
  2107. msgid "Layout"
  2108. msgstr "布局"
  2109. msgid "File listin&g"
  2110. msgstr "完整文件列表(&G)"
  2111. msgid "&Quick view"
  2112. msgstr "快速查看(&Q)"
  2113. msgid "&Info"
  2114. msgstr "信息(&I)"
  2115. msgid "&Listing mode..."
  2116. msgstr "列表模式(&L)..."
  2117. msgid "&Sort order..."
  2118. msgstr "排序(&S)..."
  2119. msgid "&Filter..."
  2120. msgstr "过滤(&F)..."
  2121. msgid "&Encoding..."
  2122. msgstr "编码(&E)..."
  2123. msgid "FT&P link..."
  2124. msgstr "FTP 链接(&P)..."
  2125. msgid "S&hell link..."
  2126. msgstr "S&hell 链接..."
  2127. msgid "S&FTP link..."
  2128. msgstr "SFTP 链接(&S)..."
  2129. msgid "SM&B link..."
  2130. msgstr "SMB 链接(&B)..."
  2131. msgid "Paneli&ze"
  2132. msgstr "面板化(&Z)"
  2133. msgid "&Rescan"
  2134. msgstr "重新扫描(&R)"
  2135. msgid "&View"
  2136. msgstr "查看(&V)"
  2137. msgid "Vie&w file..."
  2138. msgstr "查看文件(&W)..."
  2139. msgid "&Filtered view"
  2140. msgstr "过滤视图(&F)"
  2141. msgid "&Copy"
  2142. msgstr "复制(&C)"
  2143. msgid "C&hmod"
  2144. msgstr "更改文件权限(&H)"
  2145. msgid "&Link"
  2146. msgstr "链接(&L)"
  2147. msgid "&Symlink"
  2148. msgstr "符号链接(&S)"
  2149. msgid "Relative symlin&k"
  2150. msgstr "相关符号链接(&K)"
  2151. msgid "Edit s&ymlink"
  2152. msgstr "编辑符号链接(&Y)"
  2153. msgid "Ch&own"
  2154. msgstr "更改文件所有者(&O)"
  2155. msgid "&Advanced chown"
  2156. msgstr "高级 chown (&A)"
  2157. msgid "&Rename/Move"
  2158. msgstr "更名/移动(&R)"
  2159. msgid "&Mkdir"
  2160. msgstr "建目录(&M)"
  2161. msgid "&Quick cd"
  2162. msgstr "快速切换目录(&Q)"
  2163. msgid "Select &group"
  2164. msgstr "选择群组(&G)"
  2165. msgid "U&nselect group"
  2166. msgstr "取消选择组(&U)"
  2167. msgid "&Invert selection"
  2168. msgstr "反选(&I)"
  2169. msgid "E&xit"
  2170. msgstr "退出(&X)"
  2171. msgid "&User menu"
  2172. msgstr "用户菜单(&U)"
  2173. msgid "&Directory tree"
  2174. msgstr "目录树(&D)"
  2175. msgid "&Find file"
  2176. msgstr "查找文件(&F)"
  2177. msgid "S&wap panels"
  2178. msgstr "交换面板(&W)"
  2179. msgid "Switch &panels on/off"
  2180. msgstr "切换面板开/关(&P)"
  2181. msgid "&Compare directories"
  2182. msgstr "比较目录(&C)"
  2183. msgid "C&ompare files"
  2184. msgstr "比较文件(&O)"
  2185. msgid "E&xternal panelize"
  2186. msgstr "外部面板(&X)"
  2187. msgid "Show directory s&izes"
  2188. msgstr "显示目录大小(&I)"
  2189. msgid "Command &history"
  2190. msgstr "命令历史(&H)"
  2191. msgid "Di&rectory hotlist"
  2192. msgstr "目录活动列表(&R)"
  2193. msgid "&Active VFS list"
  2194. msgstr "活动的 VFS 列表(&A)"
  2195. msgid "&Background jobs"
  2196. msgstr "后台任务(&B)"
  2197. msgid "Screen lis&t"
  2198. msgstr "屏幕列表(&T)"
  2199. msgid "&Undelete files (ext2fs only)"
  2200. msgstr "反删除文件(仅限 ext2fs)(&U)"
  2201. msgid "&Listing format edit"
  2202. msgstr "列表格式编辑(&L)"
  2203. msgid "Edit &extension file"
  2204. msgstr "扩展文件编辑(&E)"
  2205. msgid "Edit &menu file"
  2206. msgstr "菜单文件编辑(&M)"
  2207. msgid "Edit hi&ghlighting group file"
  2208. msgstr "编辑突出显示组文件(&G)"
  2209. msgid "&Configuration..."
  2210. msgstr "配置(&C)..."
  2211. msgid "&Layout..."
  2212. msgstr "布局(&L)..."
  2213. msgid "&Panel options..."
  2214. msgstr "面板选项(&P)..."
  2215. msgid "C&onfirmation..."
  2216. msgstr "确认(&O)..."
  2217. msgid "&Appearance..."
  2218. msgstr ""
  2219. msgid "&Display bits..."
  2220. msgstr "显示位(&D)..."
  2221. msgid "&Virtual FS..."
  2222. msgstr "虚拟文件系统(&V)..."
  2223. msgid "Panels:"
  2224. msgstr "面板: "
  2225. #, c-format
  2226. msgid "You have %zd opened screen. Quit anyway?"
  2227. msgid_plural "You have %zd opened screens. Quit anyway?"
  2228. msgstr[0] "您有 %zd 个屏幕已打开。确定要退出吗?"
  2229. msgid "The Midnight Commander"
  2230. msgstr "Midnight Commander"
  2231. msgid "Do you really want to quit the Midnight Commander?"
  2232. msgstr "您真的要退出 Midnight Commander吗?"
  2233. msgid "&Above"
  2234. msgstr "上(&A)"
  2235. msgid "&Left"
  2236. msgstr "左(&L)"
  2237. msgid "&Below"
  2238. msgstr "下(&B)"
  2239. msgid "&Right"
  2240. msgstr "右(&R)"
  2241. msgid "ButtonBar|Menu"
  2242. msgstr "ButtonBar|目录"
  2243. msgid "ButtonBar|View"
  2244. msgstr "ButtonBar|显示"
  2245. msgid "ButtonBar|RenMov"
  2246. msgstr "ButtonBar|更名或移动"
  2247. msgid "ButtonBar|Mkdir"
  2248. msgstr "ButtonBar|建目录"
  2249. msgid "Memory exhausted!"
  2250. msgstr "内存已耗尽!"
  2251. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2252. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2253. msgid "sort|u"
  2254. msgstr "sort|u"
  2255. msgid "&Unsorted"
  2256. msgstr "未排序(&U)"
  2257. #. TRANSLATORS: one single character to represent 'name' sort mode
  2258. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2259. msgid "sort|n"
  2260. msgstr "sort|n"
  2261. msgid "&Name"
  2262. msgstr "名字(&N)"
  2263. #. TRANSLATORS: one single character to represent 'version' sort mode
  2264. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2265. msgid "sort|v"
  2266. msgstr "sort|v"
  2267. msgid "&Version"
  2268. msgstr "版本(&V)"
  2269. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2270. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2271. msgid "sort|e"
  2272. msgstr "sort|e"
  2273. msgid "E&xtension"
  2274. msgstr "扩展名(&X)"
  2275. #. TRANSLATORS: one single character to represent 'size' sort mode
  2276. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2277. msgid "sort|s"
  2278. msgstr "sort|s"
  2279. msgid "&Size"
  2280. msgstr "大小(&S)"
  2281. msgid "Block Size"
  2282. msgstr "块大小"
  2283. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2284. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2285. msgid "sort|m"
  2286. msgstr "sort|m"
  2287. msgid "&Modify time"
  2288. msgstr "修改时间(&M)"
  2289. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2290. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2291. msgid "sort|a"
  2292. msgstr "sort|a"
  2293. msgid "&Access time"
  2294. msgstr "访问时间(&A)"
  2295. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2296. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2297. msgid "sort|h"
  2298. msgstr "sort|h"
  2299. msgid "C&hange time"
  2300. msgstr "修改时间(&H)"
  2301. msgid "Perm"
  2302. msgstr "权限"
  2303. msgid "Nl"
  2304. msgstr "Nl"
  2305. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2306. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2307. msgid "sort|i"
  2308. msgstr "sort|i"
  2309. msgid "&Inode"
  2310. msgstr "Inode(&I)"
  2311. msgid "UID"
  2312. msgstr "UID"
  2313. msgid "GID"
  2314. msgstr "GID"
  2315. msgid "Owner"
  2316. msgstr "属主"
  2317. msgid "Group"
  2318. msgstr "群组"
  2319. msgid "[dev]"
  2320. msgstr "[dev]"
  2321. msgid "UP--DIR"
  2322. msgstr "上级目录"
  2323. msgid "SYMLINK"
  2324. msgstr "符号链接"
  2325. msgid "SUB-DIR"
  2326. msgstr "子目录"
  2327. msgid "<readlink failed>"
  2328. msgstr "<readlink 失败>"
  2329. #, c-format
  2330. msgid "%s byte"
  2331. msgid_plural "%s bytes"
  2332. msgstr[0] "%s 字节"
  2333. #, c-format
  2334. msgid "%s in %d file"
  2335. msgid_plural "%s in %d files"
  2336. msgstr[0] "%s 共 %d 个文件"
  2337. msgid "Panelize"
  2338. msgstr "面板化"
  2339. msgid "Unknown tag on display format:"
  2340. msgstr "显示格式中未知的标记: "
  2341. msgid "&Files only"
  2342. msgstr "仅文件(&F)"
  2343. msgid "&Case sensitive"
  2344. msgstr "大小写敏感(&C)"
  2345. msgid "Select"
  2346. msgstr "选择"
  2347. msgid "Unselect"
  2348. msgstr "取消选择"
  2349. msgid "Do you really want to execute?"
  2350. msgstr "您真的要执行吗?"
  2351. msgid "User supplied format looks invalid, reverting to default."
  2352. msgstr "用户提供的格式无效,回复到默认设置。"
  2353. msgid "&Add new"
  2354. msgstr "添加新(&A)"
  2355. msgid "External panelize"
  2356. msgstr "外部面板"
  2357. msgid "Other command"
  2358. msgstr "其它命令"
  2359. msgid "Command"
  2360. msgstr "命令"
  2361. msgid "Add to external panelize"
  2362. msgstr "添加到外部面板"
  2363. msgid "Enter command label:"
  2364. msgstr "输入命令标签: "
  2365. msgid "Cannot invoke command."
  2366. msgstr "无法调用命令。"
  2367. msgid "Pipe close failed"
  2368. msgstr "关闭管道失败"
  2369. msgid "Cannot run external panelize in a non-local directory"
  2370. msgstr "在非本地目录无法执行外部面板"
  2371. msgid "Modified git files"
  2372. msgstr "修改过的 git 文件"
  2373. msgid "Find rejects after patching"
  2374. msgstr "应用补丁后查找被拒绝的补丁"
  2375. msgid "Find *.orig after patching"
  2376. msgstr "应用补丁后查找 .orig"
  2377. msgid "Find SUID and SGID programs"
  2378. msgstr "查找 SUID 和 SGID 程序"
  2379. #, c-format
  2380. msgid ""
  2381. "Cannot open the %s file for writing:\n"
  2382. "%s\n"
  2383. msgstr "无法打开文件 %s 来写入: \n%s\n"
  2384. #, c-format
  2385. msgid "Copy \"%s\" directory to:"
  2386. msgstr "复制目录“%s”到: "
  2387. #, c-format
  2388. msgid "Move \"%s\" directory to:"
  2389. msgstr "移动目录“%s”到: "
  2390. #, c-format
  2391. msgid ""
  2392. "Cannot stat the destination\n"
  2393. "%s"
  2394. msgstr "无法查看目标信息 \n%s"
  2395. #, c-format
  2396. msgid "Delete %s?"
  2397. msgstr "删除 %s?"
  2398. msgid "ButtonBar|Static"
  2399. msgstr "ButtonBar|静态"
  2400. msgid "ButtonBar|Dynamc"
  2401. msgstr "ButtonBar|动态"
  2402. msgid "ButtonBar|Rescan"
  2403. msgstr "ButtonBar|重扫描"
  2404. msgid "ButtonBar|Forget"
  2405. msgstr "ButtonBar|忘记"
  2406. msgid "ButtonBar|Rmdir"
  2407. msgstr "ButtonBar|删除目录"
  2408. #, c-format
  2409. msgid ""
  2410. "Cannot write to the %s file:\n"
  2411. "%s\n"
  2412. msgstr "无法写入 %s 文件: \n%s\n"
  2413. msgid "Debug"
  2414. msgstr "调试"
  2415. msgid "ERROR:"
  2416. msgstr "错误: "
  2417. msgid "True:"
  2418. msgstr "正确: "
  2419. msgid "False:"
  2420. msgstr "错误: "
  2421. msgid "Error calling program"
  2422. msgstr "调用程序错误"
  2423. msgid "Warning -- ignoring file"
  2424. msgstr "警告 - 忽略文件"
  2425. #, c-format
  2426. msgid ""
  2427. "File %s is not owned by root or you or is world writable.\n"
  2428. "Using it may compromise your security"
  2429. msgstr "文件 %s 的拥有者不是 root 或者您,或者是全局可写。\n使用它可能会妨碍您的安全"
  2430. msgid "Format error on file Extensions File"
  2431. msgstr "扩展文件格式错误"
  2432. #, c-format
  2433. msgid "The %%var macro has no default"
  2434. msgstr "%%var 宏没有默认值"
  2435. #, c-format
  2436. msgid "The %%var macro has no variable"
  2437. msgstr "%%var 宏没有变量"
  2438. #, c-format
  2439. msgid "No suitable entries found in %s"
  2440. msgstr "在 %s 没有找到相应的项"
  2441. msgid "User menu"
  2442. msgstr "用户菜单"
  2443. msgid "Help file format error\n"
  2444. msgstr "帮助文件格式错误\n"
  2445. msgid "Internal bug: Double start of link area"
  2446. msgstr "内部缺陷: 链接区域双向开始"
  2447. #, c-format
  2448. msgid "Cannot find node %s in help file"
  2449. msgstr "无法在帮助文件中找到节点 %s"
  2450. msgid "Help"
  2451. msgstr "帮助"
  2452. msgid "ButtonBar|Index"
  2453. msgstr "ButtonBar|索引"
  2454. msgid "ButtonBar|Prev"
  2455. msgstr "ButtonBar|前一个"
  2456. msgid "Learn keys"
  2457. msgstr "学习按键"
  2458. msgid "Teach me a key"
  2459. msgstr "教我一个键"
  2460. #, c-format
  2461. msgid ""
  2462. "Please press the %s\n"
  2463. "and then wait until this message disappears.\n"
  2464. "\n"
  2465. "Then, press it again to see if OK appears\n"
  2466. "next to its button.\n"
  2467. "\n"
  2468. "If you want to escape, press a single Escape key\n"
  2469. "and wait as well."
  2470. msgstr "按下 %s\n并等待这个消息消失。\n\n然后再次按下它并看确认是否出现\n在它的旁边。\n\n如果您想离开,请按下Esc键\n并稍等。"
  2471. msgid "Cannot accept this key"
  2472. msgstr "无法接受这个按键"
  2473. #, c-format
  2474. msgid "You have entered \"%s\""
  2475. msgstr "您输入了“%s”"
  2476. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2477. msgid "OK"
  2478. msgstr "确认"
  2479. msgid ""
  2480. "It seems that all your keys already\n"
  2481. "work fine. That's great."
  2482. msgstr "看起来您的所有按键都工作得很好。\n实在是太好了。"
  2483. msgid "&Discard"
  2484. msgstr "放弃(&D)"
  2485. msgid ""
  2486. "Great! You have a complete terminal database!\n"
  2487. "All your keys work well."
  2488. msgstr "非常好! 您有一个完整的终端数据库!\n您的所有按键都工作。"
  2489. msgid ""
  2490. "Press all the keys mentioned here. After you have done it, check\n"
  2491. "which keys are not marked with OK. Press space on the missing\n"
  2492. "key, or click with the mouse to define it. Move around with Tab."
  2493. msgstr "请将这里提到的所有键都按一遍。按完之后。请检查: \n哪些键没有标记为OK。在缺失的键位上按空格\n或单击鼠标定义它。移动请使用空格键。"
  2494. #, c-format
  2495. msgid ""
  2496. "Failed to run:\n"
  2497. "%s\n"
  2498. msgstr "运行失败: \n%s\n"
  2499. msgid "Home directory path is not absolute"
  2500. msgstr "主目录路径不是绝对路径"
  2501. #, c-format
  2502. msgid ""
  2503. "\n"
  2504. "Failed while close:\n"
  2505. "%s\n"
  2506. msgstr "\n关闭时失败: \n%s\n"
  2507. msgid "Choose codepage"
  2508. msgstr "选择代码页"
  2509. msgid "- < No translation >"
  2510. msgstr "- < 没有翻译 >"
  2511. msgid "%b %e %Y"
  2512. msgstr "%b %e %Y"
  2513. msgid "%b %e %H:%M"
  2514. msgstr "%b %e %H:%M"
  2515. #, c-format
  2516. msgid ""
  2517. "Cannot save file %s:\n"
  2518. "%s"
  2519. msgstr "无法保存文件 %s:\n%s"
  2520. msgid ""
  2521. "GNU Midnight Commander is already\n"
  2522. "running on this terminal.\n"
  2523. "Subshell support will be disabled."
  2524. msgstr "GNU Midnight Commander 已在\n该终端上运行。\nSubShell支持将被禁用。"
  2525. #, c-format
  2526. msgid "Cannot open named pipe %s\n"
  2527. msgstr "无法打开有名管道 %s\n"
  2528. msgid "The shell is still active. Quit anyway?"
  2529. msgstr "Shell 仍在运行中。依然退出?"
  2530. #, c-format
  2531. msgid "Warning: Cannot change to %s.\n"
  2532. msgstr "警告: 无法切换至 %s。\n"
  2533. msgid "Using the S-Lang library with terminfo database\n"
  2534. msgstr "使用 S-Lang 库和 terminfo 数据库\n"
  2535. msgid "Using the ncurses library\n"
  2536. msgstr "使用 ncurses 库\n"
  2537. msgid "Using the ncursesw library\n"
  2538. msgstr "使用 ncursesw 库\n"
  2539. msgid "With builtin Editor\n"
  2540. msgstr "使用内建编辑器\n"
  2541. msgid "With optional subshell support\n"
  2542. msgstr "启用子 shell 支持作为可选项\n"
  2543. msgid "With subshell support as default\n"
  2544. msgstr "启用子 shell 支持作为默认项\n"
  2545. msgid "With support for background operations\n"
  2546. msgstr "启用后台操作支持\n"
  2547. msgid "With mouse support on xterm and Linux console\n"
  2548. msgstr "启用 xterm 和 Linux 控制台里的鼠标支持\n"
  2549. msgid "With mouse support on xterm\n"
  2550. msgstr "启用 xterm 里鼠标支持\n"
  2551. msgid "With support for X11 events\n"
  2552. msgstr "启用 X11 事件支持\n"
  2553. msgid "With internationalization support\n"
  2554. msgstr "启用国际化支持\n"
  2555. msgid "With multiple codepages support\n"
  2556. msgstr "启用多代码页支持\n"
  2557. #, c-format
  2558. msgid "Built with GLib %d.%d.%d\n"
  2559. msgstr "编译使用了 GLib %d.%d.%d\n"
  2560. #, c-format
  2561. msgid "Virtual File Systems:"
  2562. msgstr "虚拟文件系统: "
  2563. #, c-format
  2564. msgid "Data types:"
  2565. msgstr "数据类型: "
  2566. msgid "Root directory:"
  2567. msgstr "根目录: "
  2568. msgid "System data"
  2569. msgstr "系统数据"
  2570. msgid "Config directory:"
  2571. msgstr "配置目录: "
  2572. msgid "Data directory:"
  2573. msgstr "数据目录: "
  2574. msgid "File extension handlers:"
  2575. msgstr "文件扩展名处理程序: "
  2576. msgid "VFS plugins and scripts:"
  2577. msgstr "VFS 插件和脚本: "
  2578. msgid "User data"
  2579. msgstr "用户数据"
  2580. msgid "Cache directory:"
  2581. msgstr "缓存目录: "
  2582. #, c-format
  2583. msgid ""
  2584. "Cannot open cpio archive\n"
  2585. "%s"
  2586. msgstr "无法打开 cpio 档案\n%s"
  2587. #, c-format
  2588. msgid ""
  2589. "Premature end of cpio archive\n"
  2590. "%s"
  2591. msgstr "过早结束的 cpio 档案\n%s"
  2592. #, c-format
  2593. msgid ""
  2594. "Inconsistent hardlinks of\n"
  2595. "%s\n"
  2596. "in cpio archive\n"
  2597. "%s"
  2598. msgstr "cpio 档案\n%2$s\n中发现不一致的硬链接\n%1$s"
  2599. #, c-format
  2600. msgid "%s contains duplicate entries! Skipping!"
  2601. msgstr "%s 含有重复的项! 正在跳过!"
  2602. #, c-format
  2603. msgid ""
  2604. "Corrupted cpio header encountered in\n"
  2605. "%s"
  2606. msgstr "在 %s 中\n遇到损坏的 cpio 头"
  2607. #, c-format
  2608. msgid ""
  2609. "Unexpected end of file\n"
  2610. "%s"
  2611. msgstr "异常的文件结束\n%s"
  2612. #, c-format
  2613. msgid ""
  2614. "Cannot open %s archive\n"
  2615. "%s"
  2616. msgstr "无法打开 %s 档案\n%s"
  2617. msgid "Inconsistent extfs archive"
  2618. msgstr "不完整的 extfs 档案"
  2619. #, c-format
  2620. msgid "Warning: cannot open %s directory\n"
  2621. msgstr "警告: 无法打开目录 %s\n"
  2622. #, c-format
  2623. msgid "fish: Disconnecting from %s"
  2624. msgstr "fish: 正在从 %s 断开连接"
  2625. msgid "fish: Waiting for initial line..."
  2626. msgstr "fish: 正在等待初始化行..."
  2627. msgid "Sorry, we cannot do password authenticated connections for now."
  2628. msgstr "抱歉,目前无法建立密码验证的连接。"
  2629. #, c-format
  2630. msgid "fish: Password is required for %s"
  2631. msgstr "fish: %s 需要密码"
  2632. msgid "fish: Sending password..."
  2633. msgstr "fish: 正在发送密码..."
  2634. msgid "fish: Sending initial line..."
  2635. msgstr "fish: 正在发送初始化行..."
  2636. msgid "fish: Handshaking version..."
  2637. msgstr "fish: 正在握手,协商版本..."
  2638. msgid "fish: Getting host info..."
  2639. msgstr "fish: 正在获取主机信息..."
  2640. #, c-format
  2641. msgid "fish: Reading directory %s..."
  2642. msgstr "fish: 正在读取目录 %s..."
  2643. #, c-format
  2644. msgid "%s: done."
  2645. msgstr "%s: 完成。"
  2646. #, c-format
  2647. msgid "%s: failure"
  2648. msgstr "%s: 失败"
  2649. #, c-format
  2650. msgid "fish: store %s: sending command..."
  2651. msgstr "fish: 保存 %s: 正在发送命令..."
  2652. msgid "fish: Local read failed, sending zeros"
  2653. msgstr "fish: 本地读取失败,正在发送零"
  2654. msgid "fish: storing file"
  2655. msgstr "fish: 正在保存文件"
  2656. msgid "Aborting transfer..."
  2657. msgstr "正在中止传输..."
  2658. msgid "Error reported after abort."
  2659. msgstr "中止后发生错误。"
  2660. msgid "Aborted transfer would be successful."
  2661. msgstr "被中止的传输可能成功完成了。"
  2662. #, c-format
  2663. msgid "ftpfs: Disconnecting from %s"
  2664. msgstr "ftpfs: 正在断开到 %s 的连接"
  2665. #, c-format
  2666. msgid "FTP: Password required for %s"
  2667. msgstr "FTP: %s 需要密码"
  2668. msgid "ftpfs: sending login name"
  2669. msgstr "ftpfs: 正在发送用户登录名"
  2670. msgid "ftpfs: sending user password"
  2671. msgstr "ftpfs: 正在发送用户密码"
  2672. #, c-format
  2673. msgid "FTP: Account required for user %s"
  2674. msgstr "FTP: 用户 %s 需要账户"
  2675. msgid "Account:"
  2676. msgstr "账户"
  2677. msgid "ftpfs: sending user account"
  2678. msgstr "ftpfs: 正在发送用户账户"
  2679. msgid "ftpfs: logged in"
  2680. msgstr "ftpfs: 已登录"
  2681. #, c-format
  2682. msgid "ftpfs: Login incorrect for user %s "
  2683. msgstr "ftpfs: 用户 %s 登录不正确"
  2684. msgid "ftpfs: Invalid host name."
  2685. msgstr "ftpfs: 无效的主机名。"
  2686. #, c-format
  2687. msgid "ftpfs: %s"
  2688. msgstr "ftpfs: %s"
  2689. #, c-format
  2690. msgid "ftpfs: making connection to %s"
  2691. msgstr "ftpfs: 正在连接 %s"
  2692. msgid "ftpfs: connection interrupted by user"
  2693. msgstr "ftpfs: 连接被用户中断"
  2694. #, c-format
  2695. msgid "ftpfs: connection to server failed: %s"
  2696. msgstr "ftpfs: 连接服务器失败: %s"
  2697. #, c-format
  2698. msgid "Waiting to retry... %d (Control-G to cancel)"
  2699. msgstr "等待重试... %d (Ctrl-G 取消)"
  2700. msgid "ftpfs: invalid address family"
  2701. msgstr "ftpfs: 无效的地址族"
  2702. #, c-format
  2703. msgid "ftpfs: could not create socket: %s"
  2704. msgstr "ftpfs: 无法创建套接字: %s"
  2705. msgid "ftpfs: could not setup passive mode"
  2706. msgstr "ftpfs: 无法设置为被动模式"
  2707. msgid "ftpfs: aborting transfer."
  2708. msgstr "ftpfs: 正在中止传输。"
  2709. #, c-format
  2710. msgid "ftpfs: abort error: %s"
  2711. msgstr "ftpfs: 中止错误: %s"
  2712. msgid "ftpfs: abort failed"
  2713. msgstr "ftpfs: 终止失败"
  2714. msgid "ftpfs: CWD failed."
  2715. msgstr "ftpfs: CWD 失败。"
  2716. msgid "ftpfs: couldn't resolve symlink"
  2717. msgstr "ftpfs: 无法解析符号链接"
  2718. msgid "Resolving symlink..."
  2719. msgstr "正在解析符号链接..."
  2720. #, c-format
  2721. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2722. msgstr "ftpfs: 正在读取 FTP 目录 %s... %s%s"
  2723. msgid "(strict rfc959)"
  2724. msgstr "(严格遵循 rfc959)"
  2725. msgid "(chdir first)"
  2726. msgstr "(先改变目录)"
  2727. msgid "ftpfs: failed; nowhere to fallback to"
  2728. msgstr "ftpfs: 失败;没有后备"
  2729. msgid "ftpfs: storing file"
  2730. msgstr "ftpfs: 保存文件中"
  2731. msgid ""
  2732. "~/.netrc file has incorrect mode\n"
  2733. "Remove password or correct mode"
  2734. msgstr "~/.netrc 文件权限不正确\n删除密码或者改正权限"
  2735. #, c-format
  2736. msgid "%s: Warning: file %s not found\n"
  2737. msgstr "%s: 警告: 文件 %s 没有找到\n"
  2738. #, c-format
  2739. msgid ""
  2740. "Warning: Invalid line in %s:\n"
  2741. "%s\n"
  2742. msgstr "警告: %s 中有无效的行: \n%s\n"
  2743. #, c-format
  2744. msgid ""
  2745. "Warning: Invalid flag %c in %s:\n"
  2746. "%s\n"
  2747. msgstr "警告: %2$s 中有无效的标志 %1$c\n%3$s\n"
  2748. #, c-format
  2749. msgid "sftp: an error occurred while reading %s: %s"
  2750. msgstr "sftp: 读取 %s 时出错: %s"
  2751. msgid "sftp: Unable to get current user name."
  2752. msgstr "sftp: 无法获取当前用户的用户名。"
  2753. msgid "sftp: Invalid host name."
  2754. msgstr "sftp: 无效的主机名。"
  2755. #, c-format
  2756. msgid "sftp: %s"
  2757. msgstr "sftp: %s"
  2758. #, c-format
  2759. msgid "sftp: making connection to %s"
  2760. msgstr "sftp: 正在连接 %s"
  2761. msgid "sftp: connection interrupted by user"
  2762. msgstr "sftp: 连接被用户中断"
  2763. #, c-format
  2764. msgid "sftp: connection to server failed: %s"
  2765. msgstr "sftp: 连接服务器失败: %s"
  2766. #, c-format
  2767. msgid "sftp: Enter passphrase for %s "
  2768. msgstr "sftp: 请输入 %s 的密码"
  2769. msgid "sftp: Passphrase is empty."
  2770. msgstr "sftp: 密码为空。"
  2771. #, c-format
  2772. msgid "sftp: Enter password for %s "
  2773. msgstr "sftp: 请输入 %s 的密码 "
  2774. msgid "sftp: Password is empty."
  2775. msgstr "sftp: 密码为空。"
  2776. #, c-format
  2777. msgid "sftp: Failure establishing SSH session: (%d)"
  2778. msgstr "sftp: SSH 会话建立失败: (%d)"
  2779. msgid "sftp: No file handler data present for reading file"
  2780. msgstr "sftp: 读取的文件没有指定处理程序"
  2781. #, c-format
  2782. msgid "sftp: (Ctrl-G break) Listing... %s"
  2783. msgstr "sftp: (Ctrl-G 终止) 正在列出... %s"
  2784. msgid "sftp: Listing done."
  2785. msgstr "sftp: 列出完毕。"
  2786. #, c-format
  2787. msgid "reconnect to %s failed"
  2788. msgstr "重新连接 %s 失败"
  2789. msgid "Authentication failed"
  2790. msgstr "验证失败"
  2791. #, c-format
  2792. msgid "Error %s creating directory %s"
  2793. msgstr "创建目录 %s 时出错 %s"
  2794. #, c-format
  2795. msgid "Error %s removing directory %s"
  2796. msgstr "删除目录 %s 时出错 %s"
  2797. #, c-format
  2798. msgid "%s opening remote file %s"
  2799. msgstr "%s 正在打开远程文件 %s"
  2800. #, c-format
  2801. msgid "%s removing remote file %s"
  2802. msgstr "%s 正在删除远程文件 %s"
  2803. #, c-format
  2804. msgid "%s renaming files\n"
  2805. msgstr "%s 正在重命名文件\n"
  2806. #, c-format
  2807. msgid ""
  2808. "Cannot open tar archive\n"
  2809. "%s"
  2810. msgstr "无法打开 tar 档案文件\n%s"
  2811. msgid "Inconsistent tar archive"
  2812. msgstr "不完整的 tar 档案文件"
  2813. msgid "Unexpected EOF on archive file"
  2814. msgstr "档案文件出现不可预料的文件末端"
  2815. #, c-format
  2816. msgid ""
  2817. "%s\n"
  2818. "doesn't look like a tar archive."
  2819. msgstr "%s\n不是 tar 档案文件。"
  2820. msgid "undelfs: error"
  2821. msgstr "undelfs: 错误"
  2822. msgid "not enough memory"
  2823. msgstr "内存不足"
  2824. msgid "while allocating block buffer"
  2825. msgstr "当分配块缓冲时"
  2826. #, c-format
  2827. msgid "open_inode_scan: %d"
  2828. msgstr "open_inode_scan: %d"
  2829. #, c-format
  2830. msgid "while starting inode scan %d"
  2831. msgstr "当开始 inode 扫描 %d"
  2832. #, c-format
  2833. msgid "undelfs: loading deleted files information %d inodes"
  2834. msgstr "undelfs: 正在载入被删除文件的信息 %d inode"
  2835. #, c-format
  2836. msgid "while calling ext2_block_iterate %d"
  2837. msgstr "当调用 ext2_block_iterate %d 时"
  2838. msgid "no more memory while reallocating array"
  2839. msgstr "当重新分配数组时没有内存时"
  2840. #, c-format
  2841. msgid "while doing inode scan %d"
  2842. msgstr "当进行 inode 扫描 %d 时"
  2843. #, c-format
  2844. msgid "Cannot open file %s"
  2845. msgstr "无法打开文件 %s"
  2846. msgid "undelfs: reading inode bitmap..."
  2847. msgstr "undelfs: 正在读取 inode bitmap..."
  2848. #, c-format
  2849. msgid ""
  2850. "Cannot load inode bitmap from:\n"
  2851. "%s"
  2852. msgstr "无法载入 inode位图自: \n%s"
  2853. msgid "undelfs: reading block bitmap..."
  2854. msgstr "undelfs: 正在读取 block bitmap..."
  2855. #, c-format
  2856. msgid ""
  2857. "Cannot load block bitmap from:\n"
  2858. "%s"
  2859. msgstr "无法载入块位图自: \n%s"
  2860. msgid "vfs_info is not fs!"
  2861. msgstr "vfs_info 不是文件系统!"
  2862. msgid "You have to chdir to extract files first"
  2863. msgstr "您必须先更改目录来解开文件"
  2864. msgid "while iterating over blocks"
  2865. msgstr "正当遍历块时"
  2866. #, c-format
  2867. msgid "Cannot open file \"%s\""
  2868. msgstr "无法打开文件“%s”"
  2869. msgid "Ext2lib error"
  2870. msgstr "Ext2lib 错误"
  2871. msgid "Invalid value"
  2872. msgstr "无效的值"
  2873. msgid "File was modified. Save with exit?"
  2874. msgstr "文件已被修改。保存并退出?"
  2875. msgid "&Cancel quit"
  2876. msgstr "取消退出(&C)"
  2877. msgid ""
  2878. "Midnight Commander is being shut down.\n"
  2879. "Save modified file?"
  2880. msgstr "Midnight Commander 即将被关闭。\n要保存修改过的文件吗?"
  2881. msgid "&Line number"
  2882. msgstr ""
  2883. msgid "Pe&rcents"
  2884. msgstr "百分比(&R)"
  2885. msgid "&Decimal offset"
  2886. msgstr "十进制偏移(&D)"
  2887. msgid "He&xadecimal offset"
  2888. msgstr "16进制偏移(&X)"
  2889. msgid "Goto"
  2890. msgstr "跳到"
  2891. msgid "ButtonBar|Ascii"
  2892. msgstr "ButtonBar|Ascii"
  2893. msgid "ButtonBar|HxSrch"
  2894. msgstr "ButtonBar|16进制搜索"
  2895. msgid "ButtonBar|UnWrap"
  2896. msgstr "ButtonBar|不换行"
  2897. msgid "ButtonBar|Wrap"
  2898. msgstr "ButtonBar|换行"
  2899. msgid "ButtonBar|Hex"
  2900. msgstr "ButtonBar|16进制"
  2901. msgid "ButtonBar|Goto"
  2902. msgstr "ButtonBar|跳转"
  2903. msgid "ButtonBar|Raw"
  2904. msgstr "ButtonBar|原格式"
  2905. msgid "ButtonBar|Parse"
  2906. msgstr "ButtonBar|解析"
  2907. msgid "ButtonBar|Unform"
  2908. msgstr "ButtonBar|未格式化"
  2909. msgid "ButtonBar|Format"
  2910. msgstr "ButtonBar|格式化"
  2911. #, c-format
  2912. msgid ""
  2913. "Failed to read data from child stdout:\n"
  2914. "%s"
  2915. msgstr ""
  2916. #, c-format
  2917. msgid ""
  2918. "Error while closing the file:\n"
  2919. "%s\n"
  2920. "Data may have been written or not"
  2921. msgstr "关闭文件时出错: \n%s\n无法确定数据是否已写入磁盘"
  2922. #, c-format
  2923. msgid ""
  2924. "Cannot save file:\n"
  2925. "%s"
  2926. msgstr "无法保存文件:\n%s"
  2927. msgid "View: "
  2928. msgstr "查看: "
  2929. #, c-format
  2930. msgid ""
  2931. "Cannot open \"%s\"\n"
  2932. "%s"
  2933. msgstr "无法打开“%s”\n%s"
  2934. msgid "Cannot view: not a regular file"
  2935. msgstr "无法查看: 不是常规文件"
  2936. #, c-format
  2937. msgid ""
  2938. "Cannot open \"%s\" in parse mode\n"
  2939. "%s"
  2940. msgstr "无法打开“%s”,当前解析模式\n%s"
  2941. msgid "Search done"
  2942. msgstr "搜索完成"
  2943. msgid "Continue from beginning?"
  2944. msgstr "从头继续搜索?"
  2945. msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
  2946. msgstr "无法获取 /ftp://some.host/editme.txt 的本地副本"