-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathes-ES.ts
More file actions
2258 lines (2256 loc) · 86.9 KB
/
Copy pathes-ES.ts
File metadata and controls
2258 lines (2256 loc) · 86.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* =====================================================================================
* DISCLAIMER:
* =====================================================================================
* This localization file is a community contribution and is not officially maintained
* by Clerk. It has been provided by the community and may not be fully aligned
* with the current or future states of the main application. Clerk does not guarantee
* the accuracy, completeness, or timeliness of the translations in this file.
* Use of this file is at your own risk and discretion.
* =====================================================================================
*/
import type { LocalizationResource } from '@clerk/shared/types';
export const esES: LocalizationResource = {
locale: 'es-ES',
actionBlocked: {
subtitle: undefined,
title: undefined,
traceIdLabel: undefined,
},
apiKeys: {
action__add: undefined,
action__search: undefined,
copySecret: {
formButtonPrimary__copyAndClose: 'Copiar y cerrar',
formHint: 'Por razones de seguridad, no podrás verlo de nuevo más tarde.',
formTitle: 'Copia tu clave API "{{name}}" ahora',
},
createdAndExpirationStatus__expiresOn: undefined,
createdAndExpirationStatus__never: undefined,
detailsTitle__emptyRow: undefined,
formButtonPrimary__add: undefined,
formFieldCaption__expiration__expiresOn: undefined,
formFieldCaption__expiration__never: undefined,
formFieldOption__expiration__180d: undefined,
formFieldOption__expiration__1d: undefined,
formFieldOption__expiration__1y: undefined,
formFieldOption__expiration__30d: undefined,
formFieldOption__expiration__60d: undefined,
formFieldOption__expiration__7d: undefined,
formFieldOption__expiration__90d: undefined,
formFieldOption__expiration__never: undefined,
formHint: undefined,
formTitle: undefined,
lastUsed__days: undefined,
lastUsed__hours: undefined,
lastUsed__minutes: undefined,
lastUsed__months: undefined,
lastUsed__seconds: undefined,
lastUsed__years: undefined,
menuAction__revoke: undefined,
revokeConfirmation: {
confirmationText: undefined,
formButtonPrimary__revoke: undefined,
formHint: undefined,
formTitle: undefined,
inputLabel: undefined,
},
tableHeader__actions: undefined,
tableHeader__lastUsed: undefined,
tableHeader__name: undefined,
},
backButton: 'Atrás',
badge__activePlan: undefined,
badge__banned: undefined,
badge__canceledEndsAt: undefined,
badge__currentPlan: undefined,
badge__default: 'Por defecto',
badge__deprovisioned: undefined,
badge__endsAt: undefined,
badge__expired: undefined,
badge__freeTrial: undefined,
badge__otherImpersonatorDevice: 'Otro dispositivo de imitación',
badge__pastDueAt: undefined,
badge__pastDuePlan: undefined,
badge__primary: 'Primario',
badge__renewsAt: undefined,
badge__requiresAction: 'Requiere acción',
badge__startsAt: undefined,
badge__thisDevice: 'Este dispositivo',
badge__trialEndsAt: undefined,
badge__unverified: 'No confirmado',
badge__upcomingPlan: undefined,
badge__userDevice: 'Dispositivo de usuario',
badge__you: 'Usted',
billing: {
accountCredit: undefined,
addPaymentMethod__label: 'Añadir nuevo método de pago',
alwaysFree: 'Siempre gratis',
annually: 'Anualmente',
availableFeatures: 'Funciones disponibles',
billedAnnually: 'Facturado anualmente',
billedAnnuallyOnly: undefined,
billedMonthly: undefined,
billedMonthlyOnly: 'Solo facturado mensualmente',
cancelFreeTrial: 'Cancelar prueba gratuita',
cancelFreeTrialAccessUntil:
"Tu prueba seguirá activa hasta el {{ date | longDate('es-ES') }}. Después perderás el acceso a las funciones de prueba. No se te cobrará nada.",
cancelFreeTrialTitle: '¿Cancelar la prueba gratuita del plan {{plan}}?',
cancelSubscription: 'Cancelar suscripción',
cancelSubscriptionAccessUntil:
"Puedes seguir usando las funciones de '{{plan}}' hasta el {{ date | longDate('es-ES') }}, después ya no tendrás acceso.",
cancelSubscriptionNoCharge: 'No se te cobrará por esta suscripción.',
cancelSubscriptionPastDue:
'Tu suscripción finalizará inmediatamente y perderás el acceso a todas las funciones del plan. Se te pedirá que pagues el importe pendiente en tu próxima suscripción.',
cancelSubscriptionTitle: '¿Cancelar la suscripción {{plan}}?',
cannotSubscribeMonthly:
'No puedes suscribirte a este plan con pago mensual. Para suscribirte, debes elegir el pago anual.',
cannotSubscribeUnrecoverable: 'No puedes suscribirte a este plan. Tu suscripción actual es más cara que este plan.',
checkout: {
addPromoCode: undefined,
applyPromoCode: undefined,
description__paymentSuccessful: 'Tu pago se ha realizado correctamente.',
description__subscriptionSuccessful: 'Tu nueva suscripción está lista.',
discount: undefined,
downgradeNotice:
'Mantendrás tu suscripción actual y sus funciones hasta el final del ciclo de facturación; después se te cambiará a esta suscripción.',
emailForm: {
subtitle:
'Antes de completar la compra, debes añadir una dirección de correo electrónico donde se enviarán los recibos.',
title: 'Añadir dirección de correo electrónico',
},
lineItems: {
title__freeTrialEndsAt: 'La prueba termina el',
title__paymentMethod: 'Método de pago',
title__statementId: 'ID del extracto',
title__subscriptionBegins: 'La suscripción comienza el',
title__totalPaid: 'Total pagado',
},
pastDueNotice: 'Tu suscripción anterior tenía un pago pendiente.',
perMonth: 'al mes',
promoCodePlaceholder: undefined,
removePromoCode: undefined,
title: 'Pago',
title__paymentSuccessful: '¡Pago realizado con éxito!',
title__subscriptionSuccessful: '¡Todo listo!',
title__trialSuccess: '¡La prueba se ha iniciado correctamente!',
totalDueAfterTrial: 'Total a pagar cuando termine la prueba en {{days}} días',
totalDuePerPeriod: undefined,
},
credit: 'Crédito',
creditRemainder: 'Crédito por el tiempo restante de tu suscripción actual.',
defaultFreePlanActive: 'Actualmente estás en el plan gratuito',
discountAmount: undefined,
discountCyclesRemaining: undefined,
discountDuration: undefined,
free: 'Gratis',
getStarted: 'Empezar',
highlightedPlanBadge: 'Popular',
keepFreeTrial: 'Mantener prueba gratuita',
keepSubscription: 'Mantener suscripción',
manage: 'Gestionar',
manageSubscription: 'Gestionar suscripción',
month: 'Mes',
monthAbbreviation: undefined,
monthPerUnit: undefined,
monthly: 'Mensual',
months: undefined,
pastDue: 'Pago pendiente',
pay: 'Pagar {{amount}}',
payerCreditRemainder: undefined,
paymentMethod: {
applePayDescription: {
annual: 'Pago anual',
monthly: 'Pago mensual',
},
dev: {
anyNumbers: 'Cualquier número',
cardNumber: 'Número de tarjeta',
cvcZip: 'CVC, código postal',
developmentMode: 'Modo de desarrollo',
expirationDate: 'Fecha de caducidad',
testCardInfo: 'Información de tarjeta de prueba',
},
},
paymentMethods__label: 'Métodos de pago',
pricingTable: {
billingCycle: 'Ciclo de facturación',
included: 'Incluido',
seatCost: {
additionalSeats: undefined,
freeUpToSeats: undefined,
includedSeats: undefined,
perSeat: undefined,
tooltip: {
additionalSeatsEach: undefined,
firstSeatsIncludedInPlan: undefined,
freeForUpToSeats: undefined,
},
unlimitedSeats: undefined,
upToSeats: undefined,
},
},
proratedDiscount: undefined,
prorationCredit: undefined,
reSubscribe: 'Volver a suscribirse',
seatBreakdownIncludedPlural: undefined,
seatBreakdownIncludedSingular: undefined,
seatBreakdownPlural: undefined,
seatBreakdownSingular: undefined,
seats: undefined,
seatsWithLimit: undefined,
seeAllFeatures: 'Ver todas las funciones',
startFreeTrial: 'Iniciar prueba gratuita',
startFreeTrial__days: 'Iniciar prueba gratuita de {{days}} días',
subscribe: 'Suscribirse',
subscriptionDetails: {
beginsOn: 'Comienza el',
currentBillingCycle: 'Ciclo de facturación actual',
endsOn: 'Finaliza el',
firstPaymentAmount: 'Importe del primer pago',
firstPaymentOn: 'Primer pago el',
nextPaymentAmount: 'Importe del próximo pago',
nextPaymentOn: 'Próximo pago el',
pastDueAt: 'Pago pendiente desde',
renewsAt: 'Se renueva el',
subscribedOn: 'Suscrito el',
title: 'Suscripción',
trialEndsOn: 'La prueba termina el',
trialStartedOn: 'La prueba comenzó el',
},
subtotal: 'Subtotal',
subtotalRenewal: undefined,
switchPlan: 'Cambiar a este plan',
switchToAnnual: 'Cambiar a anual',
switchToAnnualWithAnnualPrice: 'Cambiar a anual {{price}} / año',
switchToMonthly: 'Cambiar a mensual',
switchToMonthlyWithPrice: 'Cambiar a mensual {{price}} / mes',
totalDue: 'Total a pagar',
totalDuePerPeriod: undefined,
totalDueToday: 'Total a pagar hoy',
viewFeatures: 'Ver funciones',
viewPayment: 'Ver pago',
year: 'Año',
yearAbbreviation: undefined,
yearPerUnit: undefined,
years: undefined,
},
configureSSO: {
activate: {
activateButton: undefined,
activeSubtitle: undefined,
activeTitle: undefined,
doneButton: undefined,
skipButton: undefined,
subtitle: undefined,
title: undefined,
},
changeProviderDialog: {
cancelButton: undefined,
confirmButton: undefined,
subtitle: undefined,
title: undefined,
},
configureStep: {
activeConnectionWarning: {
dismiss: undefined,
title: undefined,
},
attributeMappingTable: {
badges: {
optional: undefined,
required: undefined,
},
},
oidcCustom: {
credentialsStep: {
clientId: {
label: undefined,
placeholder: undefined,
},
clientSecret: {
label: undefined,
placeholder: undefined,
},
headerSubtitle: undefined,
paragraph: undefined,
},
endpointsStep: {
discoveryUrl: {
description: undefined,
label: undefined,
placeholder: undefined,
},
headerSubtitle: undefined,
manual: {
authUrl: {
label: undefined,
placeholder: undefined,
},
description: undefined,
tokenUrl: {
label: undefined,
placeholder: undefined,
},
userInfoUrl: {
label: undefined,
placeholder: undefined,
},
},
modes: {
ariaLabel: undefined,
discoveryUrl: undefined,
manual: undefined,
},
},
mainHeaderTitle: undefined,
redirectUriStep: {
claims: {
description: undefined,
table: {
columns: {
attribute: undefined,
claim: undefined,
},
rows: {
email: {
attribute: undefined,
},
firstName: {
attribute: undefined,
},
lastName: {
attribute: undefined,
},
subject: {
attribute: undefined,
},
},
},
},
headerSubtitle: undefined,
paragraph: undefined,
redirectUri: {
label: undefined,
},
},
},
samlCustom: {
assignUsersStep: {
headerSubtitle: undefined,
paragraph: undefined,
},
attributeMappingStep: {
attributeMappingTable: {
columns: {
attributeName: undefined,
userAttribute: undefined,
},
rows: {
email: {
attributeName: undefined,
userAttribute: undefined,
},
firstName: {
attributeName: undefined,
userAttribute: undefined,
},
lastName: {
attributeName: undefined,
userAttribute: undefined,
},
},
},
headerSubtitle: undefined,
paragraph: undefined,
},
createAppStep: {
createAppInstructions: {
paragraph: undefined,
},
headerSubtitle: undefined,
serviceProviderFields: {
acsUrl: {
label: undefined,
},
spEntityId: {
label: undefined,
},
},
},
identityProviderMetadataStep: {
headerSubtitle: undefined,
manual: {
description: undefined,
issuer: {
label: undefined,
placeholder: undefined,
},
signOnUrl: {
label: undefined,
placeholder: undefined,
},
signingCertificate: {
fileUploaded: undefined,
label: undefined,
removeFile: undefined,
replaceFile: undefined,
uploadFile: undefined,
},
},
metadataUrl: {
description: undefined,
label: undefined,
placeholder: undefined,
},
modes: {
ariaLabel: undefined,
manual: undefined,
metadataUrl: undefined,
},
},
mainHeaderTitle: undefined,
},
samlGoogle: {
attributeMappingStep: {
attributeMappingTable: {
columns: {
appAttribute: undefined,
googleAttribute: undefined,
},
rows: {
email: {
appAttribute: undefined,
googleAttribute: undefined,
},
firstName: {
appAttribute: undefined,
googleAttribute: undefined,
},
lastName: {
appAttribute: undefined,
googleAttribute: undefined,
},
},
},
headerSubtitle: undefined,
paragraph: undefined,
step1: undefined,
step2: undefined,
},
configureUserAccess: {
assignUsersInstructions: {
paragraph1: undefined,
paragraph2: undefined,
step1: undefined,
step2: undefined,
step3: undefined,
},
headerSubtitle: undefined,
},
createAppStep: {
createAppInstructions: {
step1: undefined,
step2: undefined,
step3: undefined,
step4: undefined,
title: undefined,
},
headerSubtitle: undefined,
},
identityProviderMetadataStep: {
headerSubtitle: undefined,
manual: {
description: undefined,
issuer: {
label: undefined,
placeholder: undefined,
},
signOnUrl: {
label: undefined,
placeholder: undefined,
},
signingCertificate: {
fileUploaded: undefined,
label: undefined,
removeFile: undefined,
replaceFile: undefined,
uploadFile: undefined,
},
},
metadataFile: {
description: undefined,
fileUploaded: undefined,
label: undefined,
removeFile: undefined,
replaceFile: undefined,
uploadFile: undefined,
},
modes: {
ariaLabel: undefined,
manual: undefined,
metadataFile: undefined,
},
},
mainHeaderTitle: undefined,
serviceProviderStep: {
headerSubtitle: undefined,
nameIdInstructions: {
step1: undefined,
step2: undefined,
},
paragraph: undefined,
serviceProviderFields: {
acsUrl: {
label: undefined,
},
spEntityId: {
label: undefined,
},
},
title: undefined,
},
},
samlMicrosoft: {
attributeMappingStep: {
attributeMappingTable: {
columns: {
attribute: undefined,
claimName: undefined,
value: undefined,
},
copyClaimName: undefined,
copyClaimNameCopied: undefined,
rows: {
email: {
attribute: undefined,
claimName: undefined,
value: undefined,
},
firstName: {
attribute: undefined,
claimName: undefined,
value: undefined,
},
lastName: {
attribute: undefined,
claimName: undefined,
value: undefined,
},
},
},
headerSubtitle: undefined,
step1: undefined,
step2: undefined,
title: undefined,
},
createAppStep: {
assignUsersInstructions: {
step1: undefined,
step2: undefined,
step3: undefined,
step4: undefined,
step5: undefined,
title: undefined,
},
createAppInstructions: {
step1: undefined,
step2: undefined,
step3: undefined,
step4: {
label: undefined,
subSteps: {
appName: undefined,
create: undefined,
nonGallery: undefined,
},
},
title: undefined,
},
headerSubtitle: undefined,
},
identityProviderMetadataStep: {
headerSubtitle: undefined,
manual: {
description: undefined,
issuer: {
label: undefined,
placeholder: undefined,
},
signOnUrl: {
label: undefined,
placeholder: undefined,
},
signingCertificate: {
fileUploaded: undefined,
label: undefined,
removeFile: undefined,
replaceFile: undefined,
uploadFile: undefined,
},
},
metadataUrl: {
description: undefined,
label: undefined,
placeholder: undefined,
},
modes: {
ariaLabel: undefined,
manual: undefined,
metadataUrl: undefined,
},
},
mainHeaderTitle: undefined,
serviceProviderStep: {
headerSubtitle: undefined,
serviceProviderFields: {
acsUrl: {
label: undefined,
},
spEntityId: {
label: undefined,
},
},
step1: undefined,
step2: undefined,
step3: undefined,
step4: undefined,
step5: undefined,
step6: undefined,
title: undefined,
},
},
samlOkta: {
assignUsersStep: {
assignUsersInstructions: {
paragraph: undefined,
step1: undefined,
step2: undefined,
step3: undefined,
step4: undefined,
step5: undefined,
},
headerSubtitle: undefined,
},
attributeMappingStep: {
attributeMappingTable: {
columns: {
expression: undefined,
name: undefined,
},
rows: {
email: {
expression: undefined,
name: undefined,
},
firstName: {
expression: undefined,
name: undefined,
},
lastName: {
expression: undefined,
name: undefined,
},
},
},
headerSubtitle: undefined,
paragraph: undefined,
step1: undefined,
step2: undefined,
},
createAppStep: {
completeSamlIntegrationInstructions: {
step1: undefined,
step2: undefined,
title: undefined,
},
createAppInstructions: {
step1: undefined,
step2: undefined,
step3: undefined,
step4: undefined,
title: undefined,
},
headerSubtitle: undefined,
serviceProviderInstructions: {
paragraph1: undefined,
paragraph2: undefined,
serviceProviderFields: {
acsUrl: {
label: undefined,
},
spEntityId: {
label: undefined,
},
},
title: undefined,
},
},
identityProviderMetadataStep: {
headerSubtitle: undefined,
manual: {
description: undefined,
issuer: {
label: undefined,
placeholder: undefined,
},
signOnUrl: {
label: undefined,
placeholder: undefined,
},
signingCertificate: {
fileUploaded: undefined,
label: undefined,
removeFile: undefined,
replaceFile: undefined,
uploadFile: undefined,
},
},
metadataUrl: {
description: undefined,
label: undefined,
placeholder: undefined,
},
modes: {
ariaLabel: undefined,
manual: undefined,
metadataUrl: undefined,
},
},
mainHeaderTitle: undefined,
},
unsupportedProvider: {
description: undefined,
title: undefined,
},
},
missingManageEnterpriseConnectionsPermission: {
subtitle: 'Contacte al administrador de su organización para ampliar sus permisos.',
title: 'No tiene permiso para gestionar el inicio de sesión único (SSO)',
},
navbar: {
title: 'Configurar inicio de sesión único (SSO)',
},
organizationDomainsStep: {
domainCard: {
badge__expired: undefined,
badge__unverified: 'Sin verificar',
badge__verified: 'Verificado',
expiredAtLabel: undefined,
expiredLabel: undefined,
removeButtonTooltip__lastVerifiedDomain: undefined,
removeButtonTooltip__lastVerifiedDomainActive: undefined,
txtRecord: {
hostLabel: 'Host / Nombre',
instructions:
'Añade este registro TXT a tu proveedor de DNS. Lo verificaremos automáticamente una vez que el registro esté activo.',
typeLabel: 'Tipo',
valueLabel: 'Valor',
},
verifiedAtLabel: "Verificado el {{ date | shortDate('es-ES') }}",
verifyAgainButton: undefined,
},
domainSuggestion: {
formButtonPrimary__add: 'Añadir {{domain}}',
messageLabel: 'Tu correo electrónico usa {{domain}}. ¿Quieres añadirlo?',
},
formButtonPrimary__add: 'Añadir',
formFieldInputPlaceholder__domain: 'Añadir dominio',
formFieldLabel__domain: 'Dominio',
removeDomainDialog: {
cancelButton: undefined,
removeButton: undefined,
subtitle__active: undefined,
subtitle__inactive: undefined,
title: undefined,
},
subtitle: 'Añade y verifica la propiedad de los dominios que tu organización usa para iniciar sesión.',
title: 'Añadir dominios SSO',
},
resetConnectionDialog: {
cancelButton: undefined,
confirmationFieldLabel: undefined,
confirmationFieldPlaceholder: undefined,
resetButton: undefined,
subtitle: undefined,
title: undefined,
},
selectProviderStep: {
oidc: {
groupLabel: undefined,
oidcProvider: undefined,
},
saml: {
customSaml: 'Proveedor SAML personalizado',
google: undefined,
groupLabel: 'SAML',
microsoft: undefined,
okta: 'Okta Workforce',
},
subtitle: 'Selecciona el proveedor para el que vas a configurar SSO.',
title: 'Seleccionar proveedor',
warning: 'Una vez seleccionado un proveedor no podrás cambiarlo hasta que finalice la configuración',
},
testConfigurationStep: {
error__noSuccessfulTestRun: undefined,
subtitle: undefined,
testResults: {
actionLabel__refresh: undefined,
empty: {
subtitle: undefined,
title: undefined,
},
polling: undefined,
status__failed: undefined,
status__pending: undefined,
status__success: undefined,
title: undefined,
},
testRunDetails: {
howToFix: {
actionLabel__viewDocumentation: undefined,
oauth_access_denied: {
description: undefined,
},
oauth_fetch_user_error: {
intro: undefined,
step1: undefined,
step2: undefined,
},
oauth_token_exchange_error: {
description: undefined,
},
saml_email_address_domain_mismatch: {
description: undefined,
},
saml_response_relaystate_missing: {
description: undefined,
},
saml_user_attribute_missing: {
intro: undefined,
step1: undefined,
step2: undefined,
step3: undefined,
},
sectionTitle: undefined,
},
parsedUserInfo: {
email: undefined,
firstName: undefined,
sectionTitle: undefined,
},
runDetails: {
actionLabel__copied: undefined,
actionLabel__copy: undefined,
errorCode: undefined,
fullMessage: undefined,
sectionTitle: undefined,
status: undefined,
timestamp: undefined,
},
title: undefined,
},
testUrl: {
actionLabel__open: undefined,
},
title: undefined,
},
},
createOrganization: {
formButtonSubmit: 'Crear organización',
invitePage: {
formButtonReset: 'Saltar',
},
title: 'Crear organización',
},
dates: {
lastDay: "Ayer a las {{ date | timeString('es-ES') }}",
next6Days: "{{ date | weekday('es-ES','long') }} a las {{ date | timeString('es-ES') }}",
nextDay: "Mañana a las {{ date | timeString('es-ES') }}",
numeric: "{{ date | numeric('es-ES') }}",
previous6Days: "Último {{ date | weekday('es-ES','long') }} en {{ date | timeString('es-ES') }}",
sameDay: "Hoy a las {{ date | timeString('es-ES') }}",
},
dividerText: 'o',
footerActionLink__alternativePhoneCodeProvider: undefined,
footerActionLink__useAnotherMethod: 'Usar otro método',
footerPageLink__help: 'Ayuda',
footerPageLink__privacy: 'Privacidad',
footerPageLink__terms: 'Términos',
formButtonPrimary: 'Continuar',
formButtonPrimary__verify: 'Verificar',
formFieldAction__forgotPassword: 'Has olvidado tu contraseña?',
formFieldError__matchingPasswords: 'Las contraseñas coinciden.',
formFieldError__notMatchingPasswords: 'Las contraseñas no coinciden.',
formFieldError__verificationLinkExpired: 'El enlace de verificación ha expirado. Por favor solicite uno nuevo.',
formFieldHintText__optional: 'Opcional',
formFieldHintText__slug: 'Un slug es un ID legible que debe ser único. Es comúnmente usado en URLs.',
formFieldInputPlaceholder__apiKeyDescription: undefined,
formFieldInputPlaceholder__apiKeyExpirationDate: undefined,
formFieldInputPlaceholder__apiKeyName: undefined,
formFieldInputPlaceholder__backupCode: 'Ingrese su código de respaldo',
formFieldInputPlaceholder__confirmDeletionUserAccount: 'Eliminar cuenta',
formFieldInputPlaceholder__emailAddress: 'Ingrese su dirección de correo electrónico',
formFieldInputPlaceholder__emailAddress_username: 'Ingrese su correo electrónico o nombre de usuario',
formFieldInputPlaceholder__emailAddresses:
'Ingrese o pegue una o más direcciones de correo electrónico, separadas por espacios o comas',
formFieldInputPlaceholder__firstName: 'Ingrese su nombre',
formFieldInputPlaceholder__lastName: 'Ingrese su apellido',
formFieldInputPlaceholder__organizationDomain: 'Ingrese el dominio de la organización',
formFieldInputPlaceholder__organizationDomainEmailAddress: 'Ingrese un correo electrónico del dominio',
formFieldInputPlaceholder__organizationName: 'Ingrese el nombre de la organización',
formFieldInputPlaceholder__organizationSlug: 'Ingrese un slug único para la organización',
formFieldInputPlaceholder__password: 'Ingrese su contraseña',
formFieldInputPlaceholder__phoneNumber: 'Ingrese su número telefónico',
formFieldInputPlaceholder__signUpPassword: undefined,
formFieldInputPlaceholder__username: 'Ingrese su nombre de usuario',
formFieldInput__emailAddress_format: undefined,
formFieldLabel__apiKey: 'Clave API',
formFieldLabel__apiKeyDescription: 'Descripción',
formFieldLabel__apiKeyExpiration: 'Expiración',
formFieldLabel__apiKeyName: 'Nombre de clave secreta',
formFieldLabel__automaticInvitations: 'Activar invitaciones automáticas para este dominio',
formFieldLabel__backupCode: 'Código de respaldo',
formFieldLabel__confirmDeletion: 'Confirmación',
formFieldLabel__confirmPassword: 'Confirme la contraseña',
formFieldLabel__currentPassword: 'Contraseña actual',
formFieldLabel__emailAddress: 'Correo electrónico',
formFieldLabel__emailAddress_username: 'Correo electrónico o nombre de usuario',
formFieldLabel__emailAddresses: 'Direcciones de correo',
formFieldLabel__firstName: 'Nombre',
formFieldLabel__lastName: 'Apellido',
formFieldLabel__newPassword: 'Nueva contraseña',
formFieldLabel__organizationDomain: 'Dominio',
formFieldLabel__organizationDomainDeletePending: 'Borrar invitaciones y sugerencias pendientes',
formFieldLabel__organizationDomainEmailAddress: 'Correo de verificación',
formFieldLabel__organizationDomainEmailAddressDescription:
'Ingrese una dirección de correo electrónico bajo este dominio para recibir un código y verificarlo.',
formFieldLabel__organizationName: 'Nombre de la Organización',
formFieldLabel__organizationSlug: 'Slug',
formFieldLabel__passkeyName: 'Nombre de la clave de acceso',
formFieldLabel__password: 'Contraseña',
formFieldLabel__phoneNumber: 'Número telefónico',
formFieldLabel__role: 'Rol',
formFieldLabel__signOutOfOtherSessions: 'Cerrar sesión en todos los demás dispositivos',
formFieldLabel__username: 'Nombre de usuario',
identityPreviewEditButton__emailAddress: undefined,
identityPreviewEditButton__identifier: undefined,
identityPreviewEditButton__phoneNumber: undefined,
impersonationFab: {
action__signOut: 'Cerrar',
title: 'Registrado como {{identifier}}',
},
lastAuthenticationStrategy: 'Último uso',
maintenanceMode: 'Modo de mantenimiento',
membershipRole__admin: 'Administrador',
membershipRole__basicMember: 'Miembro',
membershipRole__guestMember: 'Invitado',
oauthConsent: {
action__allow: undefined,
action__deny: undefined,
offlineAccessNotice: undefined,
redirectNotice: undefined,
redirectUriModal: {
subtitle: undefined,
title: undefined,
},
scopeList: {
privateMetadata: undefined,
title: undefined,
},
subtitle: undefined,
viewFullUrl: undefined,
warning: undefined,
},
organizationList: {
action__createOrganization: 'Crear organización',
action__invitationAccept: 'Unirse',
action__suggestionsAccept: 'Solicitud a unirse',
createOrganization: 'Crear Organización',
invitationAcceptedLabel: 'Unido',
subtitle: 'para continuar a {{applicationName}}',
suggestionsAcceptedLabel: 'Aprobación pendiente',
title: 'Choose an account',
titleWithoutPersonal: 'Escoja una organización',
},
organizationProfile: {
apiKeysPage: {
title: undefined,
},
badge__automaticInvitation: 'Invitaciones automáticas',
badge__automaticSuggestion: 'Sugerencias automáticas',
badge__enterpriseSso: undefined,
badge__manualInvitation: 'Sin inscripción automática',
badge__unverified: 'No verificado',
billingPage: {
accountCreditsSection: {
title: undefined,
viewHistory: undefined,
},
creditHistoryPage: {
tableHeader__amount: undefined,
tableHeader__date: undefined,
title: undefined,
},
paymentHistorySection: {
empty: 'No hay historial de pagos',
notFound: 'No se ha encontrado el intento de pago',
tableHeader__amount: 'Importe',