app.po 138 KB

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