123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425 |
- # Kcho <kcholoren@gmail.com>, 2023, 2024.
- # OpenAI <noreply-mt-openai@weblate.org>, 2024.
- # Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org>, 2024.
- msgid ""
- msgstr ""
- "Project-Id-Version: \n"
- "POT-Creation-Date: \n"
- "PO-Revision-Date: 2024-11-06 18:26+0000\n"
- "Last-Translator: Kcho <kcholoren@gmail.com>\n"
- "Language-Team: Spanish <https://weblate.nginxui.com/projects/nginx-ui/"
- "frontend/es/>\n"
- "Language: es\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
- "X-Generator: Weblate 5.6.2\n"
- #: src/views/user/userColumns.tsx:32
- msgid "2FA"
- msgstr "2FA"
- #: src/views/preference/AuthSettings.vue:70
- msgid "2FA Settings"
- msgstr "Configuración de 2FA"
- #: src/routes/modules/system.ts:45
- msgid "About"
- msgstr "Acerca de"
- #: src/views/nginx_log/NginxLogList.vue:30
- #, fuzzy
- msgid "Access Log"
- msgstr "Logs de acceso"
- #: src/routes/modules/nginx_log.ts:17 src/views/site/ngx_conf/LogEntry.vue:91
- msgid "Access Logs"
- msgstr "Logs de acceso"
- #: src/routes/modules/certificates.ts:20 src/views/certificate/ACMEUser.vue:113
- #: src/views/certificate/ACMEUserSelector.vue:85
- msgid "ACME User"
- msgstr "Usuario ACME"
- #: src/views/certificate/ACMEUser.vue:95
- #: src/views/certificate/CertificateList/certColumns.tsx:94
- #: src/views/certificate/DNSCredential.vue:33
- #: src/views/config/configColumns.tsx:44
- #: src/views/environments/group/columns.ts:43
- #: src/views/environments/list/envColumns.tsx:97
- #: src/views/nginx_log/NginxLogList.vue:53
- #: src/views/notification/notificationColumns.tsx:66
- #: src/views/preference/AuthSettings.vue:30
- #: src/views/preference/components/ExternalNotify/columns.ts:46
- #: src/views/site/site_list/columns.tsx:117 src/views/stream/StreamList.vue:74
- #: src/views/user/userColumns.tsx:60
- msgid "Action"
- msgstr "Acción"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:186
- #: src/views/preference/CertSettings.vue:45
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:117
- #: src/views/site/ngx_conf/NgxServer.vue:163
- #: src/views/site/ngx_conf/NgxUpstream.vue:154
- #: src/views/stream/StreamList.vue:177
- msgid "Add"
- msgstr "Agregar"
- #: src/views/preference/components/AddPasskey.vue:45
- #: src/views/preference/components/AddPasskey.vue:49
- msgid "Add a passkey"
- msgstr "Agregar una llave de acceso"
- #: src/routes/modules/config.ts:20 src/views/config/ConfigEditor.vue:168
- #: src/views/config/ConfigEditor.vue:241
- msgid "Add Configuration"
- msgstr "Agregar configuración"
- #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:119
- msgid "Add Directive Below"
- msgstr "Añadir directiva a continuación"
- #: src/views/site/ngx_conf/LocationEditor.vue:130
- #: src/views/site/ngx_conf/LocationEditor.vue:157
- msgid "Add Location"
- msgstr "Agregar Ubicación"
- #: src/routes/modules/sites.ts:26 src/views/site/site_add/SiteAdd.vue:89
- msgid "Add Site"
- msgstr "Agregar Sitio"
- #: src/views/stream/StreamList.vue:243
- msgid "Add Stream"
- msgstr "Agregar Stream"
- #: src/views/stream/StreamList.vue:158
- msgid "Added successfully"
- msgstr "Agregado exitoso"
- #: src/views/certificate/DNSChallenge.vue:110
- msgid "Additional"
- msgstr "Adicional"
- #: src/views/site/site_edit/SiteEdit.vue:225
- #: src/views/stream/StreamEdit.vue:207
- msgid "Advance Mode"
- msgstr "Modo avanzado"
- #: src/views/preference/components/AddPasskey.vue:99
- msgid "Afterwards, refresh this page and click add passkey again."
- msgstr ""
- "Luego, actualice esta página y haga clic nuevamente en Agregar llave de "
- "acceso."
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:135
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:419
- msgid "All"
- msgstr "Todo"
- #: src/components/Notification/notifications.ts:175
- #: src/language/constants.ts:58
- msgid "All Recovery Codes Have Been Used"
- msgstr ""
- #: src/views/preference/OpenAISettings.vue:32
- msgid "API Base Url"
- msgstr "URL Base de la API"
- #: src/views/certificate/DNSChallenge.vue:83
- msgid "API Document"
- msgstr "Documento de la API"
- #: src/views/preference/OpenAISettings.vue:46
- msgid "API Proxy"
- msgstr "Proxy de la API"
- #: src/views/preference/OpenAISettings.vue:58
- msgid "API Token"
- msgstr "Token de la API"
- #: src/views/preference/OpenAISettings.vue:67
- #, fuzzy
- msgid "API Type"
- msgstr "Token de la API"
- #: src/views/preference/Preference.vue:163
- msgid "App"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:103
- msgid "Apply"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:67
- #, fuzzy
- msgid "Apply bulk action successfully"
- msgstr "Duplicado con éxito"
- #: src/views/system/Upgrade.vue:176
- msgid "Arch"
- msgstr "Arquitectura"
- #: src/views/preference/AuthSettings.vue:162
- msgid "Are you sure to delete this banned IP immediately?"
- msgstr "¿Está seguro de eliminar esta IP bloqueada inmediatamente?"
- #: src/views/preference/components/Passkey.vue:113
- msgid "Are you sure to delete this passkey immediately?"
- msgstr "¿Está seguro de eliminar esta llave de acceso inmediatamente?"
- #: src/views/preference/components/RecoveryCodes.vue:154
- #, fuzzy
- msgid "Are you sure to generate new recovery codes?"
- msgstr "¿Está seguro de que quiere recuperar este elemento?"
- #: src/views/preference/components/TOTP.vue:85
- #, fuzzy
- msgid "Are you sure to reset 2FA?"
- msgstr "¿Está seguro de que quiere borrar?"
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:96
- #, fuzzy
- msgid "Are you sure you want to apply to all selected?"
- msgstr "¿Está seguro de que quiere borrar?"
- #: src/components/Notification/Notification.vue:135
- #: src/views/notification/Notification.vue:39
- msgid "Are you sure you want to clear all notifications?"
- msgstr "¿Está seguro de que desea borrar todas las notificaciones?"
- #: src/components/ChatGPT/ChatGPT.vue:376
- msgid "Are you sure you want to clear the record of chat?"
- msgstr "¿Está seguro de que desea borrar el registro del chat?"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:540
- msgid "Are you sure you want to delete this item permanently?"
- msgstr "¿Está seguro de que desea eliminar este elemento de forma permanente?"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:512
- msgid "Are you sure you want to delete this item?"
- msgstr "¿Está seguro de que quiere borrar este elemento?"
- #: src/views/site/site_list/SiteList.vue:167
- #: src/views/stream/StreamList.vue:227
- msgid "Are you sure you want to delete?"
- msgstr "¿Está seguro de que quiere borrar?"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:526
- msgid "Are you sure you want to recover this item?"
- msgstr "¿Está seguro de que quiere recuperar este elemento?"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:149
- #, fuzzy
- msgid "Are you sure you want to reload Nginx on the following sync nodes?"
- msgstr "¿Está seguro de que quiere borrar?"
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:95
- msgid "Are you sure you want to remove this directive?"
- msgstr "¿Está seguro de que quiere borrar esta directiva?"
- #: src/views/preference/CertSettings.vue:71
- msgid "Are you sure you want to remove this item?"
- msgstr "¿Está seguro de que desea eliminar este elemento?"
- #: src/views/site/ngx_conf/LocationEditor.vue:86
- msgid "Are you sure you want to remove this location?"
- msgstr "¿Está seguro de que quiere borrar esta ubicación?"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:161
- #, fuzzy
- msgid "Are you sure you want to restart Nginx on the following sync nodes?"
- msgstr "¿Está seguro de que desea borrar todas las notificaciones?"
- #: src/components/ChatGPT/ChatGPT.vue:318
- msgid "Ask ChatGPT for Help"
- msgstr "Preguntar por ayuda a ChatGPT"
- #: src/components/ChatGPT/ChatGPT.vue:333
- msgid "Assistant"
- msgstr "Asistente"
- #: src/views/system/SelfCheck/SelfCheck.vue:50
- #, fuzzy
- msgid "Attempt to fix"
- msgstr "Intentos"
- #: src/views/preference/AuthSettings.vue:21
- msgid "Attempts"
- msgstr "Intentos"
- #: src/views/preference/Preference.vue:193
- msgid "Auth"
- msgstr "Autenticación"
- #: src/components/TwoFA/Authorization.vue:109
- msgid "Authenticate with a passkey"
- msgstr "Autenticarse con una llave de acceso"
- #: src/views/preference/AuthSettings.vue:88
- msgid "Authentication Settings"
- msgstr "Configuración de autenticación"
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:106
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:120
- msgid "Author"
- msgstr "Autor"
- #: src/views/nginx_log/NginxLog.vue:149
- msgid "Auto Refresh"
- msgstr "Actualización automática"
- #: src/views/site/cert/components/ObtainCert.vue:80
- msgid "Auto-renewal disabled for %{name}"
- msgstr "Renovación automática deshabilitada por %{name}"
- #: src/views/site/cert/components/ObtainCert.vue:73
- msgid "Auto-renewal enabled for %{name}"
- msgstr "Renovación automática habilitada por %{name}"
- #: src/components/SystemRestore/SystemRestoreContent.vue:332
- msgid "Automatic Restart"
- msgstr ""
- #: src/views/nginx_log/NginxLogList.vue:127
- msgid "Automatically indexed from site and stream configurations."
- msgstr ""
- #: src/views/certificate/CertificateEditor.vue:255
- #: src/views/config/ConfigEditor.vue:262 src/views/config/ConfigList.vue:112
- #: src/views/config/ConfigList.vue:195 src/views/nginx_log/NginxLog.vue:173
- #: src/views/site/site_edit/SiteEdit.vue:285
- #: src/views/stream/StreamEdit.vue:264
- msgid "Back"
- msgstr "Volver"
- #: src/views/other/Error.vue:22
- msgid "Back Home"
- msgstr "Volver al Inicio"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:206
- msgid "Back to list"
- msgstr "Volver a la lista"
- #: src/routes/modules/system.ts:26
- #, fuzzy
- msgid "Backup"
- msgstr "Volver"
- #: src/components/SystemRestore/SystemRestoreContent.vue:155
- msgid "Backup file integrity check failed, it may have been tampered with"
- msgstr ""
- #: src/constants/errors/backup.ts:41
- #, fuzzy
- msgid "Backup file not found: {0}"
- msgstr "Archivo no Encontrado"
- #: src/views/system/Backup/BackupCreator.vue:42
- #, fuzzy
- msgid "Backup has been downloaded successfully"
- msgstr "Nginx recargado con éxito"
- #: src/views/preference/AuthSettings.vue:129
- msgid "Ban Threshold Minutes"
- msgstr "Umbral de Prohibición en Minutos"
- #: src/views/preference/AuthSettings.vue:150
- msgid "Banned IPs"
- msgstr "IPs prohibidas"
- #: src/views/preference/AuthSettings.vue:24
- msgid "Banned Until"
- msgstr "Bloqueado hasta"
- #: src/views/preference/components/ExternalNotify/bark.ts:5
- msgid "Bark"
- msgstr ""
- #: src/views/site/site_add/SiteAdd.vue:95
- msgid "Base information"
- msgstr "Información general"
- #: src/views/config/ConfigEditor.vue:290
- #: src/views/site/site_edit/RightSettings.vue:52
- #: src/views/stream/components/RightSettings.vue:79
- msgid "Basic"
- msgstr "Básico"
- #: src/views/site/site_edit/SiteEdit.vue:228
- #: src/views/stream/StreamEdit.vue:210
- msgid "Basic Mode"
- msgstr "Modo Básico"
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:83
- #, fuzzy
- msgid "Batch Actions"
- msgstr "Acción"
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:62
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:448
- msgid "Batch Modify"
- msgstr "Modificar por lotes"
- #: src/views/environments/list/BatchUpgrader.vue:152
- msgid "Batch Upgrade"
- msgstr "Actualización por lotes"
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:70
- msgid "Belows are selected items that you want to batch modify"
- msgstr ""
- "A continuación se muestran los elementos seleccionados que desea modificar "
- "por lotes"
- #: src/constants/errors/nginx.ts:2
- msgid "Block is nil"
- msgstr ""
- #: src/views/system/About.vue:55
- msgid "Build with"
- msgstr "Desarrollado con"
- #: src/views/certificate/ACMEUser.vue:37
- msgid "CA Dir"
- msgstr "Dir CA"
- #: src/views/preference/CertSettings.vue:19
- msgid "CADir"
- msgstr "Directorio CA"
- #: src/components/ChatGPT/ChatGPT.vue:356
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:246
- #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:187
- #: src/components/StdDesign/StdDetail/StdDetail.vue:101
- #: src/views/preference/components/Passkey.vue:141
- #: src/views/site/cert/components/ObtainCert.vue:140
- #: src/views/site/ngx_conf/NgxConfigEditor.vue:51
- #: src/views/site/ngx_conf/NgxServer.vue:80
- #: src/views/site/ngx_conf/NgxUpstream.vue:34
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:122
- #: src/views/stream/components/RightSettings.vue:55
- msgid "Cancel"
- msgstr "Cancelar"
- #: src/constants/errors/user.ts:11
- #, fuzzy
- msgid "Cannot change initial user password in demo mode"
- msgstr "Prohibir cambiar la contraseña de root en la demostración"
- #: src/components/ConfigHistory/DiffViewer.vue:57
- #: src/components/ConfigHistory/DiffViewer.vue:74
- msgid "Cannot compare: Missing content"
- msgstr ""
- #: src/constants/errors/user.ts:10
- #, fuzzy
- msgid "Cannot remove initial user"
- msgstr "Usuario inicial del sistema"
- #: src/views/preference/Preference.vue:199
- msgid "Cert"
- msgstr "Certificado"
- #: src/constants/errors/cert.ts:3
- msgid "Cert path is not under the nginx conf dir"
- msgstr ""
- #: src/components/Notification/notifications.ts:28
- #, fuzzy
- msgid "Certificate %{name} has expired"
- msgstr "Plantillas de configuración"
- #: src/components/Notification/notifications.ts:32
- #: src/components/Notification/notifications.ts:36
- #: src/components/Notification/notifications.ts:40
- msgid "Certificate %{name} will expire in %{days} days"
- msgstr ""
- #: src/components/Notification/notifications.ts:44
- msgid "Certificate %{name} will expire in 1 day"
- msgstr ""
- #: src/constants/errors/cert.ts:4
- #, fuzzy
- msgid "Certificate decode error"
- msgstr "Error de Certificado de Sincronización"
- #: src/components/Notification/notifications.ts:31
- #, fuzzy
- msgid "Certificate Expiration Notice"
- msgstr "Plantillas de configuración"
- #: src/components/Notification/notifications.ts:27
- #, fuzzy
- msgid "Certificate Expired"
- msgstr "Lista de Certificados"
- #: src/components/Notification/notifications.ts:35
- #: src/components/Notification/notifications.ts:39
- #: src/components/Notification/notifications.ts:43
- #, fuzzy
- msgid "Certificate Expiring Soon"
- msgstr "El certificado expiró"
- #: src/constants/errors/cert.ts:5
- #, fuzzy
- msgid "Certificate parse error"
- msgstr "El certificado expiró"
- #: src/constants/errors/cert.ts:8
- #, fuzzy
- msgid "Certificate path is empty"
- msgstr "Plantillas de configuración"
- #: src/views/preference/CertSettings.vue:27
- msgid "Certificate Renewal Interval"
- msgstr "Intervalo de renovación del Certificado"
- #: src/language/constants.ts:21
- #, fuzzy
- msgid "Certificate renewed successfully"
- msgstr "Limpiado exitoso"
- #: src/views/certificate/CertificateEditor.vue:128
- #: src/views/site/cert/Cert.vue:60
- msgid "Certificate Status"
- msgid_plural "Certificates Status"
- msgstr[0] "Estado del Certificado"
- msgstr[1] "Estado de los Certificados"
- #: src/routes/modules/certificates.ts:11
- #: src/views/certificate/CertificateList/Certificate.vue:13
- msgid "Certificates"
- msgstr "Certificados"
- #: src/routes/modules/certificates.ts:28
- msgid "Certificates List"
- msgstr "Lista de Certificados"
- #: src/views/site/cert/components/AutoCertStepOne.vue:66
- msgid "Challenge Method"
- msgstr "Método de desafío"
- #: src/views/site/cert/components/ChangeCert/ChangeCert.vue:49
- #: src/views/site/cert/components/ChangeCert/ChangeCert.vue:53
- msgid "Change Certificate"
- msgstr "Cambiar Certificado"
- #: src/views/site/cert/Cert.vue:79
- msgid "Changed Certificate"
- msgid_plural "Changed Certificates"
- msgstr[0] "Cambiar Certificado"
- msgstr[1] "Cambiar Certificados"
- #: src/views/config/ConfigEditor.vue:318
- msgid "Changed Path"
- msgstr "Ruta cambiada"
- #: src/views/environments/list/BatchUpgrader.vue:159
- #: src/views/system/Upgrade.vue:188
- msgid "Channel"
- msgstr "Canal"
- #: src/views/system/Upgrade.vue:185
- msgid "Check again"
- msgstr "Intentar nuevamente"
- #: src/views/system/SelfCheck/tasks/frontend/https-check.ts:11
- msgid ""
- "Check if HTTPS is enabled. Using HTTP outside localhost is insecure and "
- "prevents using Passkeys and clipboard features."
- msgstr ""
- #: src/views/system/SelfCheck/tasks/backend/index.ts:16
- msgid "Check if the nginx.conf includes the sites-enabled directory."
- msgstr ""
- #: src/views/system/SelfCheck/tasks/backend/index.ts:21
- msgid "Check if the nginx.conf includes the streams-enabled directory."
- msgstr ""
- #: src/views/system/SelfCheck/tasks/backend/index.ts:6
- msgid ""
- "Check if the sites-available and sites-enabled directories are under the "
- "nginx configuration directory."
- msgstr ""
- #: src/views/system/SelfCheck/tasks/backend/index.ts:11
- msgid ""
- "Check if the streams-available and streams-enabled directories are under the "
- "nginx configuration directory."
- msgstr ""
- #: src/constants/errors/crypto.ts:3
- msgid "Cipher text is too short"
- msgstr ""
- #: src/language/constants.ts:13
- msgid "Cleaning environment variables"
- msgstr "Borrar las variables de entorno"
- #: src/components/ChatGPT/ChatGPT.vue:380
- #: src/components/Notification/Notification.vue:140
- #: src/views/notification/Notification.vue:44
- msgid "Clear"
- msgstr "Borrar"
- #: src/components/Notification/Notification.vue:93
- #: src/views/notification/Notification.vue:13
- msgid "Cleared successfully"
- msgstr "Limpiado exitoso"
- #: src/components/SystemRestore/SystemRestoreContent.vue:194
- #: src/components/SystemRestore/SystemRestoreContent.vue:271
- msgid "Click or drag backup file to this area to upload"
- msgstr ""
- #: src/views/preference/components/TOTP.vue:110
- msgid "Click to copy"
- msgstr ""
- #: src/components/ConfigHistory/ConfigHistory.vue:169
- msgid "Close"
- msgstr ""
- #: src/views/preference/LogrotateSettings.vue:22
- msgid "Command"
- msgstr "Comando"
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:113
- #: src/views/site/ngx_conf/LocationEditor.vue:103
- #: src/views/site/ngx_conf/LocationEditor.vue:134
- #: src/views/site/ngx_conf/NgxServer.vue:135
- msgid "Comments"
- msgstr "Comentarios"
- #: src/components/ConfigHistory/ConfigHistory.vue:127
- msgid "Compare"
- msgstr ""
- #: src/components/ConfigHistory/DiffViewer.vue:378
- #, fuzzy
- msgid "Compare Configurations"
- msgstr "Configuraciones"
- #: src/components/ConfigHistory/ConfigHistory.vue:130
- msgid "Compare Selected"
- msgstr ""
- #: src/components/ConfigHistory/ConfigHistory.vue:129
- msgid "Compare with Current"
- msgstr ""
- #: src/constants/errors/backup.ts:14
- #, fuzzy
- msgid "Config path is empty"
- msgstr "Plantillas de configuración"
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:84
- msgid "Config Templates"
- msgstr "Plantillas de configuración"
- #: src/views/config/InspectConfig.vue:27
- msgid "Configuration file is test successful"
- msgstr "El archivo de configuración se probó exitosamente"
- #: src/components/ConfigHistory/ConfigHistory.vue:138
- #, fuzzy
- msgid "Configuration History"
- msgstr "Configuraciones"
- #: src/views/site/site_add/SiteAdd.vue:101
- msgid "Configuration Name"
- msgstr "Nombre de la configuración"
- #: src/views/config/ConfigList.vue:104
- msgid "Configurations"
- msgstr "Configuraciones"
- #: src/views/site/site_add/SiteAdd.vue:96
- msgid "Configure SSL"
- msgstr "Configurar SSL"
- #: src/views/dashboard/Environments.vue:141
- msgid "Connected"
- msgstr "Conectado"
- #: src/views/terminal/Terminal.vue:142
- msgid "Connection lost, please refresh the page."
- msgstr "Conexión perdida, por favor actualice la página."
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:118
- #: src/views/site/ngx_conf/LocationEditor.vue:115
- #: src/views/site/ngx_conf/LocationEditor.vue:143
- msgid "Content"
- msgstr "Contenido"
- #: src/components/SensitiveString/SensitiveString.vue:37
- #: src/components/StdDesign/StdDataDisplay/StdTableTransformer.tsx:150
- #: src/views/preference/components/RecoveryCodes.vue:121
- msgid "Copied"
- msgstr "Copiado"
- #: src/views/system/Backup/BackupCreator.vue:128
- #, fuzzy
- msgid "Copied!"
- msgstr "Copiado"
- #: src/components/SensitiveString/SensitiveString.vue:37
- #: src/views/system/Backup/BackupCreator.vue:128
- msgid "Copy"
- msgstr "Copiar"
- #: src/views/preference/components/RecoveryCodes.vue:121
- #, fuzzy
- msgid "Copy Codes"
- msgstr "Código de Recuperación"
- #: src/views/system/Upgrade.vue:146
- msgid "Core Upgrade"
- msgstr "Actualización del kernel"
- #: src/views/dashboard/ServerAnalytic.vue:301
- msgid "CPU Status"
- msgstr "Estado del CPU"
- #: src/views/dashboard/ServerAnalytic.vue:195
- msgid "CPU:"
- msgstr "CPU:"
- #: src/views/site/ngx_conf/NgxUpstream.vue:165
- msgid "Create"
- msgstr "Crear"
- #: src/views/site/site_add/SiteAdd.vue:157
- msgid "Create Another"
- msgstr "Crear otro"
- #: src/views/system/Backup/BackupCreator.vue:86
- #, fuzzy
- msgid "Create Backup"
- msgstr "Creado el"
- #: src/views/config/ConfigList.vue:122
- msgid "Create File"
- msgstr "Crear Archivo"
- #: src/views/config/components/Mkdir.vue:47 src/views/config/ConfigList.vue:129
- msgid "Create Folder"
- msgstr "Crear carpeta"
- #: src/views/system/Backup/BackupCreator.vue:75
- msgid ""
- "Create system backups including Nginx configuration and Nginx UI settings. "
- "Backup files will be automatically downloaded to your computer."
- msgstr ""
- #: src/views/environments/group/columns.ts:31
- #: src/views/notification/notificationColumns.tsx:59
- #: src/views/preference/components/ExternalNotify/columns.ts:41
- #: src/views/preference/components/Passkey.vue:95
- #: src/views/user/userColumns.tsx:48
- msgid "Created at"
- msgstr "Creado el"
- #: src/views/config/components/Mkdir.vue:35
- msgid "Created successfully"
- msgstr "Creado con éxito"
- #: src/language/constants.ts:9
- msgid "Creating client facilitates communication with the CA server"
- msgstr "La creación de un cliente facilita la comunicación con el servidor CA"
- #: src/views/site/cert/components/DNSChallenge.vue:104
- msgid "Credential"
- msgstr "Credencial"
- #: src/views/certificate/DNSChallenge.vue:99
- msgid "Credentials"
- msgstr "Credenciales"
- #: src/views/preference/components/TOTP.vue:72
- msgid "Current account is enabled TOTP."
- msgstr "La cuenta actual tiene habilitada TOTP."
- #: src/views/preference/components/TOTP.vue:70
- msgid "Current account is not enabled TOTP."
- msgstr "La cuenta actual no tiene habilitada TOTP."
- #: src/components/ConfigHistory/DiffViewer.vue:62
- #, fuzzy
- msgid "Current Content"
- msgstr "Versión actual"
- #: src/views/system/Upgrade.vue:165
- msgid "Current Version"
- msgstr "Versión actual"
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:127
- #: src/views/site/ngx_conf/NgxConfigEditor.vue:194
- msgid "Custom"
- msgstr "Personalizado"
- #: src/views/preference/NodeSettings.vue:19
- msgid ""
- "Customize the name of local node to be displayed in the environment "
- "indicator."
- msgstr ""
- "Personalice el nombre del servidor local para mostrarlo en el indicador de "
- "entorno."
- #: src/routes/modules/dashboard.ts:10 src/views/config/ConfigEditor.vue:107
- #: src/views/config/ConfigEditor.vue:158 src/views/config/ConfigList.vue:67
- msgid "Dashboard"
- msgstr "Panel"
- #: src/views/other/Install.vue:169
- msgid "Database (Optional, default: database)"
- msgstr "Base de datos (Opcional, default: database)"
- #: src/views/preference/CertSettings.vue:32
- msgid "Days"
- msgstr "Días"
- #: src/constants/errors/middleware.ts:3
- #, fuzzy
- msgid "Decryption failed"
- msgstr "Descripción"
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:21
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:519
- #: src/views/site/ngx_conf/NgxServer.vue:110
- #: src/views/site/ngx_conf/NgxUpstream.vue:128
- #: src/views/site/site_list/SiteList.vue:176
- #: src/views/stream/StreamList.vue:236
- msgid "Delete"
- msgstr "Eliminar"
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:35
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:547
- msgid "Delete Permanently"
- msgstr "Eliminar Permanentemente"
- #: src/components/Notification/notifications.ts:75 src/language/constants.ts:50
- msgid "Delete Remote Site Error"
- msgstr "Error al eliminar sitio remoto"
- #: src/components/Notification/notifications.ts:79 src/language/constants.ts:49
- msgid "Delete Remote Site Success"
- msgstr "Borrado del sitio remoto correcto"
- #: src/components/Notification/notifications.ts:133
- #, fuzzy
- msgid "Delete Remote Stream Error"
- msgstr "Error al eliminar sitio remoto"
- #: src/components/Notification/notifications.ts:137
- #, fuzzy
- msgid "Delete Remote Stream Success"
- msgstr "Borrado del sitio remoto correcto"
- #: src/components/Notification/notifications.ts:76
- #, fuzzy
- msgid "Delete site %{name} from %{node} failed"
- msgstr "Falló el desplegado de %{conf_name} a %{node_name}"
- #: src/components/Notification/notifications.ts:80
- #, fuzzy
- msgid "Delete site %{name} from %{node} successfully"
- msgstr "Duplicado con éxito de %{conf_name} a %{node_name}"
- #: src/views/site/site_list/SiteList.vue:98
- msgid "Delete site: %{site_name}"
- msgstr "Eliminar sitio: %{site_name}"
- #: src/components/Notification/notifications.ts:134
- #, fuzzy
- msgid "Delete stream %{name} from %{node} failed"
- msgstr "Falló el desplegado de %{conf_name} a %{node_name}"
- #: src/components/Notification/notifications.ts:138
- #, fuzzy
- msgid "Delete stream %{name} from %{node} successfully"
- msgstr "Duplicado con éxito de %{conf_name} a %{node_name}"
- #: src/views/stream/StreamList.vue:107
- msgid "Delete stream: %{stream_name}"
- msgstr "Eliminar stream: %{site_name}"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:183
- msgid "Deleted successfully"
- msgstr "Borrado exitoso"
- #: src/views/preference/NodeSettings.vue:28
- msgid "Demo"
- msgstr ""
- #: src/views/config/ConfigEditor.vue:334
- msgid "Deploy"
- msgstr "Desplegar"
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:107
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:121
- msgid "Description"
- msgstr "Descripción"
- #: src/constants/errors/site.ts:3 src/constants/errors/stream.ts:3
- msgid "Destination file already exists"
- msgstr ""
- #: src/views/notification/notificationColumns.tsx:53
- msgid "Details"
- msgstr "Detalles"
- #: src/views/system/About.vue:28
- msgid "Development Mode"
- msgstr "Modo de desarrollo"
- #: src/views/preference/components/ExternalNotify/dingtalk.ts:5
- msgid "DingTalk"
- msgstr ""
- #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:89
- msgid "Directive"
- msgstr "Directiva"
- #: src/constants/errors/nginx_log.ts:6
- msgid "Directive params is empty"
- msgstr ""
- #: src/constants/errors/nginx_log.ts:5
- msgid "Directive.Params neither access_log nor error_log"
- msgstr ""
- #: src/constants/errors/nginx_log.ts:4
- msgid "DirectiveIdx out of range"
- msgstr ""
- #: src/views/site/ngx_conf/directive/DirectiveEditor.vue:28
- msgid "Directives"
- msgstr "Directivas"
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:113
- #, fuzzy
- msgid "disable"
- msgstr "Desactivar"
- #: src/views/stream/StreamList.vue:207
- msgid "Disable"
- msgstr "Desactivar"
- #: src/views/site/cert/components/ObtainCert.vue:82
- msgid "Disable auto-renewal failed for %{name}"
- msgstr "No se pudo desactivar la renovación automática por %{name}"
- #: src/components/Notification/notifications.ts:83 src/language/constants.ts:52
- msgid "Disable Remote Site Error"
- msgstr "Error al deshabilitar el sitio remoto"
- #: src/components/Notification/notifications.ts:107
- #, fuzzy
- msgid "Disable Remote Site Maintenance Error"
- msgstr "Error al deshabilitar el sitio remoto"
- #: src/components/Notification/notifications.ts:111
- #, fuzzy
- msgid "Disable Remote Site Maintenance Success"
- msgstr "Deshabilitado de sitio remoto exitoso"
- #: src/components/Notification/notifications.ts:87 src/language/constants.ts:51
- msgid "Disable Remote Site Success"
- msgstr "Deshabilitado de sitio remoto exitoso"
- #: src/components/Notification/notifications.ts:141
- #, fuzzy
- msgid "Disable Remote Stream Error"
- msgstr "Error al deshabilitar el sitio remoto"
- #: src/components/Notification/notifications.ts:145
- #, fuzzy
- msgid "Disable Remote Stream Success"
- msgstr "Deshabilitado de sitio remoto exitoso"
- #: src/components/Notification/notifications.ts:84
- #, fuzzy
- msgid "Disable site %{name} from %{node} failed"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:88
- #, fuzzy
- msgid "Disable site %{name} from %{node} successfully"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:108
- #, fuzzy
- msgid "Disable site %{name} maintenance on %{node} failed"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:112
- #, fuzzy
- msgid "Disable site %{name} maintenance on %{node} successfully"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:142
- #, fuzzy
- msgid "Disable stream %{name} from %{node} failed"
- msgstr "Falló el habilitado de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:146
- #, fuzzy
- msgid "Disable stream %{name} from %{node} successfully"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/views/environments/list/envColumns.tsx:61
- #: src/views/environments/list/envColumns.tsx:79
- #: src/views/preference/HTTPSettings.vue:24
- #: src/views/preference/NodeSettings.vue:25
- #: src/views/preference/NodeSettings.vue:30
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:159
- #: src/views/site/site_edit/SiteEdit.vue:199
- #: src/views/site/site_list/columns.tsx:102 src/views/stream/StreamEdit.vue:182
- #: src/views/stream/StreamList.vue:58 src/views/user/userColumns.tsx:41
- msgid "Disabled"
- msgstr "Desactivado"
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:56
- #: src/views/stream/components/RightSettings.vue:42
- #: src/views/stream/StreamList.vue:96
- msgid "Disabled successfully"
- msgstr "Desactivado con éxito"
- #: src/views/dashboard/ServerAnalytic.vue:366
- msgid "Disk IO"
- msgstr "I/O del disco"
- #: src/routes/modules/certificates.ts:56
- #: src/views/certificate/DNSCredential.vue:40
- msgid "DNS Credentials"
- msgstr "Credenciales de DNS"
- #: src/views/certificate/DNSChallenge.vue:72
- #: src/views/site/cert/components/DNSChallenge.vue:94
- msgid "DNS Provider"
- msgstr "Proveedor DNS"
- #: src/views/site/cert/components/AutoCertStepOne.vue:73
- msgid "DNS01"
- msgstr "DNS01"
- #: src/views/site/cert/components/AutoCertStepOne.vue:98
- msgid "Do not enable this option unless you are sure that you need it."
- msgstr "No habilite esta opción a menos que esté seguro de que la necesita."
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:118
- #, fuzzy
- msgid "Do you want to %{action} this site?"
- msgstr "¿Quieres habilitar este sitio?"
- #: src/views/site/cert/components/ObtainCert.vue:136
- msgid "Do you want to disable auto-cert renewal?"
- msgstr "¿Desea deshabilitar la renovación automática de certificado?"
- #: src/views/stream/components/RightSettings.vue:51
- msgid "Do you want to disable this stream?"
- msgstr "¿Quieres deshabilitar esta transmisión?"
- #: src/views/stream/components/RightSettings.vue:51
- msgid "Do you want to enable this stream?"
- msgstr "¿Quieres habilitar esta transmisión?"
- #: src/views/site/ngx_conf/NgxConfigEditor.vue:44
- msgid "Do you want to enable TLS?"
- msgstr "¿Quieres habilitar TLS?"
- #: src/views/site/ngx_conf/NgxServer.vue:76
- msgid "Do you want to remove this server?"
- msgstr "¿Quieres eliminar este servidor?"
- #: src/views/site/ngx_conf/NgxUpstream.vue:30
- msgid "Do you want to remove this upstream?"
- msgstr "¿Quieres eliminar esta transmisión?"
- #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:105
- #: src/views/site/ngx_conf/directive/DirectiveDocuments.vue:15
- #, fuzzy
- msgid "Document"
- msgid_plural "Documents"
- msgstr[0] "Documento de la API"
- msgstr[1] "Documento de la API"
- #: src/views/certificate/WildcardCertificate.vue:68
- msgid "Domain"
- msgstr "Dominio"
- #: src/views/certificate/CertificateEditor.vue:112
- msgid "Domains list is empty, try to reopen Auto Cert for %{config}"
- msgstr ""
- "La lista de dominios está vacía, intente reabrir la certificación automática "
- "para %{config}"
- #: src/language/constants.ts:27
- msgid "Download latest release error"
- msgstr "Error al descargar la última versión"
- #: src/language/constants.ts:26
- msgid "Downloading latest release"
- msgstr "Descargando la última versión"
- #: src/views/environments/list/BatchUpgrader.vue:188
- #: src/views/system/Upgrade.vue:215
- msgid "Dry run mode enabled"
- msgstr "Modo de ejecución de prueba habilitado"
- #: src/views/preference/components/AddPasskey.vue:101
- msgid ""
- "Due to the security policies of some browsers, you cannot use passkeys on "
- "non-HTTPS websites, except when running on localhost."
- msgstr ""
- "Debido a las políticas de seguridad de algunos navegadores, no es posible "
- "utilizar claves de acceso en sitios web que no sean HTTPS, excepto cuando se "
- "ejecutan en el host local."
- #: src/views/site/site_list/SiteDuplicate.vue:72
- #: src/views/site/site_list/SiteList.vue:162
- #: src/views/stream/components/StreamDuplicate.vue:64
- #: src/views/stream/StreamList.vue:222
- msgid "Duplicate"
- msgstr "Duplicar"
- #: src/views/site/site_list/SiteDuplicate.vue:48
- #: src/views/stream/components/StreamDuplicate.vue:40
- msgid "Duplicate to local successfully"
- msgstr "Duplicado con éxito a local"
- #: src/components/StdDesign/StdDetail/StdDetail.vue:110
- #, fuzzy
- msgid "Edit"
- msgstr "Editar %{n}"
- #: src/views/site/site_edit/SiteEdit.vue:188
- #: src/views/stream/StreamEdit.vue:171
- msgid "Edit %{n}"
- msgstr "Editar %{n}"
- #: src/routes/modules/config.ts:30 src/views/config/ConfigEditor.vue:241
- msgid "Edit Configuration"
- msgstr "Editar Configuración"
- #: src/routes/modules/sites.ts:34
- msgid "Edit Site"
- msgstr "Editar Sitio"
- #: src/routes/modules/streams.ts:19
- msgid "Edit Stream"
- msgstr "Editar Transmisión"
- #: src/views/certificate/ACMEUser.vue:25
- #: src/views/preference/CertSettings.vue:12
- msgid "Email"
- msgstr "Correo"
- #: src/views/other/Install.vue:138
- msgid "Email (*)"
- msgstr "Correo (*)"
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:112
- #, fuzzy
- msgid "enable"
- msgstr "Habilitar"
- #: src/views/stream/StreamList.vue:215
- msgid "Enable"
- msgstr "Habilitar"
- #: src/views/preference/components/TOTP.vue:45
- msgid "Enable 2FA successfully"
- msgstr "Habilitar 2FA exitoso"
- #: src/views/site/cert/components/ObtainCert.vue:75
- msgid "Enable auto-renewal failed for %{name}"
- msgstr "No se pudo activar la renovación automática por %{name}"
- #: src/views/site/site_add/SiteAdd.vue:43
- msgid "Enable failed"
- msgstr "Falló la habilitación"
- #: src/views/preference/ServerSettings.vue:29
- #, fuzzy
- msgid "Enable HTTPS"
- msgstr "Habilitar TLS"
- #: src/components/Notification/notifications.ts:91 src/language/constants.ts:54
- #, fuzzy
- msgid "Enable Remote Site Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:99
- #, fuzzy
- msgid "Enable Remote Site Maintenance Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:103
- #, fuzzy
- msgid "Enable Remote Site Maintenance Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:95 src/language/constants.ts:53
- #, fuzzy
- msgid "Enable Remote Site Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:149
- #, fuzzy
- msgid "Enable Remote Stream Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:153
- #, fuzzy
- msgid "Enable Remote Stream Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:100
- #, fuzzy
- msgid "Enable site %{name} maintenance on %{node} failed"
- msgstr "Falló el habilitado de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:104
- #, fuzzy
- msgid "Enable site %{name} maintenance on %{node} successfully"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:92
- #, fuzzy
- msgid "Enable site %{name} on %{node} failed"
- msgstr "Falló el habilitado de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:96
- #, fuzzy
- msgid "Enable site %{name} on %{node} successfully"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:150
- #, fuzzy
- msgid "Enable stream %{name} on %{node} failed"
- msgstr "Falló el habilitado de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:154
- #, fuzzy
- msgid "Enable stream %{name} on %{node} successfully"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/views/site/ngx_conf/NgxConfigEditor.vue:183
- msgid "Enable TLS"
- msgstr "Habilitar TLS"
- #: src/views/preference/components/TOTP.vue:81
- #, fuzzy
- msgid "Enable TOTP"
- msgstr "Habilitar TLS"
- #: src/views/environments/list/envColumns.tsx:70
- #: src/views/environments/list/envColumns.tsx:76
- #: src/views/preference/HTTPSettings.vue:24
- #: src/views/preference/LogrotateSettings.vue:19
- #: src/views/preference/NodeSettings.vue:25
- #: src/views/preference/NodeSettings.vue:30
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:155
- #: src/views/site/site_edit/SiteEdit.vue:193
- #: src/views/site/site_list/columns.tsx:101
- #: src/views/stream/components/RightSettings.vue:81
- #: src/views/stream/StreamEdit.vue:176 src/views/stream/StreamList.vue:54
- #: src/views/user/userColumns.tsx:38
- msgid "Enabled"
- msgstr "Habilitado"
- #: src/views/site/site_add/SiteAdd.vue:40
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:40
- #: src/views/stream/components/RightSettings.vue:33
- #: src/views/stream/StreamList.vue:86
- msgid "Enabled successfully"
- msgstr "Habilitado con éxito"
- #: src/views/site/cert/IssueCert.vue:48
- msgid "Encrypt website with Let's Encrypt"
- msgstr "Encriptar sitio web con Let's Encrypt"
- #: src/language/constants.ts:22
- msgid "Environment variables cleaned"
- msgstr "Variables de entorno limpiadas"
- #: src/routes/modules/environments.ts:11
- #: src/views/dashboard/Environments.vue:83
- #: src/views/environments/list/Environment.vue:74
- msgid "Environments"
- msgstr "Entornos"
- #: src/constants/index.ts:22 src/views/config/InspectConfig.vue:44
- #: src/views/notification/notificationColumns.tsx:15
- msgid "Error"
- msgstr "Error"
- #: src/components/ConfigHistory/DiffViewer.vue:135
- msgid "Error initializing diff viewer"
- msgstr ""
- #: src/views/nginx_log/NginxLogList.vue:31
- #, fuzzy
- msgid "Error Log"
- msgstr "Logs de error"
- #: src/routes/modules/nginx_log.ts:24 src/views/site/ngx_conf/LogEntry.vue:99
- msgid "Error Logs"
- msgstr "Logs de error"
- #: src/components/ConfigHistory/DiffViewer.vue:87
- msgid "Error processing content"
- msgstr ""
- #: src/views/system/Upgrade.vue:177
- msgid "Executable Path"
- msgstr "Ruta ejecutable"
- #: src/views/certificate/CertificateList/certColumns.tsx:82
- #: src/views/site/cert/CertInfo.vue:31
- msgid "Expired"
- msgstr "Vencido"
- #: src/views/site/cert/CertInfo.vue:38
- msgid "Expired At: %{date}"
- msgstr "Vencido el: %{date}"
- #: src/components/StdDesign/StdDataDisplay/methods/exportCsv.ts:64
- msgid "Export"
- msgstr "Exportar"
- #: src/views/preference/ExternalNotify.vue:10
- #: src/views/preference/Preference.vue:169
- msgid "External Notify"
- msgstr ""
- #: src/views/site/cert/components/ObtainCertLive.vue:94
- msgid "Fail to obtain certificate"
- msgstr "Falla al obtener el certificado"
- #: src/constants/errors/backup.ts:5
- msgid "Failed to backup Nginx config files: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:4
- msgid "Failed to backup Nginx UI files: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:18
- #, fuzzy
- msgid "Failed to calculate hash: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:58
- msgid "Failed to calculate Nginx hash: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:57
- msgid "Failed to calculate Nginx UI hash: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:13
- #, fuzzy
- msgid "Failed to cleanup temporary directory: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:15
- msgid "Failed to copy config file: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:16
- msgid "Failed to copy database directory: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:17
- #, fuzzy
- msgid "Failed to copy database file: {0}"
- msgstr "Error al deshabilitar %{msg}"
- #: src/constants/errors/backup.ts:32
- msgid "Failed to copy file content: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:20
- msgid "Failed to copy Nginx config directory: {0}"
- msgstr ""
- #: src/constants/errors/self_check.ts:9
- #, fuzzy
- msgid "Failed to create backup"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:12
- #, fuzzy
- msgid "Failed to create backup file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:46
- #, fuzzy
- msgid "Failed to create directory: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:48
- #, fuzzy
- msgid "Failed to create file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:6
- #, fuzzy
- msgid "Failed to create hash info file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:47
- #, fuzzy
- msgid "Failed to create parent directory: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:34
- msgid "Failed to create restore directory: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:50
- #, fuzzy
- msgid "Failed to create symbolic link: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:2
- #, fuzzy
- msgid "Failed to create temporary directory"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:3
- #, fuzzy
- msgid "Failed to create temporary subdirectory"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:9
- #, fuzzy
- msgid "Failed to create zip archive: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:29
- #, fuzzy
- msgid "Failed to create zip entry: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:28
- #, fuzzy
- msgid "Failed to create zip file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:31
- #, fuzzy
- msgid "Failed to create zip header: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:26
- #, fuzzy
- msgid "Failed to decrypt data: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:54
- #, fuzzy
- msgid "Failed to decrypt file: {0}"
- msgstr "Error al deshabilitar %{msg}"
- #: src/constants/errors/backup.ts:37
- msgid "Failed to decrypt Nginx directory: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:36
- msgid "Failed to decrypt Nginx UI directory: {0}"
- msgstr ""
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:63
- #: src/views/stream/components/RightSettings.vue:45
- #: src/views/stream/StreamList.vue:100
- msgid "Failed to disable %{msg}"
- msgstr "Error al deshabilitar %{msg}"
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:95
- #, fuzzy
- msgid "Failed to disable maintenance mode %{msg}"
- msgstr "Error al deshabilitar %{msg}"
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:47
- #: src/views/stream/components/RightSettings.vue:36
- #: src/views/stream/StreamList.vue:90
- msgid "Failed to enable %{msg}"
- msgstr "Error al habilitar %{msg}"
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:79
- #, fuzzy
- msgid "Failed to enable maintenance mode %{msg}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:25
- #, fuzzy
- msgid "Failed to encrypt data: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:23
- #, fuzzy
- msgid "Failed to encrypt file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:8
- msgid "Failed to encrypt Nginx directory: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:7
- msgid "Failed to encrypt Nginx UI directory: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:52
- #, fuzzy
- msgid "Failed to evaluate symbolic links: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:35
- #, fuzzy
- msgid "Failed to extract archive: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:10
- #, fuzzy
- msgid "Failed to generate AES key: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:11
- #, fuzzy
- msgid "Failed to generate initialization vector: {0}"
- msgstr "No se pudo obtener la información del certificado"
- #: src/language/constants.ts:5
- msgid "Failed to get certificate information"
- msgstr "No se pudo obtener la información del certificado"
- #: src/components/ConfigHistory/ConfigHistory.vue:77
- #, fuzzy
- msgid "Failed to load history records"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:30
- #, fuzzy
- msgid "Failed to open source file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:49
- #, fuzzy
- msgid "Failed to open zip entry: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:45
- #, fuzzy
- msgid "Failed to open zip file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/self_check.ts:4
- msgid "Failed to parse nginx.conf"
- msgstr ""
- #: src/constants/errors/backup.ts:53
- msgid "Failed to read encrypted file: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:22
- #, fuzzy
- msgid "Failed to read file: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:56
- msgid "Failed to read hash info file: {0}"
- msgstr ""
- #: src/constants/errors/self_check.ts:3
- msgid "Failed to read nginx.conf"
- msgstr ""
- #: src/constants/errors/backup.ts:21
- #, fuzzy
- msgid "Failed to read symlink: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:39
- msgid "Failed to restore Nginx configs: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:40
- msgid "Failed to restore Nginx UI files: {0}"
- msgstr ""
- #: src/views/site/site_edit/SiteEdit.vue:139
- #: src/views/stream/StreamEdit.vue:122
- msgid "Failed to save, syntax error(s) was detected in the configuration."
- msgstr ""
- "No se pudo guardar, se detectó un error(es) de sintaxis en la configuración."
- #: src/constants/errors/backup.ts:38
- #, fuzzy
- msgid "Failed to verify hashes: {0}"
- msgstr "Error al habilitar %{msg}"
- #: src/constants/errors/backup.ts:55
- msgid "Failed to write decrypted file: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:24
- msgid "Failed to write encrypted file: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:33
- msgid "Failed to write to zip buffer: {0}"
- msgstr ""
- #: src/language/constants.ts:32
- msgid "File exists"
- msgstr "El archivo existe"
- #: src/views/other/Error.vue:8
- msgid "File Not Found"
- msgstr "Archivo no encontrado"
- #: src/constants/errors/cert.ts:2
- msgid "Filename is empty"
- msgstr ""
- #: src/views/nginx_log/NginxLog.vue:155
- msgid "Filter"
- msgstr "Filtro"
- #: src/language/constants.ts:19 src/views/site/site_add/SiteAdd.vue:97
- msgid "Finished"
- msgstr "Terminado"
- #: src/views/preference/components/RecoveryCodes.vue:70
- msgid "First View"
- msgstr ""
- #: src/views/preference/components/AddPasskey.vue:71
- msgid ""
- "Follow the instructions in the dialog to complete the passkey registration "
- "process."
- msgstr ""
- "Siga las instrucciones del cuadro de diálogo para completar el proceso de "
- "registro de la llave de acceso."
- #: src/views/preference/NodeSettings.vue:42
- #: src/views/preference/NodeSettings.vue:54
- msgid "For Chinese user"
- msgstr ""
- #: src/views/preference/HTTPSettings.vue:19
- msgid "For Chinese user: https://mirror.ghproxy.com/"
- msgstr "Para usuario chino: https://mirror.ghproxy.com/"
- #: src/constants/errors/middleware.ts:4
- #, fuzzy
- msgid "Form parse failed"
- msgstr "Duplicado fallido"
- #: src/views/config/ConfigEditor.vue:265
- msgid "Format Code"
- msgstr "Código de formato"
- #: src/views/config/ConfigEditor.vue:213
- msgid "Format error %{msg}"
- msgstr "Error de formato %{msg}"
- #: src/views/config/ConfigEditor.vue:211
- msgid "Format successfully"
- msgstr "Formateado correctamente"
- #: src/views/certificate/CertificateList/certColumns.tsx:32
- msgid "General Certificate"
- msgstr "Certificado General"
- #: src/components/StdDesign/StdDataEntry/components/StdPassword.vue:55
- msgid "Generate"
- msgstr "Generar"
- #: src/views/preference/components/RecoveryCodes.vue:138
- #: src/views/preference/components/RecoveryCodes.vue:161
- #, fuzzy
- msgid "Generate New Recovery Codes"
- msgstr "Código de Recuperación"
- #: src/views/preference/components/RecoveryCodes.vue:161
- #, fuzzy
- msgid "Generate Recovery Codes"
- msgstr "Código de Recuperación"
- #: src/views/preference/components/RecoveryCodes.vue:32
- #, fuzzy
- msgid "Generate recovery codes successfully"
- msgstr "Recuperado con éxito"
- #: src/language/constants.ts:7
- msgid "Generating private key for registering account"
- msgstr "Generando clave privada para registrar cuenta"
- #: src/views/environments/list/BatchUpgrader.vue:177
- #: src/views/system/Upgrade.vue:169
- msgid "Get release information error"
- msgstr "Obtener error de información de versión"
- #: src/views/site/cert/components/ObtainCertLive.vue:44
- msgid "Getting the certificate, please wait..."
- msgstr "Obteniendo el certificado, por favor espere..."
- #: src/views/preference/HTTPSettings.vue:11
- msgid "Github Proxy"
- msgstr "Proxy Github"
- #: src/constants/errors/backup.ts:59
- msgid "Hash verification failed: file integrity compromised"
- msgstr ""
- #: src/components/SensitiveString/SensitiveString.vue:40
- msgid "Hide"
- msgstr "Ocultar"
- #: src/views/config/ConfigEditor.vue:251
- #: src/views/site/site_edit/SiteEdit.vue:212
- #: src/views/stream/StreamEdit.vue:195
- #, fuzzy
- msgid "History"
- msgstr "Directorio"
- #: src/routes/index.ts:47
- msgid "Home"
- msgstr "Inicio"
- #: src/views/preference/ServerSettings.vue:18
- #, fuzzy
- msgid "Host"
- msgstr "Host HTTP"
- #: src/views/preference/Preference.vue:181
- #, fuzzy
- msgid "HTTP"
- msgstr "HTTP01"
- #: src/views/preference/CertSettings.vue:15
- msgid "HTTP Challenge Port"
- msgstr "Puerto de desafío HTTP"
- #: src/views/site/cert/components/AutoCertStepOne.vue:70
- msgid "HTTP01"
- msgstr "HTTP01"
- #: src/views/system/SelfCheck/tasks/frontend/https-check.ts:10
- msgid "HTTPS Protocol"
- msgstr ""
- #: src/views/preference/NodeSettings.vue:34
- msgid "ICP Number"
- msgstr ""
- #: src/views/certificate/ACMEUser.vue:45
- msgid "If left blank, the default CA Dir will be used."
- msgstr "Si se deja en blanco, se utilizará el directorio CA predeterminado."
- #: src/views/nginx_log/NginxLogList.vue:129
- msgid ""
- "If logs are not indexed, please check if the log file is under the directory "
- "in Nginx.LogDirWhiteList."
- msgstr ""
- #: src/views/preference/AuthSettings.vue:145
- msgid ""
- "If the number of login failed attempts from a ip reach the max attempts in "
- "ban threshold minutes, the ip will be banned for a period of time."
- msgstr ""
- "Si el número de intentos fallidos de inicio de sesión desde una IP alcanza "
- "el máximo de intentos en los minutos del umbral de prohibición, la IP será "
- "bloqueada por un período de tiempo."
- #: src/views/preference/components/AddPasskey.vue:70
- msgid "If your browser supports WebAuthn Passkey, a dialog box will appear."
- msgstr ""
- "Si su navegador admite WebAuthn Passkey, aparecerá un cuadro de diálogo."
- #: src/views/site/cert/components/AutoCertStepOne.vue:108
- msgid ""
- "If your domain has CNAME records and you cannot obtain certificates, you "
- "need to enable this option."
- msgstr ""
- "Si su dominio tiene registros CNAME y no puede obtener certificados, "
- "necesita habilitar esta opción."
- #: src/views/certificate/CertificateList/Certificate.vue:20
- msgid "Import"
- msgstr "Importar"
- #: src/routes/modules/certificates.ts:46
- #: src/views/certificate/CertificateEditor.vue:85
- msgid "Import Certificate"
- msgstr "Importar Certificado"
- #: src/views/nginx_log/NginxLogList.vue:137
- #: src/views/site/site_list/SiteList.vue:132
- msgid "Indexed"
- msgstr ""
- #: src/views/nginx_log/NginxLogList.vue:134
- #: src/views/site/site_list/SiteList.vue:129
- msgid "Indexing..."
- msgstr ""
- #: src/components/StdDesign/StdDetail/StdDetail.vue:81
- #: src/constants/index.ts:24 src/views/notification/notificationColumns.tsx:29
- msgid "Info"
- msgstr "Información"
- #: src/language/constants.ts:25
- msgid "Initial core upgrader error"
- msgstr "Error de actualización de kernel inicial"
- #: src/language/constants.ts:24
- msgid "Initialing core upgrader"
- msgstr "Inicializando la actualización del kernel"
- #: src/views/preference/components/TOTP.vue:119
- msgid "Input the code from the app:"
- msgstr "Ingrese el código de la aplicación:"
- #: src/components/TwoFA/Authorization.vue:72
- msgid "Input the recovery code:"
- msgstr "Ingrese el código de recuperación:"
- #: src/views/preference/HTTPSettings.vue:22
- msgid "Insecure Skip Verify"
- msgstr ""
- #: src/routes/modules/auth.ts:8 src/views/other/Install.vue:185
- msgid "Install"
- msgstr "Instalar"
- #: src/views/other/Install.vue:93
- msgid "Install successfully"
- msgstr "Instalación exitosa"
- #: src/constants/errors/system.ts:3
- msgid "Installation is not allowed after 10 minutes of system startup"
- msgstr ""
- #: src/views/other/Install.vue:127
- msgid ""
- "Installation is not allowed after 10 minutes of system startup, please "
- "restart the Nginx UI."
- msgstr ""
- #: src/views/preference/LogrotateSettings.vue:25
- msgid "Interval"
- msgstr "Intervalo"
- #: src/views/certificate/ACMEUser.vue:129
- msgid "Invalid"
- msgstr "Inválido"
- #: src/constants/errors/backup.ts:44
- msgid "Invalid AES IV format: {0}"
- msgstr ""
- #: src/constants/errors/backup.ts:43
- msgid "Invalid AES key format: {0}"
- msgstr ""
- #: src/components/SystemRestore/SystemRestoreContent.vue:121
- #, fuzzy
- msgid "Invalid file object"
- msgstr "Nombre de archivo inválido"
- #: src/constants/errors/backup.ts:51
- #, fuzzy
- msgid "Invalid file path: {0}"
- msgstr "Nombre de archivo inválido"
- #: src/views/config/components/Rename.vue:66
- #: src/views/config/ConfigEditor.vue:299
- msgid "Invalid filename"
- msgstr "Nombre de archivo inválido"
- #: src/views/config/components/Mkdir.vue:57
- msgid "Invalid folder name"
- msgstr "Nombre de carpeta inválido"
- #: src/constants/errors/notification.ts:3
- #, fuzzy
- msgid "Invalid notifier config"
- msgstr "Código 2FA o de recuperación inválido"
- #: src/constants/errors/user.ts:4
- #, fuzzy
- msgid "Invalid otp code"
- msgstr "Código 2FA o de recuperación inválido"
- #: src/constants/errors/backup.ts:27
- msgid "Invalid padding in decrypted data"
- msgstr ""
- #: src/components/TwoFA/use2FAModal.ts:61
- msgid "Invalid passcode or recovery code"
- msgstr "Código de acceso o código de recuperación inválido"
- #: src/constants/errors/user.ts:5
- #, fuzzy
- msgid "Invalid recovery code"
- msgstr "Código 2FA o de recuperación inválido"
- #: src/constants/errors/middleware.ts:2
- msgid "Invalid request format"
- msgstr ""
- #: src/constants/errors/backup.ts:42
- #, fuzzy
- msgid "Invalid security token format"
- msgstr "Código 2FA o de recuperación inválido"
- #: src/views/preference/AuthSettings.vue:18
- msgid "IP"
- msgstr "IP"
- #: src/views/certificate/CertificateList/Certificate.vue:28
- msgid "Issue wildcard certificate"
- msgstr "Obtener certificado comodín"
- #: src/views/certificate/WildcardCertificate.vue:59
- msgid "Issue Wildcard Certificate"
- msgstr "Obtener certificado Comodín"
- #: src/language/constants.ts:20
- msgid "Issued certificate successfully"
- msgstr "Certificado emitido con éxito"
- #: src/views/site/cert/CertInfo.vue:35
- msgid "Issuer: %{issuer}"
- msgstr "Emisor: %{issuer}"
- #: src/views/preference/AppSettings.vue:10
- msgid "Jwt Secret"
- msgstr "Secreto Jwt"
- #: src/views/preference/components/RecoveryCodes.vue:74
- msgid ""
- "Keep your recovery codes as safe as your password. We recommend saving them "
- "with a password manager."
- msgstr ""
- #: src/views/certificate/CertificateList/certColumns.tsx:59
- #: src/views/site/cert/components/AutoCertStepOne.vue:77
- msgid "Key Type"
- msgstr "Tipo llave"
- #: src/views/preference/components/ExternalNotify/columns.ts:29
- msgid "Language"
- msgstr ""
- #: src/views/preference/components/ExternalNotify/lark.ts:5
- msgid "Lark"
- msgstr ""
- #: src/views/preference/components/ExternalNotify/lark_custom.ts:5
- #, fuzzy
- msgid "Lark Custom"
- msgstr "Personalizado"
- #: src/views/system/Upgrade.vue:179
- msgid "Last checked at"
- msgstr "Comprobado por última vez el"
- #: src/views/preference/components/Passkey.vue:96
- #, fuzzy
- msgid "Last used at"
- msgstr "Comprobado por última vez el"
- #: src/views/user/userColumns.tsx:25
- msgid "Leave blank for no change"
- msgstr "Para no modificar dejar en blanco"
- #: src/views/preference/OpenAISettings.vue:41
- msgid "Leave blank for the default: https://api.openai.com/"
- msgstr "Dejar en blanco para el valor predeterminado: https://api.openai.com/"
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:79
- #, fuzzy
- msgid "Leave blank if do not want to modify"
- msgstr "Para no modificar dejar en blanco"
- #: src/views/certificate/ACMEUser.vue:59
- msgid "Leave blank if you don't need this."
- msgstr "Déjelo en blanco si no lo necesita."
- #: src/views/certificate/CertificateEditor.vue:220
- #: src/views/certificate/CertificateEditor.vue:233
- msgid "Leave blank will not change anything"
- msgstr "Dejarlo en blanco no cambiará nada"
- #: src/constants/errors/user.ts:6
- msgid "Legacy recovery code not allowed since totp is not enabled"
- msgstr ""
- #: src/views/site/cert/components/AutoCertStepOne.vue:105
- msgid "Lego disable CNAME Support"
- msgstr "Lego deshabilita el soporte de CNAME"
- #: src/views/system/About.vue:63
- msgid "License"
- msgstr "Licencia"
- #: src/views/dashboard/Environments.vue:141
- #: src/views/dashboard/Environments.vue:156
- msgid "Link Start"
- msgstr "Iniciar conexión"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:173
- msgid "List"
- msgstr "Lista"
- #: src/views/dashboard/ServerAnalytic.vue:183
- msgid "Load Average:"
- msgstr "Promedios de carga:"
- #: src/views/environments/list/Environment.vue:80
- msgid "Load from settings"
- msgstr "Cargar desde configuraciones"
- #: src/views/environments/list/Environment.vue:20
- msgid "Load successfully"
- msgstr "Cargado con éxito"
- #: src/components/EnvIndicator/EnvIndicator.vue:39
- #: src/components/NodeSelector/NodeSelector.vue:86
- msgid "Local"
- msgstr "Local"
- #: src/views/site/ngx_conf/LocationEditor.vue:68
- msgid "Location"
- msgstr "Ubicación"
- #: src/views/site/ngx_conf/LocationEditor.vue:50
- msgid "Locations"
- msgstr "Ubicaciones"
- #: src/views/certificate/CertificateEditor.vue:243
- msgid "Log"
- msgstr "Registro"
- #: src/routes/modules/nginx_log.ts:39 src/views/nginx_log/NginxLogList.vue:115
- #, fuzzy
- msgid "Log List"
- msgstr "Lista"
- #: src/routes/modules/auth.ts:14 src/views/other/Login.vue:222
- msgid "Login"
- msgstr "Acceso"
- #: src/views/other/Login.vue:114 src/views/other/Login.vue:65
- msgid "Login successful"
- msgstr "Acceso exitoso"
- #: src/layouts/HeaderLayout.vue:20
- msgid "Logout successful"
- msgstr "Cierre de sesión exitoso"
- #: src/views/preference/Preference.vue:217
- msgid "Logrotate"
- msgstr "Rotación de logs"
- #: src/views/preference/LogrotateSettings.vue:12
- msgid ""
- "Logrotate, by default, is enabled in most mainstream Linux distributions for "
- "users who install Nginx UI on the host machine, so you don't need to modify "
- "the parameters on this page. For users who install Nginx UI using Docker "
- "containers, you can manually enable this option. The crontab task scheduler "
- "of Nginx UI will execute the logrotate command at the interval you set in "
- "minutes."
- msgstr ""
- "Logrotate, de forma predeterminada, está habilitado en la mayoría de las "
- "distribuciones de Linux para los usuarios que instalan Nginx UI en la "
- "máquina host, por lo que no es necesario modificar los parámetros en esta "
- "página. Para los usuarios que instalan Nginx UI usando contenedores Docker, "
- "pueden habilitar esta opción manualmente. El programador de tareas crontab "
- "de Nginx UI ejecutará el comando logrotate en el intervalo que establezca en "
- "minutos."
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:163
- #: src/views/site/site_list/columns.tsx:103
- msgid "Maintenance"
- msgstr ""
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:88
- #, fuzzy
- msgid "Maintenance mode disabled successfully"
- msgstr "Desactivado con éxito"
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:72
- #, fuzzy
- msgid "Maintenance mode enabled successfully"
- msgstr "Habilitado con éxito"
- #: src/views/site/cert/components/AutoCertStepOne.vue:53
- msgid ""
- "Make sure you have configured a reverse proxy for .well-known directory to "
- "HTTPChallengePort before obtaining the certificate."
- msgstr ""
- "Asegúrese de haber configurado un proxy reverso para el directorio .well-"
- "known en HTTPChallengePort antes de obtener el certificado."
- #: src/routes/modules/config.ts:10 src/views/config/ConfigEditor.vue:112
- #: src/views/config/ConfigEditor.vue:163 src/views/config/ConfigList.vue:72
- msgid "Manage Configs"
- msgstr "Administrar configuraciones"
- #: src/routes/modules/sites.ts:10 src/views/site/site_list/SiteList.vue:125
- msgid "Manage Sites"
- msgstr "Administrar sitios"
- #: src/routes/modules/streams.ts:10 src/views/stream/StreamList.vue:175
- msgid "Manage Streams"
- msgstr "Administrar Transmisiones"
- #: src/routes/modules/user.ts:10 src/views/user/User.vue:10
- msgid "Manage Users"
- msgstr "Administrar usuarios"
- #: src/views/certificate/CertificateList/certColumns.tsx:31
- msgid "Managed Certificate"
- msgstr "Certificado Administrado"
- #: src/views/preference/AuthSettings.vue:135
- msgid "Max Attempts"
- msgstr "Intentos máximos"
- #: src/views/dashboard/ServerAnalytic.vue:222
- #: src/views/dashboard/ServerAnalytic.vue:223
- msgid "Memory"
- msgstr "Memoria"
- #: src/views/dashboard/ServerAnalytic.vue:212
- msgid "Memory and Storage"
- msgstr "Memoria y almacenamiento"
- #: src/views/preference/LogrotateSettings.vue:29
- msgid "Minutes"
- msgstr "Minutos"
- #: src/views/preference/OpenAISettings.vue:20
- msgid "Model"
- msgstr "Modelo"
- #: src/components/ConfigHistory/ConfigHistory.vue:55
- msgid "Modified At"
- msgstr ""
- #: src/components/ChatGPT/ChatGPT.vue:352
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:498
- #: src/views/config/ConfigList.vue:174
- msgid "Modify"
- msgstr "Modificar"
- #: src/routes/modules/certificates.ts:36
- #: src/views/certificate/CertificateEditor.vue:85
- msgid "Modify Certificate"
- msgstr "Modificar Certificado"
- #: src/views/site/site_add/SiteAdd.vue:154
- msgid "Modify Config"
- msgstr "Modificar configuración"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:262
- msgid "Modify Mode"
- msgstr "Modo Modificar"
- #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:68
- msgid "Multi-line Directive"
- msgstr "Directiva multilínea"
- #: src/views/certificate/ACMEUser.vue:13
- #: src/views/certificate/CertificateEditor.vue:160
- #: src/views/certificate/CertificateList/certColumns.tsx:10
- #: src/views/certificate/DNSCredential.vue:11
- #: src/views/config/components/Mkdir.vue:64
- #: src/views/config/configColumns.tsx:7 src/views/config/ConfigEditor.vue:305
- #: src/views/environments/group/columns.ts:8
- #: src/views/environments/list/envColumns.tsx:9
- #: src/views/nginx_log/NginxLogList.vue:37
- #: src/views/preference/components/AddPasskey.vue:75
- #: src/views/site/ngx_conf/NgxUpstream.vue:177
- #: src/views/site/site_edit/RightSettings.vue:63
- #: src/views/site/site_list/columns.tsx:17
- #: src/views/site/site_list/SiteDuplicate.vue:79
- #: src/views/stream/components/RightSettings.vue:87
- #: src/views/stream/components/StreamDuplicate.vue:71
- #: src/views/stream/StreamList.vue:20 src/views/stream/StreamList.vue:248
- msgid "Name"
- msgstr "Nombre"
- #: src/views/dashboard/ServerAnalytic.vue:327
- msgid "Network"
- msgstr "Red"
- #: src/views/dashboard/ServerAnalytic.vue:269
- msgid "Network Statistics"
- msgstr "Estadísticas de red"
- #: src/views/dashboard/ServerAnalytic.vue:276
- msgid "Network Total Receive"
- msgstr "Total recibido por la red"
- #: src/views/dashboard/ServerAnalytic.vue:282
- msgid "Network Total Send"
- msgstr "Total enviado por la red"
- #: src/views/other/Install.vue:133
- #, fuzzy
- msgid "New Installation"
- msgstr "Instalar"
- #: src/views/config/components/Rename.vue:74
- msgid "New name"
- msgstr "Nuevo nombre"
- #: src/views/config/ConfigEditor.vue:318
- msgid "New Path"
- msgstr "Nueva ruta"
- #: src/views/system/Upgrade.vue:208
- msgid "New version released"
- msgstr "Se liberó una nueva versión"
- #: src/views/certificate/WildcardCertificate.vue:91
- #: src/views/site/cert/components/ObtainCert.vue:211
- #: src/views/site/site_add/SiteAdd.vue:141
- msgid "Next"
- msgstr "Siguiente"
- #: src/views/preference/Preference.vue:205
- msgid "Nginx"
- msgstr "Nginx"
- #: src/views/preference/NginxSettings.vue:9
- msgid "Nginx Access Log Path"
- msgstr "Ruta de registro de acceso de Nginx"
- #: src/views/system/SelfCheck/tasks/backend/index.ts:15
- msgid "Nginx Conf Include Sites Enabled"
- msgstr ""
- #: src/views/system/SelfCheck/tasks/backend/index.ts:20
- msgid "Nginx Conf Include Streams Enabled"
- msgstr ""
- #: src/constants/errors/self_check.ts:5
- msgid "Nginx conf no http block"
- msgstr ""
- #: src/constants/errors/self_check.ts:7
- msgid "Nginx conf no stream block"
- msgstr ""
- #: src/constants/errors/self_check.ts:6
- msgid "Nginx conf not include sites-enabled"
- msgstr ""
- #: src/constants/errors/self_check.ts:8
- msgid "Nginx conf not include stream-enabled"
- msgstr ""
- #: src/constants/errors/backup.ts:19
- #, fuzzy
- msgid "Nginx config directory is not set"
- msgstr "Lista blanca de directorios de registro de Nginx"
- #: src/components/SystemRestore/SystemRestoreContent.vue:138
- #, fuzzy
- msgid "Nginx configuration has been restored"
- msgstr "Error de análisis de configuración de Nginx"
- #: src/views/site/site_edit/SiteEdit.vue:244
- #: src/views/stream/StreamEdit.vue:226
- msgid "Nginx Configuration Parse Error"
- msgstr "Error de análisis de configuración de Nginx"
- #: src/views/preference/NginxSettings.vue:18
- #, fuzzy
- msgid "Nginx Configuration Path"
- msgstr "Error de análisis de configuración de Nginx"
- #: src/views/preference/NginxSettings.vue:15
- #, fuzzy
- msgid "Nginx Configurations Directory"
- msgstr "Error de análisis de configuración de Nginx"
- #: src/components/NginxControl/NginxControl.vue:64
- msgid "Nginx Control"
- msgstr "Control de Nginx"
- #: src/views/preference/NginxSettings.vue:12
- msgid "Nginx Error Log Path"
- msgstr "Ruta de registro de errores de Nginx"
- #: src/views/site/ngx_conf/NginxStatusAlert.vue:15
- msgid "Nginx is not running"
- msgstr "Nginx no se está ejecutando"
- #: src/routes/modules/nginx_log.ts:9 src/views/nginx_log/NginxLog.vue:143
- msgid "Nginx Log"
- msgstr "Registro Nginx"
- #: src/views/preference/NginxSettings.vue:21
- msgid "Nginx Log Directory Whitelist"
- msgstr "Lista blanca de directorios de registro de Nginx"
- #: src/views/preference/NginxSettings.vue:30
- #, fuzzy
- msgid "Nginx PID Path"
- msgstr "Ruta de registro de errores de Nginx"
- #: src/views/preference/NginxSettings.vue:36
- msgid "Nginx Reload Command"
- msgstr "Comando de recarga de Nginx"
- #: src/views/environments/list/Environment.vue:41
- msgid "Nginx reload operations have been dispatched to remote nodes"
- msgstr ""
- #: src/components/NginxControl/NginxControl.vue:26
- msgid "Nginx reloaded successfully"
- msgstr "Nginx recargado con éxito"
- #: src/views/preference/NginxSettings.vue:39
- #, fuzzy
- msgid "Nginx Restart Command"
- msgstr "Comando de inicio de terminal"
- #: src/views/environments/list/Environment.vue:55
- msgid "Nginx restart operations have been dispatched to remote nodes"
- msgstr ""
- #: src/components/NginxControl/NginxControl.vue:40
- msgid "Nginx restarted successfully"
- msgstr "Nginx reiniciado con éxito"
- #: src/views/preference/NginxSettings.vue:33
- #, fuzzy
- msgid "Nginx Test Config Command"
- msgstr "Comando de inicio de terminal"
- #: src/constants/errors/system.ts:2
- #, fuzzy
- msgid "Nginx UI already installed"
- msgstr "Este valor ya está elegido"
- #: src/components/SystemRestore/SystemRestoreContent.vue:142
- #, fuzzy
- msgid "Nginx UI configuration has been restored"
- msgstr "Error de análisis de configuración de Nginx"
- #: src/components/SystemRestore/SystemRestoreContent.vue:336
- #, fuzzy
- msgid ""
- "Nginx UI configuration has been restored and will restart automatically in a "
- "few seconds."
- msgstr "Error de análisis de configuración de Nginx"
- #: src/components/ChatGPT/ChatGPT.vue:374
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:151
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:163
- #: src/components/Notification/Notification.vue:133
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:63
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:94
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:510
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:524
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:538
- #: src/views/notification/Notification.vue:37
- #: src/views/preference/AuthSettings.vue:164
- #: src/views/preference/CertSettings.vue:73
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:97
- #: src/views/site/ngx_conf/LocationEditor.vue:88
- #: src/views/site/site_list/SiteList.vue:165
- #: src/views/stream/StreamList.vue:225
- msgid "No"
- msgstr "No"
- #: src/views/environments/group/columns.ts:21
- #: src/views/environments/group/EnvGroup.vue:34
- #, fuzzy
- msgid "No Action"
- msgstr "Acción"
- #: src/components/ConfigHistory/DiffViewer.vue:44
- msgid "No records selected"
- msgstr ""
- #: src/views/preference/Preference.vue:175
- #, fuzzy
- msgid "Node"
- msgstr "Nuevo nombre"
- #: src/views/site/site_edit/RightSettings.vue:66
- #: src/views/site/site_list/columns.tsx:63
- #: src/views/stream/components/RightSettings.vue:90
- #: src/views/stream/StreamList.vue:30
- #, fuzzy
- msgid "Node Group"
- msgstr "Entorno"
- #: src/routes/modules/environments.ts:33
- #: src/views/environments/group/EnvGroup.vue:10
- #, fuzzy
- msgid "Node Groups"
- msgstr "Entornos"
- #: src/views/preference/NodeSettings.vue:15
- #, fuzzy
- msgid "Node name"
- msgstr "Nuevo nombre"
- #: src/views/preference/NodeSettings.vue:11
- msgid "Node Secret"
- msgstr "Secreto del nodo"
- #: src/routes/modules/environments.ts:25
- #, fuzzy
- msgid "Nodes"
- msgstr "Nuevo nombre"
- #: src/views/certificate/CertificateList/certColumns.tsx:88
- msgid "Not After"
- msgstr "No después de"
- #: src/routes/modules/error.ts:8
- msgid "Not Found"
- msgstr "No encontrado"
- #: src/views/site/cert/CertInfo.vue:41
- msgid "Not Valid Before: %{date}"
- msgstr "No válido antes: %{date}"
- #: src/views/certificate/DNSCredential.vue:49
- #: src/views/site/cert/components/AutoCertStepOne.vue:39
- msgid "Note"
- msgstr "Nota"
- #: src/views/site/site_edit/RightSettings.vue:95
- #: src/views/stream/components/RightSettings.vue:118
- msgid ""
- "Note, if the configuration file include other configurations or "
- "certificates, please synchronize them to the remote nodes in advance."
- msgstr ""
- "Tenga en cuenta que si el archivo de configuración incluye otras "
- "configuraciones o certificados, sincronícelos con anticipación a los nodos "
- "remotos."
- #: src/views/notification/Notification.vue:28
- msgid "Notification"
- msgstr "Notificación"
- #: src/components/Notification/Notification.vue:131
- #: src/routes/modules/notifications.ts:10
- msgid "Notifications"
- msgstr "Notificaciones"
- #: src/constants/errors/notification.ts:2
- #, fuzzy
- msgid "Notifier not found"
- msgstr "Archivo no Encontrado"
- #: src/views/site/cert/components/ObtainCert.vue:182
- msgid "Obtain certificate"
- msgstr "Obtener certificado"
- #: src/language/constants.ts:15
- msgid "Obtaining certificate"
- msgstr "Obteniendo certificado"
- #: src/views/site/cert/components/AutoCertStepOne.vue:95
- msgid "OCSP Must Staple"
- msgstr "OCSP debe estampillarse"
- #: src/views/site/cert/components/AutoCertStepOne.vue:99
- msgid ""
- "OCSP Must Staple may cause errors for some users on first access using "
- "Firefox."
- msgstr ""
- "OCSP Must Staple puede causar errores para algunos usuarios en el primer "
- "acceso usando Firefox."
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:179
- #: src/components/NodeSelector/NodeSelector.vue:109
- #: src/views/dashboard/Environments.vue:107
- #: src/views/environments/list/envColumns.tsx:56
- msgid "Offline"
- msgstr "Desconectado"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:247
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:511
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:525
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:539
- #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:188
- msgid "Ok"
- msgstr "Ok"
- #: src/components/ChatGPT/ChatGPT.vue:375
- #: src/components/Notification/Notification.vue:134
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:95
- #: src/views/notification/Notification.vue:38
- #: src/views/site/cert/components/ObtainCert.vue:139
- #: src/views/site/ngx_conf/NgxConfigEditor.vue:50
- #: src/views/site/ngx_conf/NgxServer.vue:79
- #: src/views/site/ngx_conf/NgxUpstream.vue:33
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:121
- #: src/views/site/site_list/SiteList.vue:166
- #: src/views/stream/components/RightSettings.vue:54
- #: src/views/stream/StreamList.vue:226
- #: src/views/system/Backup/BackupCreator.vue:149
- msgid "OK"
- msgstr "OK"
- #: src/views/certificate/DNSCredential.vue:59
- msgid "Once the verification is complete, the records will be removed."
- msgstr "Una vez que se complete la verificación, los registros se eliminarán."
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:179
- #: src/components/NodeSelector/NodeSelector.vue:103
- #: src/components/NodeSelector/NodeSelector.vue:89
- #: src/views/dashboard/Environments.vue:100
- #: src/views/environments/list/envColumns.tsx:52
- msgid "Online"
- msgstr "En línea"
- #: src/components/SystemRestore/SystemRestoreContent.vue:78
- msgid "Only zip files are allowed"
- msgstr ""
- #: src/views/preference/Preference.vue:211
- msgid "OpenAI"
- msgstr "OpenAI"
- #: src/components/TwoFA/Authorization.vue:100 src/views/other/Login.vue:231
- msgid "Or"
- msgstr "O"
- #: src/views/preference/components/TOTP.vue:112
- msgid "Or enter the secret: %{secret}"
- msgstr ""
- #: src/views/config/components/Rename.vue:70
- msgid "Original name"
- msgstr "Nombre original"
- #: src/views/system/Upgrade.vue:175
- msgid "OS"
- msgstr "SO"
- #: src/views/dashboard/ServerAnalytic.vue:189
- msgid "OS:"
- msgstr "SO:"
- #: src/constants/errors/user.ts:9
- #, fuzzy
- msgid "Otp or recovery code empty"
- msgstr "Usar código de recuperación"
- #: src/views/config/ConfigEditor.vue:343
- msgid "Overwrite"
- msgstr "Sobrescribir"
- #: src/views/config/ConfigEditor.vue:347
- msgid "Overwrite exist file"
- msgstr "Sobrescribir archivo existente"
- #: src/views/preference/AppSettings.vue:13
- #, fuzzy
- msgid "Page Size"
- msgstr "Administrar sitios"
- #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:94
- msgid "Params"
- msgstr "Parámetros"
- #: src/views/preference/components/Passkey.vue:59
- msgid "Passkey"
- msgstr "Llave de acceso"
- #: src/views/preference/components/Passkey.vue:62
- msgid ""
- "Passkeys are webauthn credentials that validate your identity using touch, "
- "facial recognition, a device password, or a PIN. They can be used as a "
- "password replacement or as a 2FA method."
- msgstr ""
- "Las llaves de acceso son credenciales de autenticación web que validan su "
- "identidad mediante el tacto, el reconocimiento facial, una contraseña de "
- "dispositivo o un PIN. Se pueden utilizar como reemplazo de contraseña o como "
- "método de autenticación de dos factores."
- #: src/views/other/Login.vue:183 src/views/user/userColumns.tsx:18
- msgid "Password"
- msgstr "Contraseña"
- #: src/views/other/Install.vue:158
- msgid "Password (*)"
- msgstr "Contraseña (*)"
- #: src/constants/errors/user.ts:2
- #, fuzzy
- msgid "Password incorrect"
- msgstr "El nombre de usuario o contraseña son incorrectos"
- #: src/views/other/Install.vue:74
- msgid "Password length cannot exceed 20 characters"
- msgstr ""
- #: src/views/config/ConfigEditor.vue:312
- #: src/views/nginx_log/NginxLogList.vue:45
- #: src/views/site/ngx_conf/LocationEditor.vue:109
- #: src/views/site/ngx_conf/LocationEditor.vue:137
- msgid "Path"
- msgstr "Ruta"
- #: src/constants/errors/cert.ts:7 src/constants/errors/config.ts:2
- msgid "Path: {0} is not under the nginx conf dir: {1}"
- msgstr ""
- #: src/constants/errors/cert.ts:6
- msgid "Payload resource is nil"
- msgstr ""
- #: src/views/environments/list/BatchUpgrader.vue:232
- msgid "Perform"
- msgstr "Realizar"
- #: src/language/constants.ts:29
- msgid "Perform core upgrade error"
- msgstr "Error al ejecutar la actualización del kernel"
- #: src/language/constants.ts:28
- msgid "Performing core upgrade"
- msgstr "Realizando la actualizaciónd el kernel"
- #: src/constants/errors/crypto.ts:2
- msgid "Plain text is empty"
- msgstr ""
- #: src/views/preference/components/AddPasskey.vue:69
- msgid ""
- "Please enter a name for the passkey you wish to create and click the OK "
- "button below."
- msgstr ""
- "Ingrese un nombre para la llave de acceso que desea crear y a continuación "
- "haga clic en el botón Aceptar."
- #: src/components/TwoFA/Authorization.vue:85
- #, fuzzy
- msgid "Please enter the OTP code:"
- msgstr "Por favor, ingrese el código 2FA:"
- #: src/components/SystemRestore/SystemRestoreContent.vue:112
- #, fuzzy
- msgid "Please enter the security token"
- msgstr "Por favor, ingrese el código 2FA:"
- #: src/components/SystemRestore/SystemRestoreContent.vue:210
- #: src/components/SystemRestore/SystemRestoreContent.vue:287
- msgid "Please enter the security token received during backup"
- msgstr ""
- #: src/views/certificate/DNSCredential.vue:53
- msgid ""
- "Please fill in the API authentication credentials provided by your DNS "
- "provider."
- msgstr ""
- "Por favor, complete las credenciales de autenticación API proporcionadas por "
- "su proveedor de DNS."
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:106
- msgid "Please fill in the required fields"
- msgstr "Por favor, complete los campos requeridos"
- #: src/views/site/cert/components/AutoCertStepOne.vue:57
- msgid ""
- "Please first add credentials in Certification > DNS Credentials, and then "
- "select one of the credentialsbelow to request the API of the DNS provider."
- msgstr ""
- "Primero agregue las credenciales en Certificación > Credenciales de DNS y "
- "luego seleccione una de las credenciales de aquí debajo para llamar a la API "
- "del proveedor de DNS."
- #: src/components/Notification/notifications.ts:176
- #: src/language/constants.ts:59
- msgid ""
- "Please generate new recovery codes in the preferences immediately to prevent "
- "lockout."
- msgstr ""
- #: src/views/config/components/Rename.vue:65
- #: src/views/config/ConfigEditor.vue:298
- msgid "Please input a filename"
- msgstr "Por favor, ingrese un nombre de archivo"
- #: src/views/config/components/Mkdir.vue:56
- msgid "Please input a folder name"
- msgstr "Por favor, introduzca un nombre de carpeta"
- #: src/views/stream/components/StreamDuplicate.vue:25
- msgid ""
- "Please input name, this will be used as the filename of the new "
- "configuration!"
- msgstr ""
- "Ingrese el nombre, ¡este se usará como el nombre de archivo de la nueva "
- "configuración!"
- #: src/views/site/site_list/SiteDuplicate.vue:33
- msgid ""
- "Please input name, this will be used as the filename of the new "
- "configuration."
- msgstr ""
- "Ingrese el nombre por favor, este se usará como el nombre de archivo de la "
- "nueva configuración."
- #: src/views/other/Install.vue:58
- msgid "Please input your E-mail!"
- msgstr "¡Por favor ingrese su correo electrónico!"
- #: src/views/other/Install.vue:70 src/views/other/Login.vue:47
- msgid "Please input your password!"
- msgstr "¡Por favor ingrese su contraseña!"
- #: src/views/other/Install.vue:64 src/views/other/Login.vue:41
- msgid "Please input your username!"
- msgstr "¡Por favor ingrese su nombre de usuario!"
- #: src/views/other/Install.vue:110 src/views/system/Backup/SystemRestore.vue:10
- msgid "Please log in."
- msgstr ""
- #: src/views/certificate/DNSCredential.vue:62
- msgid ""
- "Please note that the unit of time configurations below are all in seconds."
- msgstr ""
- "Tenga en cuenta que las siguientes configuraciones de unidades de tiempo "
- "están todas en segundos."
- #: src/views/system/Backup/BackupCreator.vue:107
- msgid "Please save this security token, you will need it for restoration:"
- msgstr ""
- #: src/components/SystemRestore/SystemRestoreContent.vue:107
- #, fuzzy
- msgid "Please select a backup file"
- msgstr "¡Seleccione al menos un nodo!"
- #: src/views/environments/list/Environment.vue:112
- #: src/views/environments/list/Environment.vue:35
- #, fuzzy
- msgid "Please select at least one node to reload Nginx"
- msgstr "Seleccione al menos un nodo para actualizar"
- #: src/views/environments/list/Environment.vue:133
- #: src/views/environments/list/Environment.vue:49
- #, fuzzy
- msgid "Please select at least one node to restart Nginx"
- msgstr "Seleccione al menos un nodo para actualizar"
- #: src/views/environments/list/Environment.vue:91
- msgid "Please select at least one node to upgrade"
- msgstr "Seleccione al menos un nodo para actualizar"
- #: src/views/preference/ServerSettings.vue:21
- #, fuzzy
- msgid "Port"
- msgstr "Puerto HTTP"
- #: src/views/environments/group/columns.ts:17
- #: src/views/environments/group/EnvGroup.vue:26
- #, fuzzy
- msgid "Post-sync Action"
- msgstr "Acción"
- #: src/views/environments/list/BatchUpgrader.vue:167
- #: src/views/environments/list/BatchUpgrader.vue:220
- #: src/views/system/Upgrade.vue:194 src/views/system/Upgrade.vue:245
- msgid "Pre-release"
- msgstr "Prelanzamiento"
- #: src/routes/modules/preference.ts:10 src/views/preference/Preference.vue:152
- msgid "Preference"
- msgstr "Configuración"
- #: src/language/constants.ts:8
- msgid "Preparing lego configurations"
- msgstr "Preparar la configuración de LEGO"
- #: src/language/constants.ts:3
- msgid "Prohibit changing root password in demo"
- msgstr "Prohibir cambiar la contraseña de root en la demostración"
- #: src/language/constants.ts:4
- msgid "Prohibit deleting the default user"
- msgstr "Prohibir la eliminación del usuario predeterminado"
- #: src/views/system/About.vue:51
- msgid "Project Team"
- msgstr "Grupo del proyecto"
- #: src/views/certificate/DNSCredential.vue:19
- msgid "Provider"
- msgstr "Proveedor"
- #: src/views/certificate/ACMEUser.vue:51
- #, fuzzy
- msgid "Proxy"
- msgstr "Proxy de la API"
- #: src/views/preference/NodeSettings.vue:46
- msgid "Public Security Number"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:37
- #: src/views/dashboard/ServerAnalytic.vue:383
- msgid "Reads"
- msgstr "Lecturas"
- #: src/views/dashboard/ServerAnalytic.vue:334
- #: src/views/dashboard/ServerAnalytic.vue:35
- msgid "Receive"
- msgstr "Recibido"
- #: src/views/system/SelfCheck/SelfCheck.vue:43
- msgid "Recheck"
- msgstr ""
- #: src/components/StdDesign/StdDataDisplay/StdBulkActions.vue:43
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:533
- msgid "Recover"
- msgstr "Recuperar"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:189
- msgid "Recovered Successfully"
- msgstr "Recuperado con éxito"
- #: src/components/TwoFA/Authorization.vue:79
- msgid "Recovery"
- msgstr "Recuperación"
- #: src/views/preference/components/RecoveryCodes.vue:68
- #, fuzzy
- msgid "Recovery Codes"
- msgstr "Código de Recuperación"
- #: src/views/preference/components/RecoveryCodes.vue:73
- msgid ""
- "Recovery codes are used to access your account when you lose access to your "
- "2FA device. Each code can only be used once."
- msgstr ""
- #: src/views/preference/CertSettings.vue:40
- msgid "Recursive Nameservers"
- msgstr "Servidores de nombres recursivos"
- #: src/components/ChatGPT/ChatGPT.vue:387
- msgid "Regenerate response"
- msgstr "Regenerar respuesta"
- #: src/views/certificate/ACMEUser.vue:137
- msgid "Register"
- msgstr "Registrar"
- #: src/views/certificate/ACMEUser.vue:56
- msgid ""
- "Register a user or use this account to issue a certificate through an HTTP "
- "proxy."
- msgstr ""
- "Registre un usuario o utilice esta cuenta para emitir un certificado a "
- "través de un proxy HTTP."
- #: src/views/certificate/ACMEUser.vue:106
- msgid "Register failed"
- msgstr "Fallo en el registro"
- #: src/views/certificate/ACMEUser.vue:77
- #, fuzzy
- msgid "Register On Startup"
- msgstr "Esto de registración"
- #: src/views/preference/components/AddPasskey.vue:25
- #, fuzzy
- msgid "Register passkey successfully"
- msgstr "Registrado con éxito"
- #: src/views/certificate/ACMEUser.vue:104
- msgid "Register successfully"
- msgstr "Registrado con éxito"
- #: src/language/constants.ts:14
- msgid "Registering user"
- msgstr "Registrando Usuario"
- #: src/views/certificate/ACMEUser.vue:120
- msgid "Registration Status"
- msgstr "Esto de registración"
- #: src/views/system/Upgrade.vue:226
- msgid "Reinstall"
- msgstr "Reinstalar"
- #: src/views/system/Upgrade.vue:249
- msgid "Release Note"
- msgstr "Nota de versión"
- #: src/components/ChatGPT/ChatGPT.vue:362
- #: src/components/NginxControl/NginxControl.vue:99
- msgid "Reload"
- msgstr "Recargar"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:156
- #: src/views/environments/group/columns.ts:24
- #: src/views/environments/group/EnvGroup.vue:37
- #: src/views/environments/list/Environment.vue:120
- #: src/views/environments/list/Environment.vue:128
- #, fuzzy
- msgid "Reload Nginx"
- msgstr "Recargando Nginx"
- #: src/components/Notification/notifications.ts:10
- #, fuzzy
- msgid "Reload Nginx on %{node} failed, response: %{resp}"
- msgstr "Eliminar sitio: %{site_name}"
- #: src/components/Notification/notifications.ts:14
- #, fuzzy
- msgid "Reload Nginx on %{node} successfully"
- msgstr "Interfaz de usuario de Nginx actualizada en %{node} con éxito 🎉"
- #: src/components/Notification/notifications.ts:9
- #, fuzzy
- msgid "Reload Remote Nginx Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:13
- #, fuzzy
- msgid "Reload Remote Nginx Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:104
- msgid "Reload request failed, please check your network connection"
- msgstr ""
- #: src/components/NginxControl/NginxControl.vue:73
- msgid "Reloading"
- msgstr "Recargando"
- #: src/language/constants.ts:18
- msgid "Reloading nginx"
- msgstr "Recargando Nginx"
- #: src/views/preference/AuthSettings.vue:169
- msgid "Remove"
- msgstr "Eliminar"
- #: src/views/preference/AuthSettings.vue:51
- #: src/views/preference/components/Passkey.vue:46
- msgid "Remove successfully"
- msgstr "Eliminado con éxito"
- #: src/components/Notification/Notification.vue:102
- msgid "Removed successfully"
- msgstr "Eliminado con éxito"
- #: src/views/config/components/ConfigName.vue:51
- #: src/views/config/components/Rename.vue:56
- #: src/views/config/ConfigList.vue:181
- #: src/views/site/ngx_conf/NgxUpstream.vue:125
- #: src/views/site/site_edit/components/ConfigName.vue:44
- #: src/views/stream/components/ConfigName.vue:44
- msgid "Rename"
- msgstr "Renombrar"
- #: src/components/Notification/notifications.ts:66
- #, fuzzy
- msgid "Rename %{orig_path} to %{new_path} on %{env_name} failed"
- msgstr "Renombrar %{orig_path} a %{new_path} en %{env_name} con éxito"
- #: src/components/Notification/notifications.ts:70
- msgid "Rename %{orig_path} to %{new_path} on %{env_name} successfully"
- msgstr "Renombrar %{orig_path} a %{new_path} en %{env_name} con éxito"
- #: src/components/Notification/notifications.ts:65 src/language/constants.ts:42
- msgid "Rename Remote Config Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:69 src/language/constants.ts:41
- msgid "Rename Remote Config Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:115
- #: src/language/constants.ts:56
- #, fuzzy
- msgid "Rename Remote Site Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:119
- #: src/language/constants.ts:55
- #, fuzzy
- msgid "Rename Remote Site Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:157
- #, fuzzy
- msgid "Rename Remote Stream Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:161
- #, fuzzy
- msgid "Rename Remote Stream Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:116
- #, fuzzy
- msgid "Rename site %{name} to %{new_name} on %{node} failed"
- msgstr "Renombrar %{orig_path} a %{new_path} en %{env_name} con éxito"
- #: src/components/Notification/notifications.ts:120
- #, fuzzy
- msgid "Rename site %{name} to %{new_name} on %{node} successfully"
- msgstr "Renombrar %{orig_path} a %{new_path} en %{env_name} con éxito"
- #: src/components/Notification/notifications.ts:158
- #, fuzzy
- msgid "Rename stream %{name} to %{new_name} on %{node} failed"
- msgstr "Renombrar %{orig_path} a %{new_path} en %{env_name} con éxito"
- #: src/components/Notification/notifications.ts:162
- #, fuzzy
- msgid "Rename stream %{name} to %{new_name} on %{node} successfully"
- msgstr "Renombrar %{orig_path} a %{new_path} en %{env_name} con éxito"
- #: src/views/config/components/Rename.vue:43
- msgid "Rename successfully"
- msgstr "Renombrado con éxito"
- #: src/views/config/components/ConfigName.vue:30
- #: src/views/site/site_edit/components/ConfigName.vue:27
- #: src/views/stream/components/ConfigName.vue:27
- #, fuzzy
- msgid "Renamed successfully"
- msgstr "Renombrado con éxito"
- #: src/views/certificate/RenewCert.vue:45
- #: src/views/certificate/RenewCert.vue:49
- msgid "Renew Certificate"
- msgstr "Renovar Certificado"
- #: src/language/constants.ts:36
- msgid "Renew Certificate Error"
- msgstr "Error al renovar el Certificado"
- #: src/language/constants.ts:35
- msgid "Renew Certificate Success"
- msgstr "Renovado de Certificado exitoso"
- #: src/views/certificate/RenewCert.vue:27
- #: src/views/certificate/WildcardCertificate.vue:48
- msgid "Renew successfully"
- msgstr "Renovado con éxito"
- #: src/constants/errors/crypto.ts:4
- msgid "Request timeout"
- msgstr ""
- #: src/language/constants.ts:33
- msgid "Requested with wrong parameters"
- msgstr "Pedido con parámetros incorrectos"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:442
- msgid "Reset"
- msgstr "Limpiar"
- #: src/views/preference/components/TOTP.vue:93
- msgid "Reset 2FA"
- msgstr "Restablecer 2FA"
- #: src/components/NginxControl/NginxControl.vue:92
- msgid "Restart"
- msgstr "Reiniciar"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:168
- #: src/views/environments/list/Environment.vue:141
- #: src/views/environments/list/Environment.vue:149
- #, fuzzy
- msgid "Restart Nginx"
- msgstr "Reiniciando"
- #: src/components/Notification/notifications.ts:18
- #, fuzzy
- msgid "Restart Nginx on %{node} failed, response: %{resp}"
- msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #: src/components/Notification/notifications.ts:22
- #, fuzzy
- msgid "Restart Nginx on %{node} successfully"
- msgstr "Interfaz de usuario de Nginx actualizada en %{node} con éxito 🎉"
- #: src/components/Notification/notifications.ts:17
- #, fuzzy
- msgid "Restart Remote Nginx Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:21
- #, fuzzy
- msgid "Restart Remote Nginx Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:124
- msgid "Restart request failed, please check your network connection"
- msgstr ""
- #: src/components/NginxControl/NginxControl.vue:78
- msgid "Restarting"
- msgstr "Reiniciando"
- #: src/components/SystemRestore/SystemRestoreContent.vue:135
- #, fuzzy
- msgid "Restore completed successfully"
- msgstr "Borrado exitoso"
- #: src/views/other/Install.vue:190
- #, fuzzy
- msgid "Restore from Backup"
- msgstr "Sistema"
- #: src/components/SystemRestore/SystemRestoreContent.vue:223
- #: src/components/SystemRestore/SystemRestoreContent.vue:300
- #, fuzzy
- msgid "Restore Nginx Configuration"
- msgstr "Error de análisis de configuración de Nginx"
- #: src/components/SystemRestore/SystemRestoreContent.vue:234
- #: src/components/SystemRestore/SystemRestoreContent.vue:311
- #, fuzzy
- msgid "Restore Nginx UI Configuration"
- msgstr "Error de análisis de configuración de Nginx"
- #: src/components/ConfigHistory/DiffViewer.vue:402
- #: src/components/ConfigHistory/DiffViewer.vue:415
- msgid "Restore this version"
- msgstr ""
- #: src/views/preference/AuthSettings.vue:107
- msgid "RP Display Name"
- msgstr "Nombre RP"
- #: src/views/preference/AuthSettings.vue:113
- msgid "RP Origins"
- msgstr "Orígenes RP"
- #: src/views/preference/AuthSettings.vue:101
- msgid "RPID"
- msgstr "RPID"
- #: src/views/preference/ServerSettings.vue:24
- msgid "Run Mode"
- msgstr "Modo de ejecución"
- #: src/components/NginxControl/NginxControl.vue:68
- msgid "Running"
- msgstr "Corriendo"
- #: src/components/ChatGPT/ChatGPT.vue:355
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:64
- #: src/components/StdDesign/StdDetail/StdDetail.vue:93
- #: src/views/certificate/CertificateEditor.vue:262
- #: src/views/config/components/ConfigName.vue:59
- #: src/views/config/ConfigEditor.vue:271
- #: src/views/preference/components/Passkey.vue:130
- #: src/views/preference/Preference.vue:228
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:127
- #: src/views/site/site_edit/components/ConfigName.vue:52
- #: src/views/site/site_edit/SiteEdit.vue:292
- #: src/views/stream/components/ConfigName.vue:52
- #: src/views/stream/StreamEdit.vue:271
- msgid "Save"
- msgstr "Guardar"
- #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:129
- msgid "Save Directive"
- msgstr "Guardar Directiva"
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:41
- #: src/views/site/site_add/SiteAdd.vue:46
- msgid "Save error %{msg}"
- msgstr "Error al guardar %{msg}"
- #: src/components/Notification/notifications.ts:123
- #: src/language/constants.ts:48
- #, fuzzy
- msgid "Save Remote Site Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:127
- #: src/language/constants.ts:47
- #, fuzzy
- msgid "Save Remote Site Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:165
- #, fuzzy
- msgid "Save Remote Stream Error"
- msgstr "Error al renombrar la configuración remota"
- #: src/components/Notification/notifications.ts:169
- #, fuzzy
- msgid "Save Remote Stream Success"
- msgstr "Renombrar Configuración Remota Exitosa"
- #: src/components/Notification/notifications.ts:124
- #, fuzzy
- msgid "Save site %{name} to %{node} failed"
- msgstr "Duplicado con éxito de %{conf_name} a %{node_name}"
- #: src/components/Notification/notifications.ts:128
- #, fuzzy
- msgid "Save site %{name} to %{node} successfully"
- msgstr "Duplicado con éxito de %{conf_name} a %{node_name}"
- #: src/components/Notification/notifications.ts:166
- #, fuzzy
- msgid "Save stream %{name} to %{node} failed"
- msgstr "Falló el desplegado de %{conf_name} a %{node_name}"
- #: src/components/Notification/notifications.ts:170
- #, fuzzy
- msgid "Save stream %{name} to %{node} successfully"
- msgstr "Duplicado con éxito de %{conf_name} a %{node_name}"
- #: src/components/StdDesign/StdDataDisplay/StdBatchEdit.vue:47
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:97
- #: src/views/certificate/CertificateEditor.vue:49
- #: src/views/preference/Preference.vue:124
- msgid "Save successfully"
- msgstr "Guardado con éxito"
- #: src/views/config/ConfigEditor.vue:191
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:39
- #: src/views/site/site_add/SiteAdd.vue:37
- #: src/views/site/site_edit/SiteEdit.vue:157
- #: src/views/stream/StreamEdit.vue:141
- msgid "Saved successfully"
- msgstr "Guardado con éxito"
- #: src/views/preference/components/TOTP.vue:69
- msgid "Scan the QR code with your mobile phone to add the account to the app."
- msgstr ""
- "Escanee el código QR con su teléfono móvil para agregar la cuenta a la "
- "aplicación."
- #: src/views/certificate/DNSChallenge.vue:90
- msgid "SDK"
- msgstr "SDK"
- #: src/views/preference/components/TOTP.vue:109
- msgid "Secret has been copied"
- msgstr "El secreto ha sido copiado"
- #: src/components/SystemRestore/SystemRestoreContent.vue:207
- #: src/components/SystemRestore/SystemRestoreContent.vue:284
- msgid "Security Token"
- msgstr ""
- #: src/views/system/Backup/BackupCreator.vue:94
- #, fuzzy
- msgid "Security Token Information"
- msgstr "Código 2FA o de recuperación inválido"
- #: src/views/environments/group/EnvGroup.vue:29
- msgid "Select an action after sync"
- msgstr ""
- #: src/components/StdDesign/StdDataEntry/components/StdSelector.vue:189
- msgid "Selector"
- msgstr "Seleccionador"
- #: src/routes/modules/system.ts:19 src/views/system/SelfCheck/SelfCheck.vue:38
- msgid "Self Check"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:344
- #: src/views/dashboard/ServerAnalytic.vue:35
- msgid "Send"
- msgstr "Enviado"
- #: src/views/preference/Preference.vue:157
- #, fuzzy
- msgid "Server"
- msgstr "Información del servidor"
- #: src/views/dashboard/ServerAnalytic.vue:175
- msgid "Server Info"
- msgstr "Información del servidor"
- #: src/views/site/cert/components/ObtainCert.vue:107
- msgid "server_name not found in directives"
- msgstr "No se encuentra server_name en las directivas"
- #: src/constants/errors/nginx_log.ts:3
- msgid "ServerIdx out of range"
- msgstr ""
- #: src/constants/errors/user.ts:12
- #, fuzzy
- msgid "Session not found"
- msgstr "Archivo no Encontrado"
- #: src/views/preference/CertSettings.vue:36
- msgid ""
- "Set the recursive nameservers to override the systems nameservers for the "
- "step of DNS challenge."
- msgstr ""
- "Establezca los servidores de nombres recursivos para anular los servidores "
- "de nombres del sistema en el paso del desafío DNS."
- #: src/views/site/site_edit/components/SiteStatusSegmented.vue:114
- #, fuzzy
- msgid "set to maintenance mode"
- msgstr "Error al deshabilitar el sitio remoto"
- #: src/language/constants.ts:11
- msgid "Setting DNS01 challenge provider"
- msgstr "Usando el proveedor de desafíos DNS01"
- #: src/language/constants.ts:12
- msgid "Setting environment variables"
- msgstr "Configuración de variables de entorno"
- #: src/language/constants.ts:10
- msgid "Setting HTTP01 challenge provider"
- msgstr "Usando el proveedor de desafíos HTTP01"
- #: src/constants/errors/nginx_log.ts:8
- msgid ""
- "Settings.NginxLogSettings.AccessLogPath is empty, refer to https://nginxui."
- "com/guide/config-nginx.html for more information"
- msgstr ""
- #: src/constants/errors/nginx_log.ts:7
- msgid ""
- "Settings.NginxLogSettings.ErrorLogPath is empty, refer to https://nginxui."
- "com/guide/config-nginx.html for more information"
- msgstr ""
- #: src/components/SensitiveString/SensitiveString.vue:40
- msgid "Show"
- msgstr "Mostrar"
- #: src/views/other/Login.vue:240
- msgid "Sign in with a passkey"
- msgstr "Iniciar sesión con una llave de acceso"
- #: src/views/site/ngx_conf/directive/DirectiveAdd.vue:65
- msgid "Single Directive"
- msgstr "Directiva de una sola línea"
- #: src/views/site/site_add/SiteAdd.vue:147
- #, fuzzy
- msgid "Site Config Created Successfully"
- msgstr "Configuración de dominio creada con éxito"
- #: src/constants/errors/site.ts:4
- #, fuzzy
- msgid "Site is enabled"
- msgstr "Certificado automático"
- #: src/constants/errors/site.ts:5
- #, fuzzy
- msgid "Site is in maintenance mode"
- msgstr "Certificado automático"
- #: src/routes/modules/nginx_log.ts:31
- msgid "Site Logs"
- msgstr "Registros del sitio"
- #: src/constants/errors/site.ts:2
- #, fuzzy
- msgid "Site not found"
- msgstr "Archivo no Encontrado"
- #: src/views/system/SelfCheck/tasks/backend/index.ts:5
- #, fuzzy
- msgid "Sites Directory"
- msgstr "Directorio"
- #: src/routes/modules/sites.ts:19
- msgid "Sites List"
- msgstr "Lista de sitios"
- #: src/constants/errors/self_check.ts:10
- msgid "Sites-available directory not exist"
- msgstr ""
- #: src/constants/errors/self_check.ts:11
- msgid "Sites-enabled directory not exist"
- msgstr ""
- #: src/views/preference/NodeSettings.vue:23
- #, fuzzy
- msgid "Skip Installation"
- msgstr "Instalar"
- #: src/views/certificate/CertificateEditor.vue:211
- msgid "SSL Certificate Content"
- msgstr "Contenido de certificado SSL"
- #: src/constants/errors/system.ts:8
- msgid "SSL certificate file must be under Nginx configuration directory: {0}"
- msgstr ""
- #: src/constants/errors/system.ts:6
- #, fuzzy
- msgid "SSL certificate file not found"
- msgstr "Contenido de la llave del certificado SSL"
- #: src/views/certificate/CertificateEditor.vue:224
- msgid "SSL Certificate Key Content"
- msgstr "Contenido de la llave del certificado SSL"
- #: src/views/certificate/CertificateEditor.vue:190
- msgid "SSL Certificate Key Path"
- msgstr "Ruta de la llave del certificado SSL"
- #: src/views/certificate/CertificateEditor.vue:175
- #: src/views/preference/ServerSettings.vue:36
- msgid "SSL Certificate Path"
- msgstr "Ruta del certificado SSL"
- #: src/constants/errors/system.ts:4
- msgid "SSL certificate path is required when HTTPS is enabled"
- msgstr ""
- #: src/constants/errors/system.ts:9
- msgid "SSL key file must be under Nginx configuration directory: {0}"
- msgstr ""
- #: src/constants/errors/system.ts:7
- #, fuzzy
- msgid "SSL key file not found"
- msgstr "Archivo no Encontrado"
- #: src/views/preference/ServerSettings.vue:40
- #, fuzzy
- msgid "SSL Key Path"
- msgstr "Ruta de la llave del certificado SSL"
- #: src/constants/errors/system.ts:5
- msgid "SSL key path is required when HTTPS is enabled"
- msgstr ""
- #: src/views/other/Login.vue:197
- msgid "SSO Login"
- msgstr "Acceso SSO"
- #: src/views/environments/list/BatchUpgrader.vue:164
- #: src/views/environments/list/BatchUpgrader.vue:214
- #: src/views/system/Upgrade.vue:191 src/views/system/Upgrade.vue:239
- msgid "Stable"
- msgstr "Estable"
- #: src/components/SystemRestore/SystemRestoreContent.vue:246
- #: src/components/SystemRestore/SystemRestoreContent.vue:323
- msgid "Start Restore"
- msgstr ""
- #: src/views/certificate/ACMEUser.vue:65
- #: src/views/certificate/CertificateList/certColumns.tsx:65
- #: src/views/environments/list/envColumns.tsx:44
- #: src/views/site/site_edit/RightSettings.vue:55
- #: src/views/site/site_list/columns.tsx:80 src/views/stream/StreamList.vue:47
- msgid "Status"
- msgstr "Estado"
- #: src/components/NginxControl/NginxControl.vue:83
- msgid "Stopped"
- msgstr "Detenido"
- #: src/views/dashboard/ServerAnalytic.vue:250
- #: src/views/dashboard/ServerAnalytic.vue:251
- msgid "Storage"
- msgstr "Almacenamiento"
- #: src/constants/errors/stream.ts:4
- #, fuzzy
- msgid "Stream is enabled"
- msgstr "Certificado automático"
- #: src/constants/errors/stream.ts:2
- #, fuzzy
- msgid "Stream not found"
- msgstr "Archivo no Encontrado"
- #: src/views/system/SelfCheck/tasks/backend/index.ts:10
- #, fuzzy
- msgid "Streams Directory"
- msgstr "Directorio"
- #: src/constants/errors/self_check.ts:12
- msgid "Streams-available directory not exist"
- msgstr ""
- #: src/constants/errors/self_check.ts:13
- #, fuzzy
- msgid "Streams-enabled directory not exist"
- msgstr "Directorio"
- #: src/constants/index.ts:25 src/views/notification/notificationColumns.tsx:36
- msgid "Success"
- msgstr "Éxito"
- #: src/views/system/SelfCheck/tasks/frontend/websocket.ts:6
- msgid ""
- "Support communication with the backend through the WebSocket protocol. If "
- "your Nginx UI is being used via an Nginx reverse proxy, please refer to this "
- "link to write the corresponding configuration file: https://nginxui.com/"
- "guide/nginx-proxy-example.html"
- msgstr ""
- #: src/components/SystemRestore/SystemRestoreContent.vue:197
- #: src/components/SystemRestore/SystemRestoreContent.vue:274
- msgid "Supported file type: .zip"
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:236
- #: src/views/dashboard/ServerAnalytic.vue:237
- msgid "Swap"
- msgstr "Swap"
- #: src/components/SwitchAppearance/SwitchAppearance.vue:13
- msgid "Switch to dark theme"
- msgstr "Cambiar al tema oscuro"
- #: src/components/SwitchAppearance/SwitchAppearance.vue:13
- msgid "Switch to light theme"
- msgstr "Cambiar al tema claro"
- #: src/views/config/components/Rename.vue:81
- msgid "Sync"
- msgstr "Sincronizar"
- #: src/views/certificate/CertificateList/certColumns.tsx:30
- msgid "Sync Certificate"
- msgstr "Sincronizar Certificado"
- #: src/components/Notification/notifications.ts:48
- #, fuzzy
- msgid "Sync Certificate %{cert_name} to %{env_name} failed"
- msgstr "Sincronización del Certificado %{cert_name} a %{env_name} exitosa"
- #: src/components/Notification/notifications.ts:52
- msgid "Sync Certificate %{cert_name} to %{env_name} successfully"
- msgstr "Sincronización del Certificado %{cert_name} a %{env_name} exitosa"
- #: src/components/Notification/notifications.ts:47 src/language/constants.ts:39
- msgid "Sync Certificate Error"
- msgstr "Error de Certificado de Sincronización"
- #: src/components/Notification/notifications.ts:51 src/language/constants.ts:38
- msgid "Sync Certificate Success"
- msgstr "Sincronización del Certificado exitosa"
- #: src/components/Notification/notifications.ts:58
- #, fuzzy
- msgid "Sync config %{config_name} to %{env_name} failed"
- msgstr "Sincronizar configuración %{config_name} con %{env_name} exitosamente"
- #: src/components/Notification/notifications.ts:62
- #, fuzzy
- msgid "Sync config %{config_name} to %{env_name} successfully"
- msgstr "Sincronizar configuración %{config_name} con %{env_name} exitosamente"
- #: src/components/Notification/notifications.ts:57 src/language/constants.ts:45
- msgid "Sync Config Error"
- msgstr "Error de Configuración de Sincronización"
- #: src/components/Notification/notifications.ts:61 src/language/constants.ts:44
- msgid "Sync Config Success"
- msgstr "Configuración de sincronización exitosa"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:142
- #: src/views/environments/group/EnvGroup.vue:18
- #, fuzzy
- msgid "Sync Nodes"
- msgstr "Sincronizar con"
- #: src/views/site/site_edit/RightSettings.vue:101
- #: src/views/site/site_edit/RightSettings.vue:88
- #: src/views/stream/components/RightSettings.vue:111
- #: src/views/stream/components/RightSettings.vue:124
- #, fuzzy
- msgid "Sync strategy"
- msgstr "Sincronizar Certificado"
- #: src/views/certificate/CertificateEditor.vue:204
- msgid "Sync to"
- msgstr "Sincronizar con"
- #: src/views/site/site_edit/RightSettings.vue:85
- #: src/views/stream/components/RightSettings.vue:108
- msgid "Synchronization"
- msgstr "Sincronización"
- #: src/routes/modules/system.ts:11
- msgid "System"
- msgstr "Sistema"
- #: src/views/system/Backup/BackupCreator.vue:71
- #, fuzzy
- msgid "System Backup"
- msgstr "Sistema"
- #: src/views/certificate/ACMEUserSelector.vue:88
- msgid "System Initial User"
- msgstr "Usuario inicial del sistema"
- #: src/components/SystemRestore/SystemRestoreContent.vue:174
- #, fuzzy
- msgid "System Restore"
- msgstr "Sistema"
- #: src/views/other/Install.vue:106 src/views/system/Backup/SystemRestore.vue:6
- #, fuzzy
- msgid "System restored successfully."
- msgstr "Nginx reiniciado con éxito"
- #: src/constants/errors/self_check.ts:2
- #, fuzzy
- msgid "Task not found"
- msgstr "Archivo no Encontrado"
- #: src/views/preference/components/ExternalNotify/telegram.ts:5
- msgid "Telegram"
- msgstr ""
- #: src/routes/modules/terminal.ts:10 src/views/preference/Preference.vue:187
- #: src/views/terminal/Terminal.vue:129
- msgid "Terminal"
- msgstr "Terminal"
- #: src/views/preference/TerminalSettings.vue:9
- msgid "Terminal Start Command"
- msgstr "Comando de inicio de terminal"
- #: src/views/site/cert/components/AutoCertStepOne.vue:49
- msgid ""
- "The certificate for the domain will be checked 30 minutes, and will be "
- "renewed if it has been more than 1 week or the period you set in settings "
- "since it was last issued."
- msgstr ""
- "El certificado para el dominio será verificado en 30 minutos, y será "
- "renovado si ha pasado más de 1 semana o el período que configuró en ajustes "
- "desde que fue emitido por última vez."
- #: src/views/other/Install.vue:80
- msgid "The filename cannot contain the following characters: %{c}"
- msgstr ""
- "El nombre del archivo no puede contener los siguientes caracteres: %{c}"
- #: src/views/preference/NodeSettings.vue:37
- #, fuzzy
- msgid ""
- "The ICP Number should only contain letters, unicode, numbers, hyphens, "
- "dashes, colons, and dots."
- msgstr ""
- "El nombre del modelo solo debe contener letras, unicode, números, guiones, "
- "rayas y puntos."
- #: src/views/certificate/CertificateEditor.vue:214
- msgid "The input is not a SSL Certificate"
- msgstr "La entrada no es un Certificado SSL"
- #: src/views/certificate/CertificateEditor.vue:227
- msgid "The input is not a SSL Certificate Key"
- msgstr "La entrada no es una clave de certificado SSL"
- #: src/constants/errors/nginx_log.ts:2
- msgid ""
- "The log path is not under the paths in settings.NginxSettings.LogDirWhiteList"
- msgstr ""
- #: src/views/preference/OpenAISettings.vue:23
- #, fuzzy
- msgid ""
- "The model name should only contain letters, unicode, numbers, hyphens, "
- "dashes, colons, and dots."
- msgstr ""
- "El nombre del modelo solo debe contener letras, unicode, números, guiones, "
- "rayas y puntos."
- #: src/views/preference/NodeSettings.vue:18
- #, fuzzy
- msgid ""
- "The node name should only contain letters, unicode, numbers, hyphens, "
- "dashes, colons, and dots."
- msgstr ""
- "El nombre del modelo solo debe contener letras, unicode, números, guiones, "
- "rayas y puntos."
- #: src/views/site/site_add/SiteAdd.vue:120
- #, fuzzy
- msgid "The parameter of server_name is required"
- msgstr "Se requiere el parámetro server_name"
- #: src/views/certificate/CertificateEditor.vue:179
- msgid "The path exists, but the file is not a certificate"
- msgstr "La ruta existe, pero el archivo no es un certificado"
- #: src/views/certificate/CertificateEditor.vue:194
- msgid "The path exists, but the file is not a private key"
- msgstr "La ruta existe, pero el archivo no es una clave privada"
- #: src/views/preference/NodeSettings.vue:49
- #, fuzzy
- msgid ""
- "The Public Security Number should only contain letters, unicode, numbers, "
- "hyphens, dashes, colons, and dots."
- msgstr ""
- "El nombre del servidor solo debe contener letras, Unicode, números, guiones, "
- "rayas y puntos."
- #: src/views/dashboard/Environments.vue:148
- msgid ""
- "The remote Nginx UI version is not compatible with the local Nginx UI "
- "version. To avoid potential errors, please upgrade the remote Nginx UI to "
- "match the local version."
- msgstr ""
- "La versión de Nginx UI remota no es compatible con la versión de Nginx UI "
- "local. Para evitar errores potenciales, por favor actualice la Nginx UI "
- "remota para que coincida con la versión local."
- #: src/views/site/cert/components/AutoCertStepOne.vue:44
- msgid ""
- "The server_name in the current configuration must be the domain name you "
- "need to get the certificate, supportmultiple domains."
- msgstr ""
- "El server_name en la configuración actual debe ser el nombre de dominio que "
- "necesita para obtener el certificado, soporta dominios múltiples."
- #: src/views/preference/CertSettings.vue:22
- #: src/views/preference/HTTPSettings.vue:14
- msgid "The url is invalid"
- msgstr "La URL es inválida"
- #: src/views/preference/OpenAISettings.vue:35
- #: src/views/preference/OpenAISettings.vue:49
- msgid "The url is invalid."
- msgstr "La URL no es válida."
- #: src/language/constants.ts:2
- msgid "The username or password is incorrect"
- msgstr "El nombre de usuario o contraseña son incorrectos"
- #: src/views/preference/components/RecoveryCodes.vue:104
- msgid ""
- "These codes are the last resort for accessing your account in case you lose "
- "your password and second factors. If you cannot find these codes, you will "
- "lose access to your account."
- msgstr ""
- #: src/views/certificate/CertificateEditor.vue:102
- msgid "This Auto Cert item is invalid, please remove it."
- msgstr "Este elemento de Auto Cert es inválido, elimínelo por favor."
- #: src/views/certificate/CertificateEditor.vue:92
- msgid "This certificate is managed by Nginx UI"
- msgstr "Este certificado es administrado por Nginx UI"
- #: src/views/certificate/CertificateEditor.vue:163
- #: src/views/certificate/CertificateEditor.vue:177
- #: src/views/certificate/CertificateEditor.vue:192
- msgid "This field is required"
- msgstr "Este campo es obligatorio"
- #: src/constants/form_errors.ts:3
- #, fuzzy
- msgid "This field should be a valid email address"
- msgstr "Este campo no debe estar vacío"
- #: src/constants/form_errors.ts:5
- #, fuzzy
- msgid "This field should be a valid hostname"
- msgstr "Este campo no debe estar vacío"
- #: src/components/StdDesign/StdDataEntry/StdFormItem.vue:39
- #: src/constants/form_errors.ts:2
- msgid "This field should not be empty"
- msgstr "Este campo no debe estar vacío"
- #: src/constants/form_errors.ts:6
- #, fuzzy
- msgid ""
- "This field should only contain letters, unicode characters, numbers, and -_."
- msgstr ""
- "El nombre del modelo solo debe contener letras, unicode, números, guiones, "
- "rayas y puntos."
- #: src/views/system/Backup/BackupCreator.vue:141
- msgid ""
- "This token will only be shown once and cannot be retrieved later. Please "
- "make sure to save it in a secure location."
- msgstr ""
- #: src/constants/form_errors.ts:4
- msgid "This value is already taken"
- msgstr "Este valor ya está elegido"
- #: src/components/SystemRestore/SystemRestoreContent.vue:227
- #: src/components/SystemRestore/SystemRestoreContent.vue:304
- msgid ""
- "This will restore all Nginx configuration files. Nginx will restart after "
- "the restoration is complete."
- msgstr ""
- #: src/components/SystemRestore/SystemRestoreContent.vue:238
- #: src/components/SystemRestore/SystemRestoreContent.vue:315
- msgid ""
- "This will restore configuration files and database. Nginx UI will restart "
- "after the restoration is complete."
- msgstr ""
- #: src/views/environments/list/BatchUpgrader.vue:182
- msgid ""
- "This will upgrade or reinstall the Nginx UI on %{nodeNames} to %{version}."
- msgstr ""
- "Esto actualizará o reinstalará la interfaz de usuario de Nginx en "
- "%{nodeNames} a %{version}."
- #: src/views/preference/AuthSettings.vue:124
- msgid "Throttle"
- msgstr "Acelerador"
- #: src/views/preference/AuthSettings.vue:144
- #: src/views/preference/components/AddPasskey.vue:65
- #: src/views/preference/LogrotateSettings.vue:11
- msgid "Tips"
- msgstr "Consejos"
- #: src/views/notification/notificationColumns.tsx:45
- msgid "Title"
- msgstr "Título"
- #: src/views/preference/components/TOTP.vue:68
- msgid ""
- "To enable it, you need to install the Google or Microsoft Authenticator app "
- "on your mobile phone."
- msgstr ""
- "Para habilitarlo, necesitas instalar la aplicación Google Authenticator o "
- "Microsoft Authenticator en tu teléfono móvil."
- #: src/views/preference/components/AddPasskey.vue:89
- msgid ""
- "To ensure security, Webauthn configuration cannot be added through the UI. "
- "Please manually configure the following in the app.ini configuration file "
- "and restart Nginx UI."
- msgstr ""
- "Para garantizar la seguridad, no se puede agregar la configuración de "
- "Webauthn a través de la UI. Configure manualmente lo siguiente en el archivo "
- "de configuración app.ini y reinicie Nginx UI."
- #: src/views/site/ngx_conf/NgxConfigEditor.vue:45
- msgid ""
- "To make sure the certification auto-renewal can work normally, we need to "
- "add a location which can proxy the request from authority to backend, and we "
- "need to save this file and reload the Nginx. Are you sure you want to "
- "continue?"
- msgstr ""
- "Para garantizar que la renovación automática del certificado pueda funcionar "
- "con normalidad, debemos agregar una ubicación para transmitir la solicitud "
- "de la autoridad al backend, y debemos guardar este archivo y volver a cargar "
- "Nginx. ¿Estás seguro de que quieres continuar?"
- #: src/views/preference/OpenAISettings.vue:36
- #, fuzzy
- msgid ""
- "To use a local large model, deploy it with ollama, vllm or lmdeploy. They "
- "provide an OpenAI-compatible API endpoint, so just set the baseUrl to your "
- "local API."
- msgstr ""
- "Para utilizar un modelo local grande, impleméntelo con vllm o lmdeploy. "
- "Estos proporcionan un API endpoint compatible con OpenAI, por lo que solo "
- "debe configurar la baseUrl en su API local."
- #: src/views/preference/OpenAISettings.vue:61
- msgid "Token is not valid"
- msgstr "El token no es válido"
- #: src/components/StdDesign/StdDataDisplay/StdPagination.vue:40
- msgid "Total %{total} item"
- msgid_plural "Total %{total} items"
- msgstr[0] ""
- msgstr[1] ""
- #: src/views/preference/components/TOTP.vue:66
- msgid "TOTP"
- msgstr "TOTP"
- #: src/views/preference/components/TOTP.vue:67
- msgid ""
- "TOTP is a two-factor authentication method that uses a time-based one-time "
- "password algorithm."
- msgstr ""
- "TOTP es un método de autenticación de dos factores que utiliza un algoritmo "
- "de contraseña de un solo uso basado en el tiempo."
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:197
- msgid "Trash"
- msgstr "Basura"
- #: src/components/TwoFA/use2FAModal.ts:67
- msgid "Two-factor authentication required"
- msgstr "Se requiere autenticación de dos factores"
- #: src/views/certificate/CertificateList/certColumns.tsx:25
- #: src/views/nginx_log/NginxLogList.vue:21
- #: src/views/notification/notificationColumns.tsx:9
- #: src/views/preference/components/ExternalNotify/columns.ts:17
- msgid "Type"
- msgstr "Tipo"
- #: src/views/system/SelfCheck/SelfCheck.vue:63
- msgid "Unknown issue"
- msgstr ""
- #: src/views/preference/components/Passkey.vue:39
- #, fuzzy
- msgid "Update successfully"
- msgstr "Actualización exitosa"
- #: src/views/certificate/ACMEUser.vue:88
- #: src/views/certificate/DNSCredential.vue:27
- #: src/views/config/configColumns.tsx:36 src/views/config/ConfigEditor.vue:325
- #: src/views/environments/group/columns.ts:37
- #: src/views/environments/list/envColumns.tsx:90
- #: src/views/site/site_edit/RightSettings.vue:75
- #: src/views/site/site_list/columns.tsx:110
- #: src/views/stream/components/RightSettings.vue:99
- #: src/views/stream/StreamList.vue:67 src/views/user/userColumns.tsx:54
- msgid "Updated at"
- msgstr "Actualizado a"
- #: src/components/StdDesign/StdDataDisplay/methods/sortable.ts:121
- msgid "Updated successfully"
- msgstr "Actualización exitosa"
- #: src/routes/modules/system.ts:33
- #: src/views/environments/list/Environment.vue:107
- #: src/views/environments/list/Environment.vue:99
- #: src/views/system/Upgrade.vue:143 src/views/system/Upgrade.vue:226
- msgid "Upgrade"
- msgstr "Actualizar"
- #: src/views/environments/list/BatchUpgrader.vue:137
- msgid "Upgraded Nginx UI on %{node} successfully 🎉"
- msgstr "Interfaz de usuario de Nginx actualizada en %{node} con éxito 🎉"
- #: src/language/constants.ts:30
- msgid "Upgraded successfully"
- msgstr "Actualización exitosa"
- #: src/views/environments/list/BatchUpgrader.vue:88
- #: src/views/system/Upgrade.vue:77
- msgid "Upgrading Nginx UI, please wait..."
- msgstr "Actualizando Nginx UI, por favor espere..."
- #: src/views/site/ngx_conf/NgxUpstream.vue:172
- msgid "Upstream Name"
- msgstr "Nombre de la Transmisión"
- #: src/views/dashboard/ServerAnalytic.vue:179
- msgid "Uptime:"
- msgstr "Tiempo encendido:"
- #: src/views/environments/list/envColumns.tsx:19
- msgid "URL"
- msgstr "URL"
- #: src/components/TwoFA/Authorization.vue:121
- msgid "Use OTP"
- msgstr "Usar OTP"
- #: src/components/TwoFA/Authorization.vue:117
- msgid "Use recovery code"
- msgstr "Usar código de recuperación"
- #: src/components/ChatGPT/ChatGPT.vue:333
- msgid "User"
- msgstr "Usuario"
- #: src/constants/errors/user.ts:3
- #, fuzzy
- msgid "User banned"
- msgstr "El usuario está bloqueado"
- #: src/constants/errors/user.ts:8
- msgid "User not enabled otp as 2fa"
- msgstr ""
- #: src/views/other/Login.vue:173 src/views/user/userColumns.tsx:9
- msgid "Username"
- msgstr "Nombre de usuario"
- #: src/views/other/Install.vue:148
- msgid "Username (*)"
- msgstr "Nombre de usuario (*)"
- #: src/views/certificate/ACMEUser.vue:124
- #: src/views/certificate/CertificateList/certColumns.tsx:78
- #: src/views/site/cert/CertInfo.vue:24
- msgid "Valid"
- msgstr "Válido"
- #: src/components/SystemRestore/SystemRestoreContent.vue:216
- #: src/components/SystemRestore/SystemRestoreContent.vue:293
- msgid "Verify Backup File Integrity"
- msgstr ""
- #: src/views/environments/list/envColumns.tsx:31
- msgid "Version"
- msgstr "Versión"
- #: src/components/StdDesign/StdDataDisplay/StdTable.vue:488
- #: src/views/nginx_log/NginxLogList.vue:145
- #: src/views/site/ngx_conf/config_template/ConfigTemplate.vue:103
- msgid "View"
- msgstr "Ver"
- #: src/components/Notification/Notification.vue:203
- msgid "View all notifications"
- msgstr "Ver todas las notificaciones"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:151
- msgid "View Details"
- msgstr "Ver detalles"
- #: src/components/StdDesign/StdDataDisplay/StdCurd.vue:262
- msgid "View Mode"
- msgstr "Modo de vista"
- #: src/views/preference/components/RecoveryCodes.vue:134
- #, fuzzy
- msgid "View Recovery Codes"
- msgstr "Código de Recuperación"
- #: src/views/preference/components/RecoveryCodes.vue:70
- #, fuzzy
- msgid "Viewed"
- msgstr "Ver"
- #: src/constants/index.ts:23 src/views/config/InspectConfig.vue:33
- #: src/views/notification/notificationColumns.tsx:22
- #: src/views/preference/components/AddPasskey.vue:82
- #: src/views/site/site_add/SiteAdd.vue:115
- #: src/views/system/Backup/BackupCreator.vue:138
- msgid "Warning"
- msgstr "Advertencia"
- #: src/components/SystemRestore/SystemRestoreContent.vue:178
- #: src/components/SystemRestore/SystemRestoreContent.vue:255
- msgid ""
- "Warning: Restore operation will overwrite current configurations. Make sure "
- "you have a valid backup file and security token, and carefully select what "
- "to restore."
- msgstr ""
- #: src/views/certificate/DNSCredential.vue:56
- msgid ""
- "We will add one or more TXT records to the DNS records of your domain for "
- "ownership verification."
- msgstr ""
- "Agregaremos uno o más registros TXT a los registros DNS de su dominio para "
- "verificar la propiedad."
- #: src/views/site/cert/components/ObtainCert.vue:137
- msgid ""
- "We will remove the HTTPChallenge configuration from this file and reload the "
- "Nginx. Are you sure you want to continue?"
- msgstr ""
- "Eliminaremos la configuración de HTTPChallenge de este archivo y "
- "recargaremos Nginx. ¿Estás seguro de que quieres continuar?"
- #: src/views/preference/AuthSettings.vue:97
- msgid "Webauthn"
- msgstr "Webauthn"
- #: src/constants/errors/user.ts:7
- msgid "WebAuthn settings are not configured"
- msgstr ""
- #: src/views/certificate/ACMEUser.vue:83
- msgid ""
- "When Enabled, Nginx UI will automatically re-register users upon startup. "
- "Generally, do not enable this unless you are in a dev environment and using "
- "Pebble as CA."
- msgstr ""
- "Cuando está habilitada, la Nginx UI volverá a registrar automáticamente a "
- "los usuarios al iniciarse. Por lo general, no habilite esta opción a menos "
- "que se encuentre en un entorno de desarrollo y utilice Pebble como CA."
- #: src/views/site/site_edit/RightSettings.vue:91
- #, fuzzy
- msgid ""
- "When you enable/disable, delete, or save this site, the nodes set in the "
- "Node Group and the nodes selected below will be synchronized."
- msgstr ""
- "Cuando habilite/deshabilite, elimine o guarde este sitio, los nodos "
- "configurados en la categoría del sitio y los nodos seleccionados a "
- "continuación se sincronizarán."
- #: src/views/stream/components/RightSettings.vue:114
- #, fuzzy
- msgid ""
- "When you enable/disable, delete, or save this stream, the nodes set in the "
- "Node Group and the nodes selected below will be synchronized."
- msgstr ""
- "Cuando habilite/deshabilite, elimine o guarde este sitio, los nodos "
- "configurados en la categoría del sitio y los nodos seleccionados a "
- "continuación se sincronizarán."
- #: src/views/preference/components/RecoveryCodes.vue:140
- msgid ""
- "When you generate new recovery codes, you must download or print the new "
- "codes."
- msgstr ""
- #: src/views/dashboard/ServerAnalytic.vue:37
- #: src/views/dashboard/ServerAnalytic.vue:373
- msgid "Writes"
- msgstr "Escrituras"
- #: src/language/constants.ts:17
- msgid "Writing certificate private key to disk"
- msgstr "Escribir la clave privada del certificado a disco"
- #: src/language/constants.ts:16
- msgid "Writing certificate to disk"
- msgstr "Escribir certificado a disco"
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:150
- #: src/components/EnvGroupTabs/EnvGroupTabs.vue:162
- #: src/views/preference/AuthSettings.vue:163
- #: src/views/preference/CertSettings.vue:72
- #: src/views/site/ngx_conf/directive/DirectiveEditorItem.vue:96
- #: src/views/site/ngx_conf/LocationEditor.vue:87
- msgid "Yes"
- msgstr "Si"
- #: src/views/terminal/Terminal.vue:135
- msgid ""
- "You are accessing this terminal over an insecure HTTP connection on a non-"
- "localhost domain. This may expose sensitive information."
- msgstr ""
- #: src/views/system/Upgrade.vue:202
- msgid "You are using the latest version"
- msgstr "Estás usando la última versión"
- #: src/views/system/Upgrade.vue:164
- msgid "You can check Nginx UI upgrade at this page."
- msgstr "Puede consultar la actualización de Nginx UI en esta página."
- #: src/components/SystemRestore/SystemRestoreContent.vue:339
- msgid "You can close this dialog in %{countdown} seconds"
- msgstr ""
- #: src/components/SystemRestore/SystemRestoreContent.vue:342
- msgid "You can close this dialog now"
- msgstr ""
- #: src/views/preference/components/AddPasskey.vue:87
- msgid ""
- "You have not configured the settings of Webauthn, so you cannot add a "
- "passkey."
- msgstr ""
- "No ha configurado los ajustes de Webauthn, por lo que no puede agregar una "
- "llave de acceso."
- #: src/views/preference/components/RecoveryCodes.vue:81
- msgid ""
- "You have not enabled 2FA yet. Please enable 2FA to generate recovery codes."
- msgstr ""
- #: src/views/preference/components/RecoveryCodes.vue:94
- msgid "You have not generated recovery codes yet."
- msgstr ""
- #: src/views/preference/components/RecoveryCodes.vue:91
- msgid ""
- "Your current recovery code might be outdated and insecure. Please generate "
- "new recovery codes at your earliest convenience to ensure security."
- msgstr ""
- #: src/views/preference/components/RecoveryCodes.vue:142
- #: src/views/preference/components/RecoveryCodes.vue:155
- msgid "Your old codes won't work anymore."
- msgstr ""
- #: src/views/preference/components/Passkey.vue:75
- msgid "Your passkeys"
- msgstr "Sus llaves de acceso"
- #, fuzzy
- #~ msgid "Access Token"
- #~ msgstr "Logs de acceso"
- #, fuzzy
- #~ msgid "Bot Token"
- #~ msgstr "Token"
- #, fuzzy
- #~ msgid "Server URL"
- #~ msgstr "Información del servidor"
- #~ msgid "Do you want to disable this site?"
- #~ msgstr "¿Quieres deshabilitar este sitio?"
- #, fuzzy
- #~ msgid "Created At"
- #~ msgstr "Creado el"
- #~ msgid "Category"
- #~ msgstr "Categoría"
- #~ msgid "Site Categories"
- #~ msgstr "Categorías del sitio"
- #, fuzzy
- #~ msgid "Restart Required"
- #~ msgstr "Reiniciando"
- #~ msgid "Deploy %{conf_name} to %{node_name} successfully"
- #~ msgstr "Desplegado de %{conf_name} a %{node_name} exitoso"
- #~ msgid "Deploy successfully"
- #~ msgstr "Desplegado con éxito"
- #~ msgid "Disable site %{site} on %{node} error, response: %{resp}"
- #~ msgstr ""
- #~ "Error al deshabilitar el sitio %{site} en %{node}, respuesta: %{resp}"
- #~ msgid "Do you want to deploy this file to remote server?"
- #~ msgid_plural "Do you want to deploy this file to remote servers?"
- #~ msgstr[0] "¿Desea desplegar este archivo en un servidor remoto?"
- #~ msgstr[1] "¿Desea desplegar este archivo en los servidores remotos?"
- #~ msgid "Duplicate %{conf_name} to %{node_name} successfully"
- #~ msgstr "Duplicado con éxito de %{conf_name} a %{node_name}"
- #~ msgid "Duplicate successfully"
- #~ msgstr "Duplicado con éxito"
- #~ msgid "Enable %{conf_name} in %{node_name} successfully"
- #~ msgstr "Habilitado exitoso de %{conf_name} en %{node_name}"
- #~ msgid "Enable successfully"
- #~ msgstr "Habilitado con Éxito"
- #, fuzzy
- #~ msgid "Please upgrade the remote Nginx UI to the latest version"
- #~ msgstr ""
- #~ "Sincronización de la configuración %{cert_name} a %{env_name} falló, por "
- #~ "favor actualiza la interfaz de usuario de Nginx en el servidor remoto a "
- #~ "la última versión"
- #~ msgid ""
- #~ "Rename %{orig_path} to %{new_path} on %{env_name} failed, response: "
- #~ "%{resp}"
- #~ msgstr ""
- #~ "Renombrar %{orig_path} a %{new_path} en %{env_name} falló, respuesta: "
- #~ "%{resp}"
- #, fuzzy
- #~ msgid ""
- #~ "Rename Site %{site} to %{new_site} on %{node} error, response: %{resp}"
- #~ msgstr "Renombrar %{orig_path} a %{new_path} en %{env_name} con éxito"
- #, fuzzy
- #~ msgid "Save site %{site} to %{node} error, response: %{resp}"
- #~ msgstr ""
- #~ "Sincronización del Certificado %{cert_name} a %{env_name} falló, "
- #~ "respuesta: %{resp}"
- #~ msgid ""
- #~ "Sync Certificate %{cert_name} to %{env_name} failed, please upgrade the "
- #~ "remote Nginx UI to the latest version"
- #~ msgstr ""
- #~ "Sincronización del Certificado %{cert_name} a %{env_name} fallida, por "
- #~ "favor actualice la interfaz de Nginx remota a la última versión"
- #~ msgid ""
- #~ "Sync Certificate %{cert_name} to %{env_name} failed, response: %{resp}"
- #~ msgstr ""
- #~ "Sincronización del Certificado %{cert_name} a %{env_name} falló, "
- #~ "respuesta: %{resp}"
- #~ msgid "Sync config %{config_name} to %{env_name} failed, response: %{resp}"
- #~ msgstr ""
- #~ "Sincronización de la configuración %{config_name} a %{env_name} fallida, "
- #~ "respuesta: %{resp}"
- #~ msgid "Target"
- #~ msgstr "Objetivo"
- #~ msgid "Can't scan? Use text key binding"
- #~ msgstr "¿No puede escanear? Utilice la vinculación con una llave de texto"
- #~ msgid "File"
- #~ msgstr "Archivo"
- #~ msgid ""
- #~ "If you lose your mobile phone, you can use the recovery code to reset "
- #~ "your 2FA."
- #~ msgstr ""
- #~ "Si pierde su teléfono móvil, puede usar el código de recuperación para "
- #~ "restablecer su 2FA."
- #~ msgid "Incorrect username or password"
- #~ msgstr "Nombre de usuario o contraseña incorrectos"
- #~ msgid "Recovery Code:"
- #~ msgstr "Código de Recuperación:"
- #~ msgid "Server error"
- #~ msgstr "Error del servidor"
- #~ msgid ""
- #~ "The recovery code is only displayed once, please save it in a safe place."
- #~ msgstr ""
- #~ "El código de recuperación se muestra solo una vez, por favor guárdalo en "
- #~ "un lugar seguro."
- #~ msgid "Too many login failed attempts, please try again later"
- #~ msgstr ""
- #~ "Demasiados intentos fallidos de inicio de sesión, por favor intente "
- #~ "nuevamente más tarde"
- #~ msgid ""
- #~ "Rename %{orig_path} to %{new_path} on %{env_name} failed, please upgrade "
- #~ "the remote Nginx UI to the latest version"
- #~ msgstr ""
- #~ "Renombrar %{orig_path} a %{new_path} en %{env_name} fallido, por favor "
- #~ "actualice la interfaz de Nginx remota a la última versión"
- #~ msgid "Server Name"
- #~ msgstr "Nombre del servidor"
- #~ msgid "Enable 2FA"
- #~ msgstr "Habilitar 2FA"
- #, fuzzy
- #~ msgid "Rename "
- #~ msgstr "Renombrar"
- #~ msgid "Certificate is valid"
- #~ msgstr "El certificado es válido"
- #~ msgid "Intermediate Certification Authorities: %{issuer}"
- #~ msgstr "Autoridades de certificación intermedias: %{issuer}"
- #~ msgid "Subject Name: %{subject}"
- #~ msgstr "Nombre del asunto: %{subject}"
- #~ msgid "The url is not valid"
- #~ msgstr "La URL no es válida"
- #~ msgid "ChatGPT Model"
- #~ msgstr "Modelo de ChatGPT"
- #~ msgid "GPT-3.5-Turbo"
- #~ msgstr "GPT-3.5-Turbo"
- #~ msgid "GPT-4"
- #~ msgstr "GPT-4"
- #~ msgid "GPT-4-32K"
- #~ msgstr "GPT-4-32K"
- #~ msgid "GPT-4-Turbo"
- #~ msgstr "GPT-4--Turbo"
- #~ msgid "Save Successfully"
- #~ msgstr "Guardado con éxito"
- #~ msgid "Table"
- #~ msgstr "Tabla"
- #~ msgid "The path exists, but the file is not a public key"
- #~ msgstr "La ruta existe, pero el archivo no es una clave pública"
- #, fuzzy
- #~ msgid "Auto Cert Log"
- #~ msgstr "Registro del Certificado automático"
- #~ msgid "Config Name"
- #~ msgstr "Nombre de la configuración"
- #~ msgid "Auto cert is enabled, please do not modify this certification."
- #~ msgstr ""
- #~ "Está habilitado el Certificado automático, por favor no modifique esta "
- #~ "certificación."
- #, fuzzy
- #~ msgid ""
- #~ "Please fill in the API authentication credentials provided by your DNS "
- #~ "provider.\n"
- #~ "We will add one or more TXT records to the DNS records of your domain for "
- #~ "ownership verification.\n"
- #~ "Once the verification is complete, the records will be removed.\n"
- #~ "Please note that the unit of time configurations below are all in seconds."
- #~ msgstr ""
- #~ "Complete las credenciales de autenticación de la API proporcionadas por "
- #~ "su proveedor de DNS. Agregaremos uno o más registros TXT a los registros "
- #~ "DNS de su dominio para verificar la propiedad. Una vez que se complete la "
- #~ "verificación, se eliminarán los registros. Tenga en cuenta que las "
- #~ "configuraciones de tiempo que aparecen debajo están todas en segundos."
- #~ msgid "Delete ID: %{id}"
- #~ msgstr "Eliminar ID: %{id}"
- #~ msgid "Dir"
- #~ msgstr "Dir"
- #~ msgid "Auto"
- #~ msgstr "Automático"
- #~ msgid "Dark"
- #~ msgstr "Oscuro"
- #~ msgid "Light"
- #~ msgstr "Claro"
- #~ msgid "Theme"
- #~ msgstr "Tema"
- #~ msgid "OperationSync"
- #~ msgstr "Sincronización de operaciones"
- #~ msgid ""
- #~ "Such as Reload and Configs, regex can configure as `/api/nginx/reload|/"
- #~ "api/nginx/test|/api/config/.+`, please see system api"
- #~ msgstr ""
- #~ "Las reglas de sincronización de operación de `Recarga` y `Gestión de "
- #~ "Configuración` se pueden configurar como `/api/nginx/reload|/api/nginx/"
- #~ "test|/api/config/.+`, consulte la API del sistema para obtener más "
- #~ "detalles"
- #~ msgid "SyncApiRegex"
- #~ msgstr "Expresión Regular de la API"
- #~ msgid "Whether config api regex that will redo on this environment"
- #~ msgstr ""
- #~ "Si se deben configurar las expresiones regulares de API para que se "
- #~ "sincronicen con este entorno"
|