app.po 152 KB

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