app.po 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311
  1. # 0xJacky <me@jackyu.cn>, 2025.
  2. msgid ""
  3. msgstr ""
  4. "Project-Id-Version: \n"
  5. "POT-Creation-Date: \n"
  6. "PO-Revision-Date: 2025-04-10 16:13+0800\n"
  7. "Last-Translator: 0xJacky <me@jackyu.cn>\n"
  8. "Language-Team: Chinese (Simplified Han script) <https://weblate.nginxui.com/"
  9. "projects/nginx-ui/frontend/zh_Hans/>\n"
  10. "Language: zh_CN\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. "Plural-Forms: nplurals=1; plural=0;\n"
  15. "X-Generator: Poedit 3.6\n"
  16. "Generated-By: easygettext\n"
  17. #: src/views/user/userColumns.tsx:32
  18. msgid "2FA"
  19. msgstr "2FA"
  20. #: src/views/preference/AuthSettings.vue:70
  21. msgid "2FA Settings"
  22. msgstr "2FA 设置"
  23. #: src/routes/modules/system.ts:45
  24. msgid "About"
  25. msgstr "关于"
  26. #: src/views/nginx_log/NginxLogList.vue:30
  27. msgid "Access Log"
  28. msgstr "访问日志"
  29. #: src/routes/modules/nginx_log.ts:17 src/views/site/ngx_conf/LogEntry.vue:91
  30. msgid "Access Logs"
  31. msgstr "访问日志"
  32. #: src/routes/modules/certificates.ts:20 src/views/certificate/ACMEUser.vue:113
  33. #: src/views/certificate/components/ACMEUserSelector.vue:85
  34. msgid "ACME User"
  35. msgstr "ACME 用户"
  36. #: src/views/certificate/ACMEUser.vue:95
  37. #: src/views/certificate/CertificateList/certColumns.tsx:94
  38. #: src/views/certificate/DNSCredential.vue:33
  39. #: src/views/config/configColumns.tsx:44
  40. #: src/views/environments/group/columns.ts:43
  41. #: src/views/environments/list/envColumns.tsx:97
  42. #: src/views/nginx_log/NginxLogList.vue:53
  43. #: src/views/notification/notificationColumns.tsx:66
  44. #: src/views/preference/AuthSettings.vue:30
  45. #: src/views/preference/components/ExternalNotify/columns.ts:46
  46. #: src/views/site/site_list/columns.tsx:120 src/views/stream/StreamList.vue:74
  47. #: src/views/user/userColumns.tsx:60
  48. msgid "Action"
  49. msgstr "操作"
  50. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
  51. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:186
  52. #: src/views/preference/CertSettings.vue:45
  53. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:117
  54. #: src/views/site/ngx_conf/NgxServer.vue:163
  55. #: src/views/site/ngx_conf/NgxUpstream.vue:154
  56. #: src/views/stream/StreamList.vue:177
  57. msgid "Add"
  58. msgstr "添加"
  59. #: src/views/preference/components/AddPasskey.vue:45
  60. #: src/views/preference/components/AddPasskey.vue:49
  61. msgid "Add a passkey"
  62. msgstr "添加 Passkey"
  63. #: src/routes/modules/config.ts:20 src/views/config/ConfigEditor.vue:168
  64. #: src/views/config/ConfigEditor.vue:241
  65. msgid "Add Configuration"
  66. msgstr "添加配置"
  67. #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:119
  68. msgid "Add Directive Below"
  69. msgstr "在下面添加指令"
  70. #: src/views/site/ngx_conf/LocationEditor.vue:130
  71. #: src/views/site/ngx_conf/LocationEditor.vue:157
  72. msgid "Add Location"
  73. msgstr "添加 Location"
  74. #: src/routes/modules/sites.ts:26 src/views/site/site_add/SiteAdd.vue:89
  75. msgid "Add Site"
  76. msgstr "添加站点"
  77. #: src/views/stream/StreamList.vue:243
  78. msgid "Add Stream"
  79. msgstr "添加 Stream"
  80. #: src/views/stream/StreamList.vue:158
  81. msgid "Added successfully"
  82. msgstr "添加成功"
  83. #: src/views/certificate/DNSChallenge.vue:110
  84. msgid "Additional"
  85. msgstr "额外选项"
  86. #: src/views/site/site_edit/SiteEdit.vue:225
  87. #: src/views/stream/StreamEdit.vue:207
  88. msgid "Advance Mode"
  89. msgstr "高级模式"
  90. #: src/views/preference/components/AddPasskey.vue:99
  91. msgid "Afterwards, refresh this page and click add passkey again."
  92. msgstr "然后,刷新此页面并再次点击添加 Passkey。"
  93. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:135
  94. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:419
  95. msgid "All"
  96. msgstr "全部"
  97. #: src/components/Notification/notifications.ts:175
  98. #: src/language/constants.ts:58
  99. msgid "All Recovery Codes Have Been Used"
  100. msgstr "所有恢复码都已被使用"
  101. #: src/views/preference/OpenAISettings.vue:32
  102. msgid "API Base Url"
  103. msgstr "API 地址"
  104. #: src/views/certificate/DNSChallenge.vue:83
  105. msgid "API Document"
  106. msgstr "API 文档"
  107. #: src/views/preference/OpenAISettings.vue:46
  108. msgid "API Proxy"
  109. msgstr "API 代理"
  110. #: src/views/preference/OpenAISettings.vue:58
  111. msgid "API Token"
  112. msgstr "API Token"
  113. #: src/views/preference/OpenAISettings.vue:67
  114. msgid "API Type"
  115. msgstr "API 类型"
  116. #: src/views/preference/Preference.vue:163
  117. msgid "App"
  118. msgstr "App"
  119. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:103
  120. msgid "Apply"
  121. msgstr "应用"
  122. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:67
  123. msgid "Apply bulk action successfully"
  124. msgstr "批量操作应用成功"
  125. #: src/views/system/Upgrade.vue:176
  126. msgid "Arch"
  127. msgstr "架构"
  128. #: src/views/preference/AuthSettings.vue:162
  129. msgid "Are you sure to delete this banned IP immediately?"
  130. msgstr "您确定要立即删除这个被禁用的 IP 吗?"
  131. #: src/views/preference/components/Passkey.vue:113
  132. msgid "Are you sure to delete this passkey immediately?"
  133. msgstr "您确定要立即删除这个 Passkey 吗?"
  134. #: src/views/preference/components/RecoveryCodes.vue:154
  135. msgid "Are you sure to generate new recovery codes?"
  136. msgstr "您确定要生成新的恢复代码吗?"
  137. #: src/views/preference/components/TOTP.vue:85
  138. msgid "Are you sure to reset 2FA?"
  139. msgstr "您确定要重设双重身份验证?"
  140. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:96
  141. msgid "Are you sure you want to apply to all selected?"
  142. msgstr "您确定要应用于所有选定的对象吗?"
  143. #: src/components/Notification/Notification.vue:135
  144. #: src/views/notification/Notification.vue:39
  145. msgid "Are you sure you want to clear all notifications?"
  146. msgstr "您确定要清除所有通知吗?"
  147. #: src/components/ChatGPT/ChatGPT.vue:376
  148. msgid "Are you sure you want to clear the record of chat?"
  149. msgstr "你确定你要清除聊天记录吗?"
  150. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:540
  151. msgid "Are you sure you want to delete this item permanently?"
  152. msgstr "您确定要永久删除此项目吗?"
  153. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:512
  154. msgid "Are you sure you want to delete this item?"
  155. msgstr "你确定要删除这个项目吗?"
  156. #: src/views/site/site_list/SiteList.vue:167
  157. #: src/views/stream/StreamList.vue:227
  158. msgid "Are you sure you want to delete?"
  159. msgstr "您确定要删除吗?"
  160. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:526
  161. msgid "Are you sure you want to recover this item?"
  162. msgstr "您确定要恢复这个项目吗?"
  163. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:149
  164. msgid "Are you sure you want to reload Nginx on the following sync nodes?"
  165. msgstr "你确定要在以下同步节点上重载 Nginx?"
  166. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:95
  167. msgid "Are you sure you want to remove this directive?"
  168. msgstr "您确定要删除这条指令?"
  169. #: src/views/preference/CertSettings.vue:71
  170. msgid "Are you sure you want to remove this item?"
  171. msgstr "您确定要删除这个项目吗?"
  172. #: src/views/site/ngx_conf/LocationEditor.vue:86
  173. msgid "Are you sure you want to remove this location?"
  174. msgstr "您确定要删除这个 Location?"
  175. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:161
  176. msgid "Are you sure you want to restart Nginx on the following sync nodes?"
  177. msgstr "你确定要在以下同步节点上重启 Nginx 吗?"
  178. #: src/components/ChatGPT/ChatGPT.vue:318
  179. msgid "Ask ChatGPT for Help"
  180. msgstr "与ChatGPT聊天"
  181. #: src/components/ChatGPT/ChatGPT.vue:333
  182. msgid "Assistant"
  183. msgstr "助手"
  184. #: src/views/system/SelfCheck/SelfCheck.vue:50
  185. msgid "Attempt to fix"
  186. msgstr "尝试修复"
  187. #: src/views/preference/AuthSettings.vue:21
  188. msgid "Attempts"
  189. msgstr "尝试次数"
  190. #: src/views/preference/Preference.vue:193
  191. msgid "Auth"
  192. msgstr "认证"
  193. #: src/components/TwoFA/Authorization.vue:109
  194. msgid "Authenticate with a passkey"
  195. msgstr "通过 Passkey 认证"
  196. #: src/views/preference/AuthSettings.vue:88
  197. msgid "Authentication Settings"
  198. msgstr "认证设置"
  199. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:106
  200. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:120
  201. msgid "Author"
  202. msgstr "作者"
  203. #: src/views/nginx_log/NginxLog.vue:149
  204. msgid "Auto Refresh"
  205. msgstr "自动刷新"
  206. #: src/views/site/cert/components/ObtainCert.vue:80
  207. msgid "Auto-renewal disabled for %{name}"
  208. msgstr "成功关闭 %{name} 自动续签"
  209. #: src/views/site/cert/components/ObtainCert.vue:73
  210. msgid "Auto-renewal enabled for %{name}"
  211. msgstr "成功启用 %{name} 自动续签"
  212. #: src/components/SystemRestore/SystemRestoreContent.vue:332
  213. msgid "Automatic Restart"
  214. msgstr "自动重启"
  215. #: src/views/nginx_log/NginxLogList.vue:127
  216. msgid "Automatically indexed from site and stream configurations."
  217. msgstr "自动索引站点和 Stream 的配置文件。"
  218. #: src/views/certificate/components/CertificateEditor.vue:257
  219. #: src/views/config/ConfigEditor.vue:262 src/views/config/ConfigList.vue:112
  220. #: src/views/config/ConfigList.vue:195 src/views/nginx_log/NginxLog.vue:173
  221. #: src/views/site/site_edit/SiteEdit.vue:285
  222. #: src/views/stream/StreamEdit.vue:264
  223. msgid "Back"
  224. msgstr "返回"
  225. #: src/views/other/Error.vue:22
  226. msgid "Back Home"
  227. msgstr "返回首页"
  228. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:206
  229. msgid "Back to list"
  230. msgstr "返回列表"
  231. #: src/routes/modules/system.ts:26
  232. msgid "Backup"
  233. msgstr "备份"
  234. #: src/components/SystemRestore/SystemRestoreContent.vue:155
  235. msgid "Backup file integrity check failed, it may have been tampered with"
  236. msgstr "备份文件完整性检查失败,可能已被篡改"
  237. #: src/constants/errors/backup.ts:41
  238. msgid "Backup file not found: {0}"
  239. msgstr "未找到备份文件:{0}"
  240. #: src/views/system/Backup/BackupCreator.vue:42
  241. msgid "Backup has been downloaded successfully"
  242. msgstr "已成功下载备份"
  243. #: src/views/preference/AuthSettings.vue:129
  244. msgid "Ban Threshold Minutes"
  245. msgstr "禁止阈值(分钟)"
  246. #: src/views/preference/AuthSettings.vue:150
  247. msgid "Banned IPs"
  248. msgstr "禁止 IP 列表"
  249. #: src/views/preference/AuthSettings.vue:24
  250. msgid "Banned Until"
  251. msgstr "禁用至"
  252. #: src/views/preference/components/ExternalNotify/bark.ts:5
  253. msgid "Bark"
  254. msgstr "Bark"
  255. #: src/views/site/site_add/SiteAdd.vue:95
  256. msgid "Base information"
  257. msgstr "基本信息"
  258. #: src/views/config/ConfigEditor.vue:290
  259. #: src/views/site/site_edit/RightSettings.vue:52
  260. #: src/views/stream/components/RightSettings.vue:79
  261. msgid "Basic"
  262. msgstr "基本"
  263. #: src/views/site/site_edit/SiteEdit.vue:228
  264. #: src/views/stream/StreamEdit.vue:210
  265. msgid "Basic Mode"
  266. msgstr "基本模式"
  267. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:83
  268. msgid "Batch Actions"
  269. msgstr "批量操作"
  270. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:62
  271. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:448
  272. msgid "Batch Modify"
  273. msgstr "批量修改"
  274. #: src/views/environments/list/BatchUpgrader.vue:152
  275. msgid "Batch Upgrade"
  276. msgstr "批量升级"
  277. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:70
  278. msgid "Belows are selected items that you want to batch modify"
  279. msgstr "以下是您选定的需要批量修改的项目"
  280. #: src/constants/errors/nginx.ts:2
  281. msgid "Block is nil"
  282. msgstr "区块为空"
  283. #: src/views/system/About.vue:55
  284. msgid "Build with"
  285. msgstr "构建基于"
  286. #: src/views/certificate/ACMEUser.vue:37
  287. msgid "CA Dir"
  288. msgstr "CA Dir"
  289. #: src/views/preference/CertSettings.vue:19
  290. msgid "CADir"
  291. msgstr "CADir"
  292. #: src/components/ChatGPT/ChatGPT.vue:356
  293. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:246
  294. #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:187
  295. #: src/components/StdDesign/StdDetail/StdDetail.vue:101
  296. #: src/views/preference/components/Passkey.vue:141
  297. #: src/views/site/cert/components/ObtainCert.vue:140
  298. #: src/views/site/ngx_conf/NgxConfigEditor.vue:51
  299. #: src/views/site/ngx_conf/NgxServer.vue:80
  300. #: src/views/site/ngx_conf/NgxUpstream.vue:34
  301. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:122
  302. #: src/views/stream/components/RightSettings.vue:55
  303. msgid "Cancel"
  304. msgstr "取消"
  305. #: src/constants/errors/user.ts:11
  306. msgid "Cannot change initial user password in demo mode"
  307. msgstr "不可在 Demo 中修改初始用户的密码"
  308. #: src/components/ConfigHistory/DiffViewer.vue:57
  309. #: src/components/ConfigHistory/DiffViewer.vue:74
  310. msgid "Cannot compare: Missing content"
  311. msgstr "无法比较:内容缺失"
  312. #: src/constants/errors/user.ts:10
  313. msgid "Cannot remove initial user"
  314. msgstr "不可删除初始用户"
  315. #: src/views/preference/Preference.vue:199
  316. msgid "Cert"
  317. msgstr "证书"
  318. #: src/constants/errors/cert.ts:3
  319. msgid "Cert path is not under the nginx conf dir"
  320. msgstr "证书路径不在 Nginx 配置目录下"
  321. #: src/components/Notification/notifications.ts:28
  322. msgid "Certificate %{name} has expired"
  323. msgstr "证书 %{name} 已过期"
  324. #: src/components/Notification/notifications.ts:32
  325. #: src/components/Notification/notifications.ts:36
  326. #: src/components/Notification/notifications.ts:40
  327. msgid "Certificate %{name} will expire in %{days} days"
  328. msgstr "证书 %{name} 将在 %{days} 天后失效"
  329. #: src/components/Notification/notifications.ts:44
  330. msgid "Certificate %{name} will expire in 1 day"
  331. msgstr "证书 %{name} 将在 1 天后过期"
  332. #: src/constants/errors/cert.ts:4
  333. msgid "Certificate decode error"
  334. msgstr "证书解码错误"
  335. #: src/components/Notification/notifications.ts:31
  336. msgid "Certificate Expiration Notice"
  337. msgstr "证书到期通知"
  338. #: src/components/Notification/notifications.ts:27
  339. msgid "Certificate Expired"
  340. msgstr "证书过期"
  341. #: src/components/Notification/notifications.ts:35
  342. #: src/components/Notification/notifications.ts:39
  343. #: src/components/Notification/notifications.ts:43
  344. msgid "Certificate Expiring Soon"
  345. msgstr "证书即将到期"
  346. #: src/constants/errors/cert.ts:5
  347. msgid "Certificate parse error"
  348. msgstr "证书解析错误"
  349. #: src/constants/errors/cert.ts:8
  350. msgid "Certificate path is empty"
  351. msgstr "证书路径为空"
  352. #: src/views/certificate/components/RemoveCert.vue:41
  353. #: src/views/certificate/components/RemoveCert.vue:61
  354. msgid "Certificate removed successfully"
  355. msgstr "成功删除证书"
  356. #: src/views/preference/CertSettings.vue:27
  357. msgid "Certificate Renewal Interval"
  358. msgstr "证书续期间隔"
  359. #: src/language/constants.ts:21
  360. msgid "Certificate renewed successfully"
  361. msgstr "证书更新成功"
  362. #: src/views/certificate/components/CertificateEditor.vue:128
  363. #: src/views/site/cert/Cert.vue:60
  364. msgid "Certificate Status"
  365. msgid_plural "Certificates Status"
  366. msgstr[0] "证书状态"
  367. #: src/routes/modules/certificates.ts:11
  368. #: src/views/certificate/CertificateList/Certificate.vue:14
  369. msgid "Certificates"
  370. msgstr "证书"
  371. #: src/routes/modules/certificates.ts:28
  372. msgid "Certificates List"
  373. msgstr "证书列表"
  374. #: src/views/site/cert/components/AutoCertStepOne.vue:66
  375. msgid "Challenge Method"
  376. msgstr "挑战方法"
  377. #: src/views/site/cert/components/ChangeCert/ChangeCert.vue:49
  378. #: src/views/site/cert/components/ChangeCert/ChangeCert.vue:53
  379. msgid "Change Certificate"
  380. msgstr "更改证书"
  381. #: src/views/site/cert/Cert.vue:79
  382. msgid "Changed Certificate"
  383. msgid_plural "Changed Certificates"
  384. msgstr[0] "变更证书"
  385. #: src/views/config/ConfigEditor.vue:318
  386. msgid "Changed Path"
  387. msgstr "变更后的路径"
  388. #: src/views/environments/list/BatchUpgrader.vue:159
  389. #: src/views/system/Upgrade.vue:188
  390. msgid "Channel"
  391. msgstr "通道"
  392. #: src/views/system/Upgrade.vue:185
  393. msgid "Check again"
  394. msgstr "重新检查"
  395. #: src/views/system/SelfCheck/tasks/frontend/https-check.ts:11
  396. msgid ""
  397. "Check if HTTPS is enabled. Using HTTP outside localhost is insecure and "
  398. "prevents using Passkeys and clipboard features."
  399. msgstr ""
  400. "检查是否启用了 HTTPS。在本地主机之外使用 HTTP 是不安全的,这也会导致无法使用 "
  401. "Passkey 和剪贴板功能。"
  402. #: src/views/system/SelfCheck/tasks/backend/index.ts:16
  403. msgid "Check if the nginx.conf includes the sites-enabled directory."
  404. msgstr "检查 nginx.conf 是否包含 sites-enabled 的目录。"
  405. #: src/views/system/SelfCheck/tasks/backend/index.ts:21
  406. msgid "Check if the nginx.conf includes the streams-enabled directory."
  407. msgstr "检查 nginx.conf 是否包含 streams-enabled 的目录。"
  408. #: src/views/system/SelfCheck/tasks/backend/index.ts:6
  409. msgid ""
  410. "Check if the sites-available and sites-enabled directories are under the "
  411. "nginx configuration directory."
  412. msgstr "检查 sites-available 和 sites-enabled 目录是否位于 nginx 配置目录下。"
  413. #: src/views/system/SelfCheck/tasks/backend/index.ts:11
  414. msgid ""
  415. "Check if the streams-available and streams-enabled directories are under the "
  416. "nginx configuration directory."
  417. msgstr ""
  418. "检查 nginx 配置目录下是否有 streams-available 和 streams-enabled 目录。"
  419. #: src/constants/errors/crypto.ts:3
  420. msgid "Cipher text is too short"
  421. msgstr "密码文本太短"
  422. #: src/language/constants.ts:13
  423. msgid "Cleaning environment variables"
  424. msgstr "正在清理环境变量"
  425. #: src/components/ChatGPT/ChatGPT.vue:380
  426. #: src/components/Notification/Notification.vue:140
  427. #: src/views/notification/Notification.vue:44
  428. msgid "Clear"
  429. msgstr "清空"
  430. #: src/components/Notification/Notification.vue:93
  431. #: src/views/notification/Notification.vue:13
  432. msgid "Cleared successfully"
  433. msgstr "清除成功"
  434. #: src/components/SystemRestore/SystemRestoreContent.vue:194
  435. #: src/components/SystemRestore/SystemRestoreContent.vue:271
  436. msgid "Click or drag backup file to this area to upload"
  437. msgstr "单击或拖动备份文件到此区域上传"
  438. #: src/views/preference/components/TOTP.vue:110
  439. msgid "Click to copy"
  440. msgstr "点击复制"
  441. #: src/components/ConfigHistory/ConfigHistory.vue:169
  442. msgid "Close"
  443. msgstr "关闭"
  444. #: src/views/preference/LogrotateSettings.vue:22
  445. msgid "Command"
  446. msgstr "命令"
  447. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:113
  448. #: src/views/site/ngx_conf/LocationEditor.vue:103
  449. #: src/views/site/ngx_conf/LocationEditor.vue:134
  450. #: src/views/site/ngx_conf/NgxServer.vue:135
  451. msgid "Comments"
  452. msgstr "注释"
  453. #: src/components/ConfigHistory/ConfigHistory.vue:127
  454. msgid "Compare"
  455. msgstr "比较"
  456. #: src/components/ConfigHistory/DiffViewer.vue:378
  457. msgid "Compare Configurations"
  458. msgstr "配置比较"
  459. #: src/components/ConfigHistory/ConfigHistory.vue:130
  460. msgid "Compare Selected"
  461. msgstr "比较选定"
  462. #: src/components/ConfigHistory/ConfigHistory.vue:129
  463. msgid "Compare with Current"
  464. msgstr "与当前的比较"
  465. #: src/constants/errors/backup.ts:14
  466. msgid "Config path is empty"
  467. msgstr "配置路径为空"
  468. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:84
  469. msgid "Config Templates"
  470. msgstr "配置"
  471. #: src/views/config/InspectConfig.vue:27
  472. msgid "Configuration file is test successful"
  473. msgstr "配置文件测试成功"
  474. #: src/components/ConfigHistory/ConfigHistory.vue:138
  475. msgid "Configuration History"
  476. msgstr "配置历史记录"
  477. #: src/views/site/site_add/SiteAdd.vue:101
  478. msgid "Configuration Name"
  479. msgstr "配置名称"
  480. #: src/views/config/ConfigList.vue:104
  481. msgid "Configurations"
  482. msgstr "配置"
  483. #: src/views/site/site_add/SiteAdd.vue:96
  484. msgid "Configure SSL"
  485. msgstr "配置 SSL"
  486. #: src/views/dashboard/Environments.vue:141
  487. msgid "Connected"
  488. msgstr "已连接"
  489. #: src/views/terminal/Terminal.vue:142
  490. msgid "Connection lost, please refresh the page."
  491. msgstr "连接中断,请刷新页面。"
  492. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:118
  493. #: src/views/site/ngx_conf/LocationEditor.vue:115
  494. #: src/views/site/ngx_conf/LocationEditor.vue:143
  495. msgid "Content"
  496. msgstr "内容"
  497. #: src/components/SensitiveString/SensitiveString.vue:37
  498. #: src/components/StdDesign/StdDataDisplay/StdTableTransformer.tsx:150
  499. #: src/views/preference/components/RecoveryCodes.vue:121
  500. msgid "Copied"
  501. msgstr "已拷贝"
  502. #: src/views/system/Backup/BackupCreator.vue:128
  503. msgid "Copied!"
  504. msgstr "已拷贝!"
  505. #: src/components/SensitiveString/SensitiveString.vue:37
  506. #: src/views/system/Backup/BackupCreator.vue:128
  507. msgid "Copy"
  508. msgstr "拷贝"
  509. #: src/views/preference/components/RecoveryCodes.vue:121
  510. msgid "Copy Codes"
  511. msgstr "复制代码"
  512. #: src/views/system/Upgrade.vue:146
  513. msgid "Core Upgrade"
  514. msgstr "核心升级"
  515. #: src/views/dashboard/ServerAnalytic.vue:301
  516. msgid "CPU Status"
  517. msgstr "CPU 状态"
  518. #: src/views/dashboard/ServerAnalytic.vue:195
  519. msgid "CPU:"
  520. msgstr "CPU:"
  521. #: src/views/site/ngx_conf/NgxUpstream.vue:165
  522. msgid "Create"
  523. msgstr "创建"
  524. #: src/views/site/site_add/SiteAdd.vue:157
  525. msgid "Create Another"
  526. msgstr "再创建一个"
  527. #: src/views/system/Backup/BackupCreator.vue:86
  528. msgid "Create Backup"
  529. msgstr "创建备份"
  530. #: src/views/config/ConfigList.vue:122
  531. msgid "Create File"
  532. msgstr "创建文件"
  533. #: src/views/config/components/Mkdir.vue:47 src/views/config/ConfigList.vue:129
  534. msgid "Create Folder"
  535. msgstr "创建文件夹"
  536. #: src/views/system/Backup/BackupCreator.vue:75
  537. msgid ""
  538. "Create system backups including Nginx configuration and Nginx UI settings. "
  539. "Backup files will be automatically downloaded to your computer."
  540. msgstr ""
  541. "创建系统备份,包括 Nginx 配置和 Nginx UI 设置。备份文件将自动下载到你的电脑。"
  542. #: src/views/environments/group/columns.ts:31
  543. #: src/views/notification/notificationColumns.tsx:59
  544. #: src/views/preference/components/ExternalNotify/columns.ts:41
  545. #: src/views/preference/components/Passkey.vue:95
  546. #: src/views/user/userColumns.tsx:48
  547. msgid "Created at"
  548. msgstr "创建时间"
  549. #: src/views/config/components/Mkdir.vue:35
  550. msgid "Created successfully"
  551. msgstr "创建成功"
  552. #: src/language/constants.ts:9
  553. msgid "Creating client facilitates communication with the CA server"
  554. msgstr "正在创建客户端用于与 CA 服务器通信"
  555. #: src/views/site/cert/components/DNSChallenge.vue:104
  556. msgid "Credential"
  557. msgstr "DNS 凭证"
  558. #: src/views/certificate/DNSChallenge.vue:99
  559. msgid "Credentials"
  560. msgstr "凭证"
  561. #: src/views/preference/components/TOTP.vue:72
  562. msgid "Current account is enabled TOTP."
  563. msgstr "当前账户已启用 TOTP 验证。"
  564. #: src/views/preference/components/TOTP.vue:70
  565. msgid "Current account is not enabled TOTP."
  566. msgstr "当前用户未启用 TOTP 验证。"
  567. #: src/components/ConfigHistory/DiffViewer.vue:62
  568. msgid "Current Content"
  569. msgstr "当前内容"
  570. #: src/views/system/Upgrade.vue:165
  571. msgid "Current Version"
  572. msgstr "当前版本"
  573. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:127
  574. #: src/views/site/ngx_conf/NgxConfigEditor.vue:194
  575. msgid "Custom"
  576. msgstr "自定义"
  577. #: src/views/preference/NodeSettings.vue:19
  578. msgid ""
  579. "Customize the name of local node to be displayed in the environment "
  580. "indicator."
  581. msgstr "自定义显示在环境指示器中的本地服务器名称。"
  582. #: src/routes/modules/dashboard.ts:10 src/views/config/ConfigEditor.vue:107
  583. #: src/views/config/ConfigEditor.vue:158 src/views/config/ConfigList.vue:67
  584. msgid "Dashboard"
  585. msgstr "仪表盘"
  586. #: src/views/other/Install.vue:169
  587. msgid "Database (Optional, default: database)"
  588. msgstr "数据库 (可选,默认: database)"
  589. #: src/views/preference/CertSettings.vue:32
  590. msgid "Days"
  591. msgstr "天"
  592. #: src/constants/errors/middleware.ts:3
  593. msgid "Decryption failed"
  594. msgstr "解密失败"
  595. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:21
  596. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:519
  597. #: src/views/certificate/components/RemoveCert.vue:87
  598. #: src/views/site/ngx_conf/NgxServer.vue:110
  599. #: src/views/site/ngx_conf/NgxUpstream.vue:128
  600. #: src/views/site/site_list/SiteList.vue:176
  601. #: src/views/stream/StreamList.vue:236
  602. msgid "Delete"
  603. msgstr "删除"
  604. #: src/views/certificate/components/RemoveCert.vue:92
  605. msgid "Delete Certificate"
  606. msgstr "删除证书"
  607. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:35
  608. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:547
  609. msgid "Delete Permanently"
  610. msgstr "彻底删除"
  611. #: src/components/Notification/notifications.ts:75 src/language/constants.ts:50
  612. msgid "Delete Remote Site Error"
  613. msgstr "删除远程站点错误"
  614. #: src/components/Notification/notifications.ts:79 src/language/constants.ts:49
  615. msgid "Delete Remote Site Success"
  616. msgstr "删除远程站点成功"
  617. #: src/components/Notification/notifications.ts:133
  618. msgid "Delete Remote Stream Error"
  619. msgstr "删除远程 Stream 错误"
  620. #: src/components/Notification/notifications.ts:137
  621. msgid "Delete Remote Stream Success"
  622. msgstr "删除远程 Stream 成功"
  623. #: src/components/Notification/notifications.ts:76
  624. msgid "Delete site %{name} from %{node} failed"
  625. msgstr "部署 %{name} 到 %{node} 失败"
  626. #: src/components/Notification/notifications.ts:80
  627. msgid "Delete site %{name} from %{node} successfully"
  628. msgstr "成功从 %{node} 中删除站点 %{name}"
  629. #: src/views/site/site_list/SiteList.vue:98
  630. msgid "Delete site: %{site_name}"
  631. msgstr "删除站点: %{site_name}"
  632. #: src/components/Notification/notifications.ts:134
  633. msgid "Delete stream %{name} from %{node} failed"
  634. msgstr "部署 %{name} 到 %{node} 失败"
  635. #: src/components/Notification/notifications.ts:138
  636. msgid "Delete stream %{name} from %{node} successfully"
  637. msgstr "成功从 %{node} 中删除站点 %{name}"
  638. #: src/views/stream/StreamList.vue:107
  639. msgid "Delete stream: %{stream_name}"
  640. msgstr "删除 Stream: %{stream_name}"
  641. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:183
  642. msgid "Deleted successfully"
  643. msgstr "删除成功"
  644. #: src/views/preference/NodeSettings.vue:28
  645. msgid "Demo"
  646. msgstr "Demo"
  647. #: src/views/config/ConfigEditor.vue:334
  648. msgid "Deploy"
  649. msgstr "部署"
  650. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:107
  651. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:121
  652. msgid "Description"
  653. msgstr "描述"
  654. #: src/constants/errors/site.ts:3 src/constants/errors/stream.ts:3
  655. msgid "Destination file already exists"
  656. msgstr "目标文件已存在"
  657. #: src/views/notification/notificationColumns.tsx:53
  658. msgid "Details"
  659. msgstr "详情"
  660. #: src/views/system/About.vue:28
  661. msgid "Development Mode"
  662. msgstr "开发模式"
  663. #: src/views/preference/components/ExternalNotify/dingtalk.ts:5
  664. msgid "DingTalk"
  665. msgstr "钉钉"
  666. #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:89
  667. msgid "Directive"
  668. msgstr "指令"
  669. #: src/constants/errors/nginx_log.ts:6
  670. msgid "Directive params is empty"
  671. msgstr "指令的参数为空"
  672. #: src/constants/errors/nginx_log.ts:5
  673. msgid "Directive.Params neither access_log nor error_log"
  674. msgstr "Directive.Params 既不是 access_log 也不是 error_log"
  675. #: src/constants/errors/nginx_log.ts:4
  676. msgid "DirectiveIdx out of range"
  677. msgstr "指令 index 超出范围"
  678. #: src/views/site/ngx_conf/directive/DirectiveEditor.vue:28
  679. msgid "Directives"
  680. msgstr "指令"
  681. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:113
  682. msgid "disable"
  683. msgstr "禁用"
  684. #: src/views/stream/StreamList.vue:207
  685. msgid "Disable"
  686. msgstr "禁用"
  687. #: src/views/site/cert/components/ObtainCert.vue:82
  688. msgid "Disable auto-renewal failed for %{name}"
  689. msgstr "关闭 %{name} 自动续签失败"
  690. #: src/components/Notification/notifications.ts:83 src/language/constants.ts:52
  691. msgid "Disable Remote Site Error"
  692. msgstr "禁用远程站点错误"
  693. #: src/components/Notification/notifications.ts:107
  694. msgid "Disable Remote Site Maintenance Error"
  695. msgstr "禁用远程站点维护错误"
  696. #: src/components/Notification/notifications.ts:111
  697. msgid "Disable Remote Site Maintenance Success"
  698. msgstr "禁用远程站点维护成功"
  699. #: src/components/Notification/notifications.ts:87 src/language/constants.ts:51
  700. msgid "Disable Remote Site Success"
  701. msgstr "禁用远程站点成功"
  702. #: src/components/Notification/notifications.ts:141
  703. msgid "Disable Remote Stream Error"
  704. msgstr "禁用远程 Stream 错误"
  705. #: src/components/Notification/notifications.ts:145
  706. msgid "Disable Remote Stream Success"
  707. msgstr "禁用远程 Stream成功"
  708. #: src/components/Notification/notifications.ts:84
  709. msgid "Disable site %{name} from %{node} failed"
  710. msgstr "在 %{node} 上禁用 %{name} 成功"
  711. #: src/components/Notification/notifications.ts:88
  712. msgid "Disable site %{name} from %{node} successfully"
  713. msgstr "在 %{node} 上禁用 %{name} 成功"
  714. #: src/components/Notification/notifications.ts:108
  715. msgid "Disable site %{name} maintenance on %{node} failed"
  716. msgstr "停用站点 %{name} 维护 %{node} 失败"
  717. #: src/components/Notification/notifications.ts:112
  718. msgid "Disable site %{name} maintenance on %{node} successfully"
  719. msgstr "成功停用站点 %{name} 上 %{node} 的维护功能"
  720. #: src/components/Notification/notifications.ts:142
  721. msgid "Disable stream %{name} from %{node} failed"
  722. msgstr "在 %{node} 中启用 %{name} 失败"
  723. #: src/components/Notification/notifications.ts:146
  724. msgid "Disable stream %{name} from %{node} successfully"
  725. msgstr "在 %{node} 上禁用 %{name} 成功"
  726. #: src/views/environments/list/envColumns.tsx:61
  727. #: src/views/environments/list/envColumns.tsx:79
  728. #: src/views/preference/HTTPSettings.vue:24
  729. #: src/views/preference/NodeSettings.vue:25
  730. #: src/views/preference/NodeSettings.vue:30
  731. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:159
  732. #: src/views/site/site_edit/SiteEdit.vue:199
  733. #: src/views/site/site_list/columns.tsx:111 src/views/stream/StreamEdit.vue:182
  734. #: src/views/stream/StreamList.vue:58 src/views/user/userColumns.tsx:41
  735. msgid "Disabled"
  736. msgstr "禁用"
  737. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:56
  738. #: src/views/stream/components/RightSettings.vue:42
  739. #: src/views/stream/StreamList.vue:96
  740. msgid "Disabled successfully"
  741. msgstr "禁用成功"
  742. #: src/views/dashboard/ServerAnalytic.vue:366
  743. msgid "Disk IO"
  744. msgstr "磁盘 IO"
  745. #: src/routes/modules/certificates.ts:56
  746. #: src/views/certificate/DNSCredential.vue:40
  747. msgid "DNS Credentials"
  748. msgstr "DNS 凭证"
  749. #: src/views/certificate/DNSChallenge.vue:72
  750. #: src/views/site/cert/components/DNSChallenge.vue:94
  751. msgid "DNS Provider"
  752. msgstr "DNS 提供商"
  753. #: src/views/site/cert/components/AutoCertStepOne.vue:73
  754. msgid "DNS01"
  755. msgstr "DNS01"
  756. #: src/views/site/cert/components/AutoCertStepOne.vue:98
  757. msgid "Do not enable this option unless you are sure that you need it."
  758. msgstr "除非确定需要,否则不要启用该选项。"
  759. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:118
  760. msgid "Do you want to %{action} this site?"
  761. msgstr "您想将这个网站%{action}吗?"
  762. #: src/views/site/cert/components/ObtainCert.vue:136
  763. msgid "Do you want to disable auto-cert renewal?"
  764. msgstr "你想禁用自动更新证书吗?"
  765. #: src/views/stream/components/RightSettings.vue:51
  766. msgid "Do you want to disable this stream?"
  767. msgstr "你想停用这个 Stream 吗?"
  768. #: src/views/stream/components/RightSettings.vue:51
  769. msgid "Do you want to enable this stream?"
  770. msgstr "你想启用这个 Stream 吗?"
  771. #: src/views/site/ngx_conf/NgxConfigEditor.vue:44
  772. msgid "Do you want to enable TLS?"
  773. msgstr "你想启用 TLS 吗?"
  774. #: src/views/site/ngx_conf/NgxServer.vue:76
  775. msgid "Do you want to remove this server?"
  776. msgstr "你想删除这个服务器吗?"
  777. #: src/views/site/ngx_conf/NgxUpstream.vue:30
  778. msgid "Do you want to remove this upstream?"
  779. msgstr "你想删除这个 Upstream 吗?"
  780. #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:105
  781. #: src/views/site/ngx_conf/directive/DirectiveDocuments.vue:15
  782. msgid "Document"
  783. msgid_plural "Documents"
  784. msgstr[0] "文档"
  785. #: src/views/certificate/components/WildcardCertificate.vue:68
  786. msgid "Domain"
  787. msgstr "域名"
  788. #: src/views/certificate/components/CertificateEditor.vue:112
  789. msgid "Domains list is empty, try to reopen Auto Cert for %{config}"
  790. msgstr "域名列表为空,请尝试为 %{config} 重新打开证书自动续期"
  791. #: src/language/constants.ts:27
  792. msgid "Download latest release error"
  793. msgstr "下载最新版本错误"
  794. #: src/language/constants.ts:26
  795. msgid "Downloading latest release"
  796. msgstr "下载最新版本"
  797. #: src/views/environments/list/BatchUpgrader.vue:188
  798. #: src/views/system/Upgrade.vue:215
  799. msgid "Dry run mode enabled"
  800. msgstr "试运行模式已启动"
  801. #: src/views/preference/components/AddPasskey.vue:101
  802. msgid ""
  803. "Due to the security policies of some browsers, you cannot use passkeys on "
  804. "non-HTTPS websites, except when running on localhost."
  805. msgstr ""
  806. "由于某些浏览器的安全策略,除非在 localhost 上使用,否则不能在非 HTTPS 网站上"
  807. "使用 Passkey。"
  808. #: src/views/site/site_list/SiteDuplicate.vue:72
  809. #: src/views/site/site_list/SiteList.vue:162
  810. #: src/views/stream/components/StreamDuplicate.vue:64
  811. #: src/views/stream/StreamList.vue:222
  812. msgid "Duplicate"
  813. msgstr "复制"
  814. #: src/views/site/site_list/SiteDuplicate.vue:48
  815. #: src/views/stream/components/StreamDuplicate.vue:40
  816. msgid "Duplicate to local successfully"
  817. msgstr "成功复制到本地"
  818. #: src/components/StdDesign/StdDetail/StdDetail.vue:110
  819. msgid "Edit"
  820. msgstr "编辑"
  821. #: src/views/site/site_edit/SiteEdit.vue:188
  822. #: src/views/stream/StreamEdit.vue:171
  823. msgid "Edit %{n}"
  824. msgstr "编辑 %{n}"
  825. #: src/routes/modules/config.ts:30 src/views/config/ConfigEditor.vue:241
  826. msgid "Edit Configuration"
  827. msgstr "编辑配置"
  828. #: src/routes/modules/sites.ts:34
  829. msgid "Edit Site"
  830. msgstr "编辑站点"
  831. #: src/routes/modules/streams.ts:19
  832. msgid "Edit Stream"
  833. msgstr "编辑 Stream"
  834. #: src/views/certificate/ACMEUser.vue:25
  835. #: src/views/preference/CertSettings.vue:12
  836. msgid "Email"
  837. msgstr "邮箱"
  838. #: src/views/other/Install.vue:138
  839. msgid "Email (*)"
  840. msgstr "邮箱 (*)"
  841. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:112
  842. msgid "enable"
  843. msgstr "启用"
  844. #: src/views/stream/StreamList.vue:215
  845. msgid "Enable"
  846. msgstr "启用"
  847. #: src/views/preference/components/TOTP.vue:45
  848. msgid "Enable 2FA successfully"
  849. msgstr "二步验证启用成功"
  850. #: src/views/site/cert/components/ObtainCert.vue:75
  851. msgid "Enable auto-renewal failed for %{name}"
  852. msgstr "启用 %{name} 自动续签失败"
  853. #: src/views/site/site_add/SiteAdd.vue:43
  854. msgid "Enable failed"
  855. msgstr "启用失败"
  856. #: src/views/preference/ServerSettings.vue:29
  857. msgid "Enable HTTPS"
  858. msgstr "启用 HTTPS"
  859. #: src/components/Notification/notifications.ts:91 src/language/constants.ts:54
  860. msgid "Enable Remote Site Error"
  861. msgstr "启用远程站点错误"
  862. #: src/components/Notification/notifications.ts:99
  863. msgid "Enable Remote Site Maintenance Error"
  864. msgstr "在 %{node} 上启用 %{site} 失败"
  865. #: src/components/Notification/notifications.ts:103
  866. msgid "Enable Remote Site Maintenance Success"
  867. msgstr "成功启用远程站点维护"
  868. #: src/components/Notification/notifications.ts:95 src/language/constants.ts:53
  869. msgid "Enable Remote Site Success"
  870. msgstr "启用远程站点成功"
  871. #: src/components/Notification/notifications.ts:149
  872. msgid "Enable Remote Stream Error"
  873. msgstr "启用远程 Steam 错误"
  874. #: src/components/Notification/notifications.ts:153
  875. msgid "Enable Remote Stream Success"
  876. msgstr "启用远程 Stream 成功"
  877. #: src/components/Notification/notifications.ts:100
  878. msgid "Enable site %{name} maintenance on %{node} failed"
  879. msgstr "在 %{node} 中为 %{name} 启用维护模式失败"
  880. #: src/components/Notification/notifications.ts:104
  881. msgid "Enable site %{name} maintenance on %{node} successfully"
  882. msgstr "在 %{node} 上成功启用站点 %{name} 维护模式"
  883. #: src/components/Notification/notifications.ts:92
  884. msgid "Enable site %{name} on %{node} failed"
  885. msgstr "在 %{node} 中启用 %{name} 失败"
  886. #: src/components/Notification/notifications.ts:96
  887. msgid "Enable site %{name} on %{node} successfully"
  888. msgstr "在 %{node} 上启用 %{name} 成功"
  889. #: src/components/Notification/notifications.ts:150
  890. msgid "Enable stream %{name} on %{node} failed"
  891. msgstr "在 %{node} 中启用 %{name} 失败"
  892. #: src/components/Notification/notifications.ts:154
  893. msgid "Enable stream %{name} on %{node} successfully"
  894. msgstr "在 %{node} 上启用 %{name} 成功"
  895. #: src/views/site/ngx_conf/NgxConfigEditor.vue:183
  896. msgid "Enable TLS"
  897. msgstr "启用 TLS"
  898. #: src/views/preference/components/TOTP.vue:81
  899. msgid "Enable TOTP"
  900. msgstr "启用 TOTP"
  901. #: src/views/environments/list/envColumns.tsx:70
  902. #: src/views/environments/list/envColumns.tsx:76
  903. #: src/views/preference/HTTPSettings.vue:24
  904. #: src/views/preference/LogrotateSettings.vue:19
  905. #: src/views/preference/NodeSettings.vue:25
  906. #: src/views/preference/NodeSettings.vue:30
  907. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:155
  908. #: src/views/site/site_edit/SiteEdit.vue:193
  909. #: src/views/site/site_list/columns.tsx:110
  910. #: src/views/stream/components/RightSettings.vue:81
  911. #: src/views/stream/StreamEdit.vue:176 src/views/stream/StreamList.vue:54
  912. #: src/views/user/userColumns.tsx:38
  913. msgid "Enabled"
  914. msgstr "启用"
  915. #: src/views/site/site_add/SiteAdd.vue:40
  916. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:40
  917. #: src/views/stream/components/RightSettings.vue:33
  918. #: src/views/stream/StreamList.vue:86
  919. msgid "Enabled successfully"
  920. msgstr "启用成功"
  921. #: src/views/site/cert/IssueCert.vue:48
  922. msgid "Encrypt website with Let's Encrypt"
  923. msgstr "用 Let's Encrypt 对网站进行加密"
  924. #: src/language/constants.ts:22
  925. msgid "Environment variables cleaned"
  926. msgstr "环境变量已清理"
  927. #: src/routes/modules/environments.ts:11
  928. #: src/views/dashboard/Environments.vue:83
  929. #: src/views/environments/list/Environment.vue:74
  930. msgid "Environments"
  931. msgstr "环境"
  932. #: src/constants/index.ts:22 src/views/config/InspectConfig.vue:44
  933. #: src/views/notification/notificationColumns.tsx:15
  934. msgid "Error"
  935. msgstr "错误"
  936. #: src/components/ConfigHistory/DiffViewer.vue:135
  937. msgid "Error initializing diff viewer"
  938. msgstr "差异查看器初始化出错"
  939. #: src/views/nginx_log/NginxLogList.vue:31
  940. msgid "Error Log"
  941. msgstr "错误日志"
  942. #: src/routes/modules/nginx_log.ts:24 src/views/site/ngx_conf/LogEntry.vue:99
  943. msgid "Error Logs"
  944. msgstr "错误日志"
  945. #: src/components/ConfigHistory/DiffViewer.vue:87
  946. msgid "Error processing content"
  947. msgstr "内容处理错误"
  948. #: src/views/system/Upgrade.vue:177
  949. msgid "Executable Path"
  950. msgstr "可执行文件路径"
  951. #: src/views/certificate/CertificateList/certColumns.tsx:82
  952. #: src/views/site/cert/CertInfo.vue:31
  953. msgid "Expired"
  954. msgstr "已过期"
  955. #: src/views/site/cert/CertInfo.vue:38
  956. msgid "Expired At: %{date}"
  957. msgstr "过期时间: %{date}"
  958. #: src/components/StdDesign/StdDataDisplay/methods/exportCsv.ts:64
  959. msgid "Export"
  960. msgstr "导出"
  961. #: src/views/preference/ExternalNotify.vue:10
  962. #: src/views/preference/Preference.vue:169
  963. msgid "External Notify"
  964. msgstr "外部通知"
  965. #: src/views/site/cert/components/ObtainCertLive.vue:94
  966. msgid "Fail to obtain certificate"
  967. msgstr "获取证书失败"
  968. #: src/constants/errors/backup.ts:5
  969. msgid "Failed to backup Nginx config files: {0}"
  970. msgstr "备份 Nginx 配置文件失败:{0}"
  971. #: src/constants/errors/backup.ts:4
  972. msgid "Failed to backup Nginx UI files: {0}"
  973. msgstr "备份 Nginx UI 文件失败:{0}"
  974. #: src/constants/errors/backup.ts:18
  975. msgid "Failed to calculate hash: {0}"
  976. msgstr "计算哈希值失败:{0}"
  977. #: src/constants/errors/backup.ts:58
  978. msgid "Failed to calculate Nginx hash: {0}"
  979. msgstr "计算 Nginx 哈希值失败:{0}"
  980. #: src/constants/errors/backup.ts:57
  981. msgid "Failed to calculate Nginx UI hash: {0}"
  982. msgstr "计算 Nginx UI 哈希值失败:{0}"
  983. #: src/constants/errors/backup.ts:13
  984. msgid "Failed to cleanup temporary directory: {0}"
  985. msgstr "清理临时目录失败:{0}"
  986. #: src/constants/errors/backup.ts:15
  987. msgid "Failed to copy config file: {0}"
  988. msgstr "复制配置文件失败:{0}"
  989. #: src/constants/errors/backup.ts:16
  990. msgid "Failed to copy database directory: {0}"
  991. msgstr "复制数据库目录失败:{0}"
  992. #: src/constants/errors/backup.ts:17
  993. msgid "Failed to copy database file: {0}"
  994. msgstr "复制数据库文件失败:{0}"
  995. #: src/constants/errors/backup.ts:32
  996. msgid "Failed to copy file content: {0}"
  997. msgstr "复制文件内容失败:{0}"
  998. #: src/constants/errors/backup.ts:20
  999. msgid "Failed to copy Nginx config directory: {0}"
  1000. msgstr "复制 Nginx 配置目录失败:{0}"
  1001. #: src/constants/errors/self_check.ts:9
  1002. msgid "Failed to create backup"
  1003. msgstr "创建备份失败"
  1004. #: src/constants/errors/backup.ts:12
  1005. msgid "Failed to create backup file: {0}"
  1006. msgstr "创建备份文件失败:{0}"
  1007. #: src/constants/errors/backup.ts:46
  1008. msgid "Failed to create directory: {0}"
  1009. msgstr "创建目录失败:{0}"
  1010. #: src/constants/errors/backup.ts:48
  1011. msgid "Failed to create file: {0}"
  1012. msgstr "创建文件失败:{0}"
  1013. #: src/constants/errors/backup.ts:6
  1014. msgid "Failed to create hash info file: {0}"
  1015. msgstr "创建哈希信息文件失败:{0}"
  1016. #: src/constants/errors/backup.ts:47
  1017. msgid "Failed to create parent directory: {0}"
  1018. msgstr "创建父目录失败:{0}"
  1019. #: src/constants/errors/backup.ts:34
  1020. msgid "Failed to create restore directory: {0}"
  1021. msgstr "创建还原目录失败:{0}"
  1022. #: src/constants/errors/backup.ts:50
  1023. msgid "Failed to create symbolic link: {0}"
  1024. msgstr "创建符号链接失败:{0}"
  1025. #: src/constants/errors/backup.ts:2
  1026. msgid "Failed to create temporary directory"
  1027. msgstr "创建临时目录失败"
  1028. #: src/constants/errors/backup.ts:3
  1029. msgid "Failed to create temporary subdirectory"
  1030. msgstr "创建临时子目录失败"
  1031. #: src/constants/errors/backup.ts:9
  1032. msgid "Failed to create zip archive: {0}"
  1033. msgstr "创建 zip 压缩包失败:{0}"
  1034. #: src/constants/errors/backup.ts:29
  1035. msgid "Failed to create zip entry: {0}"
  1036. msgstr "创建 zip 条目失败:{0}"
  1037. #: src/constants/errors/backup.ts:28
  1038. msgid "Failed to create zip file: {0}"
  1039. msgstr "创建压缩文件失败:{0}"
  1040. #: src/constants/errors/backup.ts:31
  1041. msgid "Failed to create zip header: {0}"
  1042. msgstr "创建 zip 头失败:{0}"
  1043. #: src/constants/errors/backup.ts:26
  1044. msgid "Failed to decrypt data: {0}"
  1045. msgstr "解密数据失败:{0}"
  1046. #: src/constants/errors/backup.ts:54
  1047. msgid "Failed to decrypt file: {0}"
  1048. msgstr "解密文件失败:{0}"
  1049. #: src/constants/errors/backup.ts:37
  1050. msgid "Failed to decrypt Nginx directory: {0}"
  1051. msgstr "解密 Nginx 目录失败:{0}"
  1052. #: src/constants/errors/backup.ts:36
  1053. msgid "Failed to decrypt Nginx UI directory: {0}"
  1054. msgstr "解密 Nginx UI 目录失败:{0}"
  1055. #: src/views/certificate/components/RemoveCert.vue:66
  1056. msgid "Failed to delete certificate"
  1057. msgstr "删除证书失败"
  1058. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:63
  1059. #: src/views/stream/components/RightSettings.vue:45
  1060. #: src/views/stream/StreamList.vue:100
  1061. msgid "Failed to disable %{msg}"
  1062. msgstr "禁用失败 %{msg}"
  1063. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:95
  1064. msgid "Failed to disable maintenance mode %{msg}"
  1065. msgstr "停用维护模式失败 %{msg}"
  1066. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:47
  1067. #: src/views/stream/components/RightSettings.vue:36
  1068. #: src/views/stream/StreamList.vue:90
  1069. msgid "Failed to enable %{msg}"
  1070. msgstr "启用失败 %{msg}"
  1071. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:79
  1072. msgid "Failed to enable maintenance mode %{msg}"
  1073. msgstr "启用维护模式失败 %{msg}"
  1074. #: src/constants/errors/backup.ts:25
  1075. msgid "Failed to encrypt data: {0}"
  1076. msgstr "加密数据失败:{0}"
  1077. #: src/constants/errors/backup.ts:23
  1078. msgid "Failed to encrypt file: {0}"
  1079. msgstr "加密文件失败:{0}"
  1080. #: src/constants/errors/backup.ts:8
  1081. msgid "Failed to encrypt Nginx directory: {0}"
  1082. msgstr "加密 Nginx 目录失败:{0}"
  1083. #: src/constants/errors/backup.ts:7
  1084. msgid "Failed to encrypt Nginx UI directory: {0}"
  1085. msgstr "加密 Nginx UI 目录失败:{0}"
  1086. #: src/constants/errors/backup.ts:52
  1087. msgid "Failed to evaluate symbolic links: {0}"
  1088. msgstr "符号链接解析失败:{0}"
  1089. #: src/constants/errors/backup.ts:35
  1090. msgid "Failed to extract archive: {0}"
  1091. msgstr "解压缩失败:{0}"
  1092. #: src/constants/errors/backup.ts:10
  1093. msgid "Failed to generate AES key: {0}"
  1094. msgstr "生成 AES 密钥失败: {0}"
  1095. #: src/constants/errors/backup.ts:11
  1096. msgid "Failed to generate initialization vector: {0}"
  1097. msgstr "生成初始化向量失败:{0}"
  1098. #: src/language/constants.ts:5
  1099. msgid "Failed to get certificate information"
  1100. msgstr "获取证书信息失败"
  1101. #: src/components/ConfigHistory/ConfigHistory.vue:77
  1102. msgid "Failed to load history records"
  1103. msgstr "加载历史记录失败"
  1104. #: src/constants/errors/backup.ts:30
  1105. msgid "Failed to open source file: {0}"
  1106. msgstr "打开源文件失败:{0}"
  1107. #: src/constants/errors/backup.ts:49
  1108. msgid "Failed to open zip entry: {0}"
  1109. msgstr "打开 zip 条目失败:{0}"
  1110. #: src/constants/errors/backup.ts:45
  1111. msgid "Failed to open zip file: {0}"
  1112. msgstr "打开压缩文件失败:{0}"
  1113. #: src/constants/errors/self_check.ts:4
  1114. msgid "Failed to parse nginx.conf"
  1115. msgstr "解析 nginx.conf 失败"
  1116. #: src/constants/errors/backup.ts:53
  1117. msgid "Failed to read encrypted file: {0}"
  1118. msgstr "读取加密文件失败:{0}"
  1119. #: src/constants/errors/backup.ts:22
  1120. msgid "Failed to read file: {0}"
  1121. msgstr "读取文件失败:{0}"
  1122. #: src/constants/errors/backup.ts:56
  1123. msgid "Failed to read hash info file: {0}"
  1124. msgstr "读取哈希信息文件失败:{0}"
  1125. #: src/constants/errors/self_check.ts:3
  1126. msgid "Failed to read nginx.conf"
  1127. msgstr "读取 nginx.conf 失败"
  1128. #: src/constants/errors/backup.ts:21
  1129. msgid "Failed to read symlink: {0}"
  1130. msgstr "读取符号链接失败:{0}"
  1131. #: src/constants/errors/backup.ts:39
  1132. msgid "Failed to restore Nginx configs: {0}"
  1133. msgstr "恢复 Nginx 配置失败:{0}"
  1134. #: src/constants/errors/backup.ts:40
  1135. msgid "Failed to restore Nginx UI files: {0}"
  1136. msgstr "恢复 Nginx UI 文件失败:{0}"
  1137. #: src/views/certificate/components/RemoveCert.vue:48
  1138. msgid "Failed to revoke certificate"
  1139. msgstr "证书撤销失败"
  1140. #: src/views/site/site_edit/SiteEdit.vue:139
  1141. #: src/views/stream/StreamEdit.vue:122
  1142. msgid "Failed to save, syntax error(s) was detected in the configuration."
  1143. msgstr "保存失败,在配置中检测到语法错误。"
  1144. #: src/constants/errors/backup.ts:38
  1145. msgid "Failed to verify hashes: {0}"
  1146. msgstr "验证哈希值失败:{0}"
  1147. #: src/constants/errors/backup.ts:55
  1148. msgid "Failed to write decrypted file: {0}"
  1149. msgstr "写入解密文件失败:{0}"
  1150. #: src/constants/errors/backup.ts:24
  1151. msgid "Failed to write encrypted file: {0}"
  1152. msgstr "写入加密文件失败:{0}"
  1153. #: src/constants/errors/backup.ts:33
  1154. msgid "Failed to write to zip buffer: {0}"
  1155. msgstr "写入 zip 缓冲区失败:{0}"
  1156. #: src/language/constants.ts:32
  1157. msgid "File exists"
  1158. msgstr "文件已存在"
  1159. #: src/views/other/Error.vue:8
  1160. msgid "File Not Found"
  1161. msgstr "未找到文件"
  1162. #: src/constants/errors/cert.ts:2
  1163. msgid "Filename is empty"
  1164. msgstr "文件名为空"
  1165. #: src/views/nginx_log/NginxLog.vue:155
  1166. msgid "Filter"
  1167. msgstr "过滤"
  1168. #: src/language/constants.ts:19 src/views/site/site_add/SiteAdd.vue:97
  1169. msgid "Finished"
  1170. msgstr "完成"
  1171. #: src/views/preference/components/RecoveryCodes.vue:70
  1172. msgid "First View"
  1173. msgstr "首次查看"
  1174. #: src/views/preference/components/AddPasskey.vue:71
  1175. msgid ""
  1176. "Follow the instructions in the dialog to complete the passkey registration "
  1177. "process."
  1178. msgstr "按照对话框中的指示完成 Passkey 的注册过程。"
  1179. #: src/views/preference/NodeSettings.vue:42
  1180. #: src/views/preference/NodeSettings.vue:54
  1181. msgid "For Chinese user"
  1182. msgstr "中国用户"
  1183. #: src/views/preference/HTTPSettings.vue:19
  1184. msgid "For Chinese user: https://mirror.ghproxy.com/"
  1185. msgstr "中国用户:https://mirror.ghproxy.com/"
  1186. #: src/constants/errors/middleware.ts:4
  1187. msgid "Form parse failed"
  1188. msgstr "表单解析失败"
  1189. #: src/views/config/ConfigEditor.vue:265
  1190. msgid "Format Code"
  1191. msgstr "代码格式化"
  1192. #: src/views/config/ConfigEditor.vue:213
  1193. msgid "Format error %{msg}"
  1194. msgstr "保存错误 %{msg}"
  1195. #: src/views/config/ConfigEditor.vue:211
  1196. msgid "Format successfully"
  1197. msgstr "格式化成功"
  1198. #: src/views/certificate/CertificateList/certColumns.tsx:32
  1199. msgid "General Certificate"
  1200. msgstr "普通证书"
  1201. #: src/components/StdDesign/StdDataEntry/components/StdPassword.vue:55
  1202. msgid "Generate"
  1203. msgstr "生成"
  1204. #: src/views/preference/components/RecoveryCodes.vue:138
  1205. #: src/views/preference/components/RecoveryCodes.vue:161
  1206. msgid "Generate New Recovery Codes"
  1207. msgstr "生成新的恢复代码"
  1208. #: src/views/preference/components/RecoveryCodes.vue:161
  1209. msgid "Generate Recovery Codes"
  1210. msgstr "生成恢复代码"
  1211. #: src/views/preference/components/RecoveryCodes.vue:32
  1212. msgid "Generate recovery codes successfully"
  1213. msgstr "成功生成恢复代码"
  1214. #: src/language/constants.ts:7
  1215. msgid "Generating private key for registering account"
  1216. msgstr "正在生成私钥用于注册账户"
  1217. #: src/views/environments/list/BatchUpgrader.vue:177
  1218. #: src/views/system/Upgrade.vue:169
  1219. msgid "Get release information error"
  1220. msgstr "获取发布信息错误"
  1221. #: src/views/site/cert/components/ObtainCertLive.vue:44
  1222. msgid "Getting the certificate, please wait..."
  1223. msgstr "正在获取证书,请稍等..."
  1224. #: src/views/preference/HTTPSettings.vue:11
  1225. msgid "Github Proxy"
  1226. msgstr "Github 代理"
  1227. #: src/constants/errors/backup.ts:59
  1228. msgid "Hash verification failed: file integrity compromised"
  1229. msgstr "哈希验证失败:文件完整性受损"
  1230. #: src/components/SensitiveString/SensitiveString.vue:40
  1231. msgid "Hide"
  1232. msgstr "隐藏"
  1233. #: src/views/config/ConfigEditor.vue:251
  1234. #: src/views/site/site_edit/SiteEdit.vue:212
  1235. #: src/views/stream/StreamEdit.vue:195
  1236. msgid "History"
  1237. msgstr "历史"
  1238. #: src/routes/index.ts:47
  1239. msgid "Home"
  1240. msgstr "首页"
  1241. #: src/views/preference/ServerSettings.vue:18
  1242. msgid "Host"
  1243. msgstr "主机"
  1244. #: src/views/preference/Preference.vue:181
  1245. msgid "HTTP"
  1246. msgstr "HTTP"
  1247. #: src/views/preference/CertSettings.vue:15
  1248. msgid "HTTP Challenge Port"
  1249. msgstr "HTTP Challenge 监听端口"
  1250. #: src/views/site/cert/components/AutoCertStepOne.vue:70
  1251. msgid "HTTP01"
  1252. msgstr "HTTP01"
  1253. #: src/views/system/SelfCheck/tasks/frontend/https-check.ts:10
  1254. msgid "HTTPS Protocol"
  1255. msgstr "HTTPS 协议"
  1256. #: src/views/preference/NodeSettings.vue:34
  1257. msgid "ICP Number"
  1258. msgstr "ICP备案号"
  1259. #: src/views/certificate/ACMEUser.vue:45
  1260. msgid "If left blank, the default CA Dir will be used."
  1261. msgstr "如果留空,则使用默认 CA Dir。"
  1262. #: src/views/nginx_log/NginxLogList.vue:129
  1263. msgid ""
  1264. "If logs are not indexed, please check if the log file is under the directory "
  1265. "in Nginx.LogDirWhiteList."
  1266. msgstr ""
  1267. "如果日志未被索引,请检查日志文件是否位于 Nginx.LogDirWhiteList 中的目录下。"
  1268. #: src/views/preference/AuthSettings.vue:145
  1269. msgid ""
  1270. "If the number of login failed attempts from a ip reach the max attempts in "
  1271. "ban threshold minutes, the ip will be banned for a period of time."
  1272. msgstr ""
  1273. "如果某个 IP 的登录失败次数达到禁用阈值分钟内的最大尝试次数,该 IP 将被禁止登"
  1274. "录一段时间。"
  1275. #: src/views/site/cert/components/AutoCertStepOne.vue:117
  1276. msgid ""
  1277. "If you want to automatically revoke the old certificate, please enable this "
  1278. "option."
  1279. msgstr "如果要自动撤销旧证书,请启用此选项。"
  1280. #: src/views/preference/components/AddPasskey.vue:70
  1281. msgid "If your browser supports WebAuthn Passkey, a dialog box will appear."
  1282. msgstr "如果您的浏览器支持 WebAuthn Passkey,则会出现一个对话框。"
  1283. #: src/views/site/cert/components/AutoCertStepOne.vue:108
  1284. msgid ""
  1285. "If your domain has CNAME records and you cannot obtain certificates, you "
  1286. "need to enable this option."
  1287. msgstr "如果您的域名有 CNAME 记录且无法获取证书,则需要启用此选项。"
  1288. #: src/views/certificate/CertificateList/Certificate.vue:22
  1289. msgid "Import"
  1290. msgstr "导入"
  1291. #: src/routes/modules/certificates.ts:46
  1292. #: src/views/certificate/components/CertificateEditor.vue:85
  1293. msgid "Import Certificate"
  1294. msgstr "导入证书"
  1295. #: src/views/nginx_log/NginxLogList.vue:137
  1296. #: src/views/site/site_list/SiteList.vue:132
  1297. msgid "Indexed"
  1298. msgstr "已索引"
  1299. #: src/views/nginx_log/NginxLogList.vue:134
  1300. #: src/views/site/site_list/SiteList.vue:129
  1301. msgid "Indexing..."
  1302. msgstr "索引中..."
  1303. #: src/components/StdDesign/StdDetail/StdDetail.vue:81
  1304. #: src/constants/index.ts:24 src/views/notification/notificationColumns.tsx:29
  1305. msgid "Info"
  1306. msgstr "信息"
  1307. #: src/language/constants.ts:25
  1308. msgid "Initial core upgrader error"
  1309. msgstr "初始化核心升级程序错误"
  1310. #: src/language/constants.ts:24
  1311. msgid "Initialing core upgrader"
  1312. msgstr "初始化核心升级器"
  1313. #: src/views/preference/components/TOTP.vue:119
  1314. msgid "Input the code from the app:"
  1315. msgstr "输入应用程序中的代码:"
  1316. #: src/components/TwoFA/Authorization.vue:72
  1317. msgid "Input the recovery code:"
  1318. msgstr "输入恢复代码:"
  1319. #: src/views/preference/HTTPSettings.vue:22
  1320. msgid "Insecure Skip Verify"
  1321. msgstr "跳过证书认证"
  1322. #: src/routes/modules/auth.ts:8 src/views/other/Install.vue:185
  1323. msgid "Install"
  1324. msgstr "安装"
  1325. #: src/views/other/Install.vue:93
  1326. msgid "Install successfully"
  1327. msgstr "安装成功"
  1328. #: src/constants/errors/system.ts:3
  1329. msgid "Installation is not allowed after 10 minutes of system startup"
  1330. msgstr "系统启动 10 分钟后不允许安装"
  1331. #: src/views/other/Install.vue:127
  1332. msgid ""
  1333. "Installation is not allowed after 10 minutes of system startup, please "
  1334. "restart the Nginx UI."
  1335. msgstr "系统启动 10 分钟后不允许安装,请重启 Nginx UI。"
  1336. #: src/views/preference/LogrotateSettings.vue:25
  1337. msgid "Interval"
  1338. msgstr "间隔"
  1339. #: src/views/certificate/ACMEUser.vue:129
  1340. msgid "Invalid"
  1341. msgstr "无效的"
  1342. #: src/constants/errors/backup.ts:44
  1343. msgid "Invalid AES IV format: {0}"
  1344. msgstr "AES IV 格式无效:{0}"
  1345. #: src/constants/errors/backup.ts:43
  1346. msgid "Invalid AES key format: {0}"
  1347. msgstr "AES 密钥格式无效:{0}"
  1348. #: src/components/SystemRestore/SystemRestoreContent.vue:121
  1349. msgid "Invalid file object"
  1350. msgstr "无效文件对象"
  1351. #: src/constants/errors/backup.ts:51
  1352. msgid "Invalid file path: {0}"
  1353. msgstr "文件路径无效:{0}"
  1354. #: src/views/config/components/Rename.vue:66
  1355. #: src/views/config/ConfigEditor.vue:299
  1356. msgid "Invalid filename"
  1357. msgstr "文件名无效"
  1358. #: src/views/config/components/Mkdir.vue:57
  1359. msgid "Invalid folder name"
  1360. msgstr "无效文件夹名"
  1361. #: src/constants/errors/notification.ts:3
  1362. msgid "Invalid notifier config"
  1363. msgstr "通知配置无效"
  1364. #: src/constants/errors/user.ts:4
  1365. msgid "Invalid otp code"
  1366. msgstr "无效的 OTP 代码"
  1367. #: src/constants/errors/backup.ts:27
  1368. msgid "Invalid padding in decrypted data"
  1369. msgstr "解密数据中的无效填充"
  1370. #: src/components/TwoFA/use2FAModal.ts:61
  1371. msgid "Invalid passcode or recovery code"
  1372. msgstr "二次验证码或恢复代码无效"
  1373. #: src/constants/errors/user.ts:5
  1374. msgid "Invalid recovery code"
  1375. msgstr "无效的恢复代码"
  1376. #: src/constants/errors/middleware.ts:2
  1377. msgid "Invalid request format"
  1378. msgstr "无效的请求格式"
  1379. #: src/constants/errors/backup.ts:42
  1380. msgid "Invalid security token format"
  1381. msgstr "安全令牌格式无效"
  1382. #: src/views/preference/AuthSettings.vue:18
  1383. msgid "IP"
  1384. msgstr "IP"
  1385. #: src/views/certificate/CertificateList/Certificate.vue:31
  1386. msgid "Issue wildcard certificate"
  1387. msgstr "签发通配符证书"
  1388. #: src/views/certificate/components/WildcardCertificate.vue:59
  1389. msgid "Issue Wildcard Certificate"
  1390. msgstr "颁发通配符证书"
  1391. #: src/language/constants.ts:20
  1392. msgid "Issued certificate successfully"
  1393. msgstr "证书申请成功"
  1394. #: src/views/site/cert/CertInfo.vue:35
  1395. msgid "Issuer: %{issuer}"
  1396. msgstr "颁发者:%{issuer}"
  1397. #: src/views/preference/AppSettings.vue:10
  1398. msgid "Jwt Secret"
  1399. msgstr "Jwt 密钥"
  1400. #: src/views/preference/components/RecoveryCodes.vue:74
  1401. msgid ""
  1402. "Keep your recovery codes as safe as your password. We recommend saving them "
  1403. "with a password manager."
  1404. msgstr ""
  1405. "请像保护密码一样安全地保管您的恢复代码。我们建议使用密码管理器保存它们。"
  1406. #: src/views/certificate/CertificateList/certColumns.tsx:59
  1407. #: src/views/site/cert/components/AutoCertStepOne.vue:77
  1408. msgid "Key Type"
  1409. msgstr "密钥类型"
  1410. #: src/views/preference/components/ExternalNotify/columns.ts:29
  1411. msgid "Language"
  1412. msgstr "语言"
  1413. #: src/views/preference/components/ExternalNotify/lark.ts:5
  1414. msgid "Lark"
  1415. msgstr "Lark"
  1416. #: src/views/preference/components/ExternalNotify/lark_custom.ts:5
  1417. msgid "Lark Custom"
  1418. msgstr "Lark 自定义"
  1419. #: src/views/system/Upgrade.vue:179
  1420. msgid "Last checked at"
  1421. msgstr "最后检查时间"
  1422. #: src/views/preference/components/Passkey.vue:96
  1423. msgid "Last used at"
  1424. msgstr "上次使用"
  1425. #: src/views/user/userColumns.tsx:25
  1426. msgid "Leave blank for no change"
  1427. msgstr "留空表示不修改"
  1428. #: src/views/preference/OpenAISettings.vue:41
  1429. msgid "Leave blank for the default: https://api.openai.com/"
  1430. msgstr "留空为默认:https://api.openai.com/"
  1431. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:79
  1432. msgid "Leave blank if do not want to modify"
  1433. msgstr "如果不想修改,请留空"
  1434. #: src/views/certificate/ACMEUser.vue:59
  1435. msgid "Leave blank if you don't need this."
  1436. msgstr "如果不需要,请留空。"
  1437. #: src/views/certificate/components/CertificateEditor.vue:222
  1438. #: src/views/certificate/components/CertificateEditor.vue:235
  1439. msgid "Leave blank will not change anything"
  1440. msgstr "留空不做任何更改"
  1441. #: src/constants/errors/user.ts:6
  1442. msgid "Legacy recovery code not allowed since totp is not enabled"
  1443. msgstr "由于未启用 TOTP,因此不允许使用传统恢复代码"
  1444. #: src/views/site/cert/components/AutoCertStepOne.vue:105
  1445. msgid "Lego disable CNAME Support"
  1446. msgstr "Lego 禁用 CNAME 支持"
  1447. #: src/views/system/About.vue:63
  1448. msgid "License"
  1449. msgstr "开源许可"
  1450. #: src/views/dashboard/Environments.vue:141
  1451. #: src/views/dashboard/Environments.vue:156
  1452. msgid "Link Start"
  1453. msgstr "链接"
  1454. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:173
  1455. msgid "List"
  1456. msgstr "列表"
  1457. #: src/views/dashboard/ServerAnalytic.vue:183
  1458. msgid "Load Average:"
  1459. msgstr "系统负载:"
  1460. #: src/views/environments/list/Environment.vue:80
  1461. msgid "Load from settings"
  1462. msgstr "从设置中加载"
  1463. #: src/views/environments/list/Environment.vue:20
  1464. msgid "Load successfully"
  1465. msgstr "加载成功"
  1466. #: src/components/EnvIndicator/EnvIndicator.vue:39
  1467. #: src/components/NodeSelector/NodeSelector.vue:86
  1468. msgid "Local"
  1469. msgstr "本地"
  1470. #: src/views/site/ngx_conf/LocationEditor.vue:68
  1471. msgid "Location"
  1472. msgstr "Location"
  1473. #: src/views/site/ngx_conf/LocationEditor.vue:50
  1474. msgid "Locations"
  1475. msgstr "Locations"
  1476. #: src/views/certificate/components/CertificateEditor.vue:245
  1477. msgid "Log"
  1478. msgstr "日志"
  1479. #: src/routes/modules/nginx_log.ts:39 src/views/nginx_log/NginxLogList.vue:115
  1480. msgid "Log List"
  1481. msgstr "日志列表"
  1482. #: src/routes/modules/auth.ts:14 src/views/other/Login.vue:222
  1483. msgid "Login"
  1484. msgstr "登录"
  1485. #: src/views/other/Login.vue:114 src/views/other/Login.vue:65
  1486. msgid "Login successful"
  1487. msgstr "登录成功"
  1488. #: src/layouts/HeaderLayout.vue:20
  1489. msgid "Logout successful"
  1490. msgstr "登出成功"
  1491. #: src/views/preference/Preference.vue:217
  1492. msgid "Logrotate"
  1493. msgstr "Logrotate"
  1494. #: src/views/preference/LogrotateSettings.vue:12
  1495. msgid ""
  1496. "Logrotate, by default, is enabled in most mainstream Linux distributions for "
  1497. "users who install Nginx UI on the host machine, so you don't need to modify "
  1498. "the parameters on this page. For users who install Nginx UI using Docker "
  1499. "containers, you can manually enable this option. The crontab task scheduler "
  1500. "of Nginx UI will execute the logrotate command at the interval you set in "
  1501. "minutes."
  1502. msgstr ""
  1503. "对于在宿主机上安装 Nginx UI 的用户,大多数主流 Linux 发行版都默认启用 "
  1504. "logrotate 定时任务,因此您无需修改本页面的参数。对于使用 Docker 容器安装 "
  1505. "Nginx 用户界面的用户,您可以手动启用该选项。Nginx UI 的定时任务任务调度器将按"
  1506. "照您设置的时间间隔(以分钟为单位)执行 logrotate 命令。"
  1507. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:163
  1508. #: src/views/site/site_list/columns.tsx:112
  1509. msgid "Maintenance"
  1510. msgstr "维护模式"
  1511. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:88
  1512. msgid "Maintenance mode disabled successfully"
  1513. msgstr "成功禁用维护模式"
  1514. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:72
  1515. msgid "Maintenance mode enabled successfully"
  1516. msgstr "成功启用维护模式"
  1517. #: src/views/site/cert/components/AutoCertStepOne.vue:53
  1518. msgid ""
  1519. "Make sure you have configured a reverse proxy for .well-known directory to "
  1520. "HTTPChallengePort before obtaining the certificate."
  1521. msgstr ""
  1522. "在获取签发证书前,请确保配置文件中已将 .well-known 目录反向代理到 "
  1523. "HTTPChallengePort。"
  1524. #: src/routes/modules/config.ts:10 src/views/config/ConfigEditor.vue:112
  1525. #: src/views/config/ConfigEditor.vue:163 src/views/config/ConfigList.vue:72
  1526. msgid "Manage Configs"
  1527. msgstr "配置管理"
  1528. #: src/routes/modules/sites.ts:10 src/views/site/site_list/SiteList.vue:125
  1529. msgid "Manage Sites"
  1530. msgstr "网站管理"
  1531. #: src/routes/modules/streams.ts:10 src/views/stream/StreamList.vue:175
  1532. msgid "Manage Streams"
  1533. msgstr "管理 Stream"
  1534. #: src/routes/modules/user.ts:10 src/views/user/User.vue:10
  1535. msgid "Manage Users"
  1536. msgstr "用户管理"
  1537. #: src/views/certificate/CertificateList/certColumns.tsx:31
  1538. msgid "Managed Certificate"
  1539. msgstr "托管证书"
  1540. #: src/views/preference/AuthSettings.vue:135
  1541. msgid "Max Attempts"
  1542. msgstr "最大尝试次数"
  1543. #: src/views/dashboard/ServerAnalytic.vue:222
  1544. #: src/views/dashboard/ServerAnalytic.vue:223
  1545. msgid "Memory"
  1546. msgstr "内存"
  1547. #: src/views/dashboard/ServerAnalytic.vue:212
  1548. msgid "Memory and Storage"
  1549. msgstr "内存与存储"
  1550. #: src/views/preference/LogrotateSettings.vue:29
  1551. msgid "Minutes"
  1552. msgstr "分钟"
  1553. #: src/views/preference/OpenAISettings.vue:20
  1554. msgid "Model"
  1555. msgstr "模型"
  1556. #: src/components/ConfigHistory/ConfigHistory.vue:55
  1557. msgid "Modified At"
  1558. msgstr "修改时间"
  1559. #: src/components/ChatGPT/ChatGPT.vue:352
  1560. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
  1561. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:498
  1562. #: src/views/config/ConfigList.vue:174
  1563. msgid "Modify"
  1564. msgstr "修改"
  1565. #: src/routes/modules/certificates.ts:36
  1566. #: src/views/certificate/components/CertificateEditor.vue:85
  1567. msgid "Modify Certificate"
  1568. msgstr "修改证书"
  1569. #: src/views/site/site_add/SiteAdd.vue:154
  1570. msgid "Modify Config"
  1571. msgstr "修改配置文件"
  1572. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:262
  1573. msgid "Modify Mode"
  1574. msgstr "修改模式"
  1575. #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:68
  1576. msgid "Multi-line Directive"
  1577. msgstr "多行指令"
  1578. #: src/views/certificate/ACMEUser.vue:13
  1579. #: src/views/certificate/CertificateList/certColumns.tsx:10
  1580. #: src/views/certificate/components/CertificateEditor.vue:162
  1581. #: src/views/certificate/DNSCredential.vue:11
  1582. #: src/views/config/components/Mkdir.vue:64
  1583. #: src/views/config/configColumns.tsx:7 src/views/config/ConfigEditor.vue:305
  1584. #: src/views/environments/group/columns.ts:8
  1585. #: src/views/environments/list/envColumns.tsx:9
  1586. #: src/views/nginx_log/NginxLogList.vue:37
  1587. #: src/views/preference/components/AddPasskey.vue:75
  1588. #: src/views/site/ngx_conf/NgxUpstream.vue:177
  1589. #: src/views/site/site_edit/RightSettings.vue:63
  1590. #: src/views/site/site_list/columns.tsx:17
  1591. #: src/views/site/site_list/SiteDuplicate.vue:79
  1592. #: src/views/stream/components/RightSettings.vue:87
  1593. #: src/views/stream/components/StreamDuplicate.vue:71
  1594. #: src/views/stream/StreamList.vue:20 src/views/stream/StreamList.vue:248
  1595. msgid "Name"
  1596. msgstr "名称"
  1597. #: src/views/dashboard/ServerAnalytic.vue:327
  1598. msgid "Network"
  1599. msgstr "网络"
  1600. #: src/views/dashboard/ServerAnalytic.vue:269
  1601. msgid "Network Statistics"
  1602. msgstr "流量统计"
  1603. #: src/views/dashboard/ServerAnalytic.vue:276
  1604. msgid "Network Total Receive"
  1605. msgstr "下载流量"
  1606. #: src/views/dashboard/ServerAnalytic.vue:282
  1607. msgid "Network Total Send"
  1608. msgstr "上传流量"
  1609. #: src/views/other/Install.vue:133
  1610. msgid "New Installation"
  1611. msgstr "新安装"
  1612. #: src/views/config/components/Rename.vue:74
  1613. msgid "New name"
  1614. msgstr "新名称"
  1615. #: src/views/config/ConfigEditor.vue:318
  1616. msgid "New Path"
  1617. msgstr "新路径"
  1618. #: src/views/system/Upgrade.vue:208
  1619. msgid "New version released"
  1620. msgstr "新版本发布"
  1621. #: src/views/certificate/components/WildcardCertificate.vue:91
  1622. #: src/views/site/cert/components/ObtainCert.vue:211
  1623. #: src/views/site/site_add/SiteAdd.vue:141
  1624. msgid "Next"
  1625. msgstr "下一步"
  1626. #: src/views/preference/Preference.vue:205
  1627. msgid "Nginx"
  1628. msgstr "Nginx"
  1629. #: src/views/preference/NginxSettings.vue:9
  1630. msgid "Nginx Access Log Path"
  1631. msgstr "Nginx 访问日志路径"
  1632. #: src/views/system/SelfCheck/tasks/backend/index.ts:15
  1633. msgid "Nginx Conf Include Sites Enabled"
  1634. msgstr "Nginx Conf 中引用启用站点目录"
  1635. #: src/views/system/SelfCheck/tasks/backend/index.ts:20
  1636. msgid "Nginx Conf Include Streams Enabled"
  1637. msgstr "Nginx Conf 中引用启用 Streams 目录"
  1638. #: src/constants/errors/self_check.ts:5
  1639. msgid "Nginx conf no http block"
  1640. msgstr "Nginx 配置无 http 块"
  1641. #: src/constants/errors/self_check.ts:7
  1642. msgid "Nginx conf no stream block"
  1643. msgstr "Nginx 配置无 Stream 块"
  1644. #: src/constants/errors/self_check.ts:6
  1645. msgid "Nginx conf not include sites-enabled"
  1646. msgstr "Nginx Conf 中未引用 sites-enabled"
  1647. #: src/constants/errors/self_check.ts:8
  1648. msgid "Nginx conf not include stream-enabled"
  1649. msgstr "Nginx Conf 中未引用 stream-enabled"
  1650. #: src/constants/errors/backup.ts:19
  1651. msgid "Nginx config directory is not set"
  1652. msgstr "未设置 Nginx 配置目录"
  1653. #: src/components/SystemRestore/SystemRestoreContent.vue:138
  1654. msgid "Nginx configuration has been restored"
  1655. msgstr "Nginx 配置已恢复"
  1656. #: src/views/site/site_edit/SiteEdit.vue:244
  1657. #: src/views/stream/StreamEdit.vue:226
  1658. msgid "Nginx Configuration Parse Error"
  1659. msgstr "Nginx 配置解析错误"
  1660. #: src/views/preference/NginxSettings.vue:18
  1661. msgid "Nginx Configuration Path"
  1662. msgstr "Nginx 配置路径"
  1663. #: src/views/preference/NginxSettings.vue:15
  1664. msgid "Nginx Configurations Directory"
  1665. msgstr "Nginx 配置目录"
  1666. #: src/components/NginxControl/NginxControl.vue:64
  1667. msgid "Nginx Control"
  1668. msgstr "控制 Nginx"
  1669. #: src/views/preference/NginxSettings.vue:12
  1670. msgid "Nginx Error Log Path"
  1671. msgstr "Nginx 错误日志路径"
  1672. #: src/views/site/ngx_conf/NginxStatusAlert.vue:15
  1673. msgid "Nginx is not running"
  1674. msgstr "Nginx 未启动"
  1675. #: src/routes/modules/nginx_log.ts:9 src/views/nginx_log/NginxLog.vue:143
  1676. msgid "Nginx Log"
  1677. msgstr "Nginx 日志"
  1678. #: src/views/preference/NginxSettings.vue:21
  1679. msgid "Nginx Log Directory Whitelist"
  1680. msgstr "Nginx 日志目录白名单"
  1681. #: src/views/preference/NginxSettings.vue:30
  1682. msgid "Nginx PID Path"
  1683. msgstr "Nginx PID 路径"
  1684. #: src/views/preference/NginxSettings.vue:36
  1685. msgid "Nginx Reload Command"
  1686. msgstr "Nginx 重载命令"
  1687. #: src/views/environments/list/Environment.vue:41
  1688. msgid "Nginx reload operations have been dispatched to remote nodes"
  1689. msgstr "Nginx 重载操作已发送到远程节点"
  1690. #: src/components/NginxControl/NginxControl.vue:26
  1691. msgid "Nginx reloaded successfully"
  1692. msgstr "Nginx 重载成功"
  1693. #: src/views/preference/NginxSettings.vue:39
  1694. msgid "Nginx Restart Command"
  1695. msgstr "Nginx 重启命令"
  1696. #: src/views/environments/list/Environment.vue:55
  1697. msgid "Nginx restart operations have been dispatched to remote nodes"
  1698. msgstr "Nginx 重启操作已发送到远程节点"
  1699. #: src/components/NginxControl/NginxControl.vue:40
  1700. msgid "Nginx restarted successfully"
  1701. msgstr "Nginx 重启成功"
  1702. #: src/views/preference/NginxSettings.vue:33
  1703. msgid "Nginx Test Config Command"
  1704. msgstr "Nginx 测试配置命令"
  1705. #: src/constants/errors/system.ts:2
  1706. msgid "Nginx UI already installed"
  1707. msgstr "Nginx UI 已安装"
  1708. #: src/components/SystemRestore/SystemRestoreContent.vue:142
  1709. msgid "Nginx UI configuration has been restored"
  1710. msgstr "Nginx 用户界面配置已恢复"
  1711. #: src/components/SystemRestore/SystemRestoreContent.vue:336
  1712. msgid ""
  1713. "Nginx UI configuration has been restored and will restart automatically in a "
  1714. "few seconds."
  1715. msgstr "Nginx UI 配置已恢复,几秒钟后将自动重启。"
  1716. #: src/components/ChatGPT/ChatGPT.vue:374
  1717. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:151
  1718. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:163
  1719. #: src/components/Notification/Notification.vue:133
  1720. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:63
  1721. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:94
  1722. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:510
  1723. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:524
  1724. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:538
  1725. #: src/views/notification/Notification.vue:37
  1726. #: src/views/preference/AuthSettings.vue:164
  1727. #: src/views/preference/CertSettings.vue:73
  1728. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:97
  1729. #: src/views/site/ngx_conf/LocationEditor.vue:88
  1730. #: src/views/site/site_list/SiteList.vue:165
  1731. #: src/views/stream/StreamList.vue:225
  1732. msgid "No"
  1733. msgstr "取消"
  1734. #: src/views/environments/group/columns.ts:21
  1735. #: src/views/environments/group/EnvGroup.vue:34
  1736. msgid "No Action"
  1737. msgstr "无操作"
  1738. #: src/components/ConfigHistory/DiffViewer.vue:44
  1739. msgid "No records selected"
  1740. msgstr "未选择记录"
  1741. #: src/views/preference/Preference.vue:175
  1742. msgid "Node"
  1743. msgstr "节点"
  1744. #: src/views/site/site_edit/RightSettings.vue:66
  1745. #: src/views/site/site_list/columns.tsx:65
  1746. #: src/views/stream/components/RightSettings.vue:90
  1747. #: src/views/stream/StreamList.vue:30
  1748. msgid "Node Group"
  1749. msgstr "节点组"
  1750. #: src/routes/modules/environments.ts:33
  1751. #: src/views/environments/group/EnvGroup.vue:10
  1752. msgid "Node Groups"
  1753. msgstr "环境组"
  1754. #: src/views/preference/NodeSettings.vue:15
  1755. msgid "Node name"
  1756. msgstr "节点名称"
  1757. #: src/views/preference/NodeSettings.vue:11
  1758. msgid "Node Secret"
  1759. msgstr "节点密钥"
  1760. #: src/routes/modules/environments.ts:25
  1761. msgid "Nodes"
  1762. msgstr "节点"
  1763. #: src/views/certificate/CertificateList/certColumns.tsx:88
  1764. msgid "Not After"
  1765. msgstr "有效期"
  1766. #: src/routes/modules/error.ts:8
  1767. msgid "Not Found"
  1768. msgstr "找不到页面"
  1769. #: src/views/site/cert/CertInfo.vue:41
  1770. msgid "Not Valid Before: %{date}"
  1771. msgstr "此前无效: %{date}"
  1772. #: src/views/certificate/DNSCredential.vue:49
  1773. #: src/views/site/cert/components/AutoCertStepOne.vue:39
  1774. msgid "Note"
  1775. msgstr "注意"
  1776. #: src/views/site/site_edit/RightSettings.vue:95
  1777. #: src/views/stream/components/RightSettings.vue:118
  1778. msgid ""
  1779. "Note, if the configuration file include other configurations or "
  1780. "certificates, please synchronize them to the remote nodes in advance."
  1781. msgstr "注意,如果配置文件中包含其他配置或证书,请提前将它们同步到远程节点。"
  1782. #: src/views/notification/Notification.vue:28
  1783. msgid "Notification"
  1784. msgstr "通知"
  1785. #: src/components/Notification/Notification.vue:131
  1786. #: src/routes/modules/notifications.ts:10
  1787. msgid "Notifications"
  1788. msgstr "通知"
  1789. #: src/constants/errors/notification.ts:2
  1790. msgid "Notifier not found"
  1791. msgstr "未找到通知程序"
  1792. #: src/views/site/cert/components/ObtainCert.vue:182
  1793. msgid "Obtain certificate"
  1794. msgstr "获取证书"
  1795. #: src/language/constants.ts:15
  1796. msgid "Obtaining certificate"
  1797. msgstr "正在获取证书"
  1798. #: src/views/site/cert/components/AutoCertStepOne.vue:95
  1799. msgid "OCSP Must Staple"
  1800. msgstr "OCSP 必须装订"
  1801. #: src/views/site/cert/components/AutoCertStepOne.vue:99
  1802. msgid ""
  1803. "OCSP Must Staple may cause errors for some users on first access using "
  1804. "Firefox."
  1805. msgstr "某些用户在使用 Firefox 首次访问时,OCSP Must Staple 可能会导致错误。"
  1806. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:179
  1807. #: src/components/NodeSelector/NodeSelector.vue:109
  1808. #: src/views/dashboard/Environments.vue:107
  1809. #: src/views/environments/list/envColumns.tsx:56
  1810. msgid "Offline"
  1811. msgstr "离线"
  1812. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:247
  1813. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:511
  1814. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:525
  1815. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:539
  1816. #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:188
  1817. msgid "Ok"
  1818. msgstr "确定"
  1819. #: src/components/ChatGPT/ChatGPT.vue:375
  1820. #: src/components/Notification/Notification.vue:134
  1821. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:95
  1822. #: src/views/notification/Notification.vue:38
  1823. #: src/views/site/cert/components/ObtainCert.vue:139
  1824. #: src/views/site/ngx_conf/NgxConfigEditor.vue:50
  1825. #: src/views/site/ngx_conf/NgxServer.vue:79
  1826. #: src/views/site/ngx_conf/NgxUpstream.vue:33
  1827. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:121
  1828. #: src/views/site/site_list/SiteList.vue:166
  1829. #: src/views/stream/components/RightSettings.vue:54
  1830. #: src/views/stream/StreamList.vue:226
  1831. #: src/views/system/Backup/BackupCreator.vue:149
  1832. msgid "OK"
  1833. msgstr "确定"
  1834. #: src/views/certificate/DNSCredential.vue:59
  1835. msgid "Once the verification is complete, the records will be removed."
  1836. msgstr "一旦验证完成,这些记录将被删除。"
  1837. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:179
  1838. #: src/components/NodeSelector/NodeSelector.vue:103
  1839. #: src/components/NodeSelector/NodeSelector.vue:89
  1840. #: src/views/dashboard/Environments.vue:100
  1841. #: src/views/environments/list/envColumns.tsx:52
  1842. msgid "Online"
  1843. msgstr "在线"
  1844. #: src/components/SystemRestore/SystemRestoreContent.vue:78
  1845. msgid "Only zip files are allowed"
  1846. msgstr "只允许使用zip文件"
  1847. #: src/views/preference/Preference.vue:211
  1848. msgid "OpenAI"
  1849. msgstr "OpenAI"
  1850. #: src/components/TwoFA/Authorization.vue:100 src/views/other/Login.vue:231
  1851. msgid "Or"
  1852. msgstr "或"
  1853. #: src/views/preference/components/TOTP.vue:112
  1854. msgid "Or enter the secret: %{secret}"
  1855. msgstr "或输入密钥:%{secret}"
  1856. #: src/views/config/components/Rename.vue:70
  1857. msgid "Original name"
  1858. msgstr "原名"
  1859. #: src/views/system/Upgrade.vue:175
  1860. msgid "OS"
  1861. msgstr "OS"
  1862. #: src/views/dashboard/ServerAnalytic.vue:189
  1863. msgid "OS:"
  1864. msgstr "OS:"
  1865. #: src/constants/errors/user.ts:9
  1866. msgid "Otp or recovery code empty"
  1867. msgstr "OTP 或恢复代码为空"
  1868. #: src/views/config/ConfigEditor.vue:343
  1869. msgid "Overwrite"
  1870. msgstr "覆盖"
  1871. #: src/views/config/ConfigEditor.vue:347
  1872. msgid "Overwrite exist file"
  1873. msgstr "覆盖现有文件"
  1874. #: src/views/preference/AppSettings.vue:13
  1875. msgid "Page Size"
  1876. msgstr "分页大小"
  1877. #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:94
  1878. msgid "Params"
  1879. msgstr "参数"
  1880. #: src/views/preference/components/Passkey.vue:59
  1881. msgid "Passkey"
  1882. msgstr "Passkey"
  1883. #: src/views/preference/components/Passkey.vue:62
  1884. msgid ""
  1885. "Passkeys are webauthn credentials that validate your identity using touch, "
  1886. "facial recognition, a device password, or a PIN. They can be used as a "
  1887. "password replacement or as a 2FA method."
  1888. msgstr ""
  1889. "Passkey 是一种网络认证凭据,可通过指纹、面部识别、设备密码或 PIN 码验证身份。"
  1890. "它们可用作密码替代品或二步验证方法。"
  1891. #: src/views/other/Login.vue:183 src/views/user/userColumns.tsx:18
  1892. msgid "Password"
  1893. msgstr "密码"
  1894. #: src/views/other/Install.vue:158
  1895. msgid "Password (*)"
  1896. msgstr "密码 (*)"
  1897. #: src/constants/errors/user.ts:2
  1898. msgid "Password incorrect"
  1899. msgstr "用户名和密码错误"
  1900. #: src/views/other/Install.vue:74
  1901. msgid "Password length cannot exceed 20 characters"
  1902. msgstr "密码长度不能超过 20 个字符"
  1903. #: src/views/config/ConfigEditor.vue:312
  1904. #: src/views/nginx_log/NginxLogList.vue:45
  1905. #: src/views/site/ngx_conf/LocationEditor.vue:109
  1906. #: src/views/site/ngx_conf/LocationEditor.vue:137
  1907. msgid "Path"
  1908. msgstr "路径"
  1909. #: src/constants/errors/cert.ts:7 src/constants/errors/config.ts:2
  1910. msgid "Path: {0} is not under the nginx conf dir: {1}"
  1911. msgstr "路径:{0} 不在 nginx 配置目录下:{1}"
  1912. #: src/constants/errors/cert.ts:6
  1913. msgid "Payload resource is nil"
  1914. msgstr "有效载荷资源为空"
  1915. #: src/views/environments/list/BatchUpgrader.vue:232
  1916. msgid "Perform"
  1917. msgstr "执行"
  1918. #: src/language/constants.ts:29
  1919. msgid "Perform core upgrade error"
  1920. msgstr "执行核心升级错误"
  1921. #: src/language/constants.ts:28
  1922. msgid "Performing core upgrade"
  1923. msgstr "正在进行核心升级"
  1924. #: src/constants/errors/crypto.ts:2
  1925. msgid "Plain text is empty"
  1926. msgstr "原文为空"
  1927. #: src/views/preference/components/AddPasskey.vue:69
  1928. msgid ""
  1929. "Please enter a name for the passkey you wish to create and click the OK "
  1930. "button below."
  1931. msgstr "请为您要创建的 Passkey 输入一个名称,然后单击下面的 \"确定 \"按钮。"
  1932. #: src/components/TwoFA/Authorization.vue:85
  1933. msgid "Please enter the OTP code:"
  1934. msgstr "请输入 OTP:"
  1935. #: src/components/SystemRestore/SystemRestoreContent.vue:112
  1936. msgid "Please enter the security token"
  1937. msgstr "请输入安全令牌"
  1938. #: src/components/SystemRestore/SystemRestoreContent.vue:210
  1939. #: src/components/SystemRestore/SystemRestoreContent.vue:287
  1940. msgid "Please enter the security token received during backup"
  1941. msgstr "请输入备份时收到的安全令牌"
  1942. #: src/views/certificate/DNSCredential.vue:53
  1943. msgid ""
  1944. "Please fill in the API authentication credentials provided by your DNS "
  1945. "provider."
  1946. msgstr "请填写 DNS 提供商提供的 API 验证凭据。"
  1947. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:106
  1948. msgid "Please fill in the required fields"
  1949. msgstr "请填写必填字段"
  1950. #: src/views/site/cert/components/AutoCertStepOne.vue:57
  1951. msgid ""
  1952. "Please first add credentials in Certification > DNS Credentials, and then "
  1953. "select one of the credentialsbelow to request the API of the DNS provider."
  1954. msgstr ""
  1955. "请首先在 “证书”> “DNS 凭证” 中添加凭证,然后在下方选择一个凭证,请求 DNS 提供"
  1956. "商的 API。"
  1957. #: src/components/Notification/notifications.ts:176
  1958. #: src/language/constants.ts:59
  1959. msgid ""
  1960. "Please generate new recovery codes in the preferences immediately to prevent "
  1961. "lockout."
  1962. msgstr "请立即在偏好设置中生成新的恢复码,以防止无法访问您的账户。"
  1963. #: src/views/config/components/Rename.vue:65
  1964. #: src/views/config/ConfigEditor.vue:298
  1965. msgid "Please input a filename"
  1966. msgstr "请输入文件名"
  1967. #: src/views/config/components/Mkdir.vue:56
  1968. msgid "Please input a folder name"
  1969. msgstr "请输入文件夹名称"
  1970. #: src/views/stream/components/StreamDuplicate.vue:25
  1971. msgid ""
  1972. "Please input name, this will be used as the filename of the new "
  1973. "configuration!"
  1974. msgstr "请输入名称,这将被用作新配置的文件名!"
  1975. #: src/views/site/site_list/SiteDuplicate.vue:33
  1976. msgid ""
  1977. "Please input name, this will be used as the filename of the new "
  1978. "configuration."
  1979. msgstr "请输入名称,这将作为新配置的文件名。"
  1980. #: src/views/other/Install.vue:58
  1981. msgid "Please input your E-mail!"
  1982. msgstr "请输入您的邮箱!"
  1983. #: src/views/other/Install.vue:70 src/views/other/Login.vue:47
  1984. msgid "Please input your password!"
  1985. msgstr "请输入您的密码!"
  1986. #: src/views/other/Install.vue:64 src/views/other/Login.vue:41
  1987. msgid "Please input your username!"
  1988. msgstr "请输入您的用户名!"
  1989. #: src/views/other/Install.vue:110 src/views/system/Backup/SystemRestore.vue:10
  1990. msgid "Please log in."
  1991. msgstr "请登录。"
  1992. #: src/views/certificate/DNSCredential.vue:62
  1993. msgid ""
  1994. "Please note that the unit of time configurations below are all in seconds."
  1995. msgstr "请注意,下面的时间单位配置均以秒为单位。"
  1996. #: src/views/system/Backup/BackupCreator.vue:107
  1997. msgid "Please save this security token, you will need it for restoration:"
  1998. msgstr "请保存此安全令牌,恢复时会用到它:"
  1999. #: src/components/SystemRestore/SystemRestoreContent.vue:107
  2000. msgid "Please select a backup file"
  2001. msgstr "请选择备份文件"
  2002. #: src/views/environments/list/Environment.vue:112
  2003. #: src/views/environments/list/Environment.vue:35
  2004. msgid "Please select at least one node to reload Nginx"
  2005. msgstr "请至少选择一个节点重载 Nginx"
  2006. #: src/views/environments/list/Environment.vue:133
  2007. #: src/views/environments/list/Environment.vue:49
  2008. msgid "Please select at least one node to restart Nginx"
  2009. msgstr "请至少选择一个节点重启 Nginx"
  2010. #: src/views/environments/list/Environment.vue:91
  2011. msgid "Please select at least one node to upgrade"
  2012. msgstr "请至少选择一个节点进行升级"
  2013. #: src/views/certificate/components/RemoveCert.vue:27
  2014. msgid "Please type \"Revoke\" to confirm"
  2015. msgstr "请键入 \"撤销 \"确认"
  2016. #: src/views/preference/ServerSettings.vue:21
  2017. msgid "Port"
  2018. msgstr "端口"
  2019. #: src/views/environments/group/columns.ts:17
  2020. #: src/views/environments/group/EnvGroup.vue:26
  2021. msgid "Post-sync Action"
  2022. msgstr "同步后操作"
  2023. #: src/views/environments/list/BatchUpgrader.vue:167
  2024. #: src/views/environments/list/BatchUpgrader.vue:220
  2025. #: src/views/system/Upgrade.vue:194 src/views/system/Upgrade.vue:245
  2026. msgid "Pre-release"
  2027. msgstr "预发布"
  2028. #: src/routes/modules/preference.ts:10 src/views/preference/Preference.vue:152
  2029. msgid "Preference"
  2030. msgstr "偏好设置"
  2031. #: src/language/constants.ts:8
  2032. msgid "Preparing lego configurations"
  2033. msgstr "正在准备 Lego 的配置"
  2034. #: src/language/constants.ts:3
  2035. msgid "Prohibit changing root password in demo"
  2036. msgstr "禁止在演示模式下修改 root 账户的密码"
  2037. #: src/language/constants.ts:4
  2038. msgid "Prohibit deleting the default user"
  2039. msgstr "禁止删除默认用户"
  2040. #: src/views/system/About.vue:51
  2041. msgid "Project Team"
  2042. msgstr "项目团队"
  2043. #: src/views/certificate/DNSCredential.vue:19
  2044. msgid "Provider"
  2045. msgstr "提供商"
  2046. #: src/views/certificate/ACMEUser.vue:51
  2047. msgid "Proxy"
  2048. msgstr "代理"
  2049. #: src/views/preference/NodeSettings.vue:46
  2050. msgid "Public Security Number"
  2051. msgstr "公安备案号"
  2052. #: src/views/dashboard/ServerAnalytic.vue:37
  2053. #: src/views/dashboard/ServerAnalytic.vue:383
  2054. msgid "Reads"
  2055. msgstr "读"
  2056. #: src/views/dashboard/ServerAnalytic.vue:334
  2057. #: src/views/dashboard/ServerAnalytic.vue:35
  2058. msgid "Receive"
  2059. msgstr "下载"
  2060. #: src/views/system/SelfCheck/SelfCheck.vue:43
  2061. msgid "Recheck"
  2062. msgstr "重新检查"
  2063. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:43
  2064. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:533
  2065. msgid "Recover"
  2066. msgstr "恢复"
  2067. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:189
  2068. msgid "Recovered Successfully"
  2069. msgstr "恢复成功"
  2070. #: src/components/TwoFA/Authorization.vue:79
  2071. msgid "Recovery"
  2072. msgstr "恢复"
  2073. #: src/views/preference/components/RecoveryCodes.vue:68
  2074. msgid "Recovery Codes"
  2075. msgstr "恢复代码"
  2076. #: src/views/preference/components/RecoveryCodes.vue:73
  2077. msgid ""
  2078. "Recovery codes are used to access your account when you lose access to your "
  2079. "2FA device. Each code can only be used once."
  2080. msgstr ""
  2081. "恢复代码用于在您无法访问双重身份验证设备时登录您的账户。每个代码只能使用一"
  2082. "次。"
  2083. #: src/views/preference/CertSettings.vue:40
  2084. msgid "Recursive Nameservers"
  2085. msgstr "递归域名服务器"
  2086. #: src/components/ChatGPT/ChatGPT.vue:387
  2087. msgid "Regenerate response"
  2088. msgstr "重新生成响应"
  2089. #: src/views/certificate/ACMEUser.vue:137
  2090. msgid "Register"
  2091. msgstr "注册"
  2092. #: src/views/certificate/ACMEUser.vue:56
  2093. msgid ""
  2094. "Register a user or use this account to issue a certificate through an HTTP "
  2095. "proxy."
  2096. msgstr "注册用户或使用此账户申请证书时通过 HTTP 代理。"
  2097. #: src/views/certificate/ACMEUser.vue:106
  2098. msgid "Register failed"
  2099. msgstr "注册失败"
  2100. #: src/views/certificate/ACMEUser.vue:77
  2101. msgid "Register On Startup"
  2102. msgstr "启动时注册"
  2103. #: src/views/preference/components/AddPasskey.vue:25
  2104. msgid "Register passkey successfully"
  2105. msgstr "Passkey 注册成功"
  2106. #: src/views/certificate/ACMEUser.vue:104
  2107. msgid "Register successfully"
  2108. msgstr "注册成功"
  2109. #: src/language/constants.ts:14
  2110. msgid "Registering user"
  2111. msgstr "正在注册用户"
  2112. #: src/views/certificate/ACMEUser.vue:120
  2113. msgid "Registration Status"
  2114. msgstr "注册状态"
  2115. #: src/views/system/Upgrade.vue:226
  2116. msgid "Reinstall"
  2117. msgstr "重新安装"
  2118. #: src/views/system/Upgrade.vue:249
  2119. msgid "Release Note"
  2120. msgstr "发行日志"
  2121. #: src/components/ChatGPT/ChatGPT.vue:362
  2122. #: src/components/NginxControl/NginxControl.vue:99
  2123. msgid "Reload"
  2124. msgstr "重载"
  2125. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:156
  2126. #: src/views/environments/group/columns.ts:24
  2127. #: src/views/environments/group/EnvGroup.vue:37
  2128. #: src/views/environments/list/Environment.vue:120
  2129. #: src/views/environments/list/Environment.vue:128
  2130. msgid "Reload Nginx"
  2131. msgstr "重载 Nginx"
  2132. #: src/components/Notification/notifications.ts:10
  2133. msgid "Reload Nginx on %{node} failed, response: %{resp}"
  2134. msgstr "在 %{node} 上重载 Nginx 失败,响应:%{resp}"
  2135. #: src/components/Notification/notifications.ts:14
  2136. msgid "Reload Nginx on %{node} successfully"
  2137. msgstr "在 %{node} 上重载 Nginx 成功"
  2138. #: src/components/Notification/notifications.ts:9
  2139. msgid "Reload Remote Nginx Error"
  2140. msgstr "重载远程 Nginx 错误"
  2141. #: src/components/Notification/notifications.ts:13
  2142. msgid "Reload Remote Nginx Success"
  2143. msgstr "重载远程 Nginx 成功"
  2144. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:104
  2145. msgid "Reload request failed, please check your network connection"
  2146. msgstr "重载请求失败,请检查网络连接"
  2147. #: src/components/NginxControl/NginxControl.vue:73
  2148. msgid "Reloading"
  2149. msgstr "重载中"
  2150. #: src/language/constants.ts:18
  2151. msgid "Reloading nginx"
  2152. msgstr "正在重载 Nginx"
  2153. #: src/views/preference/AuthSettings.vue:169
  2154. msgid "Remove"
  2155. msgstr "删除"
  2156. #: src/views/preference/AuthSettings.vue:51
  2157. #: src/views/preference/components/Passkey.vue:46
  2158. msgid "Remove successfully"
  2159. msgstr "移除成功"
  2160. #: src/components/Notification/Notification.vue:102
  2161. msgid "Removed successfully"
  2162. msgstr "删除成功"
  2163. #: src/views/config/components/ConfigName.vue:51
  2164. #: src/views/config/components/Rename.vue:56
  2165. #: src/views/config/ConfigList.vue:181
  2166. #: src/views/site/ngx_conf/NgxUpstream.vue:125
  2167. #: src/views/site/site_edit/components/ConfigName.vue:44
  2168. #: src/views/stream/components/ConfigName.vue:44
  2169. msgid "Rename"
  2170. msgstr "重命名"
  2171. #: src/components/Notification/notifications.ts:66
  2172. msgid "Rename %{orig_path} to %{new_path} on %{env_name} failed"
  2173. msgstr "成功将 %{env_name} 上的 %{orig_path} 重命名为 %{new_path}"
  2174. #: src/components/Notification/notifications.ts:70
  2175. msgid "Rename %{orig_path} to %{new_path} on %{env_name} successfully"
  2176. msgstr "成功将 %{env_name} 上的 %{orig_path} 重命名为 %{new_path}"
  2177. #: src/components/Notification/notifications.ts:65 src/language/constants.ts:42
  2178. msgid "Rename Remote Config Error"
  2179. msgstr "远程配置重命名错误"
  2180. #: src/components/Notification/notifications.ts:69 src/language/constants.ts:41
  2181. msgid "Rename Remote Config Success"
  2182. msgstr "重命名远程配置成功"
  2183. #: src/components/Notification/notifications.ts:115
  2184. #: src/language/constants.ts:56
  2185. msgid "Rename Remote Site Error"
  2186. msgstr "重命名远程站点错误"
  2187. #: src/components/Notification/notifications.ts:119
  2188. #: src/language/constants.ts:55
  2189. msgid "Rename Remote Site Success"
  2190. msgstr "重命名远程站点成功"
  2191. #: src/components/Notification/notifications.ts:157
  2192. msgid "Rename Remote Stream Error"
  2193. msgstr "重命名远程 Stream 错误"
  2194. #: src/components/Notification/notifications.ts:161
  2195. msgid "Rename Remote Stream Success"
  2196. msgstr "重命名远程 Stream成功"
  2197. #: src/components/Notification/notifications.ts:116
  2198. msgid "Rename site %{name} to %{new_name} on %{node} failed"
  2199. msgstr "在 %{node} 上将站点 %{name} 重命名为 %{new_name} 成功"
  2200. #: src/components/Notification/notifications.ts:120
  2201. msgid "Rename site %{name} to %{new_name} on %{node} successfully"
  2202. msgstr "在 %{node} 上将站点 %{name} 重命名为 %{new_name} 成功"
  2203. #: src/components/Notification/notifications.ts:158
  2204. msgid "Rename stream %{name} to %{new_name} on %{node} failed"
  2205. msgstr "在 %{node} 上将站点 %{name} 重命名为 %{new_name} 成功"
  2206. #: src/components/Notification/notifications.ts:162
  2207. msgid "Rename stream %{name} to %{new_name} on %{node} successfully"
  2208. msgstr "在 %{node} 上将站点 %{name} 重命名为 %{new_name} 成功"
  2209. #: src/views/config/components/Rename.vue:43
  2210. msgid "Rename successfully"
  2211. msgstr "重命名成功"
  2212. #: src/views/config/components/ConfigName.vue:30
  2213. #: src/views/site/site_edit/components/ConfigName.vue:27
  2214. #: src/views/stream/components/ConfigName.vue:27
  2215. msgid "Renamed successfully"
  2216. msgstr "重命名成功"
  2217. #: src/views/certificate/components/RenewCert.vue:45
  2218. #: src/views/certificate/components/RenewCert.vue:49
  2219. msgid "Renew Certificate"
  2220. msgstr "更新证书"
  2221. #: src/language/constants.ts:36
  2222. msgid "Renew Certificate Error"
  2223. msgstr "证书续期错误"
  2224. #: src/language/constants.ts:35
  2225. msgid "Renew Certificate Success"
  2226. msgstr "证书续期成功"
  2227. #: src/views/certificate/components/RenewCert.vue:27
  2228. #: src/views/certificate/components/WildcardCertificate.vue:48
  2229. msgid "Renew successfully"
  2230. msgstr "更新成功"
  2231. #: src/constants/errors/crypto.ts:4
  2232. msgid "Request timeout"
  2233. msgstr "请求超时"
  2234. #: src/language/constants.ts:33
  2235. msgid "Requested with wrong parameters"
  2236. msgstr "请求参数错误"
  2237. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:442
  2238. msgid "Reset"
  2239. msgstr "重置"
  2240. #: src/views/preference/components/TOTP.vue:93
  2241. msgid "Reset 2FA"
  2242. msgstr "重置二步验证"
  2243. #: src/components/NginxControl/NginxControl.vue:92
  2244. msgid "Restart"
  2245. msgstr "重启"
  2246. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:168
  2247. #: src/views/environments/list/Environment.vue:141
  2248. #: src/views/environments/list/Environment.vue:149
  2249. msgid "Restart Nginx"
  2250. msgstr "重启 Nginx"
  2251. #: src/components/Notification/notifications.ts:18
  2252. msgid "Restart Nginx on %{node} failed, response: %{resp}"
  2253. msgstr "在 %{node} 上重启 Nginx 失败,响应:%{resp}"
  2254. #: src/components/Notification/notifications.ts:22
  2255. msgid "Restart Nginx on %{node} successfully"
  2256. msgstr "在 %{node} 上重启 Nginx 成功"
  2257. #: src/components/Notification/notifications.ts:17
  2258. msgid "Restart Remote Nginx Error"
  2259. msgstr "重启远程 Nginx 错误"
  2260. #: src/components/Notification/notifications.ts:21
  2261. msgid "Restart Remote Nginx Success"
  2262. msgstr "重启远程 Nginx 成功"
  2263. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:124
  2264. msgid "Restart request failed, please check your network connection"
  2265. msgstr "重启请求失败,请检查网络连接"
  2266. #: src/components/NginxControl/NginxControl.vue:78
  2267. msgid "Restarting"
  2268. msgstr "重启中"
  2269. #: src/components/SystemRestore/SystemRestoreContent.vue:135
  2270. msgid "Restore completed successfully"
  2271. msgstr "恢复成功"
  2272. #: src/views/other/Install.vue:190
  2273. msgid "Restore from Backup"
  2274. msgstr "从备份还原"
  2275. #: src/components/SystemRestore/SystemRestoreContent.vue:223
  2276. #: src/components/SystemRestore/SystemRestoreContent.vue:300
  2277. msgid "Restore Nginx Configuration"
  2278. msgstr "恢复 Nginx 配置"
  2279. #: src/components/SystemRestore/SystemRestoreContent.vue:234
  2280. #: src/components/SystemRestore/SystemRestoreContent.vue:311
  2281. msgid "Restore Nginx UI Configuration"
  2282. msgstr "恢复 Nginx UI 配置"
  2283. #: src/components/ConfigHistory/DiffViewer.vue:402
  2284. #: src/components/ConfigHistory/DiffViewer.vue:415
  2285. msgid "Restore this version"
  2286. msgstr "恢复此版本"
  2287. #: src/views/certificate/components/RemoveCert.vue:26
  2288. #: src/views/certificate/components/RemoveCert.vue:95
  2289. msgid "Revoke"
  2290. msgstr "撤销"
  2291. #: src/views/site/cert/components/AutoCertStepOne.vue:114
  2292. msgid "Revoke Old Certificate"
  2293. msgstr "撤销旧证书"
  2294. #: src/views/certificate/components/RemoveCert.vue:109
  2295. msgid "Revoke this certificate"
  2296. msgstr "撤销该证书"
  2297. #: src/views/certificate/components/RemoveCert.vue:117
  2298. msgid ""
  2299. "Revoking a certificate will affect any services currently using it. This "
  2300. "action cannot be undone."
  2301. msgstr "撤销证书将影响当前使用该证书的任何服务。该操作无法撤销。"
  2302. #: src/views/preference/AuthSettings.vue:107
  2303. msgid "RP Display Name"
  2304. msgstr "依赖方显示名称"
  2305. #: src/views/preference/AuthSettings.vue:113
  2306. msgid "RP Origins"
  2307. msgstr "依赖方的源"
  2308. #: src/views/preference/AuthSettings.vue:101
  2309. msgid "RPID"
  2310. msgstr "依赖方 ID"
  2311. #: src/views/preference/ServerSettings.vue:24
  2312. msgid "Run Mode"
  2313. msgstr "运行模式"
  2314. #: src/components/NginxControl/NginxControl.vue:68
  2315. msgid "Running"
  2316. msgstr "运行中"
  2317. #: src/components/ChatGPT/ChatGPT.vue:355
  2318. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:64
  2319. #: src/components/StdDesign/StdDetail/StdDetail.vue:93
  2320. #: src/views/certificate/components/CertificateEditor.vue:264
  2321. #: src/views/config/components/ConfigName.vue:59
  2322. #: src/views/config/ConfigEditor.vue:271
  2323. #: src/views/preference/components/Passkey.vue:130
  2324. #: src/views/preference/Preference.vue:228
  2325. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:127
  2326. #: src/views/site/site_edit/components/ConfigName.vue:52
  2327. #: src/views/site/site_edit/SiteEdit.vue:292
  2328. #: src/views/stream/components/ConfigName.vue:52
  2329. #: src/views/stream/StreamEdit.vue:271
  2330. msgid "Save"
  2331. msgstr "保存"
  2332. #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:129
  2333. msgid "Save Directive"
  2334. msgstr "保存指令"
  2335. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:41
  2336. #: src/views/site/site_add/SiteAdd.vue:46
  2337. msgid "Save error %{msg}"
  2338. msgstr "保存错误 %{msg}"
  2339. #: src/components/Notification/notifications.ts:123
  2340. #: src/language/constants.ts:48
  2341. msgid "Save Remote Site Error"
  2342. msgstr "保存远程站点错误"
  2343. #: src/components/Notification/notifications.ts:127
  2344. #: src/language/constants.ts:47
  2345. msgid "Save Remote Site Success"
  2346. msgstr "保存远程站点成功"
  2347. #: src/components/Notification/notifications.ts:165
  2348. msgid "Save Remote Stream Error"
  2349. msgstr "保存远程 Stream 错误"
  2350. #: src/components/Notification/notifications.ts:169
  2351. msgid "Save Remote Stream Success"
  2352. msgstr "保存远程 Stream 成功"
  2353. #: src/components/Notification/notifications.ts:124
  2354. msgid "Save site %{name} to %{node} failed"
  2355. msgstr "成功将站点 %{name} 保存到 %{node} 中"
  2356. #: src/components/Notification/notifications.ts:128
  2357. msgid "Save site %{name} to %{node} successfully"
  2358. msgstr "成功将站点 %{name} 保存到 %{node} 中"
  2359. #: src/components/Notification/notifications.ts:166
  2360. msgid "Save stream %{name} to %{node} failed"
  2361. msgstr "部署 %{name} 到 %{node} 失败"
  2362. #: src/components/Notification/notifications.ts:170
  2363. msgid "Save stream %{name} to %{node} successfully"
  2364. msgstr "成功将站点 %{name} 保存到 %{node} 中"
  2365. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:47
  2366. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:97
  2367. #: src/views/certificate/components/CertificateEditor.vue:49
  2368. #: src/views/preference/Preference.vue:124
  2369. msgid "Save successfully"
  2370. msgstr "保存成功"
  2371. #: src/views/config/ConfigEditor.vue:191
  2372. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:39
  2373. #: src/views/site/site_add/SiteAdd.vue:37
  2374. #: src/views/site/site_edit/SiteEdit.vue:157
  2375. #: src/views/stream/StreamEdit.vue:141
  2376. msgid "Saved successfully"
  2377. msgstr "保存成功"
  2378. #: src/views/preference/components/TOTP.vue:69
  2379. msgid "Scan the QR code with your mobile phone to add the account to the app."
  2380. msgstr "用手机扫描二维码,将账户添加到应用程序中。"
  2381. #: src/views/certificate/DNSChallenge.vue:90
  2382. msgid "SDK"
  2383. msgstr "SDK"
  2384. #: src/views/preference/components/TOTP.vue:109
  2385. msgid "Secret has been copied"
  2386. msgstr "密钥已复制"
  2387. #: src/components/SystemRestore/SystemRestoreContent.vue:207
  2388. #: src/components/SystemRestore/SystemRestoreContent.vue:284
  2389. msgid "Security Token"
  2390. msgstr "安全 Token"
  2391. #: src/views/system/Backup/BackupCreator.vue:94
  2392. msgid "Security Token Information"
  2393. msgstr "安全令牌信息"
  2394. #: src/views/environments/group/EnvGroup.vue:29
  2395. msgid "Select an action after sync"
  2396. msgstr "选择同步后的操作"
  2397. #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:189
  2398. msgid "Selector"
  2399. msgstr "选择器"
  2400. #: src/routes/modules/system.ts:19 src/views/system/SelfCheck/SelfCheck.vue:38
  2401. msgid "Self Check"
  2402. msgstr "自我检查"
  2403. #: src/views/dashboard/ServerAnalytic.vue:344
  2404. #: src/views/dashboard/ServerAnalytic.vue:35
  2405. msgid "Send"
  2406. msgstr "上传"
  2407. #: src/views/preference/Preference.vue:157
  2408. msgid "Server"
  2409. msgstr "服务器"
  2410. #: src/views/dashboard/ServerAnalytic.vue:175
  2411. msgid "Server Info"
  2412. msgstr "服务器信息"
  2413. #: src/views/site/cert/components/ObtainCert.vue:107
  2414. msgid "server_name not found in directives"
  2415. msgstr "未在指令集合中找到 server_name"
  2416. #: src/constants/errors/nginx_log.ts:3
  2417. msgid "ServerIdx out of range"
  2418. msgstr "Server Index 超出范围"
  2419. #: src/constants/errors/user.ts:12
  2420. msgid "Session not found"
  2421. msgstr "未找到会话"
  2422. #: src/views/preference/CertSettings.vue:36
  2423. msgid ""
  2424. "Set the recursive nameservers to override the systems nameservers for the "
  2425. "step of DNS challenge."
  2426. msgstr "为 DNS 挑战步骤设置递归域名服务器以覆盖操作系统的域名服务器设置。"
  2427. #: src/views/site/site_edit/components/SiteStatusSegmented.vue:114
  2428. msgid "set to maintenance mode"
  2429. msgstr "设置为维护模式"
  2430. #: src/language/constants.ts:11
  2431. msgid "Setting DNS01 challenge provider"
  2432. msgstr "使用 DNS01 Challenge 提供商"
  2433. #: src/language/constants.ts:12
  2434. msgid "Setting environment variables"
  2435. msgstr "正在设置环境变量"
  2436. #: src/language/constants.ts:10
  2437. msgid "Setting HTTP01 challenge provider"
  2438. msgstr "使用 HTTP01 challenge provider"
  2439. #: src/constants/errors/nginx_log.ts:8
  2440. msgid ""
  2441. "Settings.NginxLogSettings.AccessLogPath is empty, refer to https://"
  2442. "nginxui.com/guide/config-nginx.html for more information"
  2443. msgstr ""
  2444. "Settings.NginxLogSettings.AccessLogPath 为空,更多信息请参阅 https://"
  2445. "nginxui.com/guide/config-nginx.html"
  2446. #: src/constants/errors/nginx_log.ts:7
  2447. msgid ""
  2448. "Settings.NginxLogSettings.ErrorLogPath is empty, refer to https://"
  2449. "nginxui.com/guide/config-nginx.html for more information"
  2450. msgstr ""
  2451. "Settings.NginxLogSettings.ErrorLogPath为空,更多信息请参阅 https://"
  2452. "nginxui.com/guide/config-nginx.html"
  2453. #: src/components/SensitiveString/SensitiveString.vue:40
  2454. msgid "Show"
  2455. msgstr "显示"
  2456. #: src/views/other/Login.vue:240
  2457. msgid "Sign in with a passkey"
  2458. msgstr "使用 Passkey 登录"
  2459. #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:65
  2460. msgid "Single Directive"
  2461. msgstr "单行指令"
  2462. #: src/views/site/site_add/SiteAdd.vue:147
  2463. msgid "Site Config Created Successfully"
  2464. msgstr "网站配置创建成功"
  2465. #: src/constants/errors/site.ts:4
  2466. msgid "Site is enabled"
  2467. msgstr "网站已启用"
  2468. #: src/constants/errors/site.ts:5
  2469. msgid "Site is in maintenance mode"
  2470. msgstr "网站处于维护模式"
  2471. #: src/routes/modules/nginx_log.ts:31
  2472. msgid "Site Logs"
  2473. msgstr "站点列表"
  2474. #: src/constants/errors/site.ts:2
  2475. msgid "Site not found"
  2476. msgstr "网站未找到"
  2477. #: src/views/system/SelfCheck/tasks/backend/index.ts:5
  2478. msgid "Sites Directory"
  2479. msgstr "网站目录"
  2480. #: src/routes/modules/sites.ts:19
  2481. msgid "Sites List"
  2482. msgstr "站点列表"
  2483. #: src/constants/errors/self_check.ts:10
  2484. msgid "Sites-available directory not exist"
  2485. msgstr "Sites-available 目录不存在"
  2486. #: src/constants/errors/self_check.ts:11
  2487. msgid "Sites-enabled directory not exist"
  2488. msgstr "Sites-enabled 目录不存在"
  2489. #: src/views/preference/NodeSettings.vue:23
  2490. msgid "Skip Installation"
  2491. msgstr "跳过安装"
  2492. #: src/views/certificate/components/CertificateEditor.vue:213
  2493. msgid "SSL Certificate Content"
  2494. msgstr "SSL 证书内容"
  2495. #: src/constants/errors/system.ts:8
  2496. msgid "SSL certificate file must be under Nginx configuration directory: {0}"
  2497. msgstr "SSL 证书文件必须位于 Nginx 配置目录下:{0}"
  2498. #: src/constants/errors/system.ts:6
  2499. msgid "SSL certificate file not found"
  2500. msgstr "未找到 SSL 证书文件"
  2501. #: src/views/certificate/components/CertificateEditor.vue:226
  2502. msgid "SSL Certificate Key Content"
  2503. msgstr "SSL 证书密钥内容"
  2504. #: src/views/certificate/components/CertificateEditor.vue:192
  2505. msgid "SSL Certificate Key Path"
  2506. msgstr "SSL证书密钥路径"
  2507. #: src/views/certificate/components/CertificateEditor.vue:177
  2508. #: src/views/preference/ServerSettings.vue:36
  2509. msgid "SSL Certificate Path"
  2510. msgstr "SSL证书路径"
  2511. #: src/constants/errors/system.ts:4
  2512. msgid "SSL certificate path is required when HTTPS is enabled"
  2513. msgstr "启用 HTTPS 时需要配置 SSL 证书路径"
  2514. #: src/constants/errors/system.ts:9
  2515. msgid "SSL key file must be under Nginx configuration directory: {0}"
  2516. msgstr "SSL 密钥文件必须位于 Nginx 配置目录下:{0}"
  2517. #: src/constants/errors/system.ts:7
  2518. msgid "SSL key file not found"
  2519. msgstr "未找到 SSL 密钥文件"
  2520. #: src/views/preference/ServerSettings.vue:40
  2521. msgid "SSL Key Path"
  2522. msgstr "SSL 密钥路径"
  2523. #: src/constants/errors/system.ts:5
  2524. msgid "SSL key path is required when HTTPS is enabled"
  2525. msgstr "启用 HTTPS 时需要 SSL 密钥路径"
  2526. #: src/views/other/Login.vue:197
  2527. msgid "SSO Login"
  2528. msgstr "SSO 登录"
  2529. #: src/views/environments/list/BatchUpgrader.vue:164
  2530. #: src/views/environments/list/BatchUpgrader.vue:214
  2531. #: src/views/system/Upgrade.vue:191 src/views/system/Upgrade.vue:239
  2532. msgid "Stable"
  2533. msgstr "稳定"
  2534. #: src/components/SystemRestore/SystemRestoreContent.vue:246
  2535. #: src/components/SystemRestore/SystemRestoreContent.vue:323
  2536. msgid "Start Restore"
  2537. msgstr "开始还原"
  2538. #: src/views/certificate/ACMEUser.vue:65
  2539. #: src/views/certificate/CertificateList/certColumns.tsx:65
  2540. #: src/views/environments/list/envColumns.tsx:44
  2541. #: src/views/site/site_edit/RightSettings.vue:55
  2542. #: src/views/site/site_list/columns.tsx:89 src/views/stream/StreamList.vue:47
  2543. msgid "Status"
  2544. msgstr "状态"
  2545. #: src/components/NginxControl/NginxControl.vue:83
  2546. msgid "Stopped"
  2547. msgstr "已停止"
  2548. #: src/views/dashboard/ServerAnalytic.vue:250
  2549. #: src/views/dashboard/ServerAnalytic.vue:251
  2550. msgid "Storage"
  2551. msgstr "存储"
  2552. #: src/constants/errors/stream.ts:4
  2553. msgid "Stream is enabled"
  2554. msgstr "Stream 已启用"
  2555. #: src/constants/errors/stream.ts:2
  2556. msgid "Stream not found"
  2557. msgstr "Stream 未找到"
  2558. #: src/views/system/SelfCheck/tasks/backend/index.ts:10
  2559. msgid "Streams Directory"
  2560. msgstr "Streams 目录"
  2561. #: src/constants/errors/self_check.ts:12
  2562. msgid "Streams-available directory not exist"
  2563. msgstr "Streams-available 目录不存在"
  2564. #: src/constants/errors/self_check.ts:13
  2565. msgid "Streams-enabled directory not exist"
  2566. msgstr "Streams-enabled 目录不存在"
  2567. #: src/constants/index.ts:25 src/views/notification/notificationColumns.tsx:36
  2568. msgid "Success"
  2569. msgstr "成功"
  2570. #: src/views/system/SelfCheck/tasks/frontend/websocket.ts:6
  2571. msgid ""
  2572. "Support communication with the backend through the WebSocket protocol. If "
  2573. "your Nginx UI is being used via an Nginx reverse proxy, please refer to this "
  2574. "link to write the corresponding configuration file: https://nginxui.com/"
  2575. "guide/nginx-proxy-example.html"
  2576. msgstr ""
  2577. "支持通过 WebSocket 协议与后端通信,如果您正在使用 Nginx 反向代理了 Nginx UI "
  2578. "请参考:https://nginxui.com/guide/nginx-proxy-example.html 编写配置文件"
  2579. #: src/components/SystemRestore/SystemRestoreContent.vue:197
  2580. #: src/components/SystemRestore/SystemRestoreContent.vue:274
  2581. msgid "Supported file type: .zip"
  2582. msgstr "支持的文件类型:.zip"
  2583. #: src/views/dashboard/ServerAnalytic.vue:236
  2584. #: src/views/dashboard/ServerAnalytic.vue:237
  2585. msgid "Swap"
  2586. msgstr "Swap"
  2587. #: src/components/SwitchAppearance/SwitchAppearance.vue:13
  2588. msgid "Switch to dark theme"
  2589. msgstr "切换到深色主题"
  2590. #: src/components/SwitchAppearance/SwitchAppearance.vue:13
  2591. msgid "Switch to light theme"
  2592. msgstr "切换到浅色"
  2593. #: src/views/config/components/Rename.vue:81
  2594. msgid "Sync"
  2595. msgstr "同步"
  2596. #: src/views/certificate/CertificateList/certColumns.tsx:30
  2597. msgid "Sync Certificate"
  2598. msgstr "同步证书"
  2599. #: src/components/Notification/notifications.ts:48
  2600. msgid "Sync Certificate %{cert_name} to %{env_name} failed"
  2601. msgstr "证书 %{cert_name} 已成功同步到 %{env_name}"
  2602. #: src/components/Notification/notifications.ts:52
  2603. msgid "Sync Certificate %{cert_name} to %{env_name} successfully"
  2604. msgstr "证书 %{cert_name} 已成功同步到 %{env_name}"
  2605. #: src/components/Notification/notifications.ts:47 src/language/constants.ts:39
  2606. msgid "Sync Certificate Error"
  2607. msgstr "同步证书错误"
  2608. #: src/components/Notification/notifications.ts:51 src/language/constants.ts:38
  2609. msgid "Sync Certificate Success"
  2610. msgstr "同步证书成功"
  2611. #: src/components/Notification/notifications.ts:58
  2612. msgid "Sync config %{config_name} to %{env_name} failed"
  2613. msgstr "配置 %{config_name} 成功同步到 %{env_name}"
  2614. #: src/components/Notification/notifications.ts:62
  2615. msgid "Sync config %{config_name} to %{env_name} successfully"
  2616. msgstr "配置 %{config_name} 成功同步到 %{env_name}"
  2617. #: src/components/Notification/notifications.ts:57 src/language/constants.ts:45
  2618. msgid "Sync Config Error"
  2619. msgstr "同步配置错误"
  2620. #: src/components/Notification/notifications.ts:61 src/language/constants.ts:44
  2621. msgid "Sync Config Success"
  2622. msgstr "同步配置成功"
  2623. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:142
  2624. #: src/views/environments/group/EnvGroup.vue:18
  2625. msgid "Sync Nodes"
  2626. msgstr "同步节点"
  2627. #: src/views/site/site_edit/RightSettings.vue:101
  2628. #: src/views/site/site_edit/RightSettings.vue:88
  2629. #: src/views/stream/components/RightSettings.vue:111
  2630. #: src/views/stream/components/RightSettings.vue:124
  2631. msgid "Sync strategy"
  2632. msgstr "同步策略"
  2633. #: src/views/certificate/components/CertificateEditor.vue:206
  2634. msgid "Sync to"
  2635. msgstr "同步到"
  2636. #: src/views/site/site_edit/RightSettings.vue:85
  2637. #: src/views/stream/components/RightSettings.vue:108
  2638. msgid "Synchronization"
  2639. msgstr "同步"
  2640. #: src/routes/modules/system.ts:11
  2641. msgid "System"
  2642. msgstr "系统"
  2643. #: src/views/system/Backup/BackupCreator.vue:71
  2644. msgid "System Backup"
  2645. msgstr "系统备份"
  2646. #: src/views/certificate/components/ACMEUserSelector.vue:88
  2647. msgid "System Initial User"
  2648. msgstr "系统初始用户"
  2649. #: src/components/SystemRestore/SystemRestoreContent.vue:174
  2650. msgid "System Restore"
  2651. msgstr "系统还原"
  2652. #: src/views/other/Install.vue:106 src/views/system/Backup/SystemRestore.vue:6
  2653. msgid "System restored successfully."
  2654. msgstr "系统恢复成功。"
  2655. #: src/constants/errors/self_check.ts:2
  2656. msgid "Task not found"
  2657. msgstr "未找到任务"
  2658. #: src/views/preference/components/ExternalNotify/telegram.ts:5
  2659. msgid "Telegram"
  2660. msgstr "Telegram"
  2661. #: src/routes/modules/terminal.ts:10 src/views/preference/Preference.vue:187
  2662. #: src/views/terminal/Terminal.vue:129
  2663. msgid "Terminal"
  2664. msgstr "终端"
  2665. #: src/views/preference/TerminalSettings.vue:9
  2666. msgid "Terminal Start Command"
  2667. msgstr "终端启动命令"
  2668. #: src/views/site/cert/components/AutoCertStepOne.vue:49
  2669. msgid ""
  2670. "The certificate for the domain will be checked 30 minutes, and will be "
  2671. "renewed if it has been more than 1 week or the period you set in settings "
  2672. "since it was last issued."
  2673. msgstr ""
  2674. "域名证书将在 30 分钟内接受检查,如果距离上次签发证书的时间超过 1 周或您在设置"
  2675. "中设定的时间,证书将被更新。"
  2676. #: src/views/other/Install.vue:80
  2677. msgid "The filename cannot contain the following characters: %{c}"
  2678. msgstr "文件名不能包含以下字符: %{c}"
  2679. #: src/views/preference/NodeSettings.vue:37
  2680. msgid ""
  2681. "The ICP Number should only contain letters, unicode, numbers, hyphens, "
  2682. "dashes, colons, and dots."
  2683. msgstr "ICP 备案号只能包含字母、单码、数字、连字符、破折号、冒号和点。"
  2684. #: src/views/certificate/components/CertificateEditor.vue:216
  2685. msgid "The input is not a SSL Certificate"
  2686. msgstr "输入的内容不是 SSL 证书"
  2687. #: src/views/certificate/components/CertificateEditor.vue:229
  2688. msgid "The input is not a SSL Certificate Key"
  2689. msgstr "输入的内容不是 SSL 证书密钥"
  2690. #: src/constants/errors/nginx_log.ts:2
  2691. msgid ""
  2692. "The log path is not under the paths in settings.NginxSettings.LogDirWhiteList"
  2693. msgstr "日志路径不在 settings.NginxSettings.LogDirWhiteList 中的路径之下"
  2694. #: src/views/preference/OpenAISettings.vue:23
  2695. msgid ""
  2696. "The model name should only contain letters, unicode, numbers, hyphens, "
  2697. "dashes, colons, and dots."
  2698. msgstr "模型名称只能包含字母、单码、数字、连字符、破折号、冒号和点。"
  2699. #: src/views/preference/NodeSettings.vue:18
  2700. msgid ""
  2701. "The node name should only contain letters, unicode, numbers, hyphens, "
  2702. "dashes, colons, and dots."
  2703. msgstr "节点名称只能包含字母、统一码、数字、连字符、破折号、冒号和点。"
  2704. #: src/views/site/site_add/SiteAdd.vue:120
  2705. msgid "The parameter of server_name is required"
  2706. msgstr "必须为 server_name 指令指明参数"
  2707. #: src/views/certificate/components/CertificateEditor.vue:181
  2708. msgid "The path exists, but the file is not a certificate"
  2709. msgstr "路径存在,但文件不是证书"
  2710. #: src/views/certificate/components/CertificateEditor.vue:196
  2711. msgid "The path exists, but the file is not a private key"
  2712. msgstr "路径存在,但文件不是私钥"
  2713. #: src/views/preference/NodeSettings.vue:49
  2714. msgid ""
  2715. "The Public Security Number should only contain letters, unicode, numbers, "
  2716. "hyphens, dashes, colons, and dots."
  2717. msgstr "公安备案号只能包含字母、单码、数字、连字符、破折号、冒号和点。"
  2718. #: src/views/dashboard/Environments.vue:148
  2719. msgid ""
  2720. "The remote Nginx UI version is not compatible with the local Nginx UI "
  2721. "version. To avoid potential errors, please upgrade the remote Nginx UI to "
  2722. "match the local version."
  2723. msgstr ""
  2724. "远程 Nginx UI 版本与本地 Nginx UI版本不兼容。为避免意料之外的错误,请升级远"
  2725. "程 Nginx UI,使其与本地版本一致。"
  2726. #: src/views/site/cert/components/AutoCertStepOne.vue:44
  2727. msgid ""
  2728. "The server_name in the current configuration must be the domain name you "
  2729. "need to get the certificate, supportmultiple domains."
  2730. msgstr "当前配置中的 server_name 必须是获取证书所需的域名,支持多个域名。"
  2731. #: src/views/preference/CertSettings.vue:22
  2732. #: src/views/preference/HTTPSettings.vue:14
  2733. msgid "The url is invalid"
  2734. msgstr "URL无效"
  2735. #: src/views/preference/OpenAISettings.vue:35
  2736. #: src/views/preference/OpenAISettings.vue:49
  2737. msgid "The url is invalid."
  2738. msgstr "URL 无效."
  2739. #: src/language/constants.ts:2
  2740. msgid "The username or password is incorrect"
  2741. msgstr "用户名或密码错误"
  2742. #: src/views/preference/components/RecoveryCodes.vue:104
  2743. msgid ""
  2744. "These codes are the last resort for accessing your account in case you lose "
  2745. "your password and second factors. If you cannot find these codes, you will "
  2746. "lose access to your account."
  2747. msgstr ""
  2748. "这些代码是在您丢失密码和双重身份验证方式时,访问账户的最后手段。如果找不到这"
  2749. "些代码,您将无法再访问您的账户。"
  2750. #: src/views/certificate/components/CertificateEditor.vue:102
  2751. msgid "This Auto Cert item is invalid, please remove it."
  2752. msgstr "这个证书自动续期项目是无效的,请删除。"
  2753. #: src/views/certificate/components/CertificateEditor.vue:92
  2754. msgid "This certificate is managed by Nginx UI"
  2755. msgstr "该证书由 Nginx UI 托管"
  2756. #: src/views/certificate/components/CertificateEditor.vue:165
  2757. #: src/views/certificate/components/CertificateEditor.vue:179
  2758. #: src/views/certificate/components/CertificateEditor.vue:194
  2759. msgid "This field is required"
  2760. msgstr "此字段必填"
  2761. #: src/constants/form_errors.ts:3
  2762. msgid "This field should be a valid email address"
  2763. msgstr "该字段应是有效的电子邮件地址"
  2764. #: src/constants/form_errors.ts:5
  2765. msgid "This field should be a valid hostname"
  2766. msgstr "该字段应是有效的主机名"
  2767. #: src/components/StdDesign/StdDataEntry/StdFormItem.vue:39
  2768. #: src/constants/form_errors.ts:2
  2769. msgid "This field should not be empty"
  2770. msgstr "该字段不能为空"
  2771. #: src/constants/form_errors.ts:6
  2772. msgid ""
  2773. "This field should only contain letters, unicode characters, numbers, and -_."
  2774. msgstr "该字段只能包含字母、unicode 字符、数字和 -_。"
  2775. #: src/views/certificate/components/RemoveCert.vue:103
  2776. msgid ""
  2777. "This operation will only remove the certificate from the database. The "
  2778. "certificate files on the file system will not be deleted."
  2779. msgstr "此操作只会从数据库中删除证书。文件系统中的证书文件不会被删除。"
  2780. #: src/views/system/Backup/BackupCreator.vue:141
  2781. msgid ""
  2782. "This token will only be shown once and cannot be retrieved later. Please "
  2783. "make sure to save it in a secure location."
  2784. msgstr "此 Token 只显示一次,以后无法找回。请确保将其保存在安全位置。"
  2785. #: src/constants/form_errors.ts:4
  2786. msgid "This value is already taken"
  2787. msgstr "该字段的值已经存在"
  2788. #: src/components/SystemRestore/SystemRestoreContent.vue:227
  2789. #: src/components/SystemRestore/SystemRestoreContent.vue:304
  2790. msgid ""
  2791. "This will restore all Nginx configuration files. Nginx will restart after "
  2792. "the restoration is complete."
  2793. msgstr "这将还原所有 Nginx 配置文件。恢复完成后,Nginx 将重新启动。"
  2794. #: src/components/SystemRestore/SystemRestoreContent.vue:238
  2795. #: src/components/SystemRestore/SystemRestoreContent.vue:315
  2796. msgid ""
  2797. "This will restore configuration files and database. Nginx UI will restart "
  2798. "after the restoration is complete."
  2799. msgstr "这将恢复配置文件和数据库。恢复完成后,Nginx UI 将重新启动。"
  2800. #: src/views/environments/list/BatchUpgrader.vue:182
  2801. msgid ""
  2802. "This will upgrade or reinstall the Nginx UI on %{nodeNames} to %{version}."
  2803. msgstr "将 %{nodeNames} 上的 Nginx UI 升级或重新安装到 %{version} 版本。"
  2804. #: src/views/preference/AuthSettings.vue:124
  2805. msgid "Throttle"
  2806. msgstr "限流"
  2807. #: src/views/preference/AuthSettings.vue:144
  2808. #: src/views/preference/components/AddPasskey.vue:65
  2809. #: src/views/preference/LogrotateSettings.vue:11
  2810. msgid "Tips"
  2811. msgstr "提示"
  2812. #: src/views/notification/notificationColumns.tsx:45
  2813. msgid "Title"
  2814. msgstr "标题"
  2815. #: src/views/certificate/components/RemoveCert.vue:121
  2816. msgid "To confirm revocation, please type \"Revoke\" in the field below:"
  2817. msgstr "要确认撤销,请在下面的字段中输入 \"撤销\":"
  2818. #: src/views/preference/components/TOTP.vue:68
  2819. msgid ""
  2820. "To enable it, you need to install the Google or Microsoft Authenticator app "
  2821. "on your mobile phone."
  2822. msgstr ""
  2823. "要启用该功能,您需要在手机上安装 Google 或 Microsoft Authenticator 应用程序。"
  2824. #: src/views/preference/components/AddPasskey.vue:89
  2825. msgid ""
  2826. "To ensure security, Webauthn configuration cannot be added through the UI. "
  2827. "Please manually configure the following in the app.ini configuration file "
  2828. "and restart Nginx UI."
  2829. msgstr ""
  2830. "为确保安全,Webauthn 配置不能通过用户界面添加。请在 app.ini 配置文件中手动配"
  2831. "置以下内容,并重启 Nginx UI 服务。"
  2832. #: src/views/site/ngx_conf/NgxConfigEditor.vue:45
  2833. msgid ""
  2834. "To make sure the certification auto-renewal can work normally, we need to "
  2835. "add a location which can proxy the request from authority to backend, and we "
  2836. "need to save this file and reload the Nginx. Are you sure you want to "
  2837. "continue?"
  2838. msgstr ""
  2839. "为了确保认证自动更新能够正常工作,我们需要添加一个能够代理从权威机构到后端的"
  2840. "请求的 Location,并且我们需要保存这个文件并重新加载Nginx。你确定要继续吗?"
  2841. #: src/views/preference/OpenAISettings.vue:36
  2842. msgid ""
  2843. "To use a local large model, deploy it with ollama, vllm or lmdeploy. They "
  2844. "provide an OpenAI-compatible API endpoint, so just set the baseUrl to your "
  2845. "local API."
  2846. msgstr ""
  2847. "要使用本地大型模型,可使用 ollama、vllm 或 lmdeploy 进行部署。它们提供了与 "
  2848. "OpenAI 兼容的 API 端点,因此只需将 baseUrl 设置为本地 API 即可。"
  2849. #: src/views/preference/OpenAISettings.vue:61
  2850. msgid "Token is not valid"
  2851. msgstr "Token 无效"
  2852. #: src/components/StdDesign/StdDataDisplay/StdPagination.vue:40
  2853. msgid "Total %{total} item"
  2854. msgid_plural "Total %{total} items"
  2855. msgstr[0] "共 %{total} 个项目"
  2856. #: src/views/preference/components/TOTP.vue:66
  2857. msgid "TOTP"
  2858. msgstr "TOTP"
  2859. #: src/views/preference/components/TOTP.vue:67
  2860. msgid ""
  2861. "TOTP is a two-factor authentication method that uses a time-based one-time "
  2862. "password algorithm."
  2863. msgstr "TOTP 是一种使用基于时间的一次性密码算法的双因素身份验证方法。"
  2864. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:197
  2865. msgid "Trash"
  2866. msgstr "回收站"
  2867. #: src/components/TwoFA/use2FAModal.ts:67
  2868. msgid "Two-factor authentication required"
  2869. msgstr "需要两步验证"
  2870. #: src/views/certificate/CertificateList/certColumns.tsx:25
  2871. #: src/views/nginx_log/NginxLogList.vue:21
  2872. #: src/views/notification/notificationColumns.tsx:9
  2873. #: src/views/preference/components/ExternalNotify/columns.ts:17
  2874. msgid "Type"
  2875. msgstr "类型"
  2876. #: src/views/system/SelfCheck/SelfCheck.vue:63
  2877. msgid "Unknown issue"
  2878. msgstr "未知问题"
  2879. #: src/views/preference/components/Passkey.vue:39
  2880. msgid "Update successfully"
  2881. msgstr "更新成功"
  2882. #: src/views/certificate/ACMEUser.vue:88
  2883. #: src/views/certificate/DNSCredential.vue:27
  2884. #: src/views/config/configColumns.tsx:36 src/views/config/ConfigEditor.vue:325
  2885. #: src/views/environments/group/columns.ts:37
  2886. #: src/views/environments/list/envColumns.tsx:90
  2887. #: src/views/site/site_edit/RightSettings.vue:75
  2888. #: src/views/site/site_list/columns.tsx:82
  2889. #: src/views/stream/components/RightSettings.vue:99
  2890. #: src/views/stream/StreamList.vue:67 src/views/user/userColumns.tsx:54
  2891. msgid "Updated at"
  2892. msgstr "修改时间"
  2893. #: src/components/StdDesign/StdDataDisplay/methods/sortable.ts:121
  2894. msgid "Updated successfully"
  2895. msgstr "更新成功"
  2896. #: src/routes/modules/system.ts:33
  2897. #: src/views/environments/list/Environment.vue:107
  2898. #: src/views/environments/list/Environment.vue:99
  2899. #: src/views/system/Upgrade.vue:143 src/views/system/Upgrade.vue:226
  2900. msgid "Upgrade"
  2901. msgstr "升级"
  2902. #: src/views/environments/list/BatchUpgrader.vue:137
  2903. msgid "Upgraded Nginx UI on %{node} successfully 🎉"
  2904. msgstr "成功升级 %{node} 上的 Nginx UI 🎉"
  2905. #: src/language/constants.ts:30
  2906. msgid "Upgraded successfully"
  2907. msgstr "升级成功"
  2908. #: src/views/environments/list/BatchUpgrader.vue:88
  2909. #: src/views/system/Upgrade.vue:77
  2910. msgid "Upgrading Nginx UI, please wait..."
  2911. msgstr "正在升级 Nginx UI,请等待..."
  2912. #: src/views/site/ngx_conf/NgxUpstream.vue:172
  2913. msgid "Upstream Name"
  2914. msgstr "Upstream 名称"
  2915. #: src/views/dashboard/ServerAnalytic.vue:179
  2916. msgid "Uptime:"
  2917. msgstr "运行时间:"
  2918. #: src/views/environments/list/envColumns.tsx:19
  2919. msgid "URL"
  2920. msgstr "URL"
  2921. #: src/components/TwoFA/Authorization.vue:121
  2922. msgid "Use OTP"
  2923. msgstr "使用二步验证码"
  2924. #: src/components/TwoFA/Authorization.vue:117
  2925. msgid "Use recovery code"
  2926. msgstr "使用恢复代码"
  2927. #: src/components/ChatGPT/ChatGPT.vue:333
  2928. msgid "User"
  2929. msgstr "用户"
  2930. #: src/constants/errors/user.ts:3
  2931. msgid "User banned"
  2932. msgstr "用户被禁止"
  2933. #: src/constants/errors/user.ts:8
  2934. msgid "User not enabled otp as 2fa"
  2935. msgstr "用户未启用 OTP 作为 2FA"
  2936. #: src/views/other/Login.vue:173 src/views/user/userColumns.tsx:9
  2937. msgid "Username"
  2938. msgstr "用户名"
  2939. #: src/views/other/Install.vue:148
  2940. msgid "Username (*)"
  2941. msgstr "用户名 (*)"
  2942. #: src/views/certificate/ACMEUser.vue:124
  2943. #: src/views/certificate/CertificateList/certColumns.tsx:78
  2944. #: src/views/site/cert/CertInfo.vue:24
  2945. msgid "Valid"
  2946. msgstr "有效的"
  2947. #: src/components/SystemRestore/SystemRestoreContent.vue:216
  2948. #: src/components/SystemRestore/SystemRestoreContent.vue:293
  2949. msgid "Verify Backup File Integrity"
  2950. msgstr "验证备份文件的完整性"
  2951. #: src/views/environments/list/envColumns.tsx:31
  2952. msgid "Version"
  2953. msgstr "版本"
  2954. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:488
  2955. #: src/views/nginx_log/NginxLogList.vue:145
  2956. #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:103
  2957. msgid "View"
  2958. msgstr "查看"
  2959. #: src/components/Notification/Notification.vue:203
  2960. msgid "View all notifications"
  2961. msgstr "查看全部通知"
  2962. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
  2963. msgid "View Details"
  2964. msgstr "查看详情"
  2965. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:262
  2966. msgid "View Mode"
  2967. msgstr "预览模式"
  2968. #: src/views/preference/components/RecoveryCodes.vue:134
  2969. msgid "View Recovery Codes"
  2970. msgstr "查看恢复代码"
  2971. #: src/views/preference/components/RecoveryCodes.vue:70
  2972. msgid "Viewed"
  2973. msgstr "已查看"
  2974. #: src/constants/index.ts:23 src/views/config/InspectConfig.vue:33
  2975. #: src/views/notification/notificationColumns.tsx:22
  2976. #: src/views/preference/components/AddPasskey.vue:82
  2977. #: src/views/site/site_add/SiteAdd.vue:115
  2978. #: src/views/system/Backup/BackupCreator.vue:138
  2979. msgid "Warning"
  2980. msgstr "警告"
  2981. #: src/components/SystemRestore/SystemRestoreContent.vue:178
  2982. #: src/components/SystemRestore/SystemRestoreContent.vue:255
  2983. msgid ""
  2984. "Warning: Restore operation will overwrite current configurations. Make sure "
  2985. "you have a valid backup file and security token, and carefully select what "
  2986. "to restore."
  2987. msgstr ""
  2988. "警告:还原操作将覆盖当前配置。请确保您有有效的备份文件和安全令牌,并仔细选择"
  2989. "要还原的内容。"
  2990. #: src/views/certificate/DNSCredential.vue:56
  2991. msgid ""
  2992. "We will add one or more TXT records to the DNS records of your domain for "
  2993. "ownership verification."
  2994. msgstr "我们将在您域名的 DNS 记录中添加一个或多个 TXT 记录,以核实域名所有权。"
  2995. #: src/views/site/cert/components/ObtainCert.vue:137
  2996. msgid ""
  2997. "We will remove the HTTPChallenge configuration from this file and reload the "
  2998. "Nginx. Are you sure you want to continue?"
  2999. msgstr ""
  3000. "我们将从这个文件中删除HTTPChallenge的配置,并重新加载Nginx。你确定要继续吗?"
  3001. #: src/views/preference/AuthSettings.vue:97
  3002. msgid "Webauthn"
  3003. msgstr "Webauthn"
  3004. #: src/constants/errors/user.ts:7
  3005. msgid "WebAuthn settings are not configured"
  3006. msgstr "WebAuthn 未配置"
  3007. #: src/views/certificate/components/RemoveCert.vue:54
  3008. msgid "WebSocket connection error"
  3009. msgstr "WebSocket 连接错误"
  3010. #: src/views/certificate/ACMEUser.vue:83
  3011. msgid ""
  3012. "When Enabled, Nginx UI will automatically re-register users upon startup. "
  3013. "Generally, do not enable this unless you are in a dev environment and using "
  3014. "Pebble as CA."
  3015. msgstr ""
  3016. "启用后,Nginx UI 将在启动时自动重新注册用户。一般情况下,除非在开发环境中使"
  3017. "用 Pebble 作为 CA,否则不要启用此功能。"
  3018. #: src/views/site/site_edit/RightSettings.vue:91
  3019. msgid ""
  3020. "When you enable/disable, delete, or save this site, the nodes set in the "
  3021. "Node Group and the nodes selected below will be synchronized."
  3022. msgstr ""
  3023. "启用/禁用、删除或保存此站点时,环境组中设置的节点和下面选择的节点将同步执行操"
  3024. "作。"
  3025. #: src/views/stream/components/RightSettings.vue:114
  3026. msgid ""
  3027. "When you enable/disable, delete, or save this stream, the nodes set in the "
  3028. "Node Group and the nodes selected below will be synchronized."
  3029. msgstr ""
  3030. "启用/禁用、删除或保存此站点时,环境组中设置的节点和下面选择的节点将同步执行操"
  3031. "作。"
  3032. #: src/views/preference/components/RecoveryCodes.vue:140
  3033. msgid ""
  3034. "When you generate new recovery codes, you must download or print the new "
  3035. "codes."
  3036. msgstr "当您生成新的恢复代码时,必须下载或打印新的代码。"
  3037. #: src/views/dashboard/ServerAnalytic.vue:37
  3038. #: src/views/dashboard/ServerAnalytic.vue:373
  3039. msgid "Writes"
  3040. msgstr "写"
  3041. #: src/language/constants.ts:17
  3042. msgid "Writing certificate private key to disk"
  3043. msgstr "正在将证书私钥写入磁盘"
  3044. #: src/language/constants.ts:16
  3045. msgid "Writing certificate to disk"
  3046. msgstr "正在将证书写入磁盘"
  3047. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:150
  3048. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:162
  3049. #: src/views/preference/AuthSettings.vue:163
  3050. #: src/views/preference/CertSettings.vue:72
  3051. #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:96
  3052. #: src/views/site/ngx_conf/LocationEditor.vue:87
  3053. msgid "Yes"
  3054. msgstr "是的"
  3055. #: src/views/terminal/Terminal.vue:135
  3056. msgid ""
  3057. "You are accessing this terminal over an insecure HTTP connection on a non-"
  3058. "localhost domain. This may expose sensitive information."
  3059. msgstr ""
  3060. "您正在通过非本地主机域上的不安全 HTTP 连接访问此终端。这可能会暴露敏感信息。"
  3061. #: src/views/system/Upgrade.vue:202
  3062. msgid "You are using the latest version"
  3063. msgstr "您使用的是最新版本"
  3064. #: src/views/system/Upgrade.vue:164
  3065. msgid "You can check Nginx UI upgrade at this page."
  3066. msgstr "你可以在这个页面检查Nginx UI的升级。"
  3067. #: src/components/SystemRestore/SystemRestoreContent.vue:339
  3068. msgid "You can close this dialog in %{countdown} seconds"
  3069. msgstr "您可以在 %{countdown} 秒后关闭此对话框"
  3070. #: src/components/SystemRestore/SystemRestoreContent.vue:342
  3071. msgid "You can close this dialog now"
  3072. msgstr "现在可以关闭此对话框"
  3073. #: src/views/preference/components/AddPasskey.vue:87
  3074. msgid ""
  3075. "You have not configured the settings of Webauthn, so you cannot add a "
  3076. "passkey."
  3077. msgstr "您尚未配置 Webauthn 的设置,因此无法添加 Passkey。"
  3078. #: src/views/preference/components/RecoveryCodes.vue:81
  3079. msgid ""
  3080. "You have not enabled 2FA yet. Please enable 2FA to generate recovery codes."
  3081. msgstr "您尚未启用双重身份验证。请启用双重身份验证以生成恢复代码。"
  3082. #: src/views/preference/components/RecoveryCodes.vue:94
  3083. msgid "You have not generated recovery codes yet."
  3084. msgstr "您尚未生成恢复代码。"
  3085. #: src/views/preference/components/RecoveryCodes.vue:91
  3086. msgid ""
  3087. "Your current recovery code might be outdated and insecure. Please generate "
  3088. "new recovery codes at your earliest convenience to ensure security."
  3089. msgstr "您的当前恢复代码可能已过期且不安全。请尽快生成新的恢复代码以确保安全。"
  3090. #: src/views/preference/components/RecoveryCodes.vue:142
  3091. #: src/views/preference/components/RecoveryCodes.vue:155
  3092. msgid "Your old codes won't work anymore."
  3093. msgstr "您的旧代码将不再有效。"
  3094. #: src/views/preference/components/Passkey.vue:75
  3095. msgid "Your passkeys"
  3096. msgstr "你的 Passkeys"
  3097. #~ msgid "Access Token"
  3098. #~ msgstr "Access Token"
  3099. #~ msgid "Bot Token"
  3100. #~ msgstr "机器人令牌"
  3101. #~ msgid "Chat ID"
  3102. #~ msgstr "聊天 ID"
  3103. #~ msgid "Device Key"
  3104. #~ msgstr "设备密钥"
  3105. #~ msgid "Secret (Optional)"
  3106. #~ msgstr "秘密(可选)"
  3107. #~ msgid "Server URL"
  3108. #~ msgstr "服务器 URL"
  3109. #~ msgid "Do you want to disable this site?"
  3110. #~ msgstr "你想停用这个网站吗?"
  3111. #~ msgid "Enter Maintenance"
  3112. #~ msgstr "进入维护"
  3113. #~ msgid "URLs"
  3114. #~ msgstr "链接"
  3115. #~ msgid "Created At"
  3116. #~ msgstr "创建时间"
  3117. #~ msgid "Groups"
  3118. #~ msgstr "组"
  3119. #~ msgid "Nginx has been reloaded on all sync nodes"
  3120. #~ msgstr "已在所有同步节点上重新加载 Nginx"
  3121. #~ msgid "Nginx has been restarted on all sync nodes"
  3122. #~ msgstr "已在所有同步节点上重启 Nginx"
  3123. #~ msgid "Category"
  3124. #~ msgstr "分类"
  3125. #~ msgid "Site Categories"
  3126. #~ msgstr "网站分类"
  3127. #~ msgid "Restart Required"
  3128. #~ msgstr "必须重新启动"
  3129. #~ msgid "Deploy %{conf_name} to %{node_name} successfully"
  3130. #~ msgstr "部署 %{conf_name} 到 %{node_name} 成功"
  3131. #~ msgid "Deploy successfully"
  3132. #~ msgstr "部署成功"
  3133. #~ msgid "Disable site %{site} on %{node} error, response: %{resp}"
  3134. #~ msgstr "在 %{node} 上禁用 %{site} 失败, 响应: %{resp}"
  3135. #~ msgid "Do you want to deploy this file to remote server?"
  3136. #~ msgid_plural "Do you want to deploy this file to remote servers?"
  3137. #~ msgstr[0] "你想把这个文件部署到远程服务器上吗?"
  3138. #~ msgid "Duplicate %{conf_name} to %{node_name} successfully"
  3139. #~ msgstr "成功地将%{conf_name}复制到%{node_name}"
  3140. #~ msgid "Duplicate successfully"
  3141. #~ msgstr "复制成功"
  3142. #~ msgid "Enable %{conf_name} in %{node_name} successfully"
  3143. #~ msgstr "成功启用%{node_name}中的%{conf_name}"
  3144. #~ msgid "Enable successfully"
  3145. #~ msgstr "启用成功"
  3146. #~ msgid "Please upgrade the remote Nginx UI to the latest version"
  3147. #~ msgstr "请将远程 Nginx UI 升级到最新版本"
  3148. #~ msgid ""
  3149. #~ "Rename %{orig_path} to %{new_path} on %{env_name} failed, response: %"
  3150. #~ "{resp}"
  3151. #~ msgstr ""
  3152. #~ "将 %{env_name} 上的 %{orig_path} 重命名为 %{new_path} 失败,响应:%{resp}"
  3153. #~ msgid ""
  3154. #~ "Rename Site %{site} to %{new_site} on %{node} error, response: %{resp}"
  3155. #~ msgstr ""
  3156. #~ "在 %{node} 上将站点 %{site} 重命名为 %{new_site} 失败,响应:%{resp}"
  3157. #~ msgid "Save site %{site} to %{node} error, response: %{resp}"
  3158. #~ msgstr "保存站点 %{site} 到 %{node} 错误,响应: %{resp}"
  3159. #~ msgid ""
  3160. #~ "Sync Certificate %{cert_name} to %{env_name} failed, please upgrade the "
  3161. #~ "remote Nginx UI to the latest version"
  3162. #~ msgstr ""
  3163. #~ "同步证书 %{cert_name} 到 %{env_name} 失败,请先将远程的 Nginx UI 升级到最"
  3164. #~ "新版本"
  3165. #~ msgid ""
  3166. #~ "Sync Certificate %{cert_name} to %{env_name} failed, response: %{resp}"
  3167. #~ msgstr "同步证书 %{cert_name} 到 %{env_name} 失败,响应:%{resp}"
  3168. #~ msgid "Sync config %{config_name} to %{env_name} failed, response: %{resp}"
  3169. #~ msgstr "同步配置 %{config_name} 到 %{env_name} 失败,响应:%{resp}"
  3170. #~ msgid "Target"
  3171. #~ msgstr "目标"
  3172. #~ msgid ""
  3173. #~ "If you lose your mobile phone, you can use the recovery code to reset "
  3174. #~ "your 2FA."
  3175. #~ msgstr "如果丢失了手机,可以使用恢复代码重置二步验证。"
  3176. #~ msgid "Recovery Code:"
  3177. #~ msgstr "恢复代码:"
  3178. #~ msgid ""
  3179. #~ "The recovery code is only displayed once, please save it in a safe place."
  3180. #~ msgstr "恢复密码只会显示一次,请妥善保存。"
  3181. #~ msgid "Can't scan? Use text key binding"
  3182. #~ msgstr "无法扫描?使用文本密钥绑定"
  3183. #~ msgid "File"
  3184. #~ msgstr "文件"
  3185. #~ msgid "Server error"
  3186. #~ msgstr "服务器错误"
  3187. #~ msgid "Incorrect username or password"
  3188. #~ msgstr "用户名或密码错误"
  3189. #~ msgid "Too many login failed attempts, please try again later"
  3190. #~ msgstr "登录失败次数过多,请稍后再试"
  3191. #~ msgid ""
  3192. #~ "Rename %{orig_path} to %{new_path} on %{env_name} failed, please upgrade "
  3193. #~ "the remote Nginx UI to the latest version"
  3194. #~ msgstr ""
  3195. #~ "将 %{env_name} 上的 %{orig_path} 重命名为 %{new_path} 失败,请将远程 "
  3196. #~ "Nginx UI 升级到最新版本"
  3197. #~ msgid "Server Name"
  3198. #~ msgstr "服务器名称"
  3199. #~ msgid "Enable 2FA"
  3200. #~ msgstr "启用二步验证"
  3201. #~ msgid "Enter"
  3202. #~ msgstr "进入"
  3203. #, fuzzy
  3204. #~ msgid "Rename "
  3205. #~ msgstr "重命名"
  3206. #~ msgid "Certificate is valid"
  3207. #~ msgstr "此证书有效"
  3208. #~ msgid "Intermediate Certification Authorities: %{issuer}"
  3209. #~ msgstr "中级证书颁发机构: %{issuer}"
  3210. #~ msgid "Subject Name: %{subject}"
  3211. #~ msgstr "主体名称: %{subject}"
  3212. #~ msgid "The url is not valid"
  3213. #~ msgstr "URL 无效"
  3214. #~ msgid "Enable this option will significantly increase the token usage."
  3215. #~ msgstr "启用该选项将显著增加 token 的使用量。"
  3216. #~ msgid "Send Include Context"
  3217. #~ msgstr "发送 Include 内容"
  3218. #~ msgid "ChatGPT Model"
  3219. #~ msgstr "ChatGPT 模型"
  3220. #~ msgid "GPT-3.5-Turbo"
  3221. #~ msgstr "GPT-3.5-Turbo"
  3222. #~ msgid "GPT-4"
  3223. #~ msgstr "GPT-4"
  3224. #~ msgid "GPT-4-32K"
  3225. #~ msgstr "GPT-4-32K"
  3226. #~ msgid "GPT-4-Turbo"
  3227. #~ msgstr "GPT-4-Turbo"
  3228. #~ msgid "Save Successfully"
  3229. #~ msgstr "保存成功"
  3230. #~ msgid "Table"
  3231. #~ msgstr "列表"
  3232. #~ msgid "The path exists, but the file is not a public key"
  3233. #~ msgstr "路径存在,但文件不是公钥"
  3234. #~ msgid "Rename Upstream"
  3235. #~ msgstr "重新命名 Upstream"
  3236. #~ msgid "Auto Cert Log"
  3237. #~ msgstr "证书自动续期日志"
  3238. #~ msgid "Config Name"
  3239. #~ msgstr "配置文件名称"
  3240. #~ msgid "Auto cert is enabled, please do not modify this certification."
  3241. #~ msgstr "自动更新已启用,请勿修改此证书配置。"
  3242. #~ msgid ""
  3243. #~ "Please fill in the API authentication credentials provided by your DNS "
  3244. #~ "provider.\n"
  3245. #~ "We will add one or more TXT records to the DNS records of your domain for "
  3246. #~ "ownership verification.\n"
  3247. #~ "Once the verification is complete, the records will be removed.\n"
  3248. #~ "Please note that the unit of time configurations below are all in seconds."
  3249. #~ msgstr ""
  3250. #~ "请填写您的DNS提供商提供的API认证凭证。我们将在你的域名的DNS记录中添加一个"
  3251. #~ "或多个TXT记录,以进行所有权验证。一旦验证完成,这些记录将被删除。请注意,"
  3252. #~ "下面的时间配置都是以秒为单位。"
  3253. #~ msgid "Delete ID: %{id}"
  3254. #~ msgstr "删除 ID: %{id}"
  3255. #~ msgid "Dir"
  3256. #~ msgstr "目录"
  3257. #~ msgid "Auto"
  3258. #~ msgstr "自动"
  3259. #~ msgid "Dark"
  3260. #~ msgstr "深色"
  3261. #~ msgid "Light"
  3262. #~ msgstr "浅色"
  3263. #~ msgid "Theme"
  3264. #~ msgstr "主题"
  3265. #~ msgid "OperationSync"
  3266. #~ msgstr "操作同步"
  3267. #~ msgid ""
  3268. #~ "Such as Reload and Configs, regex can configure as `/api/nginx/reload|/"
  3269. #~ "api/nginx/test|/api/config/.+`, please see system api"
  3270. #~ msgstr ""
  3271. #~ "`重载`和`配置管理`的操作同步正则可以配置为`/api/nginx/reload|/api/nginx/"
  3272. #~ "test|/api/config/.+`,详细请查看系统API"
  3273. #~ msgid "SyncApiRegex"
  3274. #~ msgstr "Api正则表达式"
  3275. #~ msgid "Whether config api regex that will redo on this environment"
  3276. #~ msgstr "是否配置API正则操作同步到该环境"
  3277. #~ msgid "The Operation of Sites, Configs and Certification will redo on this"
  3278. #~ msgstr "网站、配置和证书的操作同步到该环境"
  3279. #~ msgid "Git"
  3280. #~ msgstr "Git"
  3281. #~ msgid "Do you want to enable auto-cert renewal?"
  3282. #~ msgstr "你想启用自动更新证书吗?"
  3283. #~ msgid ""
  3284. #~ "We need to add the HTTPChallenge configuration to this file and reload "
  3285. #~ "the Nginx. Are you sure you want to continue?"
  3286. #~ msgstr ""
  3287. #~ "我们需要将 HTTPChallenge 的配置添加到这个文件中,并重新加载Nginx。你确定要"
  3288. #~ "继续吗?"
  3289. #~ msgid "Chat with ChatGPT"
  3290. #~ msgstr "与ChatGPT聊天"
  3291. #~ msgid "Inspect Configurations"
  3292. #~ msgstr "检查配置"
  3293. #~ msgid "server_name parameters more than one"
  3294. #~ msgstr "server_name 指令包含多个参数"
  3295. #~ msgid "All logs"
  3296. #~ msgstr "所有日志"
  3297. #~ msgid "Fetch"
  3298. #~ msgstr "日志范围"
  3299. #~ msgid "New logs"
  3300. #~ msgstr "新增日志"
  3301. #~ msgid "404 Not Found"
  3302. #~ msgstr "404 未找到页面"
  3303. #~ msgid "Destroy"
  3304. #~ msgstr "删除"
  3305. #~ msgid "Detected version update, this page will refresh."
  3306. #~ msgstr "检测到版本更新,页面将会刷新。"
  3307. #~ msgid "No, I'm rethink"
  3308. #~ msgstr "再想想"
  3309. #~ msgid "Yes, I'm sure"
  3310. #~ msgstr "是的"
  3311. #~ msgid "Certificate Path (ssl_certificate)"
  3312. #~ msgstr "TLS 证书路径 (ssl_certificate)"
  3313. #~ msgid "HTTPS Listen Port"
  3314. #~ msgstr "HTTPS 监听端口"
  3315. #~ msgid "Private Key Path (ssl_certificate_key)"
  3316. #~ msgstr "私钥路径 (ssl_certificate_key)"
  3317. #~ msgid "Root Directory (root)"
  3318. #~ msgstr "网站根目录 (root)"
  3319. #~ msgid ""
  3320. #~ "The certificate for the domain will be checked every hour, and will be "
  3321. #~ "renewed if it has been more than 1 month since it was last issued.<br/>If "
  3322. #~ "you do not have a certificate before, please click \"Getting Certificate "
  3323. #~ "from Let's Encrypt\" first."
  3324. #~ msgstr ""
  3325. #~ "系统将会每小时检测一次该域名证书,若距离上次签发已超过1个月,则将自动续"
  3326. #~ "签。<br/>如果您之前没有证书,请先点击 \"从 Let's Encrypt 获取证书\"。"
  3327. #~ msgid "Do you want to change the template to support the TLS?"
  3328. #~ msgstr "你想要改变模板以支持 TLS 吗?"
  3329. #~ msgid "Edit Configuration File"
  3330. #~ msgstr "编辑配置文件"
  3331. #~ msgid "Getting Certificate from Let's Encrypt"
  3332. #~ msgstr "从 Let's Encrypt 获取证书"
  3333. #~ msgid "Skip"
  3334. #~ msgstr "跳过"
  3335. #~ msgid ""
  3336. #~ "The following values will only take effect if you have the corresponding "
  3337. #~ "fields in your configuration file. The configuration filename cannot be "
  3338. #~ "changed after it has been created."
  3339. #~ msgstr ""
  3340. #~ "只有在您的配置文件中有相应字段时,下列的配置才能生效。配置文件名称创建后不"
  3341. #~ "可修改。"
  3342. #~ msgid "This operation will lose the custom configuration."
  3343. #~ msgstr "该操作将会丢失自定义配置。"
  3344. #~ msgid ""
  3345. #~ "Add site here first, then you can configure TLS on the domain edit page."
  3346. #~ msgstr "在这里添加站点,完成后可进入编辑页面配置 TLS。"
  3347. #~ msgid "Server Status"
  3348. #~ msgstr "服务器状态"
  3349. #~ msgid "Used: %{u}, Cached: %{c}, Free: %{f}, Physical Memory: %{p}"
  3350. #~ msgstr "已使用: %{u}, 缓存: %{c}, 空闲: %{f}, 物理内存: %{p}"
  3351. #~ msgid "Used: %{used} / Total: %{total}"
  3352. #~ msgstr "已使用: %{used} / 总共: %{total}"
  3353. #~ msgid "CPU"
  3354. #~ msgstr "CPU"