app.po 139 KB

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