messages.pot 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719
  1. msgid ""
  2. msgstr ""
  3. "Content-Type: text/plain; charset=UTF-8\n"
  4. #: src/language/generate.ts:13
  5. msgid "[Nginx UI] ACME User: %{name}, Email: %{email}, CA Dir: %{caDir}"
  6. msgstr ""
  7. #: src/language/generate.ts:51
  8. msgid "[Nginx UI] Backing up current certificate for later revocation"
  9. msgstr ""
  10. #: src/language/generate.ts:18
  11. msgid "[Nginx UI] Certificate renewed successfully"
  12. msgstr ""
  13. #: src/language/generate.ts:45
  14. msgid "[Nginx UI] Certificate successfully revoked"
  15. msgstr ""
  16. #: src/language/generate.ts:28
  17. msgid "[Nginx UI] Certificate was used for server, reloading server TLS certificate"
  18. msgstr ""
  19. #: src/language/generate.ts:22
  20. msgid "[Nginx UI] Creating client facilitates communication with the CA server"
  21. msgstr ""
  22. #: src/language/generate.ts:50
  23. msgid "[Nginx UI] Environment variables cleaned"
  24. msgstr ""
  25. #: src/language/generate.ts:17
  26. msgid "[Nginx UI] Finished"
  27. msgstr ""
  28. #: src/language/generate.ts:49
  29. msgid "[Nginx UI] Issued certificate successfully"
  30. msgstr ""
  31. #: src/language/generate.ts:14
  32. msgid "[Nginx UI] Obtaining certificate"
  33. msgstr ""
  34. #: src/language/generate.ts:37
  35. msgid "[Nginx UI] Preparing for certificate revocation"
  36. msgstr ""
  37. #: src/language/generate.ts:12
  38. msgid "[Nginx UI] Preparing lego configurations"
  39. msgstr ""
  40. #: src/language/generate.ts:42
  41. msgid "[Nginx UI] Reloading nginx"
  42. msgstr ""
  43. #: src/language/generate.ts:43
  44. msgid "[Nginx UI] Revocation completed"
  45. msgstr ""
  46. #: src/language/generate.ts:44
  47. msgid "[Nginx UI] Revoking certificate"
  48. msgstr ""
  49. #: src/language/generate.ts:35
  50. msgid "[Nginx UI] Revoking old certificate"
  51. msgstr ""
  52. #: src/language/generate.ts:31
  53. msgid "[Nginx UI] Setting DNS01 challenge provider"
  54. msgstr ""
  55. #: src/language/generate.ts:9
  56. msgid "[Nginx UI] Setting environment variables"
  57. msgstr ""
  58. #: src/language/generate.ts:41
  59. msgid "[Nginx UI] Setting HTTP01 challenge provider"
  60. msgstr ""
  61. #: src/language/generate.ts:4
  62. msgid "[Nginx UI] Writing certificate private key to disk"
  63. msgstr ""
  64. #: src/language/generate.ts:36
  65. msgid "[Nginx UI] Writing certificate to disk"
  66. msgstr ""
  67. #: src/views/user/userColumns.tsx:32
  68. msgid "2FA"
  69. msgstr ""
  70. #: src/views/preference/tabs/AuthSettings.vue:70
  71. msgid "2FA Settings"
  72. msgstr ""
  73. #: src/routes/modules/system.ts:45
  74. msgid "About"
  75. msgstr ""
  76. #: src/views/nginx_log/NginxLogList.vue:23
  77. msgid "Access Log"
  78. msgstr ""
  79. #: src/constants/errors/self_check.ts:21
  80. msgid "Access log path not exist"
  81. msgstr ""
  82. #: src/components/NgxConfigEditor/LogEntry.vue:90
  83. #: src/routes/modules/nginx_log.ts:17
  84. msgid "Access Logs"
  85. msgstr ""
  86. #: src/routes/modules/certificates.ts:20
  87. #: src/views/certificate/ACMEUser.vue:113
  88. #: src/views/certificate/components/ACMEUserSelector.vue:85
  89. msgid "ACME User"
  90. msgstr ""
  91. #: src/views/certificate/ACMEUser.vue:95
  92. #: src/views/certificate/CertificateList/certColumns.tsx:94
  93. #: src/views/certificate/DNSCredential.vue:33
  94. #: src/views/config/configColumns.tsx:44
  95. #: src/views/environments/group/columns.ts:43
  96. #: src/views/environments/list/envColumns.tsx:97
  97. #: src/views/nginx_log/NginxLogList.vue:46
  98. #: src/views/notification/notificationColumns.tsx:66
  99. #: src/views/preference/components/ExternalNotify/columns.tsx:59
  100. #: src/views/preference/tabs/AuthSettings.vue:30
  101. #: src/views/site/site_list/columns.tsx:120
  102. #: src/views/stream/StreamList.vue:74
  103. #: src/views/user/userColumns.tsx:60
  104. msgid "Action"
  105. msgstr ""
  106. #: src/composables/usePerformanceMetrics.ts:84
  107. #: src/views/dashboard/components/PerformanceTablesCard.vue:44
  108. msgid "Active connections"
  109. msgstr ""
  110. #: src/views/dashboard/components/ProcessDistributionCard.vue:48
  111. msgid "Actual worker to configured ratio"
  112. msgstr ""
  113. #: src/components/NgxConfigEditor/NgxServer.vue:112
  114. #: src/components/NgxConfigEditor/NgxUpstream.vue:155
  115. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
  116. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:186
  117. #: src/views/preference/tabs/CertSettings.vue:45
  118. #: src/views/site/site_edit/components/ConfigTemplate/ConfigTemplate.vue:94
  119. #: src/views/stream/StreamList.vue:180
  120. msgid "Add"
  121. msgstr ""
  122. #: src/views/preference/components/AuthSettings/AddPasskey.vue:45
  123. #: src/views/preference/components/AuthSettings/AddPasskey.vue:49
  124. msgid "Add a passkey"
  125. msgstr ""
  126. #: src/routes/modules/config.ts:20
  127. #: src/views/config/ConfigEditor.vue:171
  128. #: src/views/config/ConfigEditor.vue:244
  129. msgid "Add Configuration"
  130. msgstr ""
  131. #: src/components/NgxConfigEditor/directive/DirectiveAdd.vue:102
  132. msgid "Add Directive Below"
  133. msgstr ""
  134. #: src/components/NgxConfigEditor/LocationEditor.vue:131
  135. #: src/components/NgxConfigEditor/LocationEditor.vue:158
  136. msgid "Add Location"
  137. msgstr ""
  138. #: src/routes/modules/sites.ts:26
  139. #: src/views/site/site_add/SiteAdd.vue:73
  140. msgid "Add Site"
  141. msgstr ""
  142. #: src/views/stream/StreamList.vue:247
  143. msgid "Add Stream"
  144. msgstr ""
  145. #: src/views/stream/StreamList.vue:160
  146. msgid "Added successfully"
  147. msgstr ""
  148. #: src/views/certificate/components/DNSChallenge.vue:110
  149. msgid "Additional"
  150. msgstr ""
  151. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:94
  152. #: src/views/stream/components/StreamEditor.vue:55
  153. msgid "Advance Mode"
  154. msgstr ""
  155. #: src/views/preference/components/AuthSettings/AddPasskey.vue:99
  156. msgid "Afterwards, refresh this page and click add passkey again."
  157. msgstr ""
  158. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:115
  159. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:419
  160. msgid "All"
  161. msgstr ""
  162. #: src/components/Notification/notifications.ts:165
  163. #: src/language/constants.ts:58
  164. msgid "All Recovery Codes Have Been Used"
  165. msgstr ""
  166. #: src/views/preference/tabs/OpenAISettings.vue:32
  167. msgid "API Base Url"
  168. msgstr ""
  169. #: src/views/certificate/components/DNSChallenge.vue:83
  170. msgid "API Document"
  171. msgstr ""
  172. #: src/views/preference/tabs/OpenAISettings.vue:46
  173. msgid "API Proxy"
  174. msgstr ""
  175. #: src/views/preference/tabs/OpenAISettings.vue:58
  176. msgid "API Token"
  177. msgstr ""
  178. #: src/views/preference/tabs/OpenAISettings.vue:67
  179. msgid "API Type"
  180. msgstr ""
  181. #: src/views/preference/Preference.vue:52
  182. msgid "App"
  183. msgstr ""
  184. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:103
  185. msgid "Apply"
  186. msgstr ""
  187. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:67
  188. msgid "Apply bulk action successfully"
  189. msgstr ""
  190. #: src/views/system/Upgrade.vue:195
  191. msgid "Arch"
  192. msgstr ""
  193. #: src/views/preference/tabs/AuthSettings.vue:162
  194. msgid "Are you sure to delete this banned IP immediately?"
  195. msgstr ""
  196. #: src/views/preference/components/AuthSettings/Passkey.vue:113
  197. msgid "Are you sure to delete this passkey immediately?"
  198. msgstr ""
  199. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:154
  200. msgid "Are you sure to generate new recovery codes?"
  201. msgstr ""
  202. #: src/views/preference/components/AuthSettings/TOTP.vue:85
  203. msgid "Are you sure to reset 2FA?"
  204. msgstr ""
  205. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:96
  206. msgid "Are you sure you want to apply to all selected?"
  207. msgstr ""
  208. #: src/components/Notification/Notification.vue:112
  209. #: src/views/notification/Notification.vue:39
  210. msgid "Are you sure you want to clear all notifications?"
  211. msgstr ""
  212. #: src/components/ChatGPT/ChatGPT.vue:376
  213. msgid "Are you sure you want to clear the record of chat?"
  214. msgstr ""
  215. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:540
  216. msgid "Are you sure you want to delete this item permanently?"
  217. msgstr ""
  218. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:512
  219. msgid "Are you sure you want to delete this item?"
  220. msgstr ""
  221. #: src/views/site/site_list/SiteList.vue:110
  222. #: src/views/stream/StreamList.vue:231
  223. msgid "Are you sure you want to delete?"
  224. msgstr ""
  225. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:526
  226. msgid "Are you sure you want to recover this item?"
  227. msgstr ""
  228. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:129
  229. msgid "Are you sure you want to reload Nginx on the following sync nodes?"
  230. msgstr ""
  231. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:97
  232. msgid "Are you sure you want to remove this directive?"
  233. msgstr ""
  234. #: src/views/preference/tabs/CertSettings.vue:71
  235. msgid "Are you sure you want to remove this item?"
  236. msgstr ""
  237. #: src/components/NgxConfigEditor/LocationEditor.vue:87
  238. msgid "Are you sure you want to remove this location?"
  239. msgstr ""
  240. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:141
  241. msgid "Are you sure you want to restart Nginx on the following sync nodes?"
  242. msgstr ""
  243. #: src/components/ChatGPT/ChatGPT.vue:318
  244. msgid "Ask ChatGPT for Help"
  245. msgstr ""
  246. #: src/components/ChatGPT/ChatGPT.vue:333
  247. msgid "Assistant"
  248. msgstr ""
  249. #: src/components/SelfCheck/SelfCheck.vue:30
  250. msgid "Attempt to fix"
  251. msgstr ""
  252. #: src/views/preference/tabs/AuthSettings.vue:21
  253. msgid "Attempts"
  254. msgstr ""
  255. #: src/views/preference/Preference.vue:82
  256. msgid "Auth"
  257. msgstr ""
  258. #: src/components/TwoFA/Authorization.vue:109
  259. msgid "Authenticate with a passkey"
  260. msgstr ""
  261. #: src/views/preference/tabs/AuthSettings.vue:88
  262. msgid "Authentication Settings"
  263. msgstr ""
  264. #: src/views/site/site_edit/components/ConfigTemplate/ConfigTemplate.vue:71
  265. #: src/views/site/site_edit/components/ConfigTemplate/ConfigTemplate.vue:97
  266. msgid "Author"
  267. msgstr ""
  268. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:31
  269. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:43
  270. msgid "Auto"
  271. msgstr ""
  272. #: src/views/dashboard/components/PerformanceTablesCard.vue:201
  273. msgid "auto = CPU cores"
  274. msgstr ""
  275. #: src/views/nginx_log/NginxLog.vue:150
  276. msgid "Auto Refresh"
  277. msgstr ""
  278. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:78
  279. msgid "Auto-renewal disabled for %{name}"
  280. msgstr ""
  281. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:71
  282. msgid "Auto-renewal enabled for %{name}"
  283. msgstr ""
  284. #: src/views/certificate/components/RenewCert.vue:49
  285. #: src/views/site/site_edit/components/Cert/IssueCert.vue:84
  286. msgid "AutoCert is running, please wait..."
  287. msgstr ""
  288. #: src/components/ProcessingStatus/ProcessingStatus.vue:39
  289. msgid "AutoCert is running..."
  290. msgstr ""
  291. #: src/components/SystemRestore/SystemRestoreContent.vue:332
  292. msgid "Automatic Restart"
  293. msgstr ""
  294. #: src/views/certificate/CertificateEditor.vue:259
  295. #: src/views/config/ConfigEditor.vue:266
  296. #: src/views/config/ConfigList.vue:112
  297. #: src/views/config/ConfigList.vue:195
  298. #: src/views/nginx_log/NginxLog.vue:174
  299. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:150
  300. #: src/views/stream/components/StreamEditor.vue:106
  301. msgid "Back"
  302. msgstr ""
  303. #: src/views/other/Error.vue:22
  304. msgid "Back Home"
  305. msgstr ""
  306. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:206
  307. msgid "Back to list"
  308. msgstr ""
  309. #: src/routes/modules/system.ts:26
  310. msgid "Backup"
  311. msgstr ""
  312. #: src/components/SystemRestore/SystemRestoreContent.vue:155
  313. msgid "Backup file integrity check failed, it may have been tampered with"
  314. msgstr ""
  315. #: src/constants/errors/backup.ts:41
  316. msgid "Backup file not found: {0}"
  317. msgstr ""
  318. #: src/views/system/Backup/BackupCreator.vue:42
  319. msgid "Backup has been downloaded successfully"
  320. msgstr ""
  321. #: src/views/preference/tabs/AuthSettings.vue:129
  322. msgid "Ban Threshold Minutes"
  323. msgstr ""
  324. #: src/views/preference/tabs/AuthSettings.vue:150
  325. msgid "Banned IPs"
  326. msgstr ""
  327. #: src/views/preference/tabs/AuthSettings.vue:24
  328. msgid "Banned Until"
  329. msgstr ""
  330. #: src/views/preference/components/ExternalNotify/bark.ts:5
  331. msgid "Bark"
  332. msgstr ""
  333. #: src/views/site/site_add/SiteAdd.vue:79
  334. msgid "Base information"
  335. msgstr ""
  336. #: src/views/config/ConfigEditor.vue:294
  337. #: src/views/site/site_edit/components/RightPanel/RightPanel.vue:30
  338. #: src/views/stream/components/RightPanel/RightPanel.vue:19
  339. msgid "Basic"
  340. msgstr ""
  341. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:97
  342. #: src/views/stream/components/StreamEditor.vue:58
  343. msgid "Basic Mode"
  344. msgstr ""
  345. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:119
  346. msgid "Basic Settings"
  347. msgstr ""
  348. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:83
  349. msgid "Batch Actions"
  350. msgstr ""
  351. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:62
  352. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:448
  353. msgid "Batch Modify"
  354. msgstr ""
  355. #: src/views/environments/list/BatchUpgrader.vue:152
  356. msgid "Batch Upgrade"
  357. msgstr ""
  358. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:70
  359. msgid "Belows are selected items that you want to batch modify"
  360. msgstr ""
  361. #: src/constants/errors/nginx.ts:3
  362. msgid "Block is nil"
  363. msgstr ""
  364. #: src/views/system/About.vue:55
  365. msgid "Build with"
  366. msgstr ""
  367. #: src/views/certificate/ACMEUser.vue:37
  368. msgid "CA Dir"
  369. msgstr ""
  370. #: src/views/dashboard/components/ParamsOptimization.vue:124
  371. msgid "Cache"
  372. msgstr ""
  373. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:178
  374. msgid "Cache items not accessed within this time will be removed"
  375. msgstr ""
  376. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:350
  377. msgid "Cache loader processing time threshold"
  378. msgstr ""
  379. #: src/composables/usePerformanceMetrics.ts:139
  380. #: src/views/dashboard/components/PerformanceTablesCard.vue:95
  381. msgid "Cache manager processes"
  382. msgstr ""
  383. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:288
  384. msgid "Cache manager processing time threshold"
  385. msgstr ""
  386. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:246
  387. msgid "Cache Manager Settings"
  388. msgstr ""
  389. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:124
  390. msgid "Cache Path"
  391. msgstr ""
  392. #: src/composables/usePerformanceMetrics.ts:57
  393. #: src/views/dashboard/components/ProcessDistributionCard.vue:14
  394. msgid "Cache Processes"
  395. msgstr ""
  396. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:137
  397. msgid "Cache subdirectory levels structure, e.g. 1:2"
  398. msgstr ""
  399. #: src/views/preference/tabs/CertSettings.vue:19
  400. msgid "CADir"
  401. msgstr ""
  402. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:43
  403. #: src/views/dashboard/components/PerformanceTablesCard.vue:191
  404. msgid "Calculated based on worker_processes * worker_connections. Actual performance depends on hardware, configuration, and workload"
  405. msgstr ""
  406. #: src/components/ChatGPT/ChatGPT.vue:356
  407. #: src/components/NgxConfigEditor/NgxServer.vue:54
  408. #: src/components/NgxConfigEditor/NgxUpstream.vue:37
  409. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:246
  410. #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:187
  411. #: src/components/StdDesign/StdDetail/StdDetail.vue:101
  412. #: src/views/preference/components/AuthSettings/Passkey.vue:141
  413. #: src/views/site/components/SiteStatusSegmented.vue:97
  414. #: src/views/site/site_edit/components/Cert/IssueCert.vue:40
  415. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:143
  416. #: src/views/site/site_edit/components/EnableTLS/EnableTLS.vue:21
  417. #: src/views/stream/components/RightPanel/Basic.vue:47
  418. msgid "Cancel"
  419. msgstr ""
  420. #: src/constants/errors/user.ts:11
  421. msgid "Cannot change initial user password in demo mode"
  422. msgstr ""
  423. #: src/components/ConfigHistory/DiffViewer.vue:67
  424. #: src/components/ConfigHistory/DiffViewer.vue:84
  425. msgid "Cannot compare: Missing content"
  426. msgstr ""
  427. #: src/views/dashboard/NginxDashBoard.vue:129
  428. msgid "Cannot get performance data in this state"
  429. msgstr ""
  430. #: src/constants/errors/user.ts:10
  431. msgid "Cannot remove initial user"
  432. msgstr ""
  433. #: src/views/preference/Preference.vue:88
  434. msgid "Cert"
  435. msgstr ""
  436. #: src/constants/errors/cert.ts:3
  437. msgid "Cert path is not under the nginx conf dir"
  438. msgstr ""
  439. #: src/components/Notification/notifications.ts:26
  440. msgid "Certificate %{name} has expired"
  441. msgstr ""
  442. #: src/components/Notification/notifications.ts:30
  443. #: src/components/Notification/notifications.ts:34
  444. #: src/components/Notification/notifications.ts:38
  445. msgid "Certificate %{name} will expire in %{days} days"
  446. msgstr ""
  447. #: src/components/Notification/notifications.ts:42
  448. msgid "Certificate %{name} will expire in 1 day"
  449. msgstr ""
  450. #: src/constants/errors/cert.ts:4
  451. msgid "Certificate decode error"
  452. msgstr ""
  453. #: src/components/Notification/notifications.ts:29
  454. msgid "Certificate Expiration Notice"
  455. msgstr ""
  456. #: src/components/Notification/notifications.ts:25
  457. msgid "Certificate Expired"
  458. msgstr ""
  459. #: src/components/Notification/notifications.ts:33
  460. #: src/components/Notification/notifications.ts:37
  461. #: src/components/Notification/notifications.ts:41
  462. msgid "Certificate Expiring Soon"
  463. msgstr ""
  464. #: src/language/generate.ts:10
  465. msgid "Certificate not found: %{error}"
  466. msgstr ""
  467. #: src/constants/errors/cert.ts:5
  468. msgid "Certificate parse error"
  469. msgstr ""
  470. #: src/constants/errors/cert.ts:8
  471. msgid "Certificate path is empty"
  472. msgstr ""
  473. #: src/views/certificate/components/RemoveCert.vue:41
  474. #: src/views/certificate/components/RemoveCert.vue:61
  475. msgid "Certificate removed successfully"
  476. msgstr ""
  477. #: src/views/preference/tabs/CertSettings.vue:27
  478. msgid "Certificate Renewal Interval"
  479. msgstr ""
  480. #: src/language/constants.ts:21
  481. msgid "Certificate renewed successfully"
  482. msgstr ""
  483. #: src/language/generate.ts:11
  484. msgid "Certificate revoked successfully"
  485. msgstr ""
  486. #: src/views/certificate/CertificateEditor.vue:128
  487. #: src/views/site/site_edit/components/Cert/Cert.vue:58
  488. msgid "Certificate Status"
  489. msgid_plural "Certificates Status"
  490. msgstr[0] ""
  491. msgstr[1] ""
  492. #: src/routes/modules/certificates.ts:11
  493. #: src/views/certificate/CertificateList/Certificate.vue:19
  494. msgid "Certificates"
  495. msgstr ""
  496. #: src/routes/modules/certificates.ts:28
  497. msgid "Certificates List"
  498. msgstr ""
  499. #: src/components/AutoCertForm/AutoCertForm.vue:65
  500. msgid "Challenge Method"
  501. msgstr ""
  502. #: src/views/site/site_edit/components/Cert/ChangeCert.vue:49
  503. #: src/views/site/site_edit/components/Cert/ChangeCert.vue:53
  504. msgid "Change Certificate"
  505. msgstr ""
  506. #: src/views/site/site_edit/components/Cert/Cert.vue:77
  507. msgid "Changed Certificate"
  508. msgid_plural "Changed Certificates"
  509. msgstr[0] ""
  510. msgstr[1] ""
  511. #: src/views/config/ConfigEditor.vue:322
  512. msgid "Changed Path"
  513. msgstr ""
  514. #: src/views/environments/list/BatchUpgrader.vue:159
  515. #: src/views/system/Upgrade.vue:207
  516. msgid "Channel"
  517. msgstr ""
  518. #: src/views/site/site_edit/components/RightPanel/RightPanel.vue:40
  519. #: src/views/stream/components/RightPanel/RightPanel.vue:22
  520. msgid "Chat"
  521. msgstr ""
  522. #: src/components/SelfCheck/SelfCheckHeaderBanner.vue:40
  523. #: src/components/SelfCheck/SelfCheckHeaderBanner.vue:64
  524. msgid "Check"
  525. msgstr ""
  526. #: src/views/system/Upgrade.vue:204
  527. msgid "Check again"
  528. msgstr ""
  529. #: src/language/generate.ts:26
  530. msgid "Check if /var/run/docker.sock exists. If you are using Nginx UI Official Docker Image, please make sure the docker socket is mounted like this: `-v /var/run/docker.sock:/var/run/docker.sock`. Nginx UI official image uses /var/run/docker.sock to communicate with the host Docker Engine via Docker Client API. This feature is used to control Nginx in another container and perform container replacement rather than binary replacement during OTA upgrades of Nginx UI to ensure container dependencies are also upgraded. If you don't need this feature, please add the environment variable NGINX_UI_IGNORE_DOCKER_SOCKET=true to the container."
  531. msgstr ""
  532. #: src/components/SelfCheck/tasks/frontend/https-check.ts:14
  533. msgid "Check if HTTPS is enabled. Using HTTP outside localhost is insecure and prevents using Passkeys and clipboard features"
  534. msgstr ""
  535. #: src/language/generate.ts:6
  536. msgid "Check if the nginx access log path exists. By default, this path is obtained from 'nginx -V'. If it cannot be obtained or the obtained path does not point to a valid, existing file, an error will be reported. In this case, you need to modify the configuration file to specify the access log path.Refer to the docs for more details: https://nginxui.com/zh_CN/guide/config-nginx.html#accesslogpath"
  537. msgstr ""
  538. #: src/language/generate.ts:24
  539. msgid "Check if the nginx configuration directory exists"
  540. msgstr ""
  541. #: src/language/generate.ts:15
  542. msgid "Check if the nginx configuration entry file exists"
  543. msgstr ""
  544. #: src/language/generate.ts:33
  545. msgid "Check if the nginx error log path exists. By default, this path is obtained from 'nginx -V'. If it cannot be obtained or the obtained path does not point to a valid, existing file, an error will be reported. In this case, you need to modify the configuration file to specify the error log path.Refer to the docs for more details: https://nginxui.com/zh_CN/guide/config-nginx.html#errorlogpath"
  546. msgstr ""
  547. #: src/language/generate.ts:29
  548. msgid "Check if the nginx PID path exists. By default, this path is obtained from 'nginx -V'. If it cannot be obtained, an error will be reported. In this case, you need to modify the configuration file to specify the Nginx PID path.Refer to the docs for more details: https://nginxui.com/zh_CN/guide/config-nginx.html#pidpath"
  549. msgstr ""
  550. #: src/language/generate.ts:47
  551. msgid "Check if the nginx.conf includes the conf.d directory"
  552. msgstr ""
  553. #: src/language/generate.ts:19
  554. msgid "Check if the nginx.conf includes the sites-enabled directory"
  555. msgstr ""
  556. #: src/language/generate.ts:21
  557. msgid "Check if the nginx.conf includes the streams-enabled directory"
  558. msgstr ""
  559. #: src/language/generate.ts:46
  560. msgid "Check if the sites-available and sites-enabled directories are under the nginx configuration directory"
  561. msgstr ""
  562. #: src/language/generate.ts:8
  563. msgid "Check if the streams-available and streams-enabled directories are under the nginx configuration directory"
  564. msgstr ""
  565. #: src/constants/errors/crypto.ts:3
  566. msgid "Cipher text is too short"
  567. msgstr ""
  568. #: src/language/constants.ts:13
  569. msgid "Cleaning environment variables"
  570. msgstr ""
  571. #: src/components/ChatGPT/ChatGPT.vue:380
  572. #: src/components/Notification/Notification.vue:117
  573. #: src/views/notification/Notification.vue:44
  574. msgid "Clear"
  575. msgstr ""
  576. #: src/components/Notification/Notification.vue:70
  577. #: src/views/notification/Notification.vue:13
  578. msgid "Cleared successfully"
  579. msgstr ""
  580. #: src/components/SystemRestore/SystemRestoreContent.vue:194
  581. #: src/components/SystemRestore/SystemRestoreContent.vue:271
  582. msgid "Click or drag backup file to this area to upload"
  583. msgstr ""
  584. #: src/views/preference/components/AuthSettings/TOTP.vue:110
  585. msgid "Click to copy"
  586. msgstr ""
  587. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:120
  588. msgid "Client Body Buffer Size"
  589. msgstr ""
  590. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:113
  591. msgid "Client Header Buffer Size"
  592. msgstr ""
  593. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:99
  594. msgid "Client Max Body Size"
  595. msgstr ""
  596. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:121
  597. msgid "Client request body buffer size"
  598. msgstr ""
  599. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:114
  600. msgid "Client request header buffer size"
  601. msgstr ""
  602. #: src/components/ConfigHistory/ConfigHistory.vue:169
  603. msgid "Close"
  604. msgstr ""
  605. #: src/constants/errors/llm.ts:2
  606. msgid "Code completion is not enabled"
  607. msgstr ""
  608. #: src/views/preference/tabs/OpenAISettings.vue:86
  609. msgid "Code Completion Model"
  610. msgstr ""
  611. #: src/views/preference/tabs/LogrotateSettings.vue:23
  612. msgid "Command"
  613. msgstr ""
  614. #: src/constants/errors/docker.ts:6
  615. msgid "Command exited with unexpected exit code: {0}, error: {1}"
  616. msgstr ""
  617. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:115
  618. #: src/components/NgxConfigEditor/LocationEditor.vue:104
  619. #: src/components/NgxConfigEditor/LocationEditor.vue:135
  620. #: src/components/NgxConfigEditor/NgxServer.vue:91
  621. msgid "Comments"
  622. msgstr ""
  623. #: src/components/ConfigHistory/ConfigHistory.vue:127
  624. msgid "Compare"
  625. msgstr ""
  626. #: src/components/ConfigHistory/DiffViewer.vue:388
  627. msgid "Compare Configurations"
  628. msgstr ""
  629. #: src/components/ConfigHistory/ConfigHistory.vue:130
  630. msgid "Compare Selected"
  631. msgstr ""
  632. #: src/components/ConfigHistory/ConfigHistory.vue:129
  633. msgid "Compare with Current"
  634. msgstr ""
  635. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:88
  636. msgid "Compression level, 1 is lowest, 9 is highest"
  637. msgstr ""
  638. #: src/constants/errors/self_check.ts:17
  639. msgid "Config directory not exist"
  640. msgstr ""
  641. #: src/constants/errors/self_check.ts:18
  642. msgid "Config entry file not exist"
  643. msgstr ""
  644. #: src/constants/errors/backup.ts:14
  645. msgid "Config path is empty"
  646. msgstr ""
  647. #: src/views/site/site_edit/components/RightPanel/RightPanel.vue:36
  648. msgid "Config Template"
  649. msgstr ""
  650. #: src/views/config/InspectConfig.vue:27
  651. msgid "Configuration file is test successful"
  652. msgstr ""
  653. #: src/components/ConfigHistory/ConfigHistory.vue:138
  654. msgid "Configuration History"
  655. msgstr ""
  656. #: src/views/dashboard/components/PerformanceTablesCard.vue:168
  657. msgid "Configuration information"
  658. msgstr ""
  659. #: src/views/site/site_add/SiteAdd.vue:85
  660. msgid "Configuration Name"
  661. msgstr ""
  662. #: src/views/config/ConfigList.vue:104
  663. msgid "Configurations"
  664. msgstr ""
  665. #: src/views/site/site_add/SiteAdd.vue:80
  666. msgid "Configure SSL"
  667. msgstr ""
  668. #: src/views/dashboard/Environments.vue:141
  669. msgid "Connected"
  670. msgstr ""
  671. #: src/views/dashboard/NginxDashBoard.vue:82
  672. msgid "Connection error, trying to reconnect..."
  673. msgstr ""
  674. #: src/views/terminal/Terminal.vue:142
  675. msgid "Connection lost, please refresh the page."
  676. msgstr ""
  677. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:61
  678. msgid "Connection timeout period"
  679. msgstr ""
  680. #: src/constants/errors/docker.ts:7
  681. msgid "Container status unknown"
  682. msgstr ""
  683. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:120
  684. #: src/components/NgxConfigEditor/LocationEditor.vue:116
  685. #: src/components/NgxConfigEditor/LocationEditor.vue:144
  686. msgid "Content"
  687. msgstr ""
  688. #: src/components/SensitiveString/SensitiveString.vue:37
  689. #: src/components/StdDesign/StdDataDisplay/StdTableTransformer.tsx:150
  690. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:121
  691. msgid "Copied"
  692. msgstr ""
  693. #: src/views/system/Backup/BackupCreator.vue:128
  694. msgid "Copied!"
  695. msgstr ""
  696. #: src/components/SensitiveString/SensitiveString.vue:37
  697. #: src/views/system/Backup/BackupCreator.vue:128
  698. msgid "Copy"
  699. msgstr ""
  700. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:121
  701. msgid "Copy Codes"
  702. msgstr ""
  703. #: src/views/system/Upgrade.vue:162
  704. msgid "Core Upgrade"
  705. msgstr ""
  706. #: src/views/dashboard/ServerAnalytic.vue:301
  707. msgid "CPU Status"
  708. msgstr ""
  709. #: src/views/dashboard/components/ResourceUsageCard.vue:27
  710. msgid "CPU Usage"
  711. msgstr ""
  712. #: src/views/dashboard/components/ResourceUsageCard.vue:38
  713. msgid "CPU usage is relatively high, consider optimizing Nginx configuration"
  714. msgstr ""
  715. #: src/views/dashboard/ServerAnalytic.vue:195
  716. msgid "CPU:"
  717. msgstr ""
  718. #: src/components/NgxConfigEditor/NgxUpstream.vue:166
  719. msgid "Create"
  720. msgstr ""
  721. #: src/views/site/site_add/SiteAdd.vue:139
  722. msgid "Create Another"
  723. msgstr ""
  724. #: src/views/system/Backup/BackupCreator.vue:86
  725. msgid "Create Backup"
  726. msgstr ""
  727. #: src/views/config/ConfigList.vue:122
  728. msgid "Create File"
  729. msgstr ""
  730. #: src/views/config/components/Mkdir.vue:47
  731. #: src/views/config/ConfigList.vue:129
  732. msgid "Create Folder"
  733. msgstr ""
  734. #: src/views/system/Backup/BackupCreator.vue:75
  735. msgid "Create system backups including Nginx configuration and Nginx UI settings. Backup files will be automatically downloaded to your computer."
  736. msgstr ""
  737. #: src/views/environments/group/columns.ts:31
  738. #: src/views/notification/notificationColumns.tsx:45
  739. #: src/views/preference/components/AuthSettings/Passkey.vue:95
  740. #: src/views/preference/components/ExternalNotify/columns.tsx:54
  741. #: src/views/user/userColumns.tsx:48
  742. msgid "Created at"
  743. msgstr ""
  744. #: src/views/config/components/Mkdir.vue:35
  745. msgid "Created successfully"
  746. msgstr ""
  747. #: src/language/constants.ts:9
  748. msgid "Creating client facilitates communication with the CA server"
  749. msgstr ""
  750. #: src/components/AutoCertForm/DNSChallenge.vue:104
  751. msgid "Credential"
  752. msgstr ""
  753. #: src/views/certificate/components/DNSChallenge.vue:99
  754. msgid "Credentials"
  755. msgstr ""
  756. #: src/views/preference/components/AuthSettings/TOTP.vue:72
  757. msgid "Current account is enabled TOTP."
  758. msgstr ""
  759. #: src/views/preference/components/AuthSettings/TOTP.vue:70
  760. msgid "Current account is not enabled TOTP."
  761. msgstr ""
  762. #: src/views/dashboard/components/ConnectionMetricsCard.vue:27
  763. msgid "Current active connections"
  764. msgstr ""
  765. #: src/components/ConfigHistory/DiffViewer.vue:72
  766. msgid "Current Content"
  767. msgstr ""
  768. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:65
  769. msgid "Current usage"
  770. msgstr ""
  771. #: src/views/system/Upgrade.vue:182
  772. msgid "Current Version"
  773. msgstr ""
  774. #: src/components/NgxConfigEditor/NgxConfigEditor.vue:33
  775. #: src/views/site/site_edit/components/ConfigTemplate/ConfigTemplate.vue:104
  776. msgid "Custom"
  777. msgstr ""
  778. #: src/views/preference/tabs/NodeSettings.vue:19
  779. msgid "Customize the name of local node to be displayed in the environment indicator."
  780. msgstr ""
  781. #: src/routes/modules/dashboard.ts:10
  782. #: src/views/config/ConfigEditor.vue:110
  783. #: src/views/config/ConfigEditor.vue:161
  784. #: src/views/config/ConfigList.vue:67
  785. msgid "Dashboard"
  786. msgstr ""
  787. #: src/views/preference/tabs/CertSettings.vue:32
  788. msgid "Days"
  789. msgstr ""
  790. #: src/constants/errors/middleware.ts:3
  791. msgid "Decryption failed"
  792. msgstr ""
  793. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:150
  794. msgid "Define shared memory zone name and size, e.g. proxy_cache:10m"
  795. msgstr ""
  796. #: src/components/NgxConfigEditor/NgxServer.vue:78
  797. #: src/components/NgxConfigEditor/NgxUpstream.vue:129
  798. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:21
  799. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:519
  800. #: src/views/certificate/components/RemoveCert.vue:87
  801. #: src/views/site/site_list/SiteList.vue:119
  802. #: src/views/stream/StreamList.vue:240
  803. msgid "Delete"
  804. msgstr ""
  805. #: src/views/certificate/components/RemoveCert.vue:92
  806. msgid "Delete Certificate"
  807. msgstr ""
  808. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:35
  809. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:547
  810. msgid "Delete Permanently"
  811. msgstr ""
  812. #: src/components/Notification/notifications.ts:69
  813. #: src/language/constants.ts:50
  814. msgid "Delete Remote Site Error"
  815. msgstr ""
  816. #: src/components/Notification/notifications.ts:73
  817. #: src/language/constants.ts:49
  818. msgid "Delete Remote Site Success"
  819. msgstr ""
  820. #: src/components/Notification/notifications.ts:125
  821. msgid "Delete Remote Stream Error"
  822. msgstr ""
  823. #: src/components/Notification/notifications.ts:129
  824. msgid "Delete Remote Stream Success"
  825. msgstr ""
  826. #: src/components/Notification/notifications.ts:70
  827. msgid "Delete site %{name} from %{node} failed"
  828. msgstr ""
  829. #: src/components/Notification/notifications.ts:74
  830. msgid "Delete site %{name} from %{node} successfully"
  831. msgstr ""
  832. #: src/views/site/site_list/SiteList.vue:51
  833. msgid "Delete site: %{site_name}"
  834. msgstr ""
  835. #: src/components/Notification/notifications.ts:126
  836. msgid "Delete stream %{name} from %{node} failed"
  837. msgstr ""
  838. #: src/components/Notification/notifications.ts:130
  839. msgid "Delete stream %{name} from %{node} successfully"
  840. msgstr ""
  841. #: src/views/stream/StreamList.vue:107
  842. msgid "Delete stream: %{stream_name}"
  843. msgstr ""
  844. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:183
  845. msgid "Deleted successfully"
  846. msgstr ""
  847. #: src/views/preference/tabs/NodeSettings.vue:28
  848. msgid "Demo"
  849. msgstr ""
  850. #: src/views/config/ConfigEditor.vue:338
  851. msgid "Deploy"
  852. msgstr ""
  853. #: src/views/site/site_edit/components/ConfigTemplate/ConfigTemplate.vue:74
  854. #: src/views/site/site_edit/components/ConfigTemplate/ConfigTemplate.vue:98
  855. msgid "Description"
  856. msgstr ""
  857. #: src/constants/errors/site.ts:3
  858. #: src/constants/errors/stream.ts:3
  859. msgid "Destination file already exists"
  860. msgstr ""
  861. #: src/constants/errors/config.ts:3
  862. msgid "Destination file: {0} already exists"
  863. msgstr ""
  864. #: src/views/notification/notificationColumns.tsx:60
  865. msgid "Details"
  866. msgstr ""
  867. #: src/views/system/Upgrade.vue:216
  868. msgid "Dev"
  869. msgstr ""
  870. #: src/views/system/About.vue:28
  871. msgid "Development Mode"
  872. msgstr ""
  873. #: src/views/preference/components/ExternalNotify/dingtalk.ts:5
  874. msgid "DingTalk"
  875. msgstr ""
  876. #: src/components/NgxConfigEditor/directive/DirectiveAdd.vue:72
  877. msgid "Directive"
  878. msgstr ""
  879. #: src/constants/errors/nginx_log.ts:6
  880. msgid "Directive params is empty"
  881. msgstr ""
  882. #: src/constants/errors/nginx_log.ts:5
  883. msgid "Directive.Params neither access_log nor error_log"
  884. msgstr ""
  885. #: src/constants/errors/nginx_log.ts:4
  886. msgid "DirectiveIdx out of range"
  887. msgstr ""
  888. #: src/components/NgxConfigEditor/directive/DirectiveEditor.vue:35
  889. msgid "Directives"
  890. msgstr ""
  891. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:135
  892. msgid "Directory Levels"
  893. msgstr ""
  894. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:127
  895. msgid "Directory path to store cache files"
  896. msgstr ""
  897. #: src/views/site/components/SiteStatusSegmented.vue:88
  898. msgid "disable"
  899. msgstr ""
  900. #: src/views/stream/StreamList.vue:211
  901. msgid "Disable"
  902. msgstr ""
  903. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:80
  904. msgid "Disable auto-renewal failed for %{name}"
  905. msgstr ""
  906. #: src/components/Notification/notifications.ts:77
  907. #: src/language/constants.ts:52
  908. msgid "Disable Remote Site Error"
  909. msgstr ""
  910. #: src/components/Notification/notifications.ts:101
  911. msgid "Disable Remote Site Maintenance Error"
  912. msgstr ""
  913. #: src/components/Notification/notifications.ts:105
  914. msgid "Disable Remote Site Maintenance Success"
  915. msgstr ""
  916. #: src/components/Notification/notifications.ts:81
  917. #: src/language/constants.ts:51
  918. msgid "Disable Remote Site Success"
  919. msgstr ""
  920. #: src/components/Notification/notifications.ts:133
  921. msgid "Disable Remote Stream Error"
  922. msgstr ""
  923. #: src/components/Notification/notifications.ts:137
  924. msgid "Disable Remote Stream Success"
  925. msgstr ""
  926. #: src/components/Notification/notifications.ts:78
  927. msgid "Disable site %{name} from %{node} failed"
  928. msgstr ""
  929. #: src/components/Notification/notifications.ts:82
  930. msgid "Disable site %{name} from %{node} successfully"
  931. msgstr ""
  932. #: src/components/Notification/notifications.ts:102
  933. msgid "Disable site %{name} maintenance on %{node} failed"
  934. msgstr ""
  935. #: src/components/Notification/notifications.ts:106
  936. msgid "Disable site %{name} maintenance on %{node} successfully"
  937. msgstr ""
  938. #: src/components/Notification/notifications.ts:134
  939. msgid "Disable stream %{name} from %{node} failed"
  940. msgstr ""
  941. #: src/components/Notification/notifications.ts:138
  942. msgid "Disable stream %{name} from %{node} successfully"
  943. msgstr ""
  944. #: src/views/environments/list/envColumns.tsx:61
  945. #: src/views/environments/list/envColumns.tsx:79
  946. #: src/views/preference/tabs/HTTPSettings.vue:24
  947. #: src/views/preference/tabs/NodeSettings.vue:25
  948. #: src/views/preference/tabs/NodeSettings.vue:30
  949. #: src/views/site/components/SiteStatusSegmented.vue:134
  950. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:62
  951. #: src/views/site/site_list/columns.tsx:111
  952. #: src/views/stream/components/StreamEditor.vue:30
  953. #: src/views/stream/StreamList.vue:58
  954. #: src/views/user/userColumns.tsx:41
  955. msgid "Disabled"
  956. msgstr ""
  957. #: src/views/site/components/SiteStatusSegmented.vue:40
  958. #: src/views/stream/components/RightPanel/Basic.vue:34
  959. #: src/views/stream/StreamList.vue:96
  960. msgid "Disabled successfully"
  961. msgstr ""
  962. #: src/views/dashboard/ServerAnalytic.vue:366
  963. msgid "Disk IO"
  964. msgstr ""
  965. #: src/routes/modules/certificates.ts:56
  966. #: src/views/certificate/DNSCredential.vue:40
  967. msgid "DNS Credentials"
  968. msgstr ""
  969. #: src/components/AutoCertForm/DNSChallenge.vue:94
  970. #: src/views/certificate/components/DNSChallenge.vue:72
  971. msgid "DNS Provider"
  972. msgstr ""
  973. #: src/components/AutoCertForm/AutoCertForm.vue:72
  974. msgid "DNS01"
  975. msgstr ""
  976. #: src/components/AutoCertForm/AutoCertForm.vue:97
  977. msgid "Do not enable this option unless you are sure that you need it."
  978. msgstr ""
  979. #: src/views/site/components/SiteStatusSegmented.vue:93
  980. msgid "Do you want to %{action} this site?"
  981. msgstr ""
  982. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:139
  983. msgid "Do you want to disable auto-cert renewal?"
  984. msgstr ""
  985. #: src/views/stream/components/RightPanel/Basic.vue:43
  986. msgid "Do you want to disable this stream?"
  987. msgstr ""
  988. #: src/views/stream/components/RightPanel/Basic.vue:43
  989. msgid "Do you want to enable this stream?"
  990. msgstr ""
  991. #: src/views/site/site_edit/components/Cert/IssueCert.vue:33
  992. #: src/views/site/site_edit/components/EnableTLS/EnableTLS.vue:14
  993. msgid "Do you want to enable TLS?"
  994. msgstr ""
  995. #: src/components/NgxConfigEditor/NgxServer.vue:50
  996. msgid "Do you want to remove this server?"
  997. msgstr ""
  998. #: src/components/NgxConfigEditor/NgxUpstream.vue:33
  999. msgid "Do you want to remove this upstream?"
  1000. msgstr ""
  1001. #: src/constants/errors/docker.ts:2
  1002. msgid "Docker client not initialized"
  1003. msgstr ""
  1004. #: src/language/generate.ts:25
  1005. msgid "Docker socket exists"
  1006. msgstr ""
  1007. #: src/constants/errors/self_check.ts:16
  1008. msgid "Docker socket not exist"
  1009. msgstr ""
  1010. #: src/components/NgxConfigEditor/directive/DirectiveAdd.vue:88
  1011. #: src/components/NgxConfigEditor/directive/DirectiveDocuments.vue:16
  1012. msgid "Document"
  1013. msgid_plural "Documents"
  1014. msgstr[0] ""
  1015. msgstr[1] ""
  1016. #: src/views/certificate/components/WildcardCertificate.vue:66
  1017. msgid "Domain"
  1018. msgstr ""
  1019. #: src/views/certificate/CertificateEditor.vue:112
  1020. msgid "Domains list is empty, try to reopen Auto Cert for %{config}"
  1021. msgstr ""
  1022. #: src/language/constants.ts:27
  1023. msgid "Download latest release error"
  1024. msgstr ""
  1025. #: src/language/constants.ts:26
  1026. msgid "Downloading latest release"
  1027. msgstr ""
  1028. #: src/views/environments/list/BatchUpgrader.vue:188
  1029. #: src/views/system/Upgrade.vue:237
  1030. msgid "Dry run mode enabled"
  1031. msgstr ""
  1032. #: src/views/preference/components/AuthSettings/AddPasskey.vue:101
  1033. msgid "Due to the security policies of some browsers, you cannot use passkeys on non-HTTPS websites, except when running on localhost."
  1034. msgstr ""
  1035. #: src/views/site/site_list/SiteDuplicate.vue:72
  1036. #: src/views/site/site_list/SiteList.vue:105
  1037. #: src/views/stream/components/StreamDuplicate.vue:64
  1038. #: src/views/stream/StreamList.vue:226
  1039. msgid "Duplicate"
  1040. msgstr ""
  1041. #: src/views/site/site_list/SiteDuplicate.vue:48
  1042. #: src/views/stream/components/StreamDuplicate.vue:40
  1043. msgid "Duplicate to local successfully"
  1044. msgstr ""
  1045. #: src/views/dashboard/components/ModulesTable.vue:88
  1046. #: src/views/dashboard/components/ModulesTable.vue:93
  1047. msgid "Dynamic"
  1048. msgstr ""
  1049. #: src/components/StdDesign/StdDetail/StdDetail.vue:110
  1050. msgid "Edit"
  1051. msgstr ""
  1052. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:51
  1053. #: src/views/stream/components/StreamEditor.vue:19
  1054. msgid "Edit %{n}"
  1055. msgstr ""
  1056. #: src/routes/modules/config.ts:30
  1057. #: src/views/config/ConfigEditor.vue:244
  1058. msgid "Edit Configuration"
  1059. msgstr ""
  1060. #: src/routes/modules/sites.ts:34
  1061. msgid "Edit Site"
  1062. msgstr ""
  1063. #: src/routes/modules/streams.ts:20
  1064. msgid "Edit Stream"
  1065. msgstr ""
  1066. #: src/views/certificate/ACMEUser.vue:25
  1067. #: src/views/preference/tabs/CertSettings.vue:12
  1068. msgid "Email"
  1069. msgstr ""
  1070. #: src/views/install/components/InstallForm.vue:75
  1071. msgid "Email (*)"
  1072. msgstr ""
  1073. #: src/views/site/components/SiteStatusSegmented.vue:87
  1074. msgid "enable"
  1075. msgstr ""
  1076. #: src/views/stream/StreamList.vue:219
  1077. msgid "Enable"
  1078. msgstr ""
  1079. #: src/views/preference/components/AuthSettings/TOTP.vue:45
  1080. msgid "Enable 2FA successfully"
  1081. msgstr ""
  1082. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:73
  1083. msgid "Enable auto-renewal failed for %{name}"
  1084. msgstr ""
  1085. #: src/views/preference/tabs/OpenAISettings.vue:80
  1086. msgid "Enable Code Completion"
  1087. msgstr ""
  1088. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:68
  1089. msgid "Enable compression for content transfer"
  1090. msgstr ""
  1091. #: src/views/site/site_add/SiteAdd.vue:35
  1092. msgid "Enable failed"
  1093. msgstr ""
  1094. #: src/views/preference/tabs/ServerSettings.vue:30
  1095. msgid "Enable HTTPS"
  1096. msgstr ""
  1097. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:114
  1098. msgid "Enable Proxy Cache"
  1099. msgstr ""
  1100. #: src/components/Notification/notifications.ts:85
  1101. #: src/language/constants.ts:54
  1102. msgid "Enable Remote Site Error"
  1103. msgstr ""
  1104. #: src/components/Notification/notifications.ts:93
  1105. msgid "Enable Remote Site Maintenance Error"
  1106. msgstr ""
  1107. #: src/components/Notification/notifications.ts:97
  1108. msgid "Enable Remote Site Maintenance Success"
  1109. msgstr ""
  1110. #: src/components/Notification/notifications.ts:89
  1111. #: src/language/constants.ts:53
  1112. msgid "Enable Remote Site Success"
  1113. msgstr ""
  1114. #: src/components/Notification/notifications.ts:141
  1115. msgid "Enable Remote Stream Error"
  1116. msgstr ""
  1117. #: src/components/Notification/notifications.ts:145
  1118. msgid "Enable Remote Stream Success"
  1119. msgstr ""
  1120. #: src/components/Notification/notifications.ts:94
  1121. msgid "Enable site %{name} maintenance on %{node} failed"
  1122. msgstr ""
  1123. #: src/components/Notification/notifications.ts:98
  1124. msgid "Enable site %{name} maintenance on %{node} successfully"
  1125. msgstr ""
  1126. #: src/components/Notification/notifications.ts:86
  1127. msgid "Enable site %{name} on %{node} failed"
  1128. msgstr ""
  1129. #: src/components/Notification/notifications.ts:90
  1130. msgid "Enable site %{name} on %{node} successfully"
  1131. msgstr ""
  1132. #: src/components/Notification/notifications.ts:142
  1133. msgid "Enable stream %{name} on %{node} failed"
  1134. msgstr ""
  1135. #: src/components/Notification/notifications.ts:146
  1136. msgid "Enable stream %{name} on %{node} successfully"
  1137. msgstr ""
  1138. #: src/views/dashboard/NginxDashBoard.vue:147
  1139. msgid "Enable stub_status module"
  1140. msgstr ""
  1141. #: src/views/site/site_edit/components/EnableTLS/EnableTLS.vue:115
  1142. msgid "Enable TLS"
  1143. msgstr ""
  1144. #: src/views/preference/components/AuthSettings/TOTP.vue:81
  1145. msgid "Enable TOTP"
  1146. msgstr ""
  1147. #: src/views/environments/list/envColumns.tsx:70
  1148. #: src/views/environments/list/envColumns.tsx:76
  1149. #: src/views/preference/tabs/HTTPSettings.vue:24
  1150. #: src/views/preference/tabs/LogrotateSettings.vue:20
  1151. #: src/views/preference/tabs/NodeSettings.vue:25
  1152. #: src/views/preference/tabs/NodeSettings.vue:30
  1153. #: src/views/site/components/SiteStatusSegmented.vue:130
  1154. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:56
  1155. #: src/views/site/site_list/columns.tsx:110
  1156. #: src/views/stream/components/RightPanel/Basic.vue:62
  1157. #: src/views/stream/components/StreamEditor.vue:24
  1158. #: src/views/stream/StreamList.vue:54
  1159. #: src/views/user/userColumns.tsx:38
  1160. msgid "Enabled"
  1161. msgstr ""
  1162. #: src/views/site/components/SiteStatusSegmented.vue:27
  1163. #: src/views/site/site_add/SiteAdd.vue:32
  1164. #: src/views/stream/components/RightPanel/Basic.vue:25
  1165. #: src/views/stream/StreamList.vue:86
  1166. msgid "Enabled successfully"
  1167. msgstr ""
  1168. #: src/views/site/site_edit/components/Cert/IssueCert.vue:76
  1169. msgid "Encrypt website with Let's Encrypt"
  1170. msgstr ""
  1171. #: src/language/constants.ts:22
  1172. msgid "Environment variables cleaned"
  1173. msgstr ""
  1174. #: src/routes/modules/environments.ts:11
  1175. #: src/views/dashboard/Environments.vue:83
  1176. #: src/views/environments/list/Environment.vue:74
  1177. msgid "Environments"
  1178. msgstr ""
  1179. #: src/constants/index.ts:22
  1180. #: src/views/config/InspectConfig.vue:44
  1181. #: src/views/notification/notificationColumns.tsx:15
  1182. msgid "Error"
  1183. msgstr ""
  1184. #: src/components/ConfigHistory/DiffViewer.vue:145
  1185. msgid "Error initializing diff viewer"
  1186. msgstr ""
  1187. #: src/views/nginx_log/NginxLogList.vue:24
  1188. msgid "Error Log"
  1189. msgstr ""
  1190. #: src/constants/errors/self_check.ts:22
  1191. msgid "Error log path not exist"
  1192. msgstr ""
  1193. #: src/components/NgxConfigEditor/LogEntry.vue:98
  1194. #: src/routes/modules/nginx_log.ts:24
  1195. msgid "Error Logs"
  1196. msgstr ""
  1197. #: src/components/ConfigHistory/DiffViewer.vue:97
  1198. msgid "Error processing content"
  1199. msgstr ""
  1200. #: src/views/system/Upgrade.vue:196
  1201. msgid "Executable Path"
  1202. msgstr ""
  1203. #: src/components/CertInfo/CertInfo.vue:31
  1204. #: src/views/certificate/CertificateList/certColumns.tsx:82
  1205. msgid "Expired"
  1206. msgstr ""
  1207. #: src/components/CertInfo/CertInfo.vue:38
  1208. msgid "Expired At: %{date}"
  1209. msgstr ""
  1210. #: src/components/StdDesign/StdDataDisplay/methods/exportCsv.ts:64
  1211. msgid "Export"
  1212. msgstr ""
  1213. #: src/views/preference/tabs/NginxSettings.vue:49
  1214. msgid "External Docker Container"
  1215. msgstr ""
  1216. #: src/views/preference/Preference.vue:58
  1217. #: src/views/preference/tabs/ExternalNotify.vue:9
  1218. msgid "External Notify"
  1219. msgstr ""
  1220. #: src/views/site/site_edit/components/Cert/ObtainCertLive.vue:80
  1221. msgid "Fail to obtain certificate"
  1222. msgstr ""
  1223. #: src/constants/errors/docker.ts:4
  1224. msgid "Failed to attach to exec instance: {0}"
  1225. msgstr ""
  1226. #: src/constants/errors/backup.ts:5
  1227. msgid "Failed to backup Nginx config files: {0}"
  1228. msgstr ""
  1229. #: src/constants/errors/backup.ts:4
  1230. msgid "Failed to backup Nginx UI files: {0}"
  1231. msgstr ""
  1232. #: src/constants/errors/backup.ts:18
  1233. msgid "Failed to calculate hash: {0}"
  1234. msgstr ""
  1235. #: src/constants/errors/backup.ts:58
  1236. msgid "Failed to calculate Nginx hash: {0}"
  1237. msgstr ""
  1238. #: src/constants/errors/backup.ts:57
  1239. msgid "Failed to calculate Nginx UI hash: {0}"
  1240. msgstr ""
  1241. #: src/constants/errors/backup.ts:13
  1242. msgid "Failed to cleanup temporary directory: {0}"
  1243. msgstr ""
  1244. #: src/constants/errors/backup.ts:15
  1245. msgid "Failed to copy config file: {0}"
  1246. msgstr ""
  1247. #: src/constants/errors/backup.ts:16
  1248. msgid "Failed to copy database directory: {0}"
  1249. msgstr ""
  1250. #: src/constants/errors/backup.ts:17
  1251. msgid "Failed to copy database file: {0}"
  1252. msgstr ""
  1253. #: src/constants/errors/backup.ts:32
  1254. msgid "Failed to copy file content: {0}"
  1255. msgstr ""
  1256. #: src/constants/errors/backup.ts:20
  1257. msgid "Failed to copy Nginx config directory: {0}"
  1258. msgstr ""
  1259. #: src/constants/errors/self_check.ts:10
  1260. msgid "Failed to create backup"
  1261. msgstr ""
  1262. #: src/constants/errors/backup.ts:12
  1263. msgid "Failed to create backup file: {0}"
  1264. msgstr ""
  1265. #: src/constants/errors/backup.ts:46
  1266. msgid "Failed to create directory: {0}"
  1267. msgstr ""
  1268. #: src/constants/errors/backup.ts:48
  1269. msgid "Failed to create file: {0}"
  1270. msgstr ""
  1271. #: src/constants/errors/backup.ts:6
  1272. msgid "Failed to create hash info file: {0}"
  1273. msgstr ""
  1274. #: src/constants/errors/backup.ts:47
  1275. msgid "Failed to create parent directory: {0}"
  1276. msgstr ""
  1277. #: src/constants/errors/backup.ts:34
  1278. msgid "Failed to create restore directory: {0}"
  1279. msgstr ""
  1280. #: src/constants/errors/backup.ts:50
  1281. msgid "Failed to create symbolic link: {0}"
  1282. msgstr ""
  1283. #: src/constants/errors/docker.ts:13
  1284. msgid "Failed to create temp container: {0}"
  1285. msgstr ""
  1286. #: src/constants/errors/backup.ts:2
  1287. msgid "Failed to create temporary directory"
  1288. msgstr ""
  1289. #: src/constants/errors/backup.ts:3
  1290. msgid "Failed to create temporary subdirectory"
  1291. msgstr ""
  1292. #: src/constants/errors/backup.ts:9
  1293. msgid "Failed to create zip archive: {0}"
  1294. msgstr ""
  1295. #: src/constants/errors/backup.ts:29
  1296. msgid "Failed to create zip entry: {0}"
  1297. msgstr ""
  1298. #: src/constants/errors/backup.ts:28
  1299. msgid "Failed to create zip file: {0}"
  1300. msgstr ""
  1301. #: src/constants/errors/backup.ts:31
  1302. msgid "Failed to create zip header: {0}"
  1303. msgstr ""
  1304. #: src/constants/errors/backup.ts:26
  1305. msgid "Failed to decrypt data: {0}"
  1306. msgstr ""
  1307. #: src/constants/errors/backup.ts:54
  1308. msgid "Failed to decrypt file: {0}"
  1309. msgstr ""
  1310. #: src/constants/errors/backup.ts:37
  1311. msgid "Failed to decrypt Nginx directory: {0}"
  1312. msgstr ""
  1313. #: src/constants/errors/backup.ts:36
  1314. msgid "Failed to decrypt Nginx UI directory: {0}"
  1315. msgstr ""
  1316. #: src/views/certificate/components/RemoveCert.vue:66
  1317. msgid "Failed to delete certificate"
  1318. msgstr ""
  1319. #: src/language/generate.ts:30
  1320. msgid "Failed to delete certificate from database: %{error}"
  1321. msgstr ""
  1322. #: src/views/site/components/SiteStatusSegmented.vue:46
  1323. #: src/views/stream/components/RightPanel/Basic.vue:37
  1324. #: src/views/stream/StreamList.vue:100
  1325. msgid "Failed to disable %{msg}"
  1326. msgstr ""
  1327. #: src/views/site/components/SiteStatusSegmented.vue:72
  1328. msgid "Failed to disable maintenance mode %{msg}"
  1329. msgstr ""
  1330. #: src/views/site/components/SiteStatusSegmented.vue:33
  1331. #: src/views/stream/components/RightPanel/Basic.vue:28
  1332. #: src/views/stream/StreamList.vue:90
  1333. msgid "Failed to enable %{msg}"
  1334. msgstr ""
  1335. #: src/views/site/components/SiteStatusSegmented.vue:59
  1336. msgid "Failed to enable maintenance mode %{msg}"
  1337. msgstr ""
  1338. #: src/constants/errors/backup.ts:25
  1339. msgid "Failed to encrypt data: {0}"
  1340. msgstr ""
  1341. #: src/constants/errors/backup.ts:23
  1342. msgid "Failed to encrypt file: {0}"
  1343. msgstr ""
  1344. #: src/constants/errors/backup.ts:8
  1345. msgid "Failed to encrypt Nginx directory: {0}"
  1346. msgstr ""
  1347. #: src/constants/errors/backup.ts:7
  1348. msgid "Failed to encrypt Nginx UI directory: {0}"
  1349. msgstr ""
  1350. #: src/constants/errors/backup.ts:52
  1351. msgid "Failed to evaluate symbolic links: {0}"
  1352. msgstr ""
  1353. #: src/constants/errors/docker.ts:3
  1354. msgid "Failed to exec command: {0}"
  1355. msgstr ""
  1356. #: src/constants/errors/backup.ts:35
  1357. msgid "Failed to extract archive: {0}"
  1358. msgstr ""
  1359. #: src/constants/errors/backup.ts:10
  1360. msgid "Failed to generate AES key: {0}"
  1361. msgstr ""
  1362. #: src/constants/errors/backup.ts:11
  1363. msgid "Failed to generate initialization vector: {0}"
  1364. msgstr ""
  1365. #: src/language/constants.ts:5
  1366. msgid "Failed to get certificate information"
  1367. msgstr ""
  1368. #: src/constants/errors/docker.ts:10
  1369. msgid "Failed to get container id: {0}"
  1370. msgstr ""
  1371. #: src/views/dashboard/components/ParamsOptimization.vue:61
  1372. msgid "Failed to get Nginx performance settings"
  1373. msgstr ""
  1374. #: src/composables/useNginxPerformance.ts:49
  1375. msgid "Failed to get performance data"
  1376. msgstr ""
  1377. #: src/constants/errors/docker.ts:8
  1378. msgid "Failed to inspect container: {0}"
  1379. msgstr ""
  1380. #: src/constants/errors/docker.ts:12
  1381. msgid "Failed to inspect current container: {0}"
  1382. msgstr ""
  1383. #: src/components/ConfigHistory/ConfigHistory.vue:77
  1384. msgid "Failed to load history records"
  1385. msgstr ""
  1386. #: src/constants/errors/backup.ts:30
  1387. msgid "Failed to open source file: {0}"
  1388. msgstr ""
  1389. #: src/constants/errors/backup.ts:49
  1390. msgid "Failed to open zip entry: {0}"
  1391. msgstr ""
  1392. #: src/constants/errors/backup.ts:45
  1393. msgid "Failed to open zip file: {0}"
  1394. msgstr ""
  1395. #: src/constants/errors/self_check.ts:5
  1396. msgid "Failed to parse nginx.conf"
  1397. msgstr ""
  1398. #: src/constants/errors/docker.ts:11
  1399. msgid "Failed to pull image: {0}"
  1400. msgstr ""
  1401. #: src/constants/errors/backup.ts:53
  1402. msgid "Failed to read encrypted file: {0}"
  1403. msgstr ""
  1404. #: src/constants/errors/backup.ts:22
  1405. msgid "Failed to read file: {0}"
  1406. msgstr ""
  1407. #: src/constants/errors/backup.ts:56
  1408. msgid "Failed to read hash info file: {0}"
  1409. msgstr ""
  1410. #: src/constants/errors/self_check.ts:4
  1411. msgid "Failed to read nginx.conf"
  1412. msgstr ""
  1413. #: src/constants/errors/docker.ts:5
  1414. msgid "Failed to read output: {0}"
  1415. msgstr ""
  1416. #: src/constants/errors/backup.ts:21
  1417. msgid "Failed to read symlink: {0}"
  1418. msgstr ""
  1419. #: src/constants/errors/backup.ts:39
  1420. msgid "Failed to restore Nginx configs: {0}"
  1421. msgstr ""
  1422. #: src/constants/errors/backup.ts:40
  1423. msgid "Failed to restore Nginx UI files: {0}"
  1424. msgstr ""
  1425. #: src/views/certificate/components/RemoveCert.vue:48
  1426. msgid "Failed to revoke certificate"
  1427. msgstr ""
  1428. #: src/language/generate.ts:27
  1429. msgid "Failed to revoke certificate: %{error}"
  1430. msgstr ""
  1431. #: src/views/dashboard/components/ParamsOptimization.vue:90
  1432. msgid "Failed to save Nginx performance settings"
  1433. msgstr ""
  1434. #: src/constants/errors/docker.ts:14
  1435. msgid "Failed to start temp container: {0}"
  1436. msgstr ""
  1437. #: src/constants/errors/backup.ts:38
  1438. msgid "Failed to verify hashes: {0}"
  1439. msgstr ""
  1440. #: src/constants/errors/backup.ts:55
  1441. msgid "Failed to write decrypted file: {0}"
  1442. msgstr ""
  1443. #: src/constants/errors/backup.ts:24
  1444. msgid "Failed to write encrypted file: {0}"
  1445. msgstr ""
  1446. #: src/constants/errors/backup.ts:33
  1447. msgid "Failed to write to zip buffer: {0}"
  1448. msgstr ""
  1449. #: src/language/constants.ts:32
  1450. msgid "File exists"
  1451. msgstr ""
  1452. #: src/views/other/Error.vue:8
  1453. msgid "File Not Found"
  1454. msgstr ""
  1455. #: src/constants/errors/cert.ts:2
  1456. msgid "Filename is empty"
  1457. msgstr ""
  1458. #: src/views/nginx_log/NginxLog.vue:156
  1459. msgid "Filter"
  1460. msgstr ""
  1461. #: src/language/constants.ts:19
  1462. #: src/views/site/site_add/SiteAdd.vue:81
  1463. msgid "Finished"
  1464. msgstr ""
  1465. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:70
  1466. msgid "First View"
  1467. msgstr ""
  1468. #: src/views/preference/components/AuthSettings/AddPasskey.vue:71
  1469. msgid "Follow the instructions in the dialog to complete the passkey registration process."
  1470. msgstr ""
  1471. #: src/views/preference/tabs/NodeSettings.vue:42
  1472. #: src/views/preference/tabs/NodeSettings.vue:54
  1473. msgid "For Chinese user"
  1474. msgstr ""
  1475. #: src/views/preference/tabs/HTTPSettings.vue:19
  1476. msgid "For Chinese user: https://cloud.nginxui.com/"
  1477. msgstr ""
  1478. #: src/constants/errors/middleware.ts:4
  1479. msgid "Form parse failed"
  1480. msgstr ""
  1481. #: src/views/config/ConfigEditor.vue:269
  1482. msgid "Format Code"
  1483. msgstr ""
  1484. #: src/views/config/ConfigEditor.vue:216
  1485. msgid "Format successfully"
  1486. msgstr ""
  1487. #: src/views/certificate/CertificateList/certColumns.tsx:32
  1488. msgid "General Certificate"
  1489. msgstr ""
  1490. #: src/components/StdDesign/StdDataEntry/components/StdPassword.vue:55
  1491. msgid "Generate"
  1492. msgstr ""
  1493. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:138
  1494. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:161
  1495. msgid "Generate New Recovery Codes"
  1496. msgstr ""
  1497. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:161
  1498. msgid "Generate Recovery Codes"
  1499. msgstr ""
  1500. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:32
  1501. msgid "Generate recovery codes successfully"
  1502. msgstr ""
  1503. #: src/language/constants.ts:7
  1504. msgid "Generating private key for registering account"
  1505. msgstr ""
  1506. #: src/views/dashboard/NginxDashBoard.vue:138
  1507. msgid "Get data failed"
  1508. msgstr ""
  1509. #: src/views/environments/list/BatchUpgrader.vue:177
  1510. #: src/views/system/Upgrade.vue:188
  1511. msgid "Get release information error"
  1512. msgstr ""
  1513. #: src/views/site/site_edit/components/Cert/ObtainCertLive.vue:46
  1514. msgid "Getting the certificate, please wait..."
  1515. msgstr ""
  1516. #: src/views/preference/tabs/HTTPSettings.vue:11
  1517. msgid "Github Proxy"
  1518. msgstr ""
  1519. #: src/views/preference/components/ExternalNotify/gotify.ts:5
  1520. msgid "Gotify"
  1521. msgstr ""
  1522. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:67
  1523. msgid "GZIP Compression"
  1524. msgstr ""
  1525. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:87
  1526. msgid "GZIP Compression Level"
  1527. msgstr ""
  1528. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:80
  1529. msgid "GZIP Min Length"
  1530. msgstr ""
  1531. #: src/constants/errors/backup.ts:59
  1532. msgid "Hash verification failed: file integrity compromised"
  1533. msgstr ""
  1534. #: src/components/SensitiveString/SensitiveString.vue:40
  1535. msgid "Hide"
  1536. msgstr ""
  1537. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:87
  1538. msgid "Higher value means better connection reuse"
  1539. msgstr ""
  1540. #: src/views/config/ConfigEditor.vue:254
  1541. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:81
  1542. #: src/views/stream/components/StreamEditor.vue:43
  1543. msgid "History"
  1544. msgstr ""
  1545. #: src/routes/index.ts:47
  1546. msgid "Home"
  1547. msgstr ""
  1548. #: src/views/preference/tabs/ServerSettings.vue:19
  1549. msgid "Host"
  1550. msgstr ""
  1551. #: src/views/preference/Preference.vue:70
  1552. msgid "HTTP"
  1553. msgstr ""
  1554. #: src/views/preference/tabs/CertSettings.vue:15
  1555. msgid "HTTP Challenge Port"
  1556. msgstr ""
  1557. #: src/components/AutoCertForm/AutoCertForm.vue:69
  1558. msgid "HTTP01"
  1559. msgstr ""
  1560. #: src/components/SelfCheck/tasks/frontend/https-check.ts:13
  1561. msgid "HTTPS Protocol"
  1562. msgstr ""
  1563. #: src/views/preference/tabs/NodeSettings.vue:34
  1564. msgid "ICP Number"
  1565. msgstr ""
  1566. #: src/views/certificate/ACMEUser.vue:45
  1567. msgid "If left blank, the default CA Dir will be used."
  1568. msgstr ""
  1569. #: src/views/preference/tabs/AuthSettings.vue:145
  1570. msgid "If the number of login failed attempts from a ip reach the max attempts in ban threshold minutes, the ip will be banned for a period of time."
  1571. msgstr ""
  1572. #: src/components/AutoCertForm/AutoCertForm.vue:116
  1573. msgid "If you want to automatically revoke the old certificate, please enable this option."
  1574. msgstr ""
  1575. #: src/views/preference/components/AuthSettings/AddPasskey.vue:70
  1576. msgid "If your browser supports WebAuthn Passkey, a dialog box will appear."
  1577. msgstr ""
  1578. #: src/components/AutoCertForm/AutoCertForm.vue:107
  1579. msgid "If your domain has CNAME records and you cannot obtain certificates, you need to enable this option."
  1580. msgstr ""
  1581. #: src/views/certificate/CertificateList/Certificate.vue:27
  1582. msgid "Import"
  1583. msgstr ""
  1584. #: src/routes/modules/certificates.ts:46
  1585. #: src/views/certificate/CertificateEditor.vue:85
  1586. msgid "Import Certificate"
  1587. msgstr ""
  1588. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:176
  1589. msgid "Inactive Time"
  1590. msgstr ""
  1591. #: src/views/dashboard/components/ProcessDistributionCard.vue:54
  1592. msgid "Includes master process, worker processes, cache processes, and other Nginx processes"
  1593. msgstr ""
  1594. #: src/components/ProcessingStatus/ProcessingStatus.vue:32
  1595. msgid "Indexing..."
  1596. msgstr ""
  1597. #: src/views/dashboard/components/PerformanceTablesCard.vue:16
  1598. msgid "Indicator"
  1599. msgstr ""
  1600. #: src/components/StdDesign/StdDetail/StdDetail.vue:81
  1601. #: src/constants/index.ts:24
  1602. #: src/views/notification/notificationColumns.tsx:29
  1603. msgid "Info"
  1604. msgstr ""
  1605. #: src/language/constants.ts:25
  1606. msgid "Initial core upgrader error"
  1607. msgstr ""
  1608. #: src/language/constants.ts:24
  1609. msgid "Initialing core upgrader"
  1610. msgstr ""
  1611. #: src/views/preference/components/AuthSettings/TOTP.vue:119
  1612. msgid "Input the code from the app:"
  1613. msgstr ""
  1614. #: src/components/TwoFA/Authorization.vue:72
  1615. msgid "Input the recovery code:"
  1616. msgstr ""
  1617. #: src/views/preference/tabs/HTTPSettings.vue:22
  1618. msgid "Insecure Skip Verify"
  1619. msgstr ""
  1620. #: src/routes/modules/auth.ts:8
  1621. #: src/views/install/components/InstallForm.vue:110
  1622. #: src/views/install/components/InstallHeader.vue:9
  1623. #: src/views/system/Upgrade.vue:150
  1624. msgid "Install"
  1625. msgstr ""
  1626. #: src/views/install/components/InstallForm.vue:57
  1627. msgid "Install successfully"
  1628. msgstr ""
  1629. #: src/views/install/components/InstallView.vue:64
  1630. msgid "Installation"
  1631. msgstr ""
  1632. #: src/constants/errors/system.ts:3
  1633. msgid "Installation is not allowed after 10 minutes of system startup"
  1634. msgstr ""
  1635. #: src/views/install/components/TimeoutAlert.vue:11
  1636. msgid "Installation is not allowed after 10 minutes of system startup, please restart the Nginx UI."
  1637. msgstr ""
  1638. #: src/views/preference/tabs/LogrotateSettings.vue:26
  1639. msgid "Interval"
  1640. msgstr ""
  1641. #: src/views/certificate/ACMEUser.vue:129
  1642. msgid "Invalid"
  1643. msgstr ""
  1644. #: src/constants/errors/backup.ts:44
  1645. msgid "Invalid AES IV format: {0}"
  1646. msgstr ""
  1647. #: src/constants/errors/backup.ts:43
  1648. msgid "Invalid AES key format: {0}"
  1649. msgstr ""
  1650. #: src/components/SystemRestore/SystemRestoreContent.vue:121
  1651. msgid "Invalid file object"
  1652. msgstr ""
  1653. #: src/constants/errors/backup.ts:51
  1654. msgid "Invalid file path: {0}"
  1655. msgstr ""
  1656. #: src/views/config/components/Rename.vue:66
  1657. #: src/views/config/ConfigEditor.vue:303
  1658. msgid "Invalid filename"
  1659. msgstr ""
  1660. #: src/views/config/components/Mkdir.vue:57
  1661. msgid "Invalid folder name"
  1662. msgstr ""
  1663. #: src/constants/errors/notification.ts:3
  1664. msgid "Invalid notifier config"
  1665. msgstr ""
  1666. #: src/constants/errors/user.ts:4
  1667. msgid "Invalid otp code"
  1668. msgstr ""
  1669. #: src/constants/errors/backup.ts:27
  1670. msgid "Invalid padding in decrypted data"
  1671. msgstr ""
  1672. #: src/components/TwoFA/use2FAModal.ts:61
  1673. msgid "Invalid passcode or recovery code"
  1674. msgstr ""
  1675. #: src/constants/errors/user.ts:5
  1676. msgid "Invalid recovery code"
  1677. msgstr ""
  1678. #: src/constants/errors/middleware.ts:2
  1679. msgid "Invalid request format"
  1680. msgstr ""
  1681. #: src/constants/errors/backup.ts:42
  1682. msgid "Invalid security token format"
  1683. msgstr ""
  1684. #: src/views/preference/tabs/AuthSettings.vue:18
  1685. msgid "IP"
  1686. msgstr ""
  1687. #: src/views/certificate/CertificateList/Certificate.vue:37
  1688. msgid "Issue wildcard certificate"
  1689. msgstr ""
  1690. #: src/views/certificate/components/WildcardCertificate.vue:57
  1691. msgid "Issue Wildcard Certificate"
  1692. msgstr ""
  1693. #: src/language/constants.ts:20
  1694. msgid "Issued certificate successfully"
  1695. msgstr ""
  1696. #: src/components/CertInfo/CertInfo.vue:35
  1697. msgid "Issuer: %{issuer}"
  1698. msgstr ""
  1699. #: src/views/preference/tabs/AppSettings.vue:11
  1700. msgid "Jwt Secret"
  1701. msgstr ""
  1702. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:74
  1703. msgid "Keep your recovery codes as safe as your password. We recommend saving them with a password manager."
  1704. msgstr ""
  1705. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:60
  1706. msgid "Keepalive Timeout"
  1707. msgstr ""
  1708. #: src/components/AutoCertForm/AutoCertForm.vue:76
  1709. #: src/views/certificate/CertificateList/certColumns.tsx:59
  1710. msgid "Key Type"
  1711. msgstr ""
  1712. #: src/views/preference/components/ExternalNotify/columns.tsx:30
  1713. msgid "Language"
  1714. msgstr ""
  1715. #: src/views/preference/components/ExternalNotify/lark.ts:5
  1716. msgid "Lark"
  1717. msgstr ""
  1718. #: src/views/preference/components/ExternalNotify/lark_custom.ts:5
  1719. msgid "Lark Custom"
  1720. msgstr ""
  1721. #: src/views/system/Upgrade.vue:198
  1722. msgid "Last checked at"
  1723. msgstr ""
  1724. #: src/views/dashboard/NginxDashBoard.vue:113
  1725. msgid "Last update"
  1726. msgstr ""
  1727. #: src/views/preference/components/AuthSettings/Passkey.vue:96
  1728. msgid "Last used at"
  1729. msgstr ""
  1730. #: src/views/user/userColumns.tsx:25
  1731. msgid "Leave blank for no change"
  1732. msgstr ""
  1733. #: src/views/preference/tabs/OpenAISettings.vue:41
  1734. msgid "Leave blank for the default: https://api.openai.com/"
  1735. msgstr ""
  1736. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:79
  1737. msgid "Leave blank if do not want to modify"
  1738. msgstr ""
  1739. #: src/views/certificate/ACMEUser.vue:59
  1740. msgid "Leave blank if you don't need this."
  1741. msgstr ""
  1742. #: src/views/certificate/CertificateEditor.vue:223
  1743. #: src/views/certificate/CertificateEditor.vue:237
  1744. msgid "Leave blank will not change anything"
  1745. msgstr ""
  1746. #: src/constants/errors/user.ts:6
  1747. msgid "Legacy recovery code not allowed since totp is not enabled"
  1748. msgstr ""
  1749. #: src/components/AutoCertForm/AutoCertForm.vue:104
  1750. msgid "Lego disable CNAME Support"
  1751. msgstr ""
  1752. #: src/views/system/About.vue:63
  1753. msgid "License"
  1754. msgstr ""
  1755. #: src/views/dashboard/Environments.vue:141
  1756. #: src/views/dashboard/Environments.vue:156
  1757. msgid "Link Start"
  1758. msgstr ""
  1759. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:173
  1760. msgid "List"
  1761. msgstr ""
  1762. #: src/views/dashboard/ServerAnalytic.vue:183
  1763. msgid "Load Average:"
  1764. msgstr ""
  1765. #: src/views/environments/list/Environment.vue:80
  1766. msgid "Load from settings"
  1767. msgstr ""
  1768. #: src/views/environments/list/Environment.vue:20
  1769. msgid "Load successfully"
  1770. msgstr ""
  1771. #: src/views/dashboard/components/ModulesTable.vue:101
  1772. #: src/views/dashboard/components/ModulesTable.vue:106
  1773. msgid "Loaded"
  1774. msgstr ""
  1775. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:313
  1776. msgid "Loader Files"
  1777. msgstr ""
  1778. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:308
  1779. msgid "Loader Settings"
  1780. msgstr ""
  1781. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:323
  1782. msgid "Loader Sleep"
  1783. msgstr ""
  1784. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:348
  1785. msgid "Loader Threshold"
  1786. msgstr ""
  1787. #: src/views/dashboard/NginxDashBoard.vue:175
  1788. msgid "Loading data..."
  1789. msgstr ""
  1790. #: src/components/EnvIndicator/EnvIndicator.vue:39
  1791. #: src/components/NodeSelector/NodeSelector.vue:86
  1792. #: src/views/preference/tabs/NginxSettings.vue:55
  1793. msgid "Local"
  1794. msgstr ""
  1795. #: src/components/NgxConfigEditor/LocationEditor.vue:69
  1796. msgid "Location"
  1797. msgstr ""
  1798. #: src/components/NgxConfigEditor/LocationEditor.vue:51
  1799. msgid "Locations"
  1800. msgstr ""
  1801. #: src/views/certificate/CertificateEditor.vue:247
  1802. msgid "Log"
  1803. msgstr ""
  1804. #: src/language/generate.ts:34
  1805. msgid "Log file %{log_path} is not a regular file. If you are using nginx-ui in docker container, please refer to https://nginxui.com/zh_CN/guide/config-nginx-log.html for more information."
  1806. msgstr ""
  1807. #: src/routes/modules/nginx_log.ts:39
  1808. #: src/views/nginx_log/NginxLogList.vue:64
  1809. msgid "Log List"
  1810. msgstr ""
  1811. #: src/routes/modules/auth.ts:14
  1812. #: src/views/other/Login.vue:222
  1813. msgid "Login"
  1814. msgstr ""
  1815. #: src/views/other/Login.vue:114
  1816. #: src/views/other/Login.vue:65
  1817. msgid "Login successful"
  1818. msgstr ""
  1819. #: src/layouts/HeaderLayout.vue:22
  1820. msgid "Logout successful"
  1821. msgstr ""
  1822. #: src/views/preference/Preference.vue:106
  1823. msgid "Logrotate"
  1824. msgstr ""
  1825. #: src/views/preference/tabs/LogrotateSettings.vue:13
  1826. msgid "Logrotate, by default, is enabled in most mainstream Linux distributions for users who install Nginx UI on the host machine, so you don't need to modify the parameters on this page. For users who install Nginx UI using Docker containers, you can manually enable this option. The crontab task scheduler of Nginx UI will execute the logrotate command at the interval you set in minutes."
  1827. msgstr ""
  1828. #: src/views/site/components/SiteStatusSegmented.vue:138
  1829. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:68
  1830. #: src/views/site/site_list/columns.tsx:112
  1831. msgid "Maintenance"
  1832. msgstr ""
  1833. #: src/views/site/components/SiteStatusSegmented.vue:66
  1834. msgid "Maintenance mode disabled successfully"
  1835. msgstr ""
  1836. #: src/views/site/components/SiteStatusSegmented.vue:53
  1837. msgid "Maintenance mode enabled successfully"
  1838. msgstr ""
  1839. #: src/components/AutoCertForm/AutoCertForm.vue:52
  1840. msgid "Make sure you have configured a reverse proxy for .well-known directory to HTTPChallengePort before obtaining the certificate."
  1841. msgstr ""
  1842. #: src/routes/modules/config.ts:10
  1843. #: src/views/config/ConfigEditor.vue:115
  1844. #: src/views/config/ConfigEditor.vue:166
  1845. #: src/views/config/ConfigList.vue:72
  1846. msgid "Manage Configs"
  1847. msgstr ""
  1848. #: src/routes/modules/sites.ts:10
  1849. #: src/views/site/site_list/SiteList.vue:78
  1850. msgid "Manage Sites"
  1851. msgstr ""
  1852. #: src/routes/modules/streams.ts:10
  1853. #: src/views/stream/StreamList.vue:177
  1854. msgid "Manage Streams"
  1855. msgstr ""
  1856. #: src/routes/modules/user.ts:10
  1857. #: src/views/user/User.vue:10
  1858. msgid "Manage Users"
  1859. msgstr ""
  1860. #: src/views/certificate/CertificateList/certColumns.tsx:31
  1861. msgid "Managed Certificate"
  1862. msgstr ""
  1863. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:251
  1864. msgid "Manager Files"
  1865. msgstr ""
  1866. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:261
  1867. msgid "Manager Sleep"
  1868. msgstr ""
  1869. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:286
  1870. msgid "Manager Threshold"
  1871. msgstr ""
  1872. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:32
  1873. msgid "Manual"
  1874. msgstr ""
  1875. #: src/views/dashboard/components/PerformanceTablesCard.vue:202
  1876. msgid "manually set"
  1877. msgstr ""
  1878. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:103
  1879. msgid "Master"
  1880. msgstr ""
  1881. #: src/composables/usePerformanceMetrics.ts:134
  1882. #: src/views/dashboard/components/PerformanceTablesCard.vue:90
  1883. msgid "Master process"
  1884. msgstr ""
  1885. #: src/composables/usePerformanceMetrics.ts:56
  1886. #: src/views/dashboard/components/ProcessDistributionCard.vue:13
  1887. msgid "Master Process"
  1888. msgstr ""
  1889. #: src/views/preference/tabs/AuthSettings.vue:135
  1890. msgid "Max Attempts"
  1891. msgstr ""
  1892. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:56
  1893. msgid "Max Concurrent Connections"
  1894. msgstr ""
  1895. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:42
  1896. msgid "Max Requests Per Second"
  1897. msgstr ""
  1898. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:199
  1899. msgid "Maximum Cache Size"
  1900. msgstr ""
  1901. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:100
  1902. msgid "Maximum client request body size"
  1903. msgstr ""
  1904. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:49
  1905. msgid "Maximum number of concurrent connections"
  1906. msgstr ""
  1907. #: src/composables/usePerformanceMetrics.ts:174
  1908. #: src/views/dashboard/components/PerformanceTablesCard.vue:126
  1909. msgid "Maximum number of connections per worker process"
  1910. msgstr ""
  1911. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:201
  1912. msgid "Maximum total size of the cache"
  1913. msgstr ""
  1914. #: src/views/dashboard/components/PerformanceTablesCard.vue:196
  1915. msgid "Maximum worker process number:"
  1916. msgstr ""
  1917. #: src/views/dashboard/ServerAnalytic.vue:222
  1918. #: src/views/dashboard/ServerAnalytic.vue:223
  1919. msgid "Memory"
  1920. msgstr ""
  1921. #: src/views/dashboard/ServerAnalytic.vue:212
  1922. msgid "Memory and Storage"
  1923. msgstr ""
  1924. #: src/views/dashboard/components/ResourceUsageCard.vue:51
  1925. msgid "Memory Usage (RSS)"
  1926. msgstr ""
  1927. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:81
  1928. msgid "Minimum file size for compression"
  1929. msgstr ""
  1930. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:224
  1931. msgid "Minimum Free Space"
  1932. msgstr ""
  1933. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:226
  1934. msgid "Minimum free space in the cache directory"
  1935. msgstr ""
  1936. #: src/views/preference/tabs/LogrotateSettings.vue:30
  1937. msgid "Minutes"
  1938. msgstr ""
  1939. #: src/views/preference/tabs/OpenAISettings.vue:20
  1940. msgid "Model"
  1941. msgstr ""
  1942. #: src/components/ConfigHistory/ConfigHistory.vue:55
  1943. msgid "Modified At"
  1944. msgstr ""
  1945. #: src/components/ChatGPT/ChatGPT.vue:352
  1946. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
  1947. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:498
  1948. #: src/views/config/ConfigList.vue:174
  1949. msgid "Modify"
  1950. msgstr ""
  1951. #: src/routes/modules/certificates.ts:36
  1952. #: src/views/certificate/CertificateEditor.vue:85
  1953. msgid "Modify Certificate"
  1954. msgstr ""
  1955. #: src/views/site/site_add/SiteAdd.vue:136
  1956. msgid "Modify Config"
  1957. msgstr ""
  1958. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:262
  1959. msgid "Modify Mode"
  1960. msgstr ""
  1961. #: src/views/dashboard/components/ModulesTable.vue:28
  1962. msgid "Module"
  1963. msgstr ""
  1964. #: src/views/dashboard/components/PerformanceTablesCard.vue:215
  1965. msgid "Modules"
  1966. msgstr ""
  1967. #: src/components/NgxConfigEditor/directive/DirectiveAdd.vue:51
  1968. msgid "Multi-line Directive"
  1969. msgstr ""
  1970. #: src/components/NgxConfigEditor/NgxUpstream.vue:178
  1971. #: src/views/certificate/ACMEUser.vue:13
  1972. #: src/views/certificate/CertificateEditor.vue:162
  1973. #: src/views/certificate/CertificateList/certColumns.tsx:10
  1974. #: src/views/certificate/DNSCredential.vue:11
  1975. #: src/views/config/components/Mkdir.vue:64
  1976. #: src/views/config/configColumns.tsx:7
  1977. #: src/views/config/ConfigEditor.vue:309
  1978. #: src/views/environments/group/columns.ts:8
  1979. #: src/views/environments/list/envColumns.tsx:9
  1980. #: src/views/nginx_log/NginxLogList.vue:30
  1981. #: src/views/preference/components/AuthSettings/AddPasskey.vue:75
  1982. #: src/views/site/site_edit/components/RightPanel/Basic.vue:35
  1983. #: src/views/site/site_list/columns.tsx:18
  1984. #: src/views/site/site_list/SiteDuplicate.vue:79
  1985. #: src/views/stream/components/RightPanel/Basic.vue:69
  1986. #: src/views/stream/components/StreamDuplicate.vue:71
  1987. #: src/views/stream/StreamList.vue:20
  1988. #: src/views/stream/StreamList.vue:252
  1989. msgid "Name"
  1990. msgstr ""
  1991. #: src/views/dashboard/NginxDashBoard.vue:170
  1992. msgid "Need to enable the stub_status module"
  1993. msgstr ""
  1994. #: src/views/dashboard/ServerAnalytic.vue:327
  1995. msgid "Network"
  1996. msgstr ""
  1997. #: src/views/dashboard/ServerAnalytic.vue:269
  1998. msgid "Network Statistics"
  1999. msgstr ""
  2000. #: src/views/dashboard/ServerAnalytic.vue:276
  2001. msgid "Network Total Receive"
  2002. msgstr ""
  2003. #: src/views/dashboard/ServerAnalytic.vue:282
  2004. msgid "Network Total Send"
  2005. msgstr ""
  2006. #: src/views/install/components/InstallView.vue:109
  2007. msgid "New Installation"
  2008. msgstr ""
  2009. #: src/views/config/components/Rename.vue:74
  2010. msgid "New name"
  2011. msgstr ""
  2012. #: src/views/config/ConfigEditor.vue:322
  2013. msgid "New Path"
  2014. msgstr ""
  2015. #: src/views/system/Upgrade.vue:230
  2016. msgid "New version released"
  2017. msgstr ""
  2018. #: src/views/certificate/components/WildcardCertificate.vue:89
  2019. #: src/views/install/components/InstallView.vue:96
  2020. #: src/views/site/site_add/SiteAdd.vue:123
  2021. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:214
  2022. msgid "Next"
  2023. msgstr ""
  2024. #: src/routes/modules/dashboard.ts:27
  2025. #: src/views/preference/Preference.vue:94
  2026. msgid "Nginx"
  2027. msgstr ""
  2028. #: src/views/preference/tabs/NginxSettings.vue:13
  2029. msgid "Nginx Access Log Path"
  2030. msgstr ""
  2031. #: src/language/generate.ts:16
  2032. msgid "Nginx access log path exists"
  2033. msgstr ""
  2034. #: src/constants/errors/self_check.ts:6
  2035. msgid "Nginx conf no http block"
  2036. msgstr ""
  2037. #: src/constants/errors/self_check.ts:8
  2038. msgid "Nginx conf no stream block"
  2039. msgstr ""
  2040. #: src/constants/errors/self_check.ts:15
  2041. msgid "Nginx conf not include conf.d directory"
  2042. msgstr ""
  2043. #: src/constants/errors/self_check.ts:7
  2044. msgid "Nginx conf not include sites-enabled"
  2045. msgstr ""
  2046. #: src/constants/errors/self_check.ts:9
  2047. msgid "Nginx conf not include stream-enabled"
  2048. msgstr ""
  2049. #: src/constants/errors/backup.ts:19
  2050. msgid "Nginx config directory is not set"
  2051. msgstr ""
  2052. #: src/language/generate.ts:23
  2053. msgid "Nginx configuration directory exists"
  2054. msgstr ""
  2055. #: src/language/generate.ts:48
  2056. msgid "Nginx configuration entry file exists"
  2057. msgstr ""
  2058. #: src/components/SystemRestore/SystemRestoreContent.vue:138
  2059. msgid "Nginx configuration has been restored"
  2060. msgstr ""
  2061. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:113
  2062. #: src/views/stream/components/StreamEditor.vue:74
  2063. msgid "Nginx Configuration Parse Error"
  2064. msgstr ""
  2065. #: src/views/preference/tabs/NginxSettings.vue:22
  2066. msgid "Nginx Configuration Path"
  2067. msgstr ""
  2068. #: src/views/preference/tabs/NginxSettings.vue:19
  2069. msgid "Nginx Configurations Directory"
  2070. msgstr ""
  2071. #: src/components/NginxControl/NginxControl.vue:64
  2072. msgid "Nginx Control"
  2073. msgstr ""
  2074. #: src/views/preference/tabs/NginxSettings.vue:46
  2075. msgid "Nginx Control Mode"
  2076. msgstr ""
  2077. #: src/composables/usePerformanceMetrics.ts:149
  2078. #: src/views/dashboard/components/PerformanceTablesCard.vue:105
  2079. msgid "Nginx CPU usage rate"
  2080. msgstr ""
  2081. #: src/views/preference/tabs/NginxSettings.vue:16
  2082. msgid "Nginx Error Log Path"
  2083. msgstr ""
  2084. #: src/language/generate.ts:7
  2085. msgid "Nginx error log path exists"
  2086. msgstr ""
  2087. #: src/constants/errors/nginx.ts:2
  2088. msgid "Nginx error: {0}"
  2089. msgstr ""
  2090. #: src/components/NgxConfigEditor/NginxStatusAlert.vue:15
  2091. #: src/composables/useNginxPerformance.ts:43
  2092. #: src/views/dashboard/NginxDashBoard.vue:109
  2093. #: src/views/dashboard/NginxDashBoard.vue:128
  2094. #: src/views/dashboard/NginxDashBoard.vue:77
  2095. msgid "Nginx is not running"
  2096. msgstr ""
  2097. #: src/constants/errors/docker.ts:9
  2098. msgid "Nginx is not running in another container"
  2099. msgstr ""
  2100. #: src/views/dashboard/NginxDashBoard.vue:109
  2101. msgid "Nginx is running"
  2102. msgstr ""
  2103. #: src/routes/modules/nginx_log.ts:9
  2104. #: src/views/nginx_log/NginxLog.vue:144
  2105. msgid "Nginx Log"
  2106. msgstr ""
  2107. #: src/views/preference/tabs/NginxSettings.vue:25
  2108. msgid "Nginx Log Directory Whitelist"
  2109. msgstr ""
  2110. #: src/composables/usePerformanceMetrics.ts:154
  2111. #: src/views/dashboard/components/PerformanceTablesCard.vue:110
  2112. msgid "Nginx Memory usage"
  2113. msgstr ""
  2114. #: src/views/preference/tabs/NginxSettings.vue:34
  2115. msgid "Nginx PID Path"
  2116. msgstr ""
  2117. #: src/language/generate.ts:39
  2118. msgid "Nginx PID path exists"
  2119. msgstr ""
  2120. #: src/views/preference/tabs/NginxSettings.vue:40
  2121. msgid "Nginx Reload Command"
  2122. msgstr ""
  2123. #: src/constants/errors/config.ts:5
  2124. #: src/constants/errors/site.ts:7
  2125. #: src/constants/errors/stream.ts:6
  2126. msgid "Nginx reload failed: {0}"
  2127. msgstr ""
  2128. #: src/views/environments/list/Environment.vue:41
  2129. msgid "Nginx reload operations have been dispatched to remote nodes"
  2130. msgstr ""
  2131. #: src/components/NginxControl/NginxControl.vue:26
  2132. msgid "Nginx reloaded successfully"
  2133. msgstr ""
  2134. #: src/views/preference/tabs/NginxSettings.vue:43
  2135. msgid "Nginx Restart Command"
  2136. msgstr ""
  2137. #: src/views/environments/list/Environment.vue:55
  2138. msgid "Nginx restart operations have been dispatched to remote nodes"
  2139. msgstr ""
  2140. #: src/components/NginxControl/NginxControl.vue:40
  2141. msgid "Nginx restarted successfully"
  2142. msgstr ""
  2143. #: src/views/preference/tabs/NginxSettings.vue:37
  2144. msgid "Nginx Test Config Command"
  2145. msgstr ""
  2146. #: src/constants/errors/config.ts:4
  2147. #: src/constants/errors/site.ts:6
  2148. #: src/constants/errors/stream.ts:5
  2149. msgid "Nginx test failed: {0}"
  2150. msgstr ""
  2151. #: src/views/dashboard/components/PerformanceTablesCard.vue:181
  2152. msgid "Nginx theoretical maximum performance"
  2153. msgstr ""
  2154. #: src/constants/errors/system.ts:2
  2155. msgid "Nginx UI already installed"
  2156. msgstr ""
  2157. #: src/components/SystemRestore/SystemRestoreContent.vue:142
  2158. msgid "Nginx UI configuration has been restored"
  2159. msgstr ""
  2160. #: src/components/SystemRestore/SystemRestoreContent.vue:336
  2161. msgid "Nginx UI configuration has been restored and will restart automatically in a few seconds."
  2162. msgstr ""
  2163. #: src/language/generate.ts:32
  2164. msgid "Nginx.conf includes conf.d directory"
  2165. msgstr ""
  2166. #: src/language/generate.ts:5
  2167. msgid "Nginx.conf includes sites-enabled directory"
  2168. msgstr ""
  2169. #: src/language/generate.ts:20
  2170. msgid "Nginx.conf includes streams-enabled directory"
  2171. msgstr ""
  2172. #: src/components/ChatGPT/ChatGPT.vue:374
  2173. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:131
  2174. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:143
  2175. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:99
  2176. #: src/components/NgxConfigEditor/LocationEditor.vue:89
  2177. #: src/components/Notification/Notification.vue:110
  2178. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:63
  2179. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:94
  2180. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:510
  2181. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:524
  2182. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:538
  2183. #: src/views/notification/Notification.vue:37
  2184. #: src/views/preference/tabs/AuthSettings.vue:164
  2185. #: src/views/preference/tabs/CertSettings.vue:73
  2186. #: src/views/site/site_list/SiteList.vue:108
  2187. #: src/views/stream/StreamList.vue:229
  2188. msgid "No"
  2189. msgstr ""
  2190. #: src/views/environments/group/columns.ts:21
  2191. #: src/views/environments/group/EnvGroup.vue:34
  2192. msgid "No Action"
  2193. msgstr ""
  2194. #: src/views/dashboard/NginxDashBoard.vue:177
  2195. msgid "No data"
  2196. msgstr ""
  2197. #: src/components/ConfigHistory/DiffViewer.vue:54
  2198. msgid "No records selected"
  2199. msgstr ""
  2200. #: src/views/preference/Preference.vue:64
  2201. msgid "Node"
  2202. msgstr ""
  2203. #: src/views/site/site_edit/components/RightPanel/Basic.vue:41
  2204. #: src/views/site/site_list/columns.tsx:66
  2205. #: src/views/stream/components/RightPanel/Basic.vue:77
  2206. #: src/views/stream/StreamList.vue:30
  2207. msgid "Node Group"
  2208. msgstr ""
  2209. #: src/routes/modules/environments.ts:33
  2210. #: src/views/environments/group/EnvGroup.vue:10
  2211. msgid "Node Groups"
  2212. msgstr ""
  2213. #: src/views/preference/tabs/NodeSettings.vue:15
  2214. msgid "Node name"
  2215. msgstr ""
  2216. #: src/views/preference/tabs/NodeSettings.vue:11
  2217. msgid "Node Secret"
  2218. msgstr ""
  2219. #: src/routes/modules/environments.ts:25
  2220. msgid "Nodes"
  2221. msgstr ""
  2222. #: src/views/certificate/CertificateList/certColumns.tsx:88
  2223. msgid "Not After"
  2224. msgstr ""
  2225. #: src/routes/modules/error.ts:8
  2226. msgid "Not Found"
  2227. msgstr ""
  2228. #: src/views/dashboard/components/ModulesTable.vue:102
  2229. #: src/views/dashboard/components/ModulesTable.vue:106
  2230. msgid "Not Loaded"
  2231. msgstr ""
  2232. #: src/components/CertInfo/CertInfo.vue:41
  2233. msgid "Not Valid Before: %{date}"
  2234. msgstr ""
  2235. #: src/components/AutoCertForm/AutoCertForm.vue:38
  2236. #: src/views/certificate/DNSCredential.vue:49
  2237. msgid "Note"
  2238. msgstr ""
  2239. #: src/views/site/site_edit/components/RightPanel/Basic.vue:65
  2240. #: src/views/stream/components/RightPanel/Basic.vue:99
  2241. msgid "Note, if the configuration file include other configurations or certificates, please synchronize them to the remote nodes in advance."
  2242. msgstr ""
  2243. #: src/views/notification/Notification.vue:28
  2244. msgid "Notification"
  2245. msgstr ""
  2246. #: src/components/Notification/Notification.vue:108
  2247. #: src/routes/modules/notifications.ts:10
  2248. msgid "Notifications"
  2249. msgstr ""
  2250. #: src/constants/errors/notification.ts:2
  2251. msgid "Notifier not found"
  2252. msgstr ""
  2253. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:26
  2254. msgid "Number of concurrent worker processes, auto sets to CPU core count"
  2255. msgstr ""
  2256. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:315
  2257. msgid "Number of files processed by cache loader at once"
  2258. msgstr ""
  2259. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:253
  2260. msgid "Number of files processed by cache manager at once"
  2261. msgstr ""
  2262. #: src/composables/usePerformanceMetrics.ts:129
  2263. #: src/composables/usePerformanceMetrics.ts:169
  2264. #: src/views/dashboard/components/PerformanceTablesCard.vue:121
  2265. #: src/views/dashboard/components/PerformanceTablesCard.vue:85
  2266. msgid "Number of worker processes"
  2267. msgstr ""
  2268. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:185
  2269. msgid "Obtain certificate"
  2270. msgstr ""
  2271. #: src/language/constants.ts:15
  2272. msgid "Obtaining certificate"
  2273. msgstr ""
  2274. #: src/components/AutoCertForm/AutoCertForm.vue:94
  2275. msgid "OCSP Must Staple"
  2276. msgstr ""
  2277. #: src/components/AutoCertForm/AutoCertForm.vue:98
  2278. msgid "OCSP Must Staple may cause errors for some users on first access using Firefox."
  2279. msgstr ""
  2280. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:73
  2281. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:165
  2282. msgid "Off"
  2283. msgstr ""
  2284. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:159
  2285. #: src/components/NodeSelector/NodeSelector.vue:109
  2286. #: src/views/dashboard/Environments.vue:107
  2287. #: src/views/environments/list/envColumns.tsx:56
  2288. msgid "Offline"
  2289. msgstr ""
  2290. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:247
  2291. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:511
  2292. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:525
  2293. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:539
  2294. #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:188
  2295. msgid "Ok"
  2296. msgstr ""
  2297. #: src/components/ChatGPT/ChatGPT.vue:375
  2298. #: src/components/NgxConfigEditor/NgxServer.vue:53
  2299. #: src/components/NgxConfigEditor/NgxUpstream.vue:36
  2300. #: src/components/Notification/Notification.vue:111
  2301. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:95
  2302. #: src/views/notification/Notification.vue:38
  2303. #: src/views/site/components/SiteStatusSegmented.vue:96
  2304. #: src/views/site/site_edit/components/Cert/IssueCert.vue:39
  2305. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:142
  2306. #: src/views/site/site_edit/components/EnableTLS/EnableTLS.vue:20
  2307. #: src/views/site/site_list/SiteList.vue:109
  2308. #: src/views/stream/components/RightPanel/Basic.vue:46
  2309. #: src/views/stream/StreamList.vue:230
  2310. #: src/views/system/Backup/BackupCreator.vue:149
  2311. msgid "OK"
  2312. msgstr ""
  2313. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:72
  2314. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:164
  2315. msgid "On"
  2316. msgstr ""
  2317. #: src/views/certificate/DNSCredential.vue:59
  2318. msgid "Once the verification is complete, the records will be removed."
  2319. msgstr ""
  2320. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:159
  2321. #: src/components/NodeSelector/NodeSelector.vue:103
  2322. #: src/components/NodeSelector/NodeSelector.vue:89
  2323. #: src/views/dashboard/Environments.vue:100
  2324. #: src/views/environments/list/envColumns.tsx:52
  2325. msgid "Online"
  2326. msgstr ""
  2327. #: src/components/SystemRestore/SystemRestoreContent.vue:78
  2328. msgid "Only zip files are allowed"
  2329. msgstr ""
  2330. #: src/views/preference/Preference.vue:100
  2331. msgid "OpenAI"
  2332. msgstr ""
  2333. #: src/components/TwoFA/Authorization.vue:100
  2334. #: src/views/other/Login.vue:231
  2335. msgid "Or"
  2336. msgstr ""
  2337. #: src/views/preference/components/AuthSettings/TOTP.vue:112
  2338. msgid "Or enter the secret: %{secret}"
  2339. msgstr ""
  2340. #: src/views/config/components/Rename.vue:70
  2341. msgid "Original name"
  2342. msgstr ""
  2343. #: src/views/system/Upgrade.vue:194
  2344. msgid "OS"
  2345. msgstr ""
  2346. #: src/views/dashboard/ServerAnalytic.vue:189
  2347. msgid "OS:"
  2348. msgstr ""
  2349. #: src/composables/usePerformanceMetrics.ts:144
  2350. #: src/views/dashboard/components/PerformanceTablesCard.vue:100
  2351. msgid "Other Nginx processes"
  2352. msgstr ""
  2353. #: src/composables/usePerformanceMetrics.ts:58
  2354. #: src/views/dashboard/components/ProcessDistributionCard.vue:15
  2355. msgid "Other Processes"
  2356. msgstr ""
  2357. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:103
  2358. msgid "Others"
  2359. msgstr ""
  2360. #: src/constants/errors/user.ts:9
  2361. msgid "Otp or recovery code empty"
  2362. msgstr ""
  2363. #: src/views/config/ConfigEditor.vue:347
  2364. msgid "Overwrite"
  2365. msgstr ""
  2366. #: src/views/config/ConfigEditor.vue:351
  2367. msgid "Overwrite exist file"
  2368. msgstr ""
  2369. #: src/views/preference/tabs/AppSettings.vue:14
  2370. msgid "Page Size"
  2371. msgstr ""
  2372. #: src/components/NgxConfigEditor/directive/DirectiveAdd.vue:77
  2373. msgid "Params"
  2374. msgstr ""
  2375. #: src/views/dashboard/components/ParamsOptimization.vue:109
  2376. #: src/views/dashboard/components/ParamsOptimization.vue:115
  2377. msgid "Params Optimization"
  2378. msgstr ""
  2379. #: src/views/preference/components/AuthSettings/Passkey.vue:59
  2380. msgid "Passkey"
  2381. msgstr ""
  2382. #: src/views/preference/components/AuthSettings/Passkey.vue:62
  2383. msgid "Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method."
  2384. msgstr ""
  2385. #: src/views/other/Login.vue:183
  2386. #: src/views/user/userColumns.tsx:18
  2387. msgid "Password"
  2388. msgstr ""
  2389. #: src/views/install/components/InstallForm.vue:95
  2390. msgid "Password (*)"
  2391. msgstr ""
  2392. #: src/constants/errors/user.ts:2
  2393. msgid "Password incorrect"
  2394. msgstr ""
  2395. #: src/views/install/components/InstallForm.vue:45
  2396. msgid "Password length cannot exceed 20 characters"
  2397. msgstr ""
  2398. #: src/components/NgxConfigEditor/LocationEditor.vue:110
  2399. #: src/components/NgxConfigEditor/LocationEditor.vue:138
  2400. #: src/views/config/ConfigEditor.vue:316
  2401. #: src/views/nginx_log/NginxLogList.vue:38
  2402. msgid "Path"
  2403. msgstr ""
  2404. #: src/constants/errors/cert.ts:7
  2405. #: src/constants/errors/config.ts:2
  2406. msgid "Path: {0} is not under the nginx conf dir: {1}"
  2407. msgstr ""
  2408. #: src/constants/errors/cert.ts:6
  2409. msgid "Payload resource is nil"
  2410. msgstr ""
  2411. #: src/views/environments/list/BatchUpgrader.vue:232
  2412. msgid "Perform"
  2413. msgstr ""
  2414. #: src/language/constants.ts:29
  2415. msgid "Perform core upgrade error"
  2416. msgstr ""
  2417. #: src/views/dashboard/components/ParamsOptimization.vue:121
  2418. msgid "Performance"
  2419. msgstr ""
  2420. #: src/views/dashboard/NginxDashBoard.vue:182
  2421. msgid "Performance Metrics"
  2422. msgstr ""
  2423. #: src/views/dashboard/components/ParamsOptimization.vue:86
  2424. msgid "Performance settings saved successfully"
  2425. msgstr ""
  2426. #: src/language/constants.ts:28
  2427. msgid "Performing core upgrade"
  2428. msgstr ""
  2429. #: src/constants/errors/self_check.ts:19
  2430. msgid "PID path not exist"
  2431. msgstr ""
  2432. #: src/constants/errors/crypto.ts:2
  2433. msgid "Plain text is empty"
  2434. msgstr ""
  2435. #: src/views/dashboard/NginxDashBoard.vue:171
  2436. msgid "Please enable the stub_status module to get request statistics, connection count, etc."
  2437. msgstr ""
  2438. #: src/views/preference/components/AuthSettings/AddPasskey.vue:69
  2439. msgid "Please enter a name for the passkey you wish to create and click the OK button below."
  2440. msgstr ""
  2441. #: src/components/TwoFA/Authorization.vue:85
  2442. msgid "Please enter the OTP code:"
  2443. msgstr ""
  2444. #: src/components/SystemRestore/SystemRestoreContent.vue:112
  2445. msgid "Please enter the security token"
  2446. msgstr ""
  2447. #: src/components/SystemRestore/SystemRestoreContent.vue:210
  2448. #: src/components/SystemRestore/SystemRestoreContent.vue:287
  2449. msgid "Please enter the security token received during backup"
  2450. msgstr ""
  2451. #: src/views/certificate/DNSCredential.vue:53
  2452. msgid "Please fill in the API authentication credentials provided by your DNS provider."
  2453. msgstr ""
  2454. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:106
  2455. msgid "Please fill in the required fields"
  2456. msgstr ""
  2457. #: src/components/AutoCertForm/AutoCertForm.vue:56
  2458. msgid "Please first add credentials in Certification > DNS Credentials, and then select one of the credentialsbelow to request the API of the DNS provider."
  2459. msgstr ""
  2460. #: src/components/Notification/notifications.ts:166
  2461. #: src/language/constants.ts:59
  2462. msgid "Please generate new recovery codes in the preferences immediately to prevent lockout."
  2463. msgstr ""
  2464. #: src/views/config/components/Rename.vue:65
  2465. #: src/views/config/ConfigEditor.vue:302
  2466. msgid "Please input a filename"
  2467. msgstr ""
  2468. #: src/views/config/components/Mkdir.vue:56
  2469. msgid "Please input a folder name"
  2470. msgstr ""
  2471. #: src/views/stream/components/StreamDuplicate.vue:25
  2472. msgid "Please input name, this will be used as the filename of the new configuration!"
  2473. msgstr ""
  2474. #: src/views/site/site_list/SiteDuplicate.vue:33
  2475. msgid "Please input name, this will be used as the filename of the new configuration."
  2476. msgstr ""
  2477. #: src/views/install/components/InstallForm.vue:25
  2478. msgid "Please input your E-mail!"
  2479. msgstr ""
  2480. #: src/views/install/components/InstallForm.vue:41
  2481. #: src/views/other/Login.vue:47
  2482. msgid "Please input your password!"
  2483. msgstr ""
  2484. #: src/views/install/components/InstallForm.vue:31
  2485. #: src/views/other/Login.vue:41
  2486. msgid "Please input your username!"
  2487. msgstr ""
  2488. #: src/views/install/components/InstallView.vue:48
  2489. #: src/views/system/Backup/SystemRestore.vue:10
  2490. msgid "Please log in."
  2491. msgstr ""
  2492. #: src/views/certificate/DNSCredential.vue:62
  2493. msgid "Please note that the unit of time configurations below are all in seconds."
  2494. msgstr ""
  2495. #: src/views/install/components/InstallView.vue:102
  2496. msgid "Please resolve all issues before proceeding with installation"
  2497. msgstr ""
  2498. #: src/views/system/Backup/BackupCreator.vue:107
  2499. msgid "Please save this security token, you will need it for restoration:"
  2500. msgstr ""
  2501. #: src/components/SystemRestore/SystemRestoreContent.vue:107
  2502. msgid "Please select a backup file"
  2503. msgstr ""
  2504. #: src/views/environments/list/Environment.vue:112
  2505. #: src/views/environments/list/Environment.vue:35
  2506. msgid "Please select at least one node to reload Nginx"
  2507. msgstr ""
  2508. #: src/views/environments/list/Environment.vue:133
  2509. #: src/views/environments/list/Environment.vue:49
  2510. msgid "Please select at least one node to restart Nginx"
  2511. msgstr ""
  2512. #: src/views/environments/list/Environment.vue:91
  2513. msgid "Please select at least one node to upgrade"
  2514. msgstr ""
  2515. #: src/views/certificate/components/RemoveCert.vue:27
  2516. msgid "Please type \"Revoke\" to confirm"
  2517. msgstr ""
  2518. #: src/views/preference/tabs/ServerSettings.vue:22
  2519. msgid "Port"
  2520. msgstr ""
  2521. #: src/views/environments/group/columns.ts:17
  2522. #: src/views/environments/group/EnvGroup.vue:26
  2523. msgid "Post-sync Action"
  2524. msgstr ""
  2525. #: src/views/environments/list/BatchUpgrader.vue:167
  2526. #: src/views/environments/list/BatchUpgrader.vue:220
  2527. #: src/views/system/Upgrade.vue:213
  2528. #: src/views/system/Upgrade.vue:267
  2529. msgid "Pre-release"
  2530. msgstr ""
  2531. #: src/routes/modules/preference.ts:10
  2532. #: src/views/preference/Preference.vue:41
  2533. msgid "Preference"
  2534. msgstr ""
  2535. #: src/language/constants.ts:8
  2536. msgid "Preparing lego configurations"
  2537. msgstr ""
  2538. #: src/views/dashboard/components/ProcessDistributionCard.vue:26
  2539. msgid "Process Distribution"
  2540. msgstr ""
  2541. #: src/views/dashboard/components/PerformanceTablesCard.vue:155
  2542. msgid "Process information"
  2543. msgstr ""
  2544. #: src/language/constants.ts:3
  2545. msgid "Prohibit changing root password in demo"
  2546. msgstr ""
  2547. #: src/language/constants.ts:4
  2548. msgid "Prohibit deleting the default user"
  2549. msgstr ""
  2550. #: src/views/system/About.vue:51
  2551. msgid "Project Team"
  2552. msgstr ""
  2553. #: src/views/certificate/DNSCredential.vue:19
  2554. msgid "Provider"
  2555. msgstr ""
  2556. #: src/views/certificate/ACMEUser.vue:51
  2557. msgid "Proxy"
  2558. msgstr ""
  2559. #: src/views/preference/tabs/NodeSettings.vue:46
  2560. msgid "Public Security Number"
  2561. msgstr ""
  2562. #: src/constants/errors/site.ts:8
  2563. #: src/constants/errors/stream.ts:7
  2564. msgid "Read dir failed: {0}"
  2565. msgstr ""
  2566. #: src/composables/usePerformanceMetrics.ts:104
  2567. #: src/views/dashboard/components/PerformanceTablesCard.vue:64
  2568. msgid "Read requests"
  2569. msgstr ""
  2570. #: src/views/dashboard/ServerAnalytic.vue:37
  2571. #: src/views/dashboard/ServerAnalytic.vue:383
  2572. msgid "Reads"
  2573. msgstr ""
  2574. #: src/views/dashboard/ServerAnalytic.vue:334
  2575. #: src/views/dashboard/ServerAnalytic.vue:35
  2576. msgid "Receive"
  2577. msgstr ""
  2578. #: src/components/SelfCheck/SelfCheck.vue:23
  2579. msgid "Recheck"
  2580. msgstr ""
  2581. #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:43
  2582. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:533
  2583. msgid "Recover"
  2584. msgstr ""
  2585. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:189
  2586. msgid "Recovered Successfully"
  2587. msgstr ""
  2588. #: src/components/TwoFA/Authorization.vue:79
  2589. msgid "Recovery"
  2590. msgstr ""
  2591. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:68
  2592. msgid "Recovery Codes"
  2593. msgstr ""
  2594. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:73
  2595. msgid "Recovery codes are used to access your account when you lose access to your 2FA device. Each code can only be used once."
  2596. msgstr ""
  2597. #: src/views/preference/tabs/CertSettings.vue:40
  2598. msgid "Recursive Nameservers"
  2599. msgstr ""
  2600. #: src/components/ChatGPT/ChatGPT.vue:387
  2601. msgid "Regenerate response"
  2602. msgstr ""
  2603. #: src/views/certificate/ACMEUser.vue:137
  2604. msgid "Register"
  2605. msgstr ""
  2606. #: src/views/certificate/ACMEUser.vue:56
  2607. msgid "Register a user or use this account to issue a certificate through an HTTP proxy."
  2608. msgstr ""
  2609. #: src/views/certificate/ACMEUser.vue:106
  2610. msgid "Register failed"
  2611. msgstr ""
  2612. #: src/views/certificate/ACMEUser.vue:77
  2613. msgid "Register On Startup"
  2614. msgstr ""
  2615. #: src/views/preference/components/AuthSettings/AddPasskey.vue:25
  2616. msgid "Register passkey successfully"
  2617. msgstr ""
  2618. #: src/views/certificate/ACMEUser.vue:104
  2619. msgid "Register successfully"
  2620. msgstr ""
  2621. #: src/language/constants.ts:14
  2622. msgid "Registering user"
  2623. msgstr ""
  2624. #: src/views/certificate/ACMEUser.vue:120
  2625. msgid "Registration Status"
  2626. msgstr ""
  2627. #: src/views/system/Upgrade.vue:152
  2628. msgid "Reinstall"
  2629. msgstr ""
  2630. #: src/views/system/Upgrade.vue:271
  2631. msgid "Release Note"
  2632. msgstr ""
  2633. #: src/components/ChatGPT/ChatGPT.vue:362
  2634. #: src/components/NginxControl/NginxControl.vue:99
  2635. msgid "Reload"
  2636. msgstr ""
  2637. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:136
  2638. #: src/views/environments/group/columns.ts:24
  2639. #: src/views/environments/group/EnvGroup.vue:37
  2640. #: src/views/environments/list/Environment.vue:120
  2641. #: src/views/environments/list/Environment.vue:128
  2642. msgid "Reload Nginx"
  2643. msgstr ""
  2644. #: src/constants/errors/nginx.ts:4
  2645. msgid "Reload nginx failed: {0}"
  2646. msgstr ""
  2647. #: src/components/Notification/notifications.ts:10
  2648. msgid "Reload Nginx on %{node} failed, response: %{resp}"
  2649. msgstr ""
  2650. #: src/components/Notification/notifications.ts:14
  2651. msgid "Reload Nginx on %{node} successfully"
  2652. msgstr ""
  2653. #: src/components/Notification/notifications.ts:9
  2654. msgid "Reload Remote Nginx Error"
  2655. msgstr ""
  2656. #: src/components/Notification/notifications.ts:13
  2657. msgid "Reload Remote Nginx Success"
  2658. msgstr ""
  2659. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:84
  2660. msgid "Reload request failed, please check your network connection"
  2661. msgstr ""
  2662. #: src/components/NginxControl/NginxControl.vue:73
  2663. msgid "Reloading"
  2664. msgstr ""
  2665. #: src/language/constants.ts:18
  2666. msgid "Reloading nginx"
  2667. msgstr ""
  2668. #: src/views/preference/tabs/AuthSettings.vue:169
  2669. msgid "Remove"
  2670. msgstr ""
  2671. #: src/views/preference/components/AuthSettings/Passkey.vue:46
  2672. #: src/views/preference/tabs/AuthSettings.vue:51
  2673. msgid "Remove successfully"
  2674. msgstr ""
  2675. #: src/components/Notification/Notification.vue:79
  2676. msgid "Removed successfully"
  2677. msgstr ""
  2678. #: src/components/NgxConfigEditor/NgxUpstream.vue:126
  2679. #: src/views/config/components/ConfigName.vue:51
  2680. #: src/views/config/components/Rename.vue:56
  2681. #: src/views/config/ConfigList.vue:181
  2682. #: src/views/site/site_edit/components/ConfigName/ConfigName.vue:44
  2683. #: src/views/stream/components/ConfigName.vue:44
  2684. msgid "Rename"
  2685. msgstr ""
  2686. #: src/components/Notification/notifications.ts:62
  2687. msgid "Rename %{orig_path} to %{new_path} on %{env_name} failed"
  2688. msgstr ""
  2689. #: src/components/Notification/notifications.ts:66
  2690. msgid "Rename %{orig_path} to %{new_path} on %{env_name} successfully"
  2691. msgstr ""
  2692. #: src/components/Notification/notifications.ts:61
  2693. #: src/language/constants.ts:42
  2694. msgid "Rename Remote Config Error"
  2695. msgstr ""
  2696. #: src/components/Notification/notifications.ts:65
  2697. #: src/language/constants.ts:41
  2698. msgid "Rename Remote Config Success"
  2699. msgstr ""
  2700. #: src/components/Notification/notifications.ts:109
  2701. #: src/language/constants.ts:56
  2702. msgid "Rename Remote Site Error"
  2703. msgstr ""
  2704. #: src/components/Notification/notifications.ts:113
  2705. #: src/language/constants.ts:55
  2706. msgid "Rename Remote Site Success"
  2707. msgstr ""
  2708. #: src/components/Notification/notifications.ts:149
  2709. msgid "Rename Remote Stream Error"
  2710. msgstr ""
  2711. #: src/components/Notification/notifications.ts:153
  2712. msgid "Rename Remote Stream Success"
  2713. msgstr ""
  2714. #: src/components/Notification/notifications.ts:110
  2715. msgid "Rename site %{name} to %{new_name} on %{node} failed"
  2716. msgstr ""
  2717. #: src/components/Notification/notifications.ts:114
  2718. msgid "Rename site %{name} to %{new_name} on %{node} successfully"
  2719. msgstr ""
  2720. #: src/components/Notification/notifications.ts:150
  2721. msgid "Rename stream %{name} to %{new_name} on %{node} failed"
  2722. msgstr ""
  2723. #: src/components/Notification/notifications.ts:154
  2724. msgid "Rename stream %{name} to %{new_name} on %{node} successfully"
  2725. msgstr ""
  2726. #: src/views/config/components/Rename.vue:43
  2727. msgid "Rename successfully"
  2728. msgstr ""
  2729. #: src/views/config/components/ConfigName.vue:30
  2730. #: src/views/site/site_edit/components/ConfigName/ConfigName.vue:27
  2731. #: src/views/stream/components/ConfigName.vue:27
  2732. msgid "Renamed successfully"
  2733. msgstr ""
  2734. #: src/views/certificate/components/RenewCert.vue:46
  2735. #: src/views/certificate/components/RenewCert.vue:53
  2736. msgid "Renew Certificate"
  2737. msgstr ""
  2738. #: src/language/constants.ts:36
  2739. msgid "Renew Certificate Error"
  2740. msgstr ""
  2741. #: src/language/constants.ts:35
  2742. msgid "Renew Certificate Success"
  2743. msgstr ""
  2744. #: src/views/certificate/components/RenewCert.vue:28
  2745. #: src/views/certificate/components/WildcardCertificate.vue:46
  2746. msgid "Renew successfully"
  2747. msgstr ""
  2748. #: src/views/dashboard/components/PerformanceTablesCard.vue:142
  2749. msgid "Request statistics"
  2750. msgstr ""
  2751. #: src/constants/errors/crypto.ts:4
  2752. msgid "Request timeout"
  2753. msgstr ""
  2754. #: src/constants/errors/validate.ts:2
  2755. #: src/language/constants.ts:33
  2756. msgid "Requested with wrong parameters"
  2757. msgstr ""
  2758. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:77
  2759. msgid "Requests Per Connection"
  2760. msgstr ""
  2761. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:442
  2762. msgid "Reset"
  2763. msgstr ""
  2764. #: src/views/preference/components/AuthSettings/TOTP.vue:93
  2765. msgid "Reset 2FA"
  2766. msgstr ""
  2767. #: src/views/dashboard/components/ResourceUsageCard.vue:53
  2768. msgid "Resident Set Size: Actual memory resident in physical memory, including all shared library memory, which will be repeated calculated for multiple processes"
  2769. msgstr ""
  2770. #: src/composables/usePerformanceMetrics.ts:109
  2771. #: src/views/dashboard/components/PerformanceTablesCard.vue:69
  2772. msgid "Responses"
  2773. msgstr ""
  2774. #: src/components/NginxControl/NginxControl.vue:92
  2775. msgid "Restart"
  2776. msgstr ""
  2777. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:148
  2778. #: src/views/environments/list/Environment.vue:141
  2779. #: src/views/environments/list/Environment.vue:149
  2780. msgid "Restart Nginx"
  2781. msgstr ""
  2782. #: src/components/Notification/notifications.ts:18
  2783. msgid "Restart Nginx on %{node} failed, response: %{resp}"
  2784. msgstr ""
  2785. #: src/components/Notification/notifications.ts:22
  2786. msgid "Restart Nginx on %{node} successfully"
  2787. msgstr ""
  2788. #: src/components/Notification/notifications.ts:17
  2789. msgid "Restart Remote Nginx Error"
  2790. msgstr ""
  2791. #: src/components/Notification/notifications.ts:21
  2792. msgid "Restart Remote Nginx Success"
  2793. msgstr ""
  2794. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:104
  2795. msgid "Restart request failed, please check your network connection"
  2796. msgstr ""
  2797. #: src/components/NginxControl/NginxControl.vue:78
  2798. msgid "Restarting"
  2799. msgstr ""
  2800. #: src/components/SystemRestore/SystemRestoreContent.vue:135
  2801. msgid "Restore completed successfully"
  2802. msgstr ""
  2803. #: src/views/install/components/InstallView.vue:112
  2804. msgid "Restore from Backup"
  2805. msgstr ""
  2806. #: src/components/SystemRestore/SystemRestoreContent.vue:223
  2807. #: src/components/SystemRestore/SystemRestoreContent.vue:300
  2808. msgid "Restore Nginx Configuration"
  2809. msgstr ""
  2810. #: src/components/SystemRestore/SystemRestoreContent.vue:234
  2811. #: src/components/SystemRestore/SystemRestoreContent.vue:311
  2812. msgid "Restore Nginx UI Configuration"
  2813. msgstr ""
  2814. #: src/components/ConfigHistory/DiffViewer.vue:412
  2815. #: src/components/ConfigHistory/DiffViewer.vue:425
  2816. msgid "Restore this version"
  2817. msgstr ""
  2818. #: src/views/certificate/components/RemoveCert.vue:26
  2819. #: src/views/certificate/components/RemoveCert.vue:95
  2820. msgid "Revoke"
  2821. msgstr ""
  2822. #: src/components/AutoCertForm/AutoCertForm.vue:113
  2823. msgid "Revoke Old Certificate"
  2824. msgstr ""
  2825. #: src/views/certificate/components/RemoveCert.vue:109
  2826. msgid "Revoke this certificate"
  2827. msgstr ""
  2828. #: src/views/certificate/components/RemoveCert.vue:117
  2829. msgid "Revoking a certificate will affect any services currently using it. This action cannot be undone."
  2830. msgstr ""
  2831. #: src/views/preference/tabs/AuthSettings.vue:107
  2832. msgid "RP Display Name"
  2833. msgstr ""
  2834. #: src/views/preference/tabs/AuthSettings.vue:113
  2835. msgid "RP Origins"
  2836. msgstr ""
  2837. #: src/views/preference/tabs/AuthSettings.vue:101
  2838. msgid "RPID"
  2839. msgstr ""
  2840. #: src/views/preference/tabs/ServerSettings.vue:25
  2841. msgid "Run Mode"
  2842. msgstr ""
  2843. #: src/components/NginxControl/NginxControl.vue:68
  2844. msgid "Running"
  2845. msgstr ""
  2846. #: src/components/ChatGPT/ChatGPT.vue:355
  2847. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:129
  2848. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:64
  2849. #: src/components/StdDesign/StdDetail/StdDetail.vue:93
  2850. #: src/views/certificate/CertificateEditor.vue:266
  2851. #: src/views/config/components/ConfigName.vue:59
  2852. #: src/views/config/ConfigEditor.vue:275
  2853. #: src/views/preference/components/AuthSettings/Passkey.vue:130
  2854. #: src/views/preference/Preference.vue:117
  2855. #: src/views/site/site_edit/components/ConfigName/ConfigName.vue:52
  2856. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:157
  2857. #: src/views/stream/components/ConfigName.vue:52
  2858. #: src/views/stream/components/StreamEditor.vue:113
  2859. msgid "Save"
  2860. msgstr ""
  2861. #: src/components/NgxConfigEditor/directive/DirectiveAdd.vue:112
  2862. msgid "Save Directive"
  2863. msgstr ""
  2864. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:45
  2865. #: src/views/site/site_add/SiteAdd.vue:38
  2866. msgid "Save error %{msg}"
  2867. msgstr ""
  2868. #: src/components/Notification/notifications.ts:117
  2869. #: src/language/constants.ts:48
  2870. msgid "Save Remote Site Error"
  2871. msgstr ""
  2872. #: src/components/Notification/notifications.ts:121
  2873. #: src/language/constants.ts:47
  2874. msgid "Save Remote Site Success"
  2875. msgstr ""
  2876. #: src/components/Notification/notifications.ts:157
  2877. msgid "Save Remote Stream Error"
  2878. msgstr ""
  2879. #: src/components/Notification/notifications.ts:161
  2880. msgid "Save Remote Stream Success"
  2881. msgstr ""
  2882. #: src/components/Notification/notifications.ts:118
  2883. msgid "Save site %{name} to %{node} failed"
  2884. msgstr ""
  2885. #: src/components/Notification/notifications.ts:122
  2886. msgid "Save site %{name} to %{node} successfully"
  2887. msgstr ""
  2888. #: src/components/Notification/notifications.ts:158
  2889. msgid "Save stream %{name} to %{node} failed"
  2890. msgstr ""
  2891. #: src/components/Notification/notifications.ts:162
  2892. msgid "Save stream %{name} to %{node} successfully"
  2893. msgstr ""
  2894. #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:47
  2895. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:97
  2896. #: src/views/certificate/CertificateEditor.vue:49
  2897. #: src/views/preference/store/index.ts:118
  2898. msgid "Save successfully"
  2899. msgstr ""
  2900. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:43
  2901. #: src/views/config/ConfigEditor.vue:194
  2902. #: src/views/site/site_add/SiteAdd.vue:29
  2903. #: src/views/site/site_edit/components/SiteEditor/SiteEditor.vue:40
  2904. msgid "Saved successfully"
  2905. msgstr ""
  2906. #: src/constants/errors/self_check.ts:20
  2907. msgid "Sbin path not exist"
  2908. msgstr ""
  2909. #: src/views/preference/components/AuthSettings/TOTP.vue:69
  2910. msgid "Scan the QR code with your mobile phone to add the account to the app."
  2911. msgstr ""
  2912. #: src/views/certificate/components/DNSChallenge.vue:90
  2913. msgid "SDK"
  2914. msgstr ""
  2915. #: src/language/constants.ts:62
  2916. msgid "Search"
  2917. msgstr ""
  2918. #: src/language/constants.ts:61
  2919. msgid "Search module name"
  2920. msgstr ""
  2921. #: src/views/preference/components/AuthSettings/TOTP.vue:109
  2922. msgid "Secret has been copied"
  2923. msgstr ""
  2924. #: src/components/SystemRestore/SystemRestoreContent.vue:207
  2925. #: src/components/SystemRestore/SystemRestoreContent.vue:284
  2926. msgid "Security Token"
  2927. msgstr ""
  2928. #: src/views/system/Backup/BackupCreator.vue:94
  2929. msgid "Security Token Information"
  2930. msgstr ""
  2931. #: src/views/environments/group/EnvGroup.vue:29
  2932. msgid "Select an action after sync"
  2933. msgstr ""
  2934. #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:189
  2935. msgid "Selector"
  2936. msgstr ""
  2937. #: src/components/SelfCheck/SelfCheck.vue:15
  2938. #: src/routes/modules/system.ts:19
  2939. msgid "Self Check"
  2940. msgstr ""
  2941. #: src/components/SelfCheck/SelfCheckHeaderBanner.vue:37
  2942. #: src/components/SelfCheck/SelfCheckHeaderBanner.vue:60
  2943. msgid "Self check failed, Nginx UI may not work properly"
  2944. msgstr ""
  2945. #: src/views/dashboard/ServerAnalytic.vue:344
  2946. #: src/views/dashboard/ServerAnalytic.vue:35
  2947. msgid "Send"
  2948. msgstr ""
  2949. #: src/routes/modules/dashboard.ts:19
  2950. #: src/views/preference/Preference.vue:46
  2951. msgid "Server"
  2952. msgstr ""
  2953. #: src/views/dashboard/ServerAnalytic.vue:175
  2954. msgid "Server Info"
  2955. msgstr ""
  2956. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:106
  2957. msgid "Server Names Hash Bucket Size"
  2958. msgstr ""
  2959. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:107
  2960. msgid "Server names hash table size"
  2961. msgstr ""
  2962. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:105
  2963. msgid "server_name not found in directives"
  2964. msgstr ""
  2965. #: src/constants/errors/nginx_log.ts:3
  2966. msgid "ServerIdx out of range"
  2967. msgstr ""
  2968. #: src/constants/errors/user.ts:12
  2969. msgid "Session not found"
  2970. msgstr ""
  2971. #: src/views/preference/tabs/CertSettings.vue:36
  2972. msgid "Set the recursive nameservers to override the systems nameservers for the step of DNS challenge."
  2973. msgstr ""
  2974. #: src/views/site/components/SiteStatusSegmented.vue:89
  2975. msgid "set to maintenance mode"
  2976. msgstr ""
  2977. #: src/language/constants.ts:11
  2978. msgid "Setting DNS01 challenge provider"
  2979. msgstr ""
  2980. #: src/language/constants.ts:12
  2981. msgid "Setting environment variables"
  2982. msgstr ""
  2983. #: src/language/constants.ts:10
  2984. msgid "Setting HTTP01 challenge provider"
  2985. msgstr ""
  2986. #: src/constants/errors/nginx_log.ts:8
  2987. msgid "Settings.NginxLogSettings.AccessLogPath is empty, refer to https://nginxui.com/guide/config-nginx.html for more information"
  2988. msgstr ""
  2989. #: src/constants/errors/nginx_log.ts:7
  2990. msgid "Settings.NginxLogSettings.ErrorLogPath is empty, refer to https://nginxui.com/guide/config-nginx.html for more information"
  2991. msgstr ""
  2992. #: src/views/install/components/InstallView.vue:65
  2993. msgid "Setup your Nginx UI"
  2994. msgstr ""
  2995. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:147
  2996. msgid "Shared Memory Zone"
  2997. msgstr ""
  2998. #: src/components/SensitiveString/SensitiveString.vue:40
  2999. msgid "Show"
  3000. msgstr ""
  3001. #: src/views/other/Login.vue:240
  3002. msgid "Sign in with a passkey"
  3003. msgstr ""
  3004. #: src/components/NgxConfigEditor/directive/DirectiveAdd.vue:48
  3005. msgid "Single Directive"
  3006. msgstr ""
  3007. #: src/views/site/site_add/SiteAdd.vue:129
  3008. msgid "Site Config Created Successfully"
  3009. msgstr ""
  3010. #: src/constants/errors/site.ts:4
  3011. msgid "Site is enabled"
  3012. msgstr ""
  3013. #: src/constants/errors/site.ts:5
  3014. msgid "Site is in maintenance mode"
  3015. msgstr ""
  3016. #: src/routes/modules/nginx_log.ts:31
  3017. msgid "Site Logs"
  3018. msgstr ""
  3019. #: src/constants/errors/site.ts:2
  3020. msgid "Site not found"
  3021. msgstr ""
  3022. #: src/language/generate.ts:38
  3023. msgid "Sites directory exists"
  3024. msgstr ""
  3025. #: src/routes/modules/sites.ts:19
  3026. msgid "Sites List"
  3027. msgstr ""
  3028. #: src/constants/errors/self_check.ts:11
  3029. msgid "Sites-available directory not exist"
  3030. msgstr ""
  3031. #: src/constants/errors/self_check.ts:12
  3032. msgid "Sites-enabled directory not exist"
  3033. msgstr ""
  3034. #: src/views/preference/tabs/NodeSettings.vue:23
  3035. msgid "Skip Installation"
  3036. msgstr ""
  3037. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:325
  3038. msgid "Sleep time between cache loader iterations"
  3039. msgstr ""
  3040. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:263
  3041. msgid "Sleep time between cache manager iterations"
  3042. msgstr ""
  3043. #: src/views/certificate/CertificateEditor.vue:213
  3044. msgid "SSL Certificate Content"
  3045. msgstr ""
  3046. #: src/constants/errors/system.ts:8
  3047. msgid "SSL certificate file must be under Nginx configuration directory: {0}"
  3048. msgstr ""
  3049. #: src/constants/errors/system.ts:6
  3050. msgid "SSL certificate file not found"
  3051. msgstr ""
  3052. #: src/views/certificate/CertificateEditor.vue:227
  3053. msgid "SSL Certificate Key Content"
  3054. msgstr ""
  3055. #: src/views/certificate/CertificateEditor.vue:192
  3056. msgid "SSL Certificate Key Path"
  3057. msgstr ""
  3058. #: src/views/certificate/CertificateEditor.vue:177
  3059. #: src/views/preference/tabs/ServerSettings.vue:37
  3060. msgid "SSL Certificate Path"
  3061. msgstr ""
  3062. #: src/constants/errors/system.ts:4
  3063. msgid "SSL certificate path is required when HTTPS is enabled"
  3064. msgstr ""
  3065. #: src/constants/errors/system.ts:9
  3066. msgid "SSL key file must be under Nginx configuration directory: {0}"
  3067. msgstr ""
  3068. #: src/constants/errors/system.ts:7
  3069. msgid "SSL key file not found"
  3070. msgstr ""
  3071. #: src/views/preference/tabs/ServerSettings.vue:41
  3072. msgid "SSL Key Path"
  3073. msgstr ""
  3074. #: src/constants/errors/system.ts:5
  3075. msgid "SSL key path is required when HTTPS is enabled"
  3076. msgstr ""
  3077. #: src/views/other/Login.vue:197
  3078. msgid "SSO Login"
  3079. msgstr ""
  3080. #: src/views/environments/list/BatchUpgrader.vue:164
  3081. #: src/views/environments/list/BatchUpgrader.vue:214
  3082. #: src/views/system/Upgrade.vue:210
  3083. #: src/views/system/Upgrade.vue:261
  3084. msgid "Stable"
  3085. msgstr ""
  3086. #: src/components/SystemRestore/SystemRestoreContent.vue:246
  3087. #: src/components/SystemRestore/SystemRestoreContent.vue:323
  3088. msgid "Start Restore"
  3089. msgstr ""
  3090. #: src/views/dashboard/components/ModulesTable.vue:89
  3091. #: src/views/dashboard/components/ModulesTable.vue:93
  3092. msgid "Static"
  3093. msgstr ""
  3094. #: src/views/certificate/ACMEUser.vue:65
  3095. #: src/views/certificate/CertificateList/certColumns.tsx:65
  3096. #: src/views/dashboard/components/ModulesTable.vue:97
  3097. #: src/views/environments/list/envColumns.tsx:44
  3098. #: src/views/site/site_edit/components/RightPanel/Basic.vue:28
  3099. #: src/views/site/site_list/columns.tsx:90
  3100. #: src/views/stream/StreamList.vue:47
  3101. msgid "Status"
  3102. msgstr ""
  3103. #: src/components/NginxControl/NginxControl.vue:83
  3104. msgid "Stopped"
  3105. msgstr ""
  3106. #: src/views/dashboard/ServerAnalytic.vue:250
  3107. #: src/views/dashboard/ServerAnalytic.vue:251
  3108. msgid "Storage"
  3109. msgstr ""
  3110. #: src/constants/errors/stream.ts:4
  3111. msgid "Stream is enabled"
  3112. msgstr ""
  3113. #: src/constants/errors/stream.ts:2
  3114. msgid "Stream not found"
  3115. msgstr ""
  3116. #: src/language/generate.ts:40
  3117. msgid "Streams directory exists"
  3118. msgstr ""
  3119. #: src/constants/errors/self_check.ts:13
  3120. msgid "Streams-available directory not exist"
  3121. msgstr ""
  3122. #: src/constants/errors/self_check.ts:14
  3123. msgid "Streams-enabled directory not exist"
  3124. msgstr ""
  3125. #: src/views/preference/tabs/NginxSettings.vue:10
  3126. msgid "Stub Status Port"
  3127. msgstr ""
  3128. #: src/constants/index.ts:25
  3129. #: src/views/notification/notificationColumns.tsx:36
  3130. msgid "Success"
  3131. msgstr ""
  3132. #: src/components/SelfCheck/tasks/frontend/sse.ts:14
  3133. msgid "Support communication with the backend through the Server-Sent Events protocol. If your Nginx UI is being used via an Nginx reverse proxy, please refer to this link to write the corresponding configuration file: https://nginxui.com/guide/nginx-proxy-example.html"
  3134. msgstr ""
  3135. #: src/components/SelfCheck/tasks/frontend/websocket.ts:13
  3136. msgid "Support communication with the backend through the WebSocket protocol. If your Nginx UI is being used via an Nginx reverse proxy, please refer to this link to write the corresponding configuration file: https://nginxui.com/guide/nginx-proxy-example.html"
  3137. msgstr ""
  3138. #: src/components/SystemRestore/SystemRestoreContent.vue:197
  3139. #: src/components/SystemRestore/SystemRestoreContent.vue:274
  3140. msgid "Supported file type: .zip"
  3141. msgstr ""
  3142. #: src/views/dashboard/ServerAnalytic.vue:236
  3143. #: src/views/dashboard/ServerAnalytic.vue:237
  3144. msgid "Swap"
  3145. msgstr ""
  3146. #: src/components/SwitchAppearance/SwitchAppearance.vue:13
  3147. msgid "Switch to dark theme"
  3148. msgstr ""
  3149. #: src/components/SwitchAppearance/SwitchAppearance.vue:13
  3150. msgid "Switch to light theme"
  3151. msgstr ""
  3152. #: src/views/config/components/Rename.vue:81
  3153. msgid "Sync"
  3154. msgstr ""
  3155. #: src/views/certificate/CertificateList/certColumns.tsx:30
  3156. msgid "Sync Certificate"
  3157. msgstr ""
  3158. #: src/components/Notification/notifications.ts:46
  3159. msgid "Sync Certificate %{cert_name} to %{env_name} failed"
  3160. msgstr ""
  3161. #: src/components/Notification/notifications.ts:50
  3162. msgid "Sync Certificate %{cert_name} to %{env_name} successfully"
  3163. msgstr ""
  3164. #: src/components/Notification/notifications.ts:45
  3165. #: src/language/constants.ts:39
  3166. msgid "Sync Certificate Error"
  3167. msgstr ""
  3168. #: src/components/Notification/notifications.ts:49
  3169. #: src/language/constants.ts:38
  3170. msgid "Sync Certificate Success"
  3171. msgstr ""
  3172. #: src/components/Notification/notifications.ts:54
  3173. msgid "Sync config %{config_name} to %{env_name} failed"
  3174. msgstr ""
  3175. #: src/components/Notification/notifications.ts:58
  3176. msgid "Sync config %{config_name} to %{env_name} successfully"
  3177. msgstr ""
  3178. #: src/components/Notification/notifications.ts:53
  3179. #: src/language/constants.ts:45
  3180. msgid "Sync Config Error"
  3181. msgstr ""
  3182. #: src/components/Notification/notifications.ts:57
  3183. #: src/language/constants.ts:44
  3184. msgid "Sync Config Success"
  3185. msgstr ""
  3186. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:122
  3187. #: src/views/environments/group/EnvGroup.vue:18
  3188. msgid "Sync Nodes"
  3189. msgstr ""
  3190. #: src/views/site/site_edit/components/RightPanel/Basic.vue:58
  3191. #: src/views/site/site_edit/components/RightPanel/Basic.vue:71
  3192. #: src/views/stream/components/RightPanel/Basic.vue:105
  3193. #: src/views/stream/components/RightPanel/Basic.vue:92
  3194. msgid "Sync strategy"
  3195. msgstr ""
  3196. #: src/views/certificate/CertificateEditor.vue:206
  3197. msgid "Sync to"
  3198. msgstr ""
  3199. #: src/views/site/site_edit/components/RightPanel/Basic.vue:56
  3200. #: src/views/stream/components/RightPanel/Basic.vue:90
  3201. msgid "Synchronization"
  3202. msgstr ""
  3203. #: src/routes/modules/system.ts:11
  3204. msgid "System"
  3205. msgstr ""
  3206. #: src/views/system/Backup/BackupCreator.vue:71
  3207. msgid "System Backup"
  3208. msgstr ""
  3209. #: src/views/install/components/InstallView.vue:60
  3210. msgid "System Check"
  3211. msgstr ""
  3212. #: src/views/certificate/components/ACMEUserSelector.vue:88
  3213. msgid "System Initial User"
  3214. msgstr ""
  3215. #: src/components/SystemRestore/SystemRestoreContent.vue:174
  3216. msgid "System Restore"
  3217. msgstr ""
  3218. #: src/views/install/components/InstallView.vue:44
  3219. #: src/views/system/Backup/SystemRestore.vue:6
  3220. msgid "System restored successfully."
  3221. msgstr ""
  3222. #: src/constants/errors/self_check.ts:3
  3223. msgid "Task is not fixable"
  3224. msgstr ""
  3225. #: src/constants/errors/self_check.ts:2
  3226. msgid "Task not found"
  3227. msgstr ""
  3228. #: src/views/preference/components/ExternalNotify/telegram.ts:5
  3229. msgid "Telegram"
  3230. msgstr ""
  3231. #: src/routes/modules/terminal.ts:10
  3232. #: src/views/preference/Preference.vue:76
  3233. msgid "Terminal"
  3234. msgstr ""
  3235. #: src/views/preference/tabs/TerminalSettings.vue:10
  3236. msgid "Terminal Start Command"
  3237. msgstr ""
  3238. #: src/components/AutoCertForm/AutoCertForm.vue:48
  3239. msgid "The certificate for the domain will be checked 30 minutes, and will be renewed if it has been more than 1 week or the period you set in settings since it was last issued."
  3240. msgstr ""
  3241. #: src/views/preference/tabs/NodeSettings.vue:37
  3242. msgid "The ICP Number should only contain letters, unicode, numbers, hyphens, dashes, colons, and dots."
  3243. msgstr ""
  3244. #: src/views/certificate/CertificateEditor.vue:216
  3245. msgid "The input is not a SSL Certificate"
  3246. msgstr ""
  3247. #: src/views/certificate/CertificateEditor.vue:230
  3248. msgid "The input is not a SSL Certificate Key"
  3249. msgstr ""
  3250. #: src/constants/errors/nginx_log.ts:2
  3251. msgid "The log path is not under the paths in settings.NginxSettings.LogDirWhiteList"
  3252. msgstr ""
  3253. #: src/views/preference/tabs/OpenAISettings.vue:23
  3254. #: src/views/preference/tabs/OpenAISettings.vue:89
  3255. msgid "The model name should only contain letters, unicode, numbers, hyphens, dashes, colons, and dots."
  3256. msgstr ""
  3257. #: src/views/preference/tabs/OpenAISettings.vue:90
  3258. msgid "The model used for code completion, if not set, the chat model will be used."
  3259. msgstr ""
  3260. #: src/views/preference/tabs/NodeSettings.vue:18
  3261. msgid "The node name should only contain letters, unicode, numbers, hyphens, dashes, colons, and dots."
  3262. msgstr ""
  3263. #: src/views/site/site_add/SiteAdd.vue:95
  3264. msgid "The parameter of server_name is required"
  3265. msgstr ""
  3266. #: src/views/certificate/CertificateEditor.vue:181
  3267. msgid "The path exists, but the file is not a certificate"
  3268. msgstr ""
  3269. #: src/views/certificate/CertificateEditor.vue:196
  3270. msgid "The path exists, but the file is not a private key"
  3271. msgstr ""
  3272. #: src/views/preference/tabs/NodeSettings.vue:49
  3273. msgid "The Public Security Number should only contain letters, unicode, numbers, hyphens, dashes, colons, and dots."
  3274. msgstr ""
  3275. #: src/views/dashboard/Environments.vue:148
  3276. msgid "The remote Nginx UI version is not compatible with the local Nginx UI version. To avoid potential errors, please upgrade the remote Nginx UI to match the local version."
  3277. msgstr ""
  3278. #: src/components/AutoCertForm/AutoCertForm.vue:43
  3279. msgid "The server_name in the current configuration must be the domain name you need to get the certificate, supportmultiple domains."
  3280. msgstr ""
  3281. #: src/views/preference/tabs/CertSettings.vue:22
  3282. #: src/views/preference/tabs/HTTPSettings.vue:14
  3283. msgid "The url is invalid"
  3284. msgstr ""
  3285. #: src/views/preference/tabs/OpenAISettings.vue:35
  3286. #: src/views/preference/tabs/OpenAISettings.vue:49
  3287. msgid "The url is invalid."
  3288. msgstr ""
  3289. #: src/language/constants.ts:2
  3290. msgid "The username or password is incorrect"
  3291. msgstr ""
  3292. #: src/views/dashboard/components/PerformanceTablesCard.vue:185
  3293. msgid "Theoretical maximum concurrent connections:"
  3294. msgstr ""
  3295. #: src/views/dashboard/components/PerformanceTablesCard.vue:189
  3296. msgid "Theoretical maximum RPS (Requests Per Second):"
  3297. msgstr ""
  3298. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:104
  3299. msgid "These codes are the last resort for accessing your account in case you lose your password and second factors. If you cannot find these codes, you will lose access to your account."
  3300. msgstr ""
  3301. #: src/views/certificate/CertificateEditor.vue:102
  3302. msgid "This Auto Cert item is invalid, please remove it."
  3303. msgstr ""
  3304. #: src/views/certificate/CertificateEditor.vue:92
  3305. msgid "This certificate is managed by Nginx UI"
  3306. msgstr ""
  3307. #: src/views/certificate/CertificateEditor.vue:165
  3308. #: src/views/certificate/CertificateEditor.vue:179
  3309. #: src/views/certificate/CertificateEditor.vue:194
  3310. msgid "This field is required"
  3311. msgstr ""
  3312. #: src/constants/form_errors.ts:3
  3313. msgid "This field should be a valid email address"
  3314. msgstr ""
  3315. #: src/constants/form_errors.ts:5
  3316. msgid "This field should be a valid hostname"
  3317. msgstr ""
  3318. #: src/components/StdDesign/StdDataEntry/StdFormItem.vue:39
  3319. #: src/constants/form_errors.ts:2
  3320. msgid "This field should not be empty"
  3321. msgstr ""
  3322. #: src/constants/form_errors.ts:6
  3323. msgid "This field should only contain letters, unicode characters, numbers, and -_."
  3324. msgstr ""
  3325. #: src/views/dashboard/NginxDashBoard.vue:150
  3326. msgid "This module provides Nginx request statistics, connection count, etc. data. After enabling it, you can view performance statistics"
  3327. msgstr ""
  3328. #: src/views/certificate/components/RemoveCert.vue:103
  3329. msgid "This operation will only remove the certificate from the database. The certificate files on the file system will not be deleted."
  3330. msgstr ""
  3331. #: src/views/system/Backup/BackupCreator.vue:141
  3332. msgid "This token will only be shown once and cannot be retrieved later. Please make sure to save it in a secure location."
  3333. msgstr ""
  3334. #: src/constants/form_errors.ts:4
  3335. msgid "This value is already taken"
  3336. msgstr ""
  3337. #: src/components/SystemRestore/SystemRestoreContent.vue:227
  3338. #: src/components/SystemRestore/SystemRestoreContent.vue:304
  3339. msgid "This will restore all Nginx configuration files. Nginx will restart after the restoration is complete."
  3340. msgstr ""
  3341. #: src/components/SystemRestore/SystemRestoreContent.vue:238
  3342. #: src/components/SystemRestore/SystemRestoreContent.vue:315
  3343. msgid "This will restore configuration files and database. Nginx UI will restart after the restoration is complete."
  3344. msgstr ""
  3345. #: src/views/environments/list/BatchUpgrader.vue:182
  3346. msgid "This will upgrade or reinstall the Nginx UI on %{nodeNames} to %{version}."
  3347. msgstr ""
  3348. #: src/views/preference/tabs/AuthSettings.vue:124
  3349. msgid "Throttle"
  3350. msgstr ""
  3351. #: src/views/preference/components/AuthSettings/AddPasskey.vue:65
  3352. #: src/views/preference/tabs/AuthSettings.vue:144
  3353. #: src/views/preference/tabs/LogrotateSettings.vue:12
  3354. msgid "Tips"
  3355. msgstr ""
  3356. #: src/views/dashboard/components/PerformanceTablesCard.vue:207
  3357. msgid "Tips: You can increase the concurrency processing capacity by increasing worker_processes or worker_connections"
  3358. msgstr ""
  3359. #: src/views/notification/notificationColumns.tsx:52
  3360. msgid "Title"
  3361. msgstr ""
  3362. #: src/views/certificate/components/RemoveCert.vue:121
  3363. msgid "To confirm revocation, please type \"Revoke\" in the field below:"
  3364. msgstr ""
  3365. #: src/views/preference/components/AuthSettings/TOTP.vue:68
  3366. msgid "To enable it, you need to install the Google or Microsoft Authenticator app on your mobile phone."
  3367. msgstr ""
  3368. #: src/views/preference/components/AuthSettings/AddPasskey.vue:89
  3369. msgid "To ensure security, Webauthn configuration cannot be added through the UI. Please manually configure the following in the app.ini configuration file and restart Nginx UI."
  3370. msgstr ""
  3371. #: src/views/site/site_edit/components/Cert/IssueCert.vue:34
  3372. #: src/views/site/site_edit/components/EnableTLS/EnableTLS.vue:15
  3373. msgid "To make sure the certification auto-renewal can work normally, we need to add a location which can proxy the request from authority to backend, and we need to save this file and reload the Nginx. Are you sure you want to continue?"
  3374. msgstr ""
  3375. #: src/views/preference/tabs/OpenAISettings.vue:36
  3376. msgid "To use a local large model, deploy it with ollama, vllm or lmdeploy. They provide an OpenAI-compatible API endpoint, so just set the baseUrl to your local API."
  3377. msgstr ""
  3378. #: src/views/dashboard/NginxDashBoard.vue:55
  3379. msgid "Toggle failed"
  3380. msgstr ""
  3381. #: src/views/preference/tabs/OpenAISettings.vue:61
  3382. msgid "Token is not valid"
  3383. msgstr ""
  3384. #: src/components/StdDesign/StdDataDisplay/StdPagination.vue:40
  3385. msgid "Total %{total} item"
  3386. msgid_plural "Total %{total} items"
  3387. msgstr[0] ""
  3388. msgstr[1] ""
  3389. #: src/composables/usePerformanceMetrics.ts:94
  3390. #: src/views/dashboard/components/PerformanceTablesCard.vue:54
  3391. msgid "Total connections"
  3392. msgstr ""
  3393. #: src/composables/usePerformanceMetrics.ts:89
  3394. #: src/views/dashboard/components/PerformanceTablesCard.vue:49
  3395. msgid "Total handshakes"
  3396. msgstr ""
  3397. #: src/views/dashboard/components/ProcessDistributionCard.vue:53
  3398. msgid "Total Nginx processes"
  3399. msgstr ""
  3400. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:94
  3401. msgid "Total Nginx Processes"
  3402. msgstr ""
  3403. #: src/composables/usePerformanceMetrics.ts:99
  3404. #: src/views/dashboard/components/PerformanceTablesCard.vue:59
  3405. msgid "Total requests"
  3406. msgstr ""
  3407. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:78
  3408. msgid "Total Requests / Total Connections"
  3409. msgstr ""
  3410. #: src/views/preference/components/AuthSettings/TOTP.vue:66
  3411. msgid "TOTP"
  3412. msgstr ""
  3413. #: src/views/preference/components/AuthSettings/TOTP.vue:67
  3414. msgid "TOTP is a two-factor authentication method that uses a time-based one-time password algorithm."
  3415. msgstr ""
  3416. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:197
  3417. msgid "Trash"
  3418. msgstr ""
  3419. #: src/components/TwoFA/use2FAModal.ts:67
  3420. msgid "Two-factor authentication required"
  3421. msgstr ""
  3422. #: src/views/certificate/CertificateList/certColumns.tsx:25
  3423. #: src/views/dashboard/components/ModulesTable.vue:84
  3424. #: src/views/nginx_log/NginxLogList.vue:14
  3425. #: src/views/notification/notificationColumns.tsx:9
  3426. #: src/views/preference/components/ExternalNotify/columns.tsx:18
  3427. msgid "Type"
  3428. msgstr ""
  3429. #: src/composables/useNginxPerformance.ts:18
  3430. msgid "Unknown"
  3431. msgstr ""
  3432. #: src/views/preference/components/AuthSettings/Passkey.vue:39
  3433. msgid "Update successfully"
  3434. msgstr ""
  3435. #: src/views/certificate/ACMEUser.vue:88
  3436. #: src/views/certificate/DNSCredential.vue:27
  3437. #: src/views/config/configColumns.tsx:36
  3438. #: src/views/config/ConfigEditor.vue:329
  3439. #: src/views/environments/group/columns.ts:37
  3440. #: src/views/environments/list/envColumns.tsx:90
  3441. #: src/views/site/site_edit/components/RightPanel/Basic.vue:38
  3442. #: src/views/site/site_list/columns.tsx:83
  3443. #: src/views/stream/components/RightPanel/Basic.vue:73
  3444. #: src/views/stream/StreamList.vue:67
  3445. #: src/views/user/userColumns.tsx:54
  3446. msgid "Updated at"
  3447. msgstr ""
  3448. #: src/components/StdDesign/StdDataDisplay/methods/sortable.ts:121
  3449. msgid "Updated successfully"
  3450. msgstr ""
  3451. #: src/routes/modules/system.ts:33
  3452. #: src/views/environments/list/Environment.vue:107
  3453. #: src/views/environments/list/Environment.vue:99
  3454. #: src/views/system/Upgrade.vue:154
  3455. #: src/views/system/Upgrade.vue:159
  3456. msgid "Upgrade"
  3457. msgstr ""
  3458. #: src/views/environments/list/BatchUpgrader.vue:137
  3459. msgid "Upgraded Nginx UI on %{node} successfully 🎉"
  3460. msgstr ""
  3461. #: src/language/constants.ts:30
  3462. msgid "Upgraded successfully"
  3463. msgstr ""
  3464. #: src/views/environments/list/BatchUpgrader.vue:88
  3465. #: src/views/system/Upgrade.vue:81
  3466. msgid "Upgrading Nginx UI, please wait..."
  3467. msgstr ""
  3468. #: src/components/NgxConfigEditor/NgxUpstream.vue:173
  3469. msgid "Upstream Name"
  3470. msgstr ""
  3471. #: src/views/dashboard/ServerAnalytic.vue:179
  3472. msgid "Uptime:"
  3473. msgstr ""
  3474. #: src/views/environments/list/envColumns.tsx:19
  3475. msgid "URL"
  3476. msgstr ""
  3477. #: src/components/TwoFA/Authorization.vue:121
  3478. msgid "Use OTP"
  3479. msgstr ""
  3480. #: src/components/TwoFA/Authorization.vue:117
  3481. msgid "Use recovery code"
  3482. msgstr ""
  3483. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:158
  3484. msgid "Use Temporary Path"
  3485. msgstr ""
  3486. #: src/components/ChatGPT/ChatGPT.vue:333
  3487. msgid "User"
  3488. msgstr ""
  3489. #: src/constants/errors/user.ts:3
  3490. msgid "User banned"
  3491. msgstr ""
  3492. #: src/constants/errors/user.ts:8
  3493. msgid "User not enabled otp as 2fa"
  3494. msgstr ""
  3495. #: src/views/other/Login.vue:173
  3496. #: src/views/user/userColumns.tsx:9
  3497. msgid "Username"
  3498. msgstr ""
  3499. #: src/views/install/components/InstallForm.vue:85
  3500. msgid "Username (*)"
  3501. msgstr ""
  3502. #: src/views/install/components/InstallForm.vue:35
  3503. msgid "Username length cannot exceed 255 characters"
  3504. msgstr ""
  3505. #: src/components/CertInfo/CertInfo.vue:24
  3506. #: src/views/certificate/ACMEUser.vue:124
  3507. #: src/views/certificate/CertificateList/certColumns.tsx:78
  3508. msgid "Valid"
  3509. msgstr ""
  3510. #: src/views/dashboard/components/PerformanceTablesCard.vue:22
  3511. msgid "Value"
  3512. msgstr ""
  3513. #: src/components/SystemRestore/SystemRestoreContent.vue:216
  3514. #: src/components/SystemRestore/SystemRestoreContent.vue:293
  3515. msgid "Verify Backup File Integrity"
  3516. msgstr ""
  3517. #: src/views/install/components/InstallView.vue:61
  3518. msgid "Verify system requirements"
  3519. msgstr ""
  3520. #: src/views/environments/list/envColumns.tsx:31
  3521. msgid "Version"
  3522. msgstr ""
  3523. #: src/components/StdDesign/StdDataDisplay/StdTable.vue:488
  3524. #: src/views/nginx_log/NginxLogList.vue:74
  3525. #: src/views/site/site_edit/components/ConfigTemplate/ConfigTemplate.vue:83
  3526. msgid "View"
  3527. msgstr ""
  3528. #: src/components/Notification/Notification.vue:180
  3529. msgid "View all notifications"
  3530. msgstr ""
  3531. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
  3532. msgid "View Details"
  3533. msgstr ""
  3534. #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:262
  3535. msgid "View Mode"
  3536. msgstr ""
  3537. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:134
  3538. msgid "View Recovery Codes"
  3539. msgstr ""
  3540. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:70
  3541. msgid "Viewed"
  3542. msgstr ""
  3543. #: src/composables/usePerformanceMetrics.ts:114
  3544. #: src/views/dashboard/components/PerformanceTablesCard.vue:74
  3545. msgid "Waiting processes"
  3546. msgstr ""
  3547. #: src/constants/index.ts:23
  3548. #: src/views/config/InspectConfig.vue:33
  3549. #: src/views/notification/notificationColumns.tsx:22
  3550. #: src/views/preference/components/AuthSettings/AddPasskey.vue:82
  3551. #: src/views/system/Backup/BackupCreator.vue:138
  3552. msgid "Warning"
  3553. msgstr ""
  3554. #: src/components/SystemRestore/SystemRestoreContent.vue:178
  3555. #: src/components/SystemRestore/SystemRestoreContent.vue:255
  3556. msgid "Warning: Restore operation will overwrite current configurations. Make sure you have a valid backup file and security token, and carefully select what to restore."
  3557. msgstr ""
  3558. #: src/views/certificate/DNSCredential.vue:56
  3559. msgid "We will add one or more TXT records to the DNS records of your domain for ownership verification."
  3560. msgstr ""
  3561. #: src/views/site/site_edit/components/Cert/ObtainCert.vue:140
  3562. msgid "We will remove the HTTPChallenge configuration from this file and reload the Nginx. Are you sure you want to continue?"
  3563. msgstr ""
  3564. #: src/views/preference/tabs/AuthSettings.vue:97
  3565. msgid "Webauthn"
  3566. msgstr ""
  3567. #: src/constants/errors/user.ts:7
  3568. msgid "WebAuthn settings are not configured"
  3569. msgstr ""
  3570. #: src/views/certificate/components/RemoveCert.vue:54
  3571. msgid "WebSocket connection error"
  3572. msgstr ""
  3573. #: src/views/certificate/ACMEUser.vue:83
  3574. msgid "When Enabled, Nginx UI will automatically re-register users upon startup. Generally, do not enable this unless you are in a dev environment and using Pebble as CA."
  3575. msgstr ""
  3576. #: src/views/site/site_edit/components/RightPanel/Basic.vue:61
  3577. #: src/views/stream/components/RightPanel/Basic.vue:95
  3578. msgid "When you enable/disable, delete, or save this site, the nodes set in the Node Group and the nodes selected below will be synchronized."
  3579. msgstr ""
  3580. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:140
  3581. msgid "When you generate new recovery codes, you must download or print the new codes."
  3582. msgstr ""
  3583. #: src/views/dashboard/components/ParamsOpt/ProxyCacheConfig.vue:160
  3584. msgid "Whether to use a temporary path when writing temporary files"
  3585. msgstr ""
  3586. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:48
  3587. msgid "Worker Connections"
  3588. msgstr ""
  3589. #: src/composables/usePerformanceMetrics.ts:55
  3590. #: src/views/dashboard/components/ConnectionMetricsCard.vue:48
  3591. #: src/views/dashboard/components/ParamsOpt/PerformanceConfig.vue:25
  3592. #: src/views/dashboard/components/ProcessDistributionCard.vue:12
  3593. msgid "Worker Processes"
  3594. msgstr ""
  3595. #: src/views/dashboard/components/PerformanceStatisticsCard.vue:103
  3596. msgid "Workers"
  3597. msgstr ""
  3598. #: src/layouts/HeaderLayout.vue:62
  3599. #: src/routes/index.ts:56
  3600. #: src/views/workspace/WorkSpace.vue:52
  3601. msgid "Workspace"
  3602. msgstr ""
  3603. #: src/views/dashboard/ServerAnalytic.vue:37
  3604. #: src/views/dashboard/ServerAnalytic.vue:373
  3605. msgid "Writes"
  3606. msgstr ""
  3607. #: src/language/constants.ts:17
  3608. msgid "Writing certificate private key to disk"
  3609. msgstr ""
  3610. #: src/language/constants.ts:16
  3611. msgid "Writing certificate to disk"
  3612. msgstr ""
  3613. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:130
  3614. #: src/components/EnvGroupTabs/EnvGroupTabs.vue:142
  3615. #: src/components/NgxConfigEditor/directive/DirectiveEditorItem.vue:98
  3616. #: src/components/NgxConfigEditor/LocationEditor.vue:88
  3617. #: src/views/preference/tabs/AuthSettings.vue:163
  3618. #: src/views/preference/tabs/CertSettings.vue:72
  3619. msgid "Yes"
  3620. msgstr ""
  3621. #: src/views/terminal/Terminal.vue:135
  3622. msgid "You are accessing this terminal over an insecure HTTP connection on a non-localhost domain. This may expose sensitive information."
  3623. msgstr ""
  3624. #: src/views/system/Upgrade.vue:224
  3625. msgid "You are using the latest version"
  3626. msgstr ""
  3627. #: src/views/system/Upgrade.vue:180
  3628. msgid "You can check Nginx UI upgrade at this page."
  3629. msgstr ""
  3630. #: src/components/SystemRestore/SystemRestoreContent.vue:339
  3631. msgid "You can close this dialog in %{countdown} seconds"
  3632. msgstr ""
  3633. #: src/components/SystemRestore/SystemRestoreContent.vue:342
  3634. msgid "You can close this dialog now"
  3635. msgstr ""
  3636. #: src/views/preference/components/AuthSettings/AddPasskey.vue:87
  3637. msgid "You have not configured the settings of Webauthn, so you cannot add a passkey."
  3638. msgstr ""
  3639. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:81
  3640. msgid "You have not enabled 2FA yet. Please enable 2FA to generate recovery codes."
  3641. msgstr ""
  3642. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:94
  3643. msgid "You have not generated recovery codes yet."
  3644. msgstr ""
  3645. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:91
  3646. msgid "Your current recovery code might be outdated and insecure. Please generate new recovery codes at your earliest convenience to ensure security."
  3647. msgstr ""
  3648. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:142
  3649. #: src/views/preference/components/AuthSettings/RecoveryCodes.vue:155
  3650. msgid "Your old codes won't work anymore."
  3651. msgstr ""
  3652. #: src/views/preference/components/AuthSettings/Passkey.vue:75
  3653. msgid "Your passkeys"
  3654. msgstr ""