123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118 |
- msgid ""
- msgstr ""
- "Project-Id-Version: PACKAGE VERSION\n"
- "Last-Translator: Automatically generated\n"
- "Language-Team: none\n"
- "Language: ru_RU\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
- #: src/routes/index.ts:256
- msgid "About"
- msgstr "О проекте"
- #: src/routes/index.ts:188 src/views/domain/ngx_conf/LogEntry.vue:76
- msgid "Access Logs"
- msgstr "Журнал доступа"
- #: src/routes/index.ts:128 src/views/certificate/ACMEUser.vue:76
- #: src/views/certificate/ACMEUserSelector.vue:84
- #, fuzzy
- msgid "ACME User"
- msgstr "Пользователь"
- #: src/views/certificate/ACMEUser.vue:59
- #: src/views/certificate/Certificate.vue:113
- #: src/views/certificate/DNSCredential.vue:33 src/views/config/config.ts:34
- #: src/views/domain/DomainList.vue:47 src/views/environment/Environment.vue:129
- #: src/views/notification/Notification.vue:37
- #: src/views/preference/AuthSettings.vue:26 src/views/stream/StreamList.vue:47
- #: src/views/user/User.vue:43
- msgid "Action"
- msgstr "Действие"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:194
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:214
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:117
- #: src/views/domain/ngx_conf/NgxServer.vue:167
- #: src/views/domain/ngx_conf/NgxUpstream.vue:152
- #: src/views/preference/BasicSettings.vue:73
- #: src/views/stream/StreamList.vue:121
- msgid "Add"
- msgstr "Добавить"
- #: src/views/domain/ngx_conf/directive/DirectiveAdd.vue:95
- msgid "Add Directive Below"
- msgstr "Добавить директиву ниже"
- #: src/views/domain/ngx_conf/LocationEditor.vue:112
- #: src/views/domain/ngx_conf/LocationEditor.vue:139
- msgid "Add Location"
- msgstr "Добавить Location"
- #: src/routes/index.ts:64 src/views/domain/DomainAdd.vue:89
- msgid "Add Site"
- msgstr "Добавть Сайт"
- #: src/views/stream/StreamList.vue:183
- #, fuzzy
- msgid "Add Stream"
- msgstr "Добавть Сайт"
- #: src/views/stream/StreamList.vue:111
- #, fuzzy
- msgid "Added successfully"
- msgstr "Обновлено успешно"
- #: src/views/certificate/DNSChallenge.vue:108
- #, fuzzy
- msgid "Additional"
- msgstr "Дополнительно"
- #: src/views/domain/DomainEdit.vue:197 src/views/stream/StreamEdit.vue:189
- msgid "Advance Mode"
- msgstr "Расширенный режим"
- #: src/views/preference/OpenAISettings.vue:45
- msgid "API Base Url"
- msgstr ""
- #: src/views/certificate/DNSChallenge.vue:82
- msgid "API Document"
- msgstr ""
- #: src/views/preference/OpenAISettings.vue:57
- msgid "API Proxy"
- msgstr ""
- #: src/views/preference/OpenAISettings.vue:69
- msgid "API Token"
- msgstr ""
- #: src/views/system/Upgrade.vue:173
- msgid "Arch"
- msgstr ""
- #: src/views/preference/AuthSettings.vue:94
- #, fuzzy
- msgid "Are you sure to delete this banned IP immediately?"
- msgstr "Вы уверены, что хотите удалить?"
- #: src/components/Notification/Notification.vue:86
- #: src/views/notification/Notification.vue:72
- #, fuzzy
- msgid "Are you sure you want to clear all notifications?"
- msgstr "Вы уверены, что хотите удалить все уведомления?"
- #: src/components/ChatGPT/ChatGPT.vue:272
- #, fuzzy
- msgid "Are you sure you want to clear the record of chat?"
- msgstr "Вы уверены, что хотите очистить сообщения чата?"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:551
- #, fuzzy
- msgid "Are you sure you want to delete this item permanently?"
- msgstr "Вы уверены, что хотите удалить?"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:523
- #, fuzzy
- msgid "Are you sure you want to delete this item?"
- msgstr "Вы уверены, что хотите удалить?"
- #: src/views/domain/DomainList.vue:146 src/views/stream/StreamList.vue:167
- #, fuzzy
- msgid "Are you sure you want to delete?"
- msgstr "Вы уверены, что хотите удалить?"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:537
- #, fuzzy
- msgid "Are you sure you want to recover this item?"
- msgstr "Вы уверены, что хотите удалить эту директиву?"
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:88
- msgid "Are you sure you want to remove this directive?"
- msgstr "Вы уверены, что хотите удалить эту директиву?"
- #: src/views/preference/BasicSettings.vue:99
- #, fuzzy
- msgid "Are you sure you want to remove this item?"
- msgstr "Вы уверены, что хотите удалить эту директиву?"
- #: src/views/domain/ngx_conf/LocationEditor.vue:69
- #, fuzzy
- msgid "Are you sure you want to remove this location?"
- msgstr "Вы уверены, что хотите удалить эту директиву?"
- #: src/components/ChatGPT/ChatGPT.vue:216
- msgid "Ask ChatGPT for Help"
- msgstr "Обратитесь за помощью к ChatGPT"
- #: src/components/ChatGPT/ChatGPT.vue:230
- msgid "Assistant"
- msgstr "Ассистент"
- #: src/views/preference/AuthSettings.vue:17
- msgid "Attempts"
- msgstr ""
- #: src/views/preference/Preference.vue:116
- #, fuzzy
- msgid "Auth"
- msgstr "Автор"
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:106
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:120
- msgid "Author"
- msgstr "Автор"
- #: src/views/domain/cert/ChangeCert.vue:33
- msgid "Auto Cert"
- msgstr "Авто Сертификат"
- #: src/views/nginx_log/NginxLog.vue:147
- msgid "Auto Refresh"
- msgstr "Автообновление"
- #: src/views/domain/cert/components/ObtainCert.vue:75
- msgid "Auto-renewal disabled for %{name}"
- msgstr "Автообновление отключено для %{name}"
- #: src/views/domain/cert/components/ObtainCert.vue:68
- msgid "Auto-renewal enabled for %{name}"
- msgstr "Автообновление включено для %{name}"
- #: src/views/certificate/CertificateEditor.vue:242
- #: src/views/config/Config.vue:73 src/views/config/ConfigEdit.vue:87
- #: src/views/domain/DomainEdit.vue:254 src/views/nginx_log/NginxLog.vue:168
- #: src/views/stream/StreamEdit.vue:245
- msgid "Back"
- msgstr "Назад"
- #: src/views/other/Error.vue:23
- #, fuzzy
- msgid "Back Home"
- msgstr "Вернутся"
- #: src/views/preference/AuthSettings.vue:68
- msgid "Ban Threshold Minutes"
- msgstr ""
- #: src/views/preference/AuthSettings.vue:82
- msgid "Banned IPs"
- msgstr ""
- #: src/views/preference/AuthSettings.vue:20
- msgid "Banned Until"
- msgstr ""
- #: src/views/domain/DomainAdd.vue:95
- msgid "Base information"
- msgstr "Основная информация"
- #: src/views/config/ConfigEdit.vue:115
- #: src/views/domain/components/RightSettings.vue:75
- #: src/views/preference/Preference.vue:110
- #: src/views/stream/components/RightSettings.vue:74
- #, fuzzy
- msgid "Basic"
- msgstr "Простой режим"
- #: src/views/domain/DomainEdit.vue:200 src/views/stream/StreamEdit.vue:192
- msgid "Basic Mode"
- msgstr "Простой режим"
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:54
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:459
- #, fuzzy
- msgid "Batch Modify"
- msgstr "Изменение конфигурации"
- #: src/views/system/About.vue:39
- msgid "Build with"
- msgstr "Собрать с"
- #: src/views/certificate/ACMEUser.vue:29
- msgid "CA Dir"
- msgstr ""
- #: src/views/preference/BasicSettings.vue:47
- msgid "CADir"
- msgstr ""
- #: src/components/ChatGPT/ChatGPT.vue:253
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:55
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:263
- #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:153
- #: src/views/domain/cert/components/ObtainCert.vue:137
- #: src/views/domain/components/Deploy.vue:21
- #: src/views/domain/components/RightSettings.vue:51
- #: src/views/domain/ngx_conf/NgxConfigEditor.vue:50
- #: src/views/domain/ngx_conf/NgxServer.vue:84
- #: src/views/domain/ngx_conf/NgxUpstream.vue:33
- #: src/views/stream/components/Deploy.vue:21
- #: src/views/stream/components/RightSettings.vue:51
- msgid "Cancel"
- msgstr "Отмена"
- #: src/views/domain/cert/CertInfo.vue:32
- msgid "Certificate has expired"
- msgstr "Срок действия сертификата истек"
- #: src/views/domain/cert/CertInfo.vue:36
- msgid "Certificate is valid"
- msgstr "Сертификат действителен"
- #: src/views/preference/BasicSettings.vue:55
- #, fuzzy
- msgid "Certificate Renewal Interval"
- msgstr "Сертификат действителен"
- #: src/views/certificate/CertificateEditor.vue:128
- #: src/views/domain/cert/Cert.vue:33
- msgid "Certificate Status"
- msgstr "Статус сертификата"
- #: src/routes/index.ts:119 src/views/certificate/Certificate.vue:129
- #, fuzzy
- msgid "Certificates"
- msgstr "Статус сертификата"
- #: src/routes/index.ts:136
- #, fuzzy
- msgid "Certificates List"
- msgstr "Список"
- #: src/views/domain/cert/components/AutoCertStepOne.vue:70
- msgid "Challenge Method"
- msgstr "Метод Challenge"
- #: src/views/domain/cert/ChangeCert.vue:95
- #: src/views/domain/cert/ChangeCert.vue:99
- #, fuzzy
- msgid "Change Certificate"
- msgstr "Сертификат действителен"
- #: src/views/system/Upgrade.vue:185
- msgid "Channel"
- msgstr "Канал"
- #: src/views/system/Upgrade.vue:182
- msgid "Check again"
- msgstr "Проверить повторно"
- #: src/language/constants.ts:13
- msgid "Cleaning environment variables"
- msgstr "Очистка переменных среды"
- #: src/components/ChatGPT/ChatGPT.vue:276
- #: src/components/Notification/Notification.vue:91
- #: src/views/notification/Notification.vue:77
- msgid "Clear"
- msgstr "Очистить"
- #: src/components/Notification/Notification.vue:42
- #: src/views/notification/Notification.vue:46
- #, fuzzy
- msgid "Cleared successfully"
- msgstr "Отключено успешно"
- #: src/views/preference/LogrotateSettings.vue:23
- #, fuzzy
- msgid "Command"
- msgstr "Комментарии"
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:106
- #: src/views/domain/ngx_conf/LocationEditor.vue:116
- #: src/views/domain/ngx_conf/LocationEditor.vue:85
- #: src/views/domain/ngx_conf/NgxServer.vue:139
- msgid "Comments"
- msgstr "Комментарии"
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:84
- #, fuzzy
- msgid "Config Templates"
- msgstr "Шаблоны конфигураций"
- #: src/views/config/InspectConfig.vue:27
- msgid "Configuration file is test successful"
- msgstr "Проверка конфигурации успешна"
- #: src/views/domain/DomainAdd.vue:101
- msgid "Configuration Name"
- msgstr "Название конфигурации"
- #: src/views/config/Config.vue:44
- msgid "Configurations"
- msgstr "Конфигурации"
- #: src/views/domain/DomainAdd.vue:96
- msgid "Configure SSL"
- msgstr "Настроить SSL"
- #: src/views/dashboard/Environments.vue:139
- msgid "Connected"
- msgstr "Подключено"
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:111
- #: src/views/domain/ngx_conf/LocationEditor.vue:125
- #: src/views/domain/ngx_conf/LocationEditor.vue:97
- msgid "Content"
- msgstr "Содержание"
- #: src/views/system/Upgrade.vue:143
- msgid "Core Upgrade"
- msgstr "Обновление ядра"
- #: src/views/dashboard/ServerAnalytic.vue:296
- msgid "CPU Status"
- msgstr "Нагрузка CPU"
- #: src/views/dashboard/ServerAnalytic.vue:190
- msgid "CPU:"
- msgstr "CPU:"
- #: src/views/domain/ngx_conf/NgxUpstream.vue:163
- #, fuzzy
- msgid "Create"
- msgstr "Создан в"
- #: src/views/domain/DomainAdd.vue:154
- msgid "Create Another"
- msgstr "Создать еще"
- #: src/views/notification/Notification.vue:31 src/views/user/User.vue:31
- msgid "Created at"
- msgstr "Создан в"
- #: src/language/constants.ts:9
- msgid "Creating client facilitates communication with the CA server"
- msgstr ""
- #: src/views/domain/cert/components/DNSChallenge.vue:104
- msgid "Credential"
- msgstr "Учетные данные"
- #: src/views/certificate/DNSChallenge.vue:97
- msgid "Credentials"
- msgstr "Учетные данные"
- #: src/views/system/Upgrade.vue:162
- msgid "Current Version"
- msgstr "Текущяя версия"
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:124
- #: src/views/domain/ngx_conf/NgxConfigEditor.vue:186
- msgid "Custom"
- msgstr "Пользовательский"
- #: src/views/preference/BasicSettings.vue:121
- msgid ""
- "Customize the name of local server to be displayed in the environment "
- "indicator."
- msgstr ""
- #: src/routes/index.ts:39
- msgid "Dashboard"
- msgstr "Доска"
- #: src/views/other/Install.vue:120
- msgid "Database (Optional, default: database)"
- msgstr "База данных (Опционально, по умолчанию: database)"
- #: src/views/preference/BasicSettings.vue:60
- msgid "Days"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:530
- #: src/views/domain/DomainList.vue:155
- #: src/views/domain/ngx_conf/NgxServer.vue:114
- #: src/views/domain/ngx_conf/NgxUpstream.vue:126
- #: src/views/stream/StreamList.vue:176
- msgid "Delete"
- msgstr "Удалить"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:558
- msgid "Delete Permanently"
- msgstr ""
- #: src/views/domain/DomainList.vue:78
- msgid "Delete site: %{site_name}"
- msgstr ""
- #: src/views/stream/StreamList.vue:78
- msgid "Delete stream: %{stream_name}"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:185
- #, fuzzy
- msgid "Deleted successfully"
- msgstr "Отключено успешно"
- #: src/views/domain/components/Deploy.vue:103
- #: src/views/domain/components/RightSettings.vue:93
- #: src/views/stream/components/Deploy.vue:103
- #: src/views/stream/components/RightSettings.vue:92
- msgid "Deploy"
- msgstr ""
- #: src/views/domain/components/Deploy.vue:60
- #: src/views/stream/components/Deploy.vue:60
- msgid "Deploy %{conf_name} to %{node_name} failed"
- msgstr ""
- #: src/views/domain/components/Deploy.vue:37
- #: src/views/stream/components/Deploy.vue:37
- msgid "Deploy %{conf_name} to %{node_name} successfully"
- msgstr ""
- #: src/views/domain/components/Deploy.vue:35
- #: src/views/stream/components/Deploy.vue:35
- #, fuzzy
- msgid "Deploy successfully"
- msgstr "Saved successfully"
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:107
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:121
- msgid "Description"
- msgstr "Описание"
- #: src/views/notification/Notification.vue:26
- msgid "Details"
- msgstr ""
- #: src/views/system/About.vue:22
- msgid "Development Mode"
- msgstr "Режим разработки"
- #: src/views/domain/ngx_conf/directive/DirectiveAdd.vue:73
- msgid "Directive"
- msgstr "Деректива"
- #: src/views/domain/ngx_conf/directive/DirectiveEditor.vue:21
- msgid "Directives"
- msgstr "Дерективы"
- #: src/views/config/config.ts:18
- #, fuzzy
- msgid "Directory"
- msgstr "Деректива"
- #: src/views/domain/DomainList.vue:124 src/views/stream/StreamList.vue:145
- #, fuzzy
- msgid "Disable"
- msgstr "Отключить"
- #: src/views/domain/cert/components/ObtainCert.vue:77
- msgid "Disable auto-renewal failed for %{name}"
- msgstr "Не удалось отключить автоматическое продление для %{name}"
- #: src/views/domain/cert/ChangeCert.vue:44 src/views/domain/DomainEdit.vue:183
- #: src/views/domain/DomainList.vue:33 src/views/environment/Environment.vue:93
- #: src/views/stream/StreamEdit.vue:175 src/views/stream/StreamList.vue:33
- msgid "Disabled"
- msgstr "Отключено"
- #: src/views/domain/components/RightSettings.vue:38
- #: src/views/domain/DomainList.vue:67
- #: src/views/stream/components/RightSettings.vue:38
- #: src/views/stream/StreamList.vue:67
- msgid "Disabled successfully"
- msgstr "Отключено успешно"
- #: src/views/dashboard/ServerAnalytic.vue:361
- msgid "Disk IO"
- msgstr "Нагрузка на Диск IO"
- #: src/routes/index.ts:162 src/views/certificate/DNSCredential.vue:40
- msgid "DNS Credentials"
- msgstr ""
- #: src/views/certificate/DNSChallenge.vue:72
- #: src/views/domain/cert/components/DNSChallenge.vue:94
- msgid "DNS Provider"
- msgstr ""
- #: src/views/domain/cert/components/AutoCertStepOne.vue:76
- msgid "DNS01"
- msgstr ""
- #: src/views/domain/components/Deploy.vue:16
- #: src/views/stream/components/Deploy.vue:16
- #, fuzzy
- msgid "Do you want to deploy this file to remote server?"
- msgid_plural "Do you want to deploy this file to remote servers?"
- msgstr[0] "Are you sure you want to remove this directive?"
- msgstr[1] "Are you sure you want to remove this directive?"
- #: src/views/domain/cert/components/ObtainCert.vue:133
- msgid "Do you want to disable auto-cert renewal?"
- msgstr "Вы хотите отключить автоматическое обновление сертификата?"
- #: src/views/domain/components/RightSettings.vue:47
- #, fuzzy
- msgid "Do you want to disable this site?"
- msgstr "Вы хотите отключить этот сайт?"
- #: src/views/stream/components/RightSettings.vue:47
- #, fuzzy
- msgid "Do you want to disable this stream?"
- msgstr "Вы хотите отключить этот сайт?"
- #: src/views/domain/components/RightSettings.vue:47
- #, fuzzy
- msgid "Do you want to enable this site?"
- msgstr "Вы хотите включить этот сайт?"
- #: src/views/stream/components/RightSettings.vue:47
- #, fuzzy
- msgid "Do you want to enable this stream?"
- msgstr "Вы хотите включить этот сайт?"
- #: src/views/domain/ngx_conf/NgxConfigEditor.vue:43
- #, fuzzy
- msgid "Do you want to enable TLS?"
- msgstr "Включить TLS?"
- #: src/views/domain/ngx_conf/NgxServer.vue:80
- #, fuzzy
- msgid "Do you want to remove this server?"
- msgstr "Вы хотите удалить этот сервер?"
- #: src/views/domain/ngx_conf/NgxUpstream.vue:29
- #, fuzzy
- msgid "Do you want to remove this upstream?"
- msgstr "Вы хотите удалить этот сервер?"
- #: src/views/certificate/WildcardCertificate.vue:72
- msgid "Domain"
- msgstr ""
- #: src/views/domain/DomainAdd.vue:144
- msgid "Domain Config Created Successfully"
- msgstr "Конфигурация домена успешно создана"
- #: src/views/certificate/CertificateEditor.vue:112
- #, fuzzy
- msgid "Domains list is empty, try to reopen Auto Cert for %{config}"
- msgstr ""
- "Список доменов пуст, попробуйте заново открыть авто-сертификат для %{config}"
- #: src/language/constants.ts:26
- msgid "Download latest release error"
- msgstr "Ошибка загрузки последней версии"
- #: src/language/constants.ts:25
- msgid "Downloading latest release"
- msgstr "Загрузка последней версии"
- #: src/views/system/Upgrade.vue:212
- msgid "Dry run mode enabled"
- msgstr "Включен пробный режим"
- #: src/views/domain/components/SiteDuplicate.vue:122
- #: src/views/domain/DomainList.vue:140
- #: src/views/stream/components/StreamDuplicate.vue:122
- #: src/views/stream/StreamList.vue:161
- msgid "Duplicate"
- msgstr "Дублировать"
- #: src/views/domain/components/SiteDuplicate.vue:82
- #: src/views/stream/components/StreamDuplicate.vue:82
- #, fuzzy
- msgid "Duplicate %{conf_name} to %{node_name} successfully"
- msgstr "Продублированно %{conf_name} в %{node_name}"
- #: src/views/domain/components/SiteDuplicate.vue:87
- #: src/views/stream/components/StreamDuplicate.vue:87
- #, fuzzy
- msgid "Duplicate failed"
- msgstr "Дублировать не удалось"
- #: src/views/domain/components/SiteDuplicate.vue:80
- #: src/views/stream/components/StreamDuplicate.vue:80
- #, fuzzy
- msgid "Duplicate successfully"
- msgstr "Продублированно"
- #: src/views/domain/components/SiteDuplicate.vue:63
- #: src/views/stream/components/StreamDuplicate.vue:63
- #, fuzzy
- msgid "Duplicate to local successfully"
- msgstr "Saved successfully"
- #: src/views/domain/DomainEdit.vue:172 src/views/stream/StreamEdit.vue:164
- msgid "Edit %{n}"
- msgstr "Редактировать %{n}"
- #: src/routes/index.ts:109 src/views/config/ConfigEdit.vue:81
- msgid "Edit Configuration"
- msgstr "Редактировать Конфигурацию"
- #: src/routes/index.ts:71
- msgid "Edit Site"
- msgstr "Редактировать Сайт"
- #: src/routes/index.ts:90
- #, fuzzy
- msgid "Edit Stream"
- msgstr "Редактировать Сайт"
- #: src/views/certificate/ACMEUser.vue:21
- #, fuzzy
- msgid "Email"
- msgstr "Email (*)"
- #: src/views/other/Install.vue:89
- msgid "Email (*)"
- msgstr "Email (*)"
- #: src/views/domain/components/Deploy.vue:83
- #: src/views/domain/DomainList.vue:132
- #: src/views/stream/components/Deploy.vue:83
- #: src/views/stream/StreamList.vue:153
- #, fuzzy
- msgid "Enable"
- msgstr "Включить"
- #: src/views/domain/components/Deploy.vue:50
- #: src/views/stream/components/Deploy.vue:50
- msgid "Enable %{conf_name} in %{node_name} failed"
- msgstr "Включение %{conf_name} in %{node_name} нипалучилася"
- #: src/views/domain/components/Deploy.vue:45
- #: src/views/stream/components/Deploy.vue:45
- msgid "Enable %{conf_name} in %{node_name} successfully"
- msgstr "Включение %{conf_name} in %{node_name} успешно"
- #: src/views/domain/cert/components/ObtainCert.vue:70
- msgid "Enable auto-renewal failed for %{name}"
- msgstr "Не удалось включить автоматическое продление для %{name}"
- #: src/views/domain/DomainAdd.vue:43
- msgid "Enable failed"
- msgstr "Включить не удалось"
- #: src/views/domain/components/Deploy.vue:43
- #: src/views/stream/components/Deploy.vue:43
- #, fuzzy
- msgid "Enable successfully"
- msgstr "Активировано успешно"
- #: src/views/domain/ngx_conf/NgxConfigEditor.vue:175
- msgid "Enable TLS"
- msgstr "Включить TLS"
- #: src/views/domain/cert/ChangeCert.vue:40
- #: src/views/domain/components/RightSettings.vue:77
- #: src/views/domain/DomainEdit.vue:177 src/views/domain/DomainList.vue:29
- #: src/views/environment/Environment.vue:102
- #: src/views/preference/LogrotateSettings.vue:20
- #: src/views/stream/components/RightSettings.vue:76
- #: src/views/stream/StreamEdit.vue:169 src/views/stream/StreamList.vue:29
- msgid "Enabled"
- msgstr "Включено"
- #: src/views/domain/components/RightSettings.vue:29
- #: src/views/domain/components/SiteDuplicate.vue:94
- #: src/views/domain/DomainAdd.vue:40 src/views/domain/DomainList.vue:57
- #: src/views/stream/components/RightSettings.vue:29
- #: src/views/stream/components/StreamDuplicate.vue:94
- #: src/views/stream/StreamList.vue:57
- msgid "Enabled successfully"
- msgstr "Активировано успешно"
- #: src/views/domain/cert/IssueCert.vue:57
- msgid "Encrypt website with Let's Encrypt"
- msgstr "Использовать для сайта Let's Encrypt"
- #: src/routes/index.ts:212 src/views/environment/Environment.vue:147
- msgid "Environment"
- msgstr "Окружение"
- #: src/language/constants.ts:21
- #, fuzzy
- msgid "Environment variables cleaned"
- msgstr "Настройка переменных сред"
- #: src/views/dashboard/Environments.vue:82
- #, fuzzy
- msgid "Environments"
- msgstr "Комментарии"
- #: src/constants/index.ts:16 src/views/config/InspectConfig.vue:44
- msgid "Error"
- msgstr "Ошибка"
- #: src/routes/index.ts:195 src/views/domain/ngx_conf/LogEntry.vue:84
- msgid "Error Logs"
- msgstr "Ошибка логирования"
- #: src/views/system/Upgrade.vue:174
- msgid "Executable Path"
- msgstr "Исполняемый путь"
- #: src/views/certificate/Certificate.vue:101
- msgid "Expired"
- msgstr ""
- #: src/views/domain/cert/CertInfo.vue:24
- #, fuzzy
- msgid "Expired At: %{date}"
- msgstr "Дата окончания срока: %{date}"
- #: src/components/StdDesign/StdDataDisplay/methods/exportCsv.ts:68
- msgid "Export"
- msgstr "Экспорт"
- #: src/views/domain/cert/components/ObtainCertLive.vue:117
- #, fuzzy
- msgid "Fail to obtain certificate"
- msgstr "Получить сертификат"
- #: src/views/domain/components/RightSettings.vue:41
- #: src/views/domain/DomainList.vue:71
- #: src/views/stream/components/RightSettings.vue:41
- #: src/views/stream/StreamList.vue:71
- msgid "Failed to disable %{msg}"
- msgstr "Не удалось отключить %{msg}"
- #: src/views/domain/components/RightSettings.vue:32
- #: src/views/domain/DomainList.vue:61
- #: src/views/stream/components/RightSettings.vue:32
- #: src/views/stream/StreamList.vue:61
- msgid "Failed to enable %{msg}"
- msgstr "Не удалось включить %{msg}"
- #: src/language/constants.ts:5
- msgid "Failed to get certificate information"
- msgstr "Не удалось получить информацию о сертификате"
- #: src/views/domain/DomainEdit.vue:130 src/views/stream/StreamEdit.vue:122
- msgid "Failed to save, syntax error(s) was detected in the configuration."
- msgstr "Не удалось сохранить, обнаружены синтаксические ошибки в конфигурации."
- #: src/views/config/config.ts:20
- msgid "File"
- msgstr "Файл"
- #: src/language/constants.ts:31
- msgid "File exists"
- msgstr "Файл существует"
- #: src/views/preference/NginxSettings.vue:15
- #: src/views/preference/NginxSettings.vue:24
- #, fuzzy
- msgid "File not found"
- msgstr "Файл не найден"
- #: src/views/other/Error.vue:9
- msgid "File Not Found"
- msgstr "Файл не найден"
- #: src/views/nginx_log/NginxLog.vue:150
- msgid "Filter"
- msgstr "Фильтр"
- #: src/language/constants.ts:19 src/views/domain/DomainAdd.vue:97
- msgid "Finished"
- msgstr "Готово"
- #: src/views/preference/BasicSettings.vue:43
- msgid "For Chinese user: https://mirror.ghproxy.com/"
- msgstr ""
- #: src/views/config/ConfigEdit.vue:90
- msgid "Format Code"
- msgstr "Форматировать код"
- #: src/views/config/ConfigEdit.vue:68
- #, fuzzy
- msgid "Format error %{msg}"
- msgstr "Ошибка форматирования %{msg}"
- #: src/views/config/ConfigEdit.vue:66
- #, fuzzy
- msgid "Format successfully"
- msgstr "Форматирование успешно"
- #: src/views/certificate/Certificate.vue:44
- #, fuzzy
- msgid "General Certificate"
- msgstr "Сертификат действителен"
- #: src/components/StdDesign/StdDataEntry/components/StdPassword.vue:58
- msgid "Generate"
- msgstr "Сгенерировать"
- #: src/language/constants.ts:7
- msgid "Generating private key for registering account"
- msgstr "Генерация приватного ключа для регистрации учетной записи"
- #: src/views/system/Upgrade.vue:166
- #, fuzzy
- msgid "Get release information error"
- msgstr "Ошибка получения информации о релизе"
- #: src/views/domain/cert/components/ObtainCertLive.vue:67
- msgid "Getting the certificate, please wait..."
- msgstr "Получение сертификата, пожалуйста, подождите..."
- #: src/views/preference/BasicSettings.vue:35
- msgid "Github Proxy"
- msgstr ""
- #: src/routes/index.ts:31
- msgid "Home"
- msgstr "Главная"
- #: src/views/preference/BasicSettings.vue:31
- msgid "HTTP Challenge Port"
- msgstr ""
- #: src/views/preference/BasicSettings.vue:13
- msgid "HTTP Host"
- msgstr "Хостинг HTTP"
- #: src/views/preference/BasicSettings.vue:16
- msgid "HTTP Port"
- msgstr "Порт HTTP"
- #: src/views/domain/cert/components/AutoCertStepOne.vue:73
- msgid "HTTP01"
- msgstr ""
- #: src/views/certificate/ACMEUser.vue:37
- msgid "If left blank, the default CA Dir will be used."
- msgstr ""
- #: src/views/preference/AuthSettings.vue:60
- msgid ""
- "If the number of login failed attempts from a ip reach the max attempts in "
- "ban threshold minutes, the ip will be banned for a period of time."
- msgstr ""
- #: src/views/certificate/Certificate.vue:136
- #, fuzzy
- msgid "Import"
- msgstr "Экспорт"
- #: src/routes/index.ts:153 src/views/certificate/CertificateEditor.vue:85
- #, fuzzy
- msgid "Import Certificate"
- msgstr "Статус сертификата"
- #: src/views/other/Login.vue:59
- #, fuzzy
- msgid "Incorrect username or password"
- msgstr "Имя пользователя или пароль неверны"
- #: src/constants/index.ts:18
- msgid "Info"
- msgstr ""
- #: src/language/constants.ts:24
- msgid "Initial core upgrader error"
- msgstr "Ошибка первоначального обновления ядра"
- #: src/language/constants.ts:23
- msgid "Initialing core upgrader"
- msgstr "Инициализация программы обновления ядра"
- #: src/routes/index.ts:273 src/views/other/Install.vue:135
- msgid "Install"
- msgstr "Установить"
- #: src/views/other/Install.vue:66
- #, fuzzy
- msgid "Install successfully"
- msgstr "Установленно"
- #: src/views/domain/cert/CertInfo.vue:18
- msgid "Intermediate Certification Authorities: %{issuer}"
- msgstr "Промежуточные центры сертификации: %{issuer}"
- #: src/views/preference/LogrotateSettings.vue:26
- msgid "Interval"
- msgstr ""
- #: src/views/certificate/ACMEUser.vue:92
- #, fuzzy
- msgid "Invalid"
- msgstr "Действительный"
- #: src/views/preference/AuthSettings.vue:14
- msgid "IP"
- msgstr ""
- #: src/views/certificate/Certificate.vue:144
- #, fuzzy
- msgid "Issue wildcard certificate"
- msgstr "Получить сертификат"
- #: src/views/certificate/WildcardCertificate.vue:61
- #, fuzzy
- msgid "Issue Wildcard Certificate"
- msgstr "Статус сертификата"
- #: src/language/constants.ts:20
- #, fuzzy
- msgid "Issued certificate successfully"
- msgstr "Сертификат успешно выдан"
- #: src/views/preference/BasicSettings.vue:22
- msgid "Jwt Secret"
- msgstr ""
- #: src/views/certificate/Certificate.vue:66
- #: src/views/certificate/WildcardCertificate.vue:79
- #: src/views/domain/cert/components/AutoCertStepOne.vue:80
- #, fuzzy
- msgid "Key Type"
- msgstr "Тип"
- #: src/views/system/Upgrade.vue:176
- msgid "Last checked at"
- msgstr "Последняя проверка в"
- #: src/views/user/User.vue:25
- msgid "Leave blank for no change"
- msgstr "Оставьте пустым без изменений"
- #: src/views/preference/OpenAISettings.vue:53
- msgid "Leave blank for the default: https://api.openai.com/"
- msgstr "Оставьте пустым для значения по умолчанию: https://api.openai.com/"
- #: src/views/certificate/CertificateEditor.vue:207
- #: src/views/certificate/CertificateEditor.vue:220
- #, fuzzy
- msgid "Leave blank will not change anything"
- msgstr "Оставьте пустым без изменений"
- #: src/views/system/About.vue:47
- #, fuzzy
- msgid "License"
- msgstr "Лицензия"
- #: src/views/dashboard/Environments.vue:139
- msgid "Link Start"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:204
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:227
- msgid "List"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:178
- #, fuzzy
- msgid "Load Average:"
- msgstr "Средняя нагрузка:"
- #: src/views/environment/Environment.vue:152
- msgid "Load from settings"
- msgstr ""
- #: src/views/environment/Environment.vue:137
- #, fuzzy
- msgid "Load successfully"
- msgstr "Успешно сохранено"
- #: src/components/EnvIndicator/EnvIndicator.vue:40
- #: src/components/NodeSelector/NodeSelector.vue:71
- #, fuzzy
- msgid "Local"
- msgstr "Location"
- #: src/views/domain/ngx_conf/LocationEditor.vue:60
- msgid "Location"
- msgstr "Location"
- #: src/views/domain/ngx_conf/LocationEditor.vue:44
- msgid "Locations"
- msgstr "Locations"
- #: src/views/certificate/CertificateEditor.vue:230
- #, fuzzy
- msgid "Log"
- msgstr "Логин"
- #: src/routes/index.ts:279 src/views/other/Login.vue:159
- msgid "Login"
- msgstr "Логин"
- #: src/views/other/Login.vue:109 src/views/other/Login.vue:51
- msgid "Login successful"
- msgstr "Авторизация успешна"
- #: src/layouts/HeaderLayout.vue:19
- msgid "Logout successful"
- msgstr "Выход выполнен успешно"
- #: src/views/preference/Preference.vue:134
- msgid "Logrotate"
- msgstr ""
- #: src/views/preference/LogrotateSettings.vue:13
- msgid ""
- "Logrotate, by default, is enabled in most mainstream Linux distributions for "
- "users who install Nginx UI on the host machine, so you don't need to modify "
- "the parameters on this page. For users who install Nginx UI using Docker "
- "containers, you can manually enable this option. The crontab task scheduler "
- "of Nginx UI will execute the logrotate command at the interval you set in "
- "minutes."
- msgstr ""
- #: src/views/domain/cert/components/AutoCertStepOne.vue:59
- #, fuzzy
- msgid ""
- "Make sure you have configured a reverse proxy for .well-known directory to "
- "HTTPChallengePort before obtaining the certificate."
- msgstr ""
- "Убедитесь, что вы настроили обратный прокси-сервер для каталога .well-known "
- "на HTTPChallengePort перед получением сертификата»."
- #: src/routes/index.ts:99
- msgid "Manage Configs"
- msgstr "Конфигурации"
- #: src/routes/index.ts:48 src/views/domain/DomainList.vue:102
- msgid "Manage Sites"
- msgstr "Сайты"
- #: src/routes/index.ts:81 src/views/stream/StreamList.vue:119
- #, fuzzy
- msgid "Manage Streams"
- msgstr "Управление потоками"
- #: src/routes/index.ts:230 src/views/user/User.vue:50
- msgid "Manage Users"
- msgstr "Пользователи"
- #: src/views/certificate/Certificate.vue:43
- #, fuzzy
- msgid "Managed Certificate"
- msgstr "Управление сертификатами"
- #: src/views/preference/AuthSettings.vue:74
- msgid "Max Attempts"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:217
- #: src/views/dashboard/ServerAnalytic.vue:218
- msgid "Memory"
- msgstr "Память"
- #: src/views/dashboard/ServerAnalytic.vue:207
- msgid "Memory and Storage"
- msgstr "Память и хранилище"
- #: src/views/preference/LogrotateSettings.vue:30
- msgid "Minutes"
- msgstr ""
- #: src/views/preference/OpenAISettings.vue:33
- #, fuzzy
- msgid "Model"
- msgstr "Расширенный режим"
- #: src/components/ChatGPT/ChatGPT.vue:249
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:194
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:505
- #, fuzzy
- msgid "Modify"
- msgstr "Изменить"
- #: src/routes/index.ts:144 src/views/certificate/CertificateEditor.vue:85
- #, fuzzy
- msgid "Modify Certificate"
- msgstr "Статус сертификата"
- #: src/views/domain/DomainAdd.vue:151
- msgid "Modify Config"
- msgstr "Изменить конфигурацию"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:279
- #, fuzzy
- msgid "Modify Mode"
- msgstr "Изменить"
- #: src/views/domain/ngx_conf/directive/DirectiveAdd.vue:54
- #, fuzzy
- msgid "Multi-line Directive"
- msgstr "Одиночная директива"
- #: src/views/certificate/ACMEUser.vue:13
- #: src/views/certificate/Certificate.vue:20
- #: src/views/certificate/CertificateEditor.vue:147
- #: src/views/certificate/DNSCredential.vue:11 src/views/config/config.ts:7
- #: src/views/domain/cert/ChangeCert.vue:17
- #: src/views/domain/components/RightSettings.vue:83
- #: src/views/domain/components/SiteDuplicate.vue:129
- #: src/views/domain/DomainList.vue:13
- #: src/views/domain/ngx_conf/NgxUpstream.vue:175
- #: src/views/environment/Environment.vue:12
- #: src/views/stream/components/RightSettings.vue:82
- #: src/views/stream/components/StreamDuplicate.vue:129
- #: src/views/stream/StreamList.vue:13 src/views/stream/StreamList.vue:187
- msgid "Name"
- msgstr "Имя"
- #: src/views/dashboard/ServerAnalytic.vue:322
- msgid "Network"
- msgstr "Сеть"
- #: src/views/dashboard/ServerAnalytic.vue:264
- msgid "Network Statistics"
- msgstr "Статистика сети"
- #: src/views/dashboard/ServerAnalytic.vue:271
- msgid "Network Total Receive"
- msgstr "Всего получено"
- #: src/views/dashboard/ServerAnalytic.vue:277
- msgid "Network Total Send"
- msgstr "Всего отправлено"
- #: src/views/system/Upgrade.vue:205
- msgid "New version released"
- msgstr "Вышла новая версия"
- #: src/views/certificate/WildcardCertificate.vue:99
- #: src/views/domain/cert/components/ObtainCert.vue:203
- #: src/views/domain/DomainAdd.vue:138
- msgid "Next"
- msgstr "Дальше"
- #: src/views/preference/Preference.vue:122
- #, fuzzy
- msgid "Nginx"
- msgstr "Журнал"
- #: src/views/preference/NginxSettings.vue:12
- msgid "Nginx Access Log Path"
- msgstr "Путь для Nginx Access Log"
- #: src/views/domain/DomainEdit.vue:215 src/views/stream/StreamEdit.vue:207
- #, fuzzy
- msgid "Nginx Configuration Parse Error"
- msgstr "Ошибка синтаксического анализа конфигурации Nginx"
- #: src/components/NginxControl/NginxControl.vue:65
- msgid "Nginx Control"
- msgstr "Управление Nginx"
- #: src/views/preference/NginxSettings.vue:21
- msgid "Nginx Error Log Path"
- msgstr "Путь для Nginx Error Log"
- #: src/routes/index.ts:180 src/views/nginx_log/NginxLog.vue:143
- msgid "Nginx Log"
- msgstr "Журнал"
- #: src/components/NginxControl/NginxControl.vue:23
- #, fuzzy
- msgid "Nginx reloaded successfully"
- msgstr "Nginx перезагружен успешно"
- #: src/components/NginxControl/NginxControl.vue:39
- #, fuzzy
- msgid "Nginx restarted successfully"
- msgstr "Nginx успешно перезапущен"
- #: src/components/ChatGPT/ChatGPT.vue:270
- #: src/components/Notification/Notification.vue:84
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:521
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:535
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:549
- #: src/views/domain/DomainList.vue:144
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:90
- #: src/views/domain/ngx_conf/LocationEditor.vue:71
- #: src/views/notification/Notification.vue:70
- #: src/views/preference/AuthSettings.vue:96
- #: src/views/preference/BasicSettings.vue:101
- #: src/views/stream/StreamList.vue:165
- msgid "No"
- msgstr "Нет"
- #: src/views/preference/BasicSettings.vue:25
- msgid "Node Secret"
- msgstr ""
- #: src/views/certificate/Certificate.vue:107
- msgid "Not After"
- msgstr ""
- #: src/routes/index.ts:285
- msgid "Not Found"
- msgstr "Не найден"
- #: src/views/domain/cert/CertInfo.vue:27
- msgid "Not Valid Before: %{date}"
- msgstr "Недействительно до: %{date}"
- #: src/views/certificate/DNSCredential.vue:49
- #: src/views/domain/cert/components/AutoCertStepOne.vue:45
- msgid "Note"
- msgstr "Заметка"
- #: src/views/notification/Notification.vue:62
- #, fuzzy
- msgid "Notification"
- msgstr "Сертификат"
- #: src/components/Notification/Notification.vue:82 src/routes/index.ts:221
- #, fuzzy
- msgid "Notifications"
- msgstr "Уведомления"
- #: src/views/domain/cert/components/ObtainCert.vue:178
- #, fuzzy
- msgid "Obtain certificate"
- msgstr "Получить сертификат"
- #: src/language/constants.ts:15
- msgid "Obtaining certificate"
- msgstr "Получение сертификата"
- #: src/components/NodeSelector/NodeSelector.vue:95
- #: src/views/dashboard/Environments.vue:106
- #: src/views/environment/Environment.vue:88
- msgid "Offline"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:264
- #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:154
- msgid "Ok"
- msgstr ""
- #: src/components/ChatGPT/ChatGPT.vue:271
- #: src/components/Notification/Notification.vue:85
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:56
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:522
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:536
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:550
- #: src/views/domain/cert/components/ObtainCert.vue:136
- #: src/views/domain/components/Deploy.vue:20
- #: src/views/domain/components/RightSettings.vue:50
- #: src/views/domain/DomainList.vue:145
- #: src/views/domain/ngx_conf/NgxConfigEditor.vue:49
- #: src/views/domain/ngx_conf/NgxServer.vue:83
- #: src/views/domain/ngx_conf/NgxUpstream.vue:32
- #: src/views/notification/Notification.vue:71
- #: src/views/stream/components/Deploy.vue:20
- #: src/views/stream/components/RightSettings.vue:50
- #: src/views/stream/StreamList.vue:166
- msgid "OK"
- msgstr ""
- #: src/views/certificate/DNSCredential.vue:59
- msgid "Once the verification is complete, the records will be removed."
- msgstr ""
- #: src/components/NodeSelector/NodeSelector.vue:74
- #: src/components/NodeSelector/NodeSelector.vue:89
- #: src/views/dashboard/Environments.vue:99
- #: src/views/environment/Environment.vue:84
- msgid "Online"
- msgstr ""
- #: src/views/preference/Preference.vue:128
- msgid "OpenAI"
- msgstr ""
- #: src/views/system/Upgrade.vue:172
- #, fuzzy
- msgid "OS"
- msgstr "OS:"
- #: src/views/dashboard/ServerAnalytic.vue:184
- msgid "OS:"
- msgstr "OS:"
- #: src/views/domain/components/Deploy.vue:87
- #: src/views/stream/components/Deploy.vue:87
- msgid "Overwrite"
- msgstr ""
- #: src/views/domain/components/Deploy.vue:91
- #: src/views/stream/components/Deploy.vue:91
- msgid "Overwrite exist file"
- msgstr ""
- #: src/views/domain/ngx_conf/directive/DirectiveAdd.vue:78
- msgid "Params"
- msgstr "Параметры"
- #: src/views/other/Login.vue:144 src/views/user/User.vue:18
- msgid "Password"
- msgstr "Пароль"
- #: src/views/other/Install.vue:109
- msgid "Password (*)"
- msgstr "Пароль (*)"
- #: src/views/config/ConfigEdit.vue:118
- #: src/views/domain/ngx_conf/LocationEditor.vue:119
- #: src/views/domain/ngx_conf/LocationEditor.vue:91
- msgid "Path"
- msgstr "Путь"
- #: src/language/constants.ts:28
- msgid "Perform core upgrade error"
- msgstr ""
- #: src/language/constants.ts:27
- msgid "Performing core upgrade"
- msgstr ""
- #: src/views/certificate/DNSCredential.vue:53
- msgid ""
- "Please fill in the API authentication credentials provided by your DNS "
- "provider."
- msgstr ""
- #: src/views/domain/cert/components/AutoCertStepOne.vue:63
- msgid ""
- "Please first add credentials in Certification > DNS Credentials, and then "
- "select one of the credentialsbelow to request the API of the DNS provider."
- msgstr ""
- #: src/views/domain/components/SiteDuplicate.vue:38
- #: src/views/stream/components/StreamDuplicate.vue:38
- msgid ""
- "Please input name, this will be used as the filename of the new "
- "configuration!"
- msgstr ""
- "Введите имя, оно будет использоваться в качестве имени файла нового "
- "поздравляем!"
- #: src/views/other/Install.vue:33
- msgid "Please input your E-mail!"
- msgstr "Введите ваш E-mail!"
- #: src/views/other/Install.vue:45 src/views/other/Login.vue:39
- msgid "Please input your password!"
- msgstr "Введите ваш пароль!"
- #: src/views/other/Install.vue:39 src/views/other/Login.vue:33
- msgid "Please input your username!"
- msgstr "Введите ваше имя пользователя!"
- #: src/views/certificate/DNSCredential.vue:62
- msgid ""
- "Please note that the unit of time configurations below are all in seconds."
- msgstr ""
- #: src/views/domain/components/SiteDuplicate.vue:45
- #: src/views/stream/components/StreamDuplicate.vue:45
- msgid "Please select at least one node!"
- msgstr ""
- #: src/views/system/Upgrade.vue:191 src/views/system/Upgrade.vue:251
- msgid "Pre-release"
- msgstr ""
- #: src/routes/index.ts:239 src/views/preference/Preference.vue:105
- msgid "Preference"
- msgstr "Настройки"
- #: src/language/constants.ts:8
- #, fuzzy
- msgid "Preparing lego configurations"
- msgstr "Подготовка лего-конфигураций"
- #: src/language/constants.ts:3
- msgid "Prohibit changing root password in demo"
- msgstr "Запретить изменение пароля root в демо"
- #: src/language/constants.ts:4
- msgid "Prohibit deleting the default user"
- msgstr "Запретить удаление пользователя по умолчанию"
- #: src/views/system/About.vue:35
- msgid "Project Team"
- msgstr "Команда проекта"
- #: src/views/certificate/DNSCredential.vue:19
- msgid "Provider"
- msgstr "Провайдер"
- #: src/views/dashboard/ServerAnalytic.vue:28
- #: src/views/dashboard/ServerAnalytic.vue:378
- msgid "Reads"
- msgstr "Чтение"
- #: src/views/dashboard/ServerAnalytic.vue:24
- #: src/views/dashboard/ServerAnalytic.vue:329
- msgid "Receive"
- msgstr "Принято"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:544
- msgid "Recover"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:193
- #, fuzzy
- msgid "Recovered Successfully"
- msgstr "Успешно сохранено"
- #: src/views/preference/BasicSettings.vue:68
- msgid "Recursive Nameservers"
- msgstr ""
- #: src/components/ChatGPT/ChatGPT.vue:283
- msgid "Regenerate response"
- msgstr "Восстановить ответ"
- #: src/views/certificate/ACMEUser.vue:100
- #, fuzzy
- msgid "Register"
- msgstr "Регистрация пользователя"
- #: src/views/certificate/ACMEUser.vue:69
- #, fuzzy
- msgid "Register failed"
- msgstr "Регистрация пользователя"
- #: src/views/certificate/ACMEUser.vue:67
- #, fuzzy
- msgid "Register successfully"
- msgstr "Активировано успешно"
- #: src/language/constants.ts:14
- msgid "Registering user"
- msgstr "Регистрация пользователя"
- #: src/views/certificate/ACMEUser.vue:83
- #, fuzzy
- msgid "Registration Status"
- msgstr "Регистрация пользователя"
- #: src/views/system/Upgrade.vue:224
- #, fuzzy
- msgid "Reinstall"
- msgstr "Переустановить"
- #: src/views/system/Upgrade.vue:255
- msgid "Release Note"
- msgstr "Что нового"
- #: src/components/ChatGPT/ChatGPT.vue:259
- #: src/components/NginxControl/NginxControl.vue:100
- msgid "Reload"
- msgstr "Перегрузить"
- #: src/components/NginxControl/NginxControl.vue:74
- msgid "Reloading"
- msgstr "Перезагружается"
- #: src/language/constants.ts:18
- msgid "Reloading nginx"
- msgstr "Перезагружается nginx"
- #: src/views/preference/AuthSettings.vue:101
- msgid "Remove"
- msgstr ""
- #: src/views/preference/AuthSettings.vue:47
- #, fuzzy
- msgid "Remove successfully"
- msgstr "Успешно сохранено"
- #: src/components/Notification/Notification.vue:52
- #, fuzzy
- msgid "Removed successfully"
- msgstr "Успешно сохранено"
- #: src/views/domain/ngx_conf/NgxUpstream.vue:123
- #, fuzzy
- msgid "Rename"
- msgstr "Имя пользователя"
- #: src/views/certificate/RenewCert.vue:40
- #: src/views/certificate/RenewCert.vue:44
- #, fuzzy
- msgid "Renew Certificate"
- msgstr "Сертификат действителен"
- #: src/language/constants.ts:35
- #, fuzzy
- msgid "Renew Certificate Error"
- msgstr "Сертификат действителен"
- #: src/language/constants.ts:34
- #, fuzzy
- msgid "Renew Certificate Success"
- msgstr "Сертификат действителен"
- #: src/views/certificate/RenewCert.vue:22
- #: src/views/certificate/WildcardCertificate.vue:50
- #, fuzzy
- msgid "Renew successfully"
- msgstr "Активировано успешно"
- #: src/language/constants.ts:32
- msgid "Requested with wrong parameters"
- msgstr "Запрос с неправильными параметрами"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:453
- msgid "Reset"
- msgstr "Сброс"
- #: src/components/NginxControl/NginxControl.vue:93
- msgid "Restart"
- msgstr "Перезапуск"
- #: src/components/NginxControl/NginxControl.vue:79
- msgid "Restarting"
- msgstr "Перезапускается"
- #: src/views/preference/BasicSettings.vue:19
- #, fuzzy
- msgid "Run Mode"
- msgstr "Расширенный режим"
- #: src/components/NginxControl/NginxControl.vue:69
- msgid "Running"
- msgstr "Выполняется"
- #: src/components/ChatGPT/ChatGPT.vue:252
- #: src/views/certificate/CertificateEditor.vue:249
- #: src/views/config/ConfigEdit.vue:96 src/views/domain/DomainEdit.vue:261
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:120
- #: src/views/preference/Preference.vue:145 src/views/stream/StreamEdit.vue:252
- msgid "Save"
- msgstr "Сохранить"
- #: src/views/domain/ngx_conf/directive/DirectiveAdd.vue:105
- msgid "Save Directive"
- msgstr "Сохранить директиву"
- #: src/views/config/ConfigEdit.vue:57 src/views/domain/DomainAdd.vue:46
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:41
- msgid "Save error %{msg}"
- msgstr "Ошибка сохранения %{msg}"
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:39
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:104
- #: src/views/certificate/CertificateEditor.vue:46
- #: src/views/preference/Preference.vue:74
- #, fuzzy
- msgid "Save successfully"
- msgstr "Успешно сохранено"
- #: src/views/config/ConfigEdit.vue:55 src/views/domain/DomainAdd.vue:37
- #: src/views/domain/DomainEdit.vue:146
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:39
- #: src/views/stream/StreamEdit.vue:138
- msgid "Saved successfully"
- msgstr "Успешно сохранено"
- #: src/views/certificate/DNSChallenge.vue:89
- msgid "SDK"
- msgstr ""
- #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:155
- msgid "Selector"
- msgstr "Выбор"
- #: src/views/dashboard/ServerAnalytic.vue:25
- #: src/views/dashboard/ServerAnalytic.vue:339
- msgid "Send"
- msgstr "Отправлено"
- #: src/components/NginxControl/NginxControl.vue:29
- #: src/components/NginxControl/NginxControl.vue:45
- #: src/components/StdDesign/StdDataDisplay/methods/exportCsv.ts:46
- #: src/components/StdDesign/StdDataDisplay/methods/sortable.ts:126
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:42
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:196
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:235
- #: src/views/config/ConfigEdit.vue:40 src/views/domain/DomainList.vue:81
- #: src/views/environment/Environment.vue:139 src/views/other/Install.vue:69
- #: src/views/preference/AuthSettings.vue:49
- #: src/views/preference/Preference.vue:78 src/views/stream/StreamList.vue:113
- #: src/views/stream/StreamList.vue:81 src/views/system/Upgrade.vue:42
- msgid "Server error"
- msgstr "Ошибка сервера"
- #: src/views/dashboard/ServerAnalytic.vue:170
- msgid "Server Info"
- msgstr "Информация о сервере"
- #: src/views/preference/BasicSettings.vue:117
- #, fuzzy
- msgid "Server Name"
- msgstr "Информация о сервере"
- #: src/views/domain/cert/components/ObtainCert.vue:102
- msgid "server_name not found in directives"
- msgstr "server_name не нашел в директивах"
- #: src/views/domain/cert/components/AutoCertStepOne.vue:34
- #: src/views/domain/DomainAdd.vue:117
- msgid "server_name parameter is required"
- msgstr "server_name параметр обязателен"
- #: src/views/preference/BasicSettings.vue:64
- msgid ""
- "Set the recursive nameservers to override the systems nameservers for the "
- "step of DNS challenge."
- msgstr ""
- #: src/language/constants.ts:11
- msgid "Setting DNS01 challenge provider"
- msgstr ""
- #: src/language/constants.ts:12
- msgid "Setting environment variables"
- msgstr "Настройка переменных сред"
- #: src/language/constants.ts:10
- msgid "Setting HTTP01 challenge provider"
- msgstr ""
- #: src/views/domain/ngx_conf/directive/DirectiveAdd.vue:51
- msgid "Single Directive"
- msgstr "Одиночная Директива"
- #: src/routes/index.ts:202
- #, fuzzy
- msgid "Site Logs"
- msgstr "Логи сайтов"
- #: src/routes/index.ts:57
- msgid "Sites List"
- msgstr "Список сайтов"
- #: src/views/certificate/CertificateEditor.vue:198
- #, fuzzy
- msgid "SSL Certificate Content"
- msgstr "Содержание сертификата SSL"
- #: src/views/certificate/CertificateEditor.vue:211
- #, fuzzy
- msgid "SSL Certificate Key Content"
- msgstr "Содержание ключа сертификата SSL"
- #: src/views/certificate/Certificate.vue:80
- #: src/views/certificate/CertificateEditor.vue:177
- #, fuzzy
- msgid "SSL Certificate Key Path"
- msgstr "Путь к ключу сертификата SSL"
- #: src/views/certificate/Certificate.vue:72
- #: src/views/certificate/CertificateEditor.vue:162
- #, fuzzy
- msgid "SSL Certificate Path"
- msgstr "Путь к сертификату SSL"
- #: src/views/other/Login.vue:170
- #, fuzzy
- msgid "SSO Login"
- msgstr "Логин"
- #: src/views/system/Upgrade.vue:188 src/views/system/Upgrade.vue:245
- #, fuzzy
- msgid "Stable"
- msgstr "Таблица"
- #: src/views/certificate/ACMEUser.vue:42
- #: src/views/certificate/Certificate.vue:88 src/views/domain/DomainList.vue:22
- #: src/views/environment/Environment.vue:76 src/views/stream/StreamList.vue:22
- msgid "Status"
- msgstr "Статус"
- #: src/components/NginxControl/NginxControl.vue:84
- msgid "Stopped"
- msgstr "Остановлен"
- #: src/views/dashboard/ServerAnalytic.vue:245
- #: src/views/dashboard/ServerAnalytic.vue:246
- msgid "Storage"
- msgstr "Хранилище"
- #: src/views/domain/cert/CertInfo.vue:21
- #, fuzzy
- msgid "Subject Name: %{subject}"
- msgstr "Название темы: %{name}"
- #: src/constants/index.ts:19
- msgid "Success"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:231
- #: src/views/dashboard/ServerAnalytic.vue:232
- msgid "Swap"
- msgstr "Своп"
- #: src/components/SwitchAppearance/SwitchAppearance.vue:14
- msgid "Switch to dark theme"
- msgstr ""
- #: src/components/SwitchAppearance/SwitchAppearance.vue:14
- msgid "Switch to light theme"
- msgstr ""
- #: src/views/certificate/Certificate.vue:42
- #, fuzzy
- msgid "Sync Certificate"
- msgstr "Сертификат действителен"
- #: src/components/Notification/detailRender.ts:25
- #, fuzzy
- msgid ""
- "Sync Certificate %{cert_name} to %{env_name} failed, please upgrade the "
- "remote Nginx UI to the latest version"
- msgstr "Продублированно %{conf_name} в %{node_name}"
- #: src/components/Notification/detailRender.ts:29
- #, fuzzy
- msgid "Sync Certificate %{cert_name} to %{env_name} failed, response: %{resp}"
- msgstr "Продублированно %{conf_name} в %{node_name}"
- #: src/components/Notification/detailRender.ts:17
- #, fuzzy
- msgid "Sync Certificate %{cert_name} to %{env_name} successfully"
- msgstr "Продублированно %{conf_name} в %{node_name}"
- #: src/language/constants.ts:38
- #, fuzzy
- msgid "Sync Certificate Error"
- msgstr "Сертификат действителен"
- #: src/language/constants.ts:37
- #, fuzzy
- msgid "Sync Certificate Success"
- msgstr "Сертификат действителен"
- #: src/views/certificate/CertificateEditor.vue:191
- msgid "Sync to"
- msgstr ""
- #: src/routes/index.ts:248
- msgid "System"
- msgstr "Система"
- #: src/views/domain/components/SiteDuplicate.vue:136
- #: src/views/stream/components/StreamDuplicate.vue:136
- msgid "Target"
- msgstr ""
- #: src/routes/index.ts:172 src/views/pty/Terminal.vue:91
- msgid "Terminal"
- msgstr "Терминал"
- #: src/views/preference/BasicSettings.vue:28
- msgid "Terminal Start Command"
- msgstr "Терминальная команда запуска"
- #: src/views/domain/cert/components/AutoCertStepOne.vue:55
- #, fuzzy
- msgid ""
- "The certificate for the domain will be checked 5 minutes, and will be "
- "renewed if it has been more than 1 week since it was last issued."
- msgstr ""
- "The certificate for the domain will be checked every hour, and will be "
- "renewed if it has been more than 1 month since it was last issued."
- #: src/views/other/Install.vue:51
- msgid "The filename cannot contain the following characters: %{c}"
- msgstr "The filename cannot contain the following characters: %{c}"
- #: src/views/certificate/CertificateEditor.vue:201
- msgid "The input is not a SSL Certificate"
- msgstr ""
- #: src/views/certificate/CertificateEditor.vue:214
- #, fuzzy
- msgid "The input is not a SSL Certificate Key"
- msgstr "Путь к ключу сертификата SSL"
- #: src/views/preference/OpenAISettings.vue:36
- msgid ""
- "The model name should only contain letters, unicode, numbers, hyphens, "
- "dashes, and dots."
- msgstr ""
- #: src/views/certificate/CertificateEditor.vue:166
- #, fuzzy
- msgid "The path exists, but the file is not a certificate"
- msgstr "Путь к ключу сертификата SSL"
- #: src/views/certificate/CertificateEditor.vue:181
- msgid "The path exists, but the file is not a private key"
- msgstr "Путь существует, но файл не является приватным ключом"
- #: src/views/preference/BasicSettings.vue:120
- msgid ""
- "The server name should only contain letters, unicode, numbers, hyphens, "
- "dashes, and dots."
- msgstr ""
- #: src/views/domain/cert/components/AutoCertStepOne.vue:50
- #, fuzzy
- msgid ""
- "The server_name in the current configuration must be the domain name you "
- "need to get the certificate, supportmultiple domains."
- msgstr ""
- "Note: The server_name in the current configuration must be the domain name "
- "you need to get the certificate."
- #: src/views/preference/BasicSettings.vue:38
- #: src/views/preference/BasicSettings.vue:50
- #, fuzzy
- msgid "The url is invalid"
- msgstr "URL-адрес неверный"
- #: src/views/preference/OpenAISettings.vue:48
- #: src/views/preference/OpenAISettings.vue:60
- #, fuzzy
- msgid "The url is invalid."
- msgstr "URL-адрес неверный"
- #: src/language/constants.ts:2
- msgid "The username or password is incorrect"
- msgstr "Имя пользователя или пароль неверны"
- #: src/views/certificate/CertificateEditor.vue:102
- #, fuzzy
- msgid "This Auto Cert item is invalid, please remove it."
- msgstr "Этот элемент автосертификата недействителен, удалите его.."
- #: src/views/certificate/CertificateEditor.vue:92
- msgid "This certificate is managed by Nginx UI"
- msgstr "Этот сертификат находится под управлением Nginx UI"
- #: src/views/certificate/CertificateEditor.vue:150
- #: src/views/certificate/CertificateEditor.vue:164
- #: src/views/certificate/CertificateEditor.vue:179
- msgid "This field is required"
- msgstr ""
- #: src/components/StdDesign/StdDataEntry/StdFormItem.vue:24
- msgid "This field should not be empty"
- msgstr "Это поле обязательно к заполнению"
- #: src/views/preference/AuthSettings.vue:59
- #: src/views/preference/LogrotateSettings.vue:12
- msgid "Tips"
- msgstr ""
- #: src/views/notification/Notification.vue:19
- msgid "Title"
- msgstr "Заголовок"
- #: src/views/domain/ngx_conf/NgxConfigEditor.vue:44
- msgid ""
- "To make sure the certification auto-renewal can work normally, we need to "
- "add a location which can proxy the request from authority to backend, and we "
- "need to save this file and reload the Nginx. Are you sure you want to "
- "continue?"
- msgstr ""
- #: src/views/preference/OpenAISettings.vue:72
- msgid "Token is not valid"
- msgstr ""
- #: src/views/other/Login.vue:62
- msgid "Too many login failed attempts, please try again later"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:221
- msgid "Trash"
- msgstr ""
- #: src/views/certificate/Certificate.vue:37 src/views/config/config.ts:12
- #: src/views/notification/Notification.vue:13
- msgid "Type"
- msgstr "Тип"
- #: src/views/certificate/ACMEUser.vue:53
- #: src/views/certificate/DNSCredential.vue:27 src/views/config/config.ts:27
- #: src/views/config/ConfigEdit.vue:121
- #: src/views/domain/components/RightSettings.vue:86
- #: src/views/domain/DomainList.vue:41 src/views/environment/Environment.vue:122
- #: src/views/stream/components/RightSettings.vue:85
- #: src/views/stream/StreamList.vue:41 src/views/user/User.vue:37
- msgid "Updated at"
- msgstr "Обновлено в"
- #: src/components/StdDesign/StdDataDisplay/methods/sortable.ts:123
- #, fuzzy
- msgid "Updated successfully"
- msgstr "Обновлено успешно"
- #: src/routes/index.ts:263 src/views/system/Upgrade.vue:140
- #: src/views/system/Upgrade.vue:232
- msgid "Upgrade"
- msgstr "Обновление"
- #: src/language/constants.ts:29
- #, fuzzy
- msgid "Upgraded successfully"
- msgstr "Обновление успешно выполнено"
- #: src/views/system/Upgrade.vue:79
- msgid "Upgrading Nginx UI, please wait..."
- msgstr "Обновление Nginx UI, подождите..."
- #: src/views/domain/ngx_conf/NgxUpstream.vue:170
- msgid "Upstream Name"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:174
- msgid "Uptime:"
- msgstr "Аптайм:"
- #: src/views/environment/Environment.vue:22
- msgid "URL"
- msgstr ""
- #: src/components/ChatGPT/ChatGPT.vue:230
- #, fuzzy
- msgid "User"
- msgstr "Пользователь"
- #: src/views/other/Login.vue:65
- msgid "User is banned"
- msgstr ""
- #: src/views/other/Login.vue:134 src/views/user/User.vue:9
- msgid "Username"
- msgstr "Имя пользователя"
- #: src/views/other/Install.vue:99
- msgid "Username (*)"
- msgstr "Имя пользователя (*)"
- #: src/views/certificate/ACMEUser.vue:87
- #: src/views/certificate/Certificate.vue:97
- msgid "Valid"
- msgstr "Действительный"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:491
- #: src/views/domain/ngx_conf/config_template/ConfigTemplate.vue:103
- msgid "View"
- msgstr "Просмотр"
- #: src/components/Notification/Notification.vue:143
- #, fuzzy
- msgid "View all notifications"
- msgstr "Просмотреть все уведомления"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:194
- msgid "View Details"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:279
- #, fuzzy
- msgid "View Mode"
- msgstr "Простой режим"
- #: src/constants/index.ts:17 src/views/config/InspectConfig.vue:33
- #: src/views/domain/cert/components/AutoCertStepOne.vue:28
- #: src/views/domain/DomainAdd.vue:112
- msgid "Warning"
- msgstr "Внимание"
- #: src/views/certificate/DNSCredential.vue:56
- msgid ""
- "We will add one or more TXT records to the DNS records of your domain for "
- "ownership verification."
- msgstr ""
- "Мы добавим одну или несколько записей TXT в DNS записи вашего домена "
- "дляподтверждение права собственности"
- #: src/views/domain/cert/components/ObtainCert.vue:134
- msgid ""
- "We will remove the HTTPChallenge configuration from this file and reload the "
- "Nginx. Are you sure you want to continue?"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:27
- #: src/views/dashboard/ServerAnalytic.vue:368
- msgid "Writes"
- msgstr "Запись"
- #: src/language/constants.ts:17
- msgid "Writing certificate private key to disk"
- msgstr "Запись закрытого ключа сертификата на диск"
- #: src/language/constants.ts:16
- msgid "Writing certificate to disk"
- msgstr "Запись сертификата на диск"
- #: src/views/domain/ngx_conf/directive/DirectiveEditorItem.vue:89
- #: src/views/domain/ngx_conf/LocationEditor.vue:70
- #: src/views/preference/AuthSettings.vue:95
- #: src/views/preference/BasicSettings.vue:100
- msgid "Yes"
- msgstr "Да"
- #: src/views/system/Upgrade.vue:199
- msgid "You are using the latest version"
- msgstr "Вы используете последнюю версию"
- #: src/views/system/Upgrade.vue:161
- msgid "You can check Nginx UI upgrade at this page."
- msgstr "Вы можете проверить обновление Nginx UI на этой странице."
- #~ msgid "The url is not valid"
- #~ msgstr "URL-адрес неверный"
- #, fuzzy
- #~ msgid "Save Successfully"
- #~ msgstr "Успешно сохранено"
- #, fuzzy
- #~ msgid "Table"
- #~ msgstr "Таблица"
- #, fuzzy
- #~ msgid "Leave blank will not change anything."
- #~ msgstr "Оставьте пустым без изменений"
- #, fuzzy
- #~ msgid "Auto Cert is enabled"
- #~ msgstr "Авто Сертификат"
- #, fuzzy
- #~ msgid "Auto Cert Log"
- #~ msgstr "Логирование авто-сертификата"
- #, fuzzy
- #~ msgid "Config Name"
- #~ msgstr "Название конфигурации"
- #~ msgid "Auto cert is enabled, please do not modify this certification."
- #~ msgstr "Включено автомотическое получения сертификата. Не правте руками."
- #~ msgid "Delete ID: %{id}"
- #~ msgstr "Удалить ID: %{id}"
- #~ msgid "Dir"
- #~ msgstr "Директория"
- #~ msgid "Dark"
- #~ msgstr "Тёмный"
- #~ msgid "Light"
- #~ msgstr "Светлая"
- #~ msgid "Theme"
- #~ msgstr "Тема"
- #, fuzzy
- #~ msgid "Inspect Configurations"
- #~ msgstr "Edit Configuration"
- #~ msgid "server_name parameters more than one"
- #~ msgstr "server_name parameters more than one"
- #~ msgid "404 Not Found"
- #~ msgstr "404 Not Found"
- #~ msgid "Invalid E-mail!"
- #~ msgstr "Invalid E-mail!"
|