app.po 129 KB

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