-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathen-US.ts
More file actions
2135 lines (2134 loc) · 93.2 KB
/
Copy pathen-US.ts
File metadata and controls
2135 lines (2134 loc) · 93.2 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
import type { LocalizationResource } from '@clerk/shared/types';
export const enUS: LocalizationResource = {
locale: 'en-US',
apiKeys: {
action__add: 'Add new key',
action__search: 'Search keys',
copySecret: {
formButtonPrimary__copyAndClose: 'Copy & Close',
formHint: "For security reasons, we won't allow you to view it again later.",
formTitle: 'Copy your "{{name}}" API Key now',
},
createdAndExpirationStatus__expiresOn:
"Created {{ createdDate | shortDate('en-US') }} • Expires {{ expiresDate | longDate('en-US') }}",
createdAndExpirationStatus__never: "Created {{ createdDate | shortDate('en-US') }} • Never expires",
detailsTitle__emptyRow: 'No API keys found',
formButtonPrimary__add: 'Create key',
formFieldCaption__expiration__expiresOn: 'Expiring {{ date }}',
formFieldCaption__expiration__never: 'This key will never expire',
formFieldOption__expiration__180d: '180 Days',
formFieldOption__expiration__1d: '1 Day',
formFieldOption__expiration__1y: '1 Year',
formFieldOption__expiration__30d: '30 Days',
formFieldOption__expiration__60d: '60 Days',
formFieldOption__expiration__7d: '7 Days',
formFieldOption__expiration__90d: '90 Days',
formFieldOption__expiration__never: 'Never',
formHint: 'Provide a name to generate a new key. You’ll be able to revoke it anytime.',
formTitle: 'Add new API key',
lastUsed__days: '{{days}}d ago',
lastUsed__hours: '{{hours}}h ago',
lastUsed__minutes: '{{minutes}}m ago',
lastUsed__months: '{{months}}mo ago',
lastUsed__seconds: '{{seconds}}s ago',
lastUsed__years: '{{years}}y ago',
menuAction__revoke: 'Revoke key',
revokeConfirmation: {
confirmationText: 'Revoke',
formButtonPrimary__revoke: 'Revoke key',
formHint: 'Are you sure you want to delete this Secret key?',
formTitle: 'Revoke "{{apiKeyName}}" secret key?',
inputLabel: 'Type "Revoke" to confirm',
},
tableHeader__actions: 'Actions',
tableHeader__lastUsed: 'Last used',
tableHeader__name: 'Name',
},
backButton: 'Back',
badge__activePlan: 'Active',
badge__banned: 'Banned',
badge__canceledEndsAt: "Canceled • Ends {{ date | shortDate('en-US') }}",
badge__currentPlan: 'Current plan',
badge__default: 'Default',
badge__endsAt: "Ends {{ date | shortDate('en-US') }}",
badge__expired: 'Expired',
badge__freeTrial: 'Free trial',
badge__otherImpersonatorDevice: 'Other impersonator device',
badge__pastDueAt: "Past due {{ date | shortDate('en-US') }}",
badge__pastDuePlan: 'Past due',
badge__primary: 'Primary',
badge__renewsAt: "Renews {{ date | shortDate('en-US') }}",
badge__requiresAction: 'Requires action',
badge__startsAt: "Starts {{ date | shortDate('en-US') }}",
badge__thisDevice: 'This device',
badge__trialEndsAt: "Trial ends {{ date | shortDate('en-US') }}",
badge__unverified: 'Unverified',
badge__upcomingPlan: 'Upcoming',
badge__userDevice: 'User device',
badge__you: 'You',
billing: {
accountCredit: 'Account credit',
addPaymentMethod__label: 'Add payment method',
alwaysFree: 'Always free',
annually: 'Annually',
availableFeatures: 'Available features',
billedAnnually: 'Billed annually',
billedAnnuallyOnly: 'Only billed annually',
billedMonthly: 'Billed monthly',
billedMonthlyOnly: 'Only billed monthly',
cancelFreeTrial: 'Cancel free trial',
cancelFreeTrialAccessUntil:
"Your trial will stay active until {{ date | longDate('en-US') }}. After that, you'll lose access to trial features. You won't be charged.",
cancelFreeTrialTitle: 'Cancel free trial for {{plan}} plan?',
cancelSubscription: 'Cancel subscription',
cancelSubscriptionAccessUntil:
"You can keep using '{{plan}}' features until {{ date | longDate('en-US') }}, after which you will no longer have access.",
cancelSubscriptionNoCharge: 'You will not be charged for this subscription.',
cancelSubscriptionPastDue:
'Your subscription will end immediately and you will lose access to all plan features. You will be asked to pay the past due amount on your next subscription.',
cancelSubscriptionTitle: 'Cancel {{plan}} Subscription?',
cannotSubscribeMonthly:
'You cannot subscribe to this plan by paying monthly. To subscribe to this plan, you need to choose to pay annually.',
cannotSubscribeUnrecoverable:
'You cannot subscribe to this plan. Your existing subscription is more expensive than this plan.',
checkout: {
description__paymentSuccessful: 'Your payment was successful.',
description__subscriptionSuccessful: 'Your new subscription is all set.',
downgradeNotice:
'You will keep your current subscription and its features until the end of the billing cycle, then you will be switched to this subscription.',
emailForm: {
subtitle: 'Before you can complete your purchase you must add an email address where receipts will be sent.',
title: 'Add an email address',
},
lineItems: {
title__freeTrialEndsAt: 'Trial ends on',
title__paymentMethod: 'Payment method',
title__statementId: 'Statement ID',
title__subscriptionBegins: 'Subscription begins',
title__totalPaid: 'Total paid',
},
pastDueNotice: 'Your previous subscription was past due, with no payment.',
perMonth: 'per month',
title: 'Checkout',
title__paymentSuccessful: 'Payment was successful!',
title__subscriptionSuccessful: 'Success!',
title__trialSuccess: 'Trial successfully started!',
totalDueAfterTrial: 'Total Due after trial ends in {{days}} days',
totalDuePerPeriod: 'Total Due per period',
},
credit: 'Credit',
creditRemainder: 'Credit for the remainder of your current subscription.',
defaultFreePlanActive: "You're currently on the Free plan",
free: 'Free',
getStarted: 'Get started',
highlightedPlanBadge: 'Popular',
keepFreeTrial: 'Keep free trial',
keepSubscription: 'Keep subscription',
manage: 'Manage',
manageSubscription: 'Manage subscription',
month: 'Month',
monthAbbreviation: 'mo',
monthPerUnit: 'Month per {{unitName}}',
monthly: 'Monthly',
pastDue: 'Past due',
pay: 'Pay {{amount}}',
payerCreditRemainder: 'Credit from account balance.',
paymentMethod: {
applePayDescription: {
annual: 'Annual payment',
monthly: 'Monthly payment',
},
dev: {
anyNumbers: 'Any numbers',
cardNumber: 'Card number',
cvcZip: 'CVC, ZIP',
developmentMode: 'Development mode',
expirationDate: 'Expiration date',
testCardInfo: 'Test card information',
},
},
paymentMethods__label: 'Payment Methods',
pricingTable: {
billingCycle: 'Billing cycle',
included: 'Included',
seatCost: {
additionalSeats: '({{additionalTierFeePerBlockAmount}}/{{periodAbbreviation}} for additional)',
freeUpToSeats: 'Free up to {{endsAfterBlock}} seats',
includedSeats: '{{includedSeats}} seats included',
perSeat: '{{feePerBlockAmount}}/{{periodAbbreviation}} per seat',
tooltip: {
additionalSeatsEach: 'Additional seats are {{feePerBlockAmount}}/{{period}} each.',
firstSeatsIncludedInPlan: 'First {{endsAfterBlock}} seats are included in the plan.',
freeForUpToSeats: 'Free for up to {{endsAfterBlock}} seats.',
},
unlimitedSeats: 'Unlimited seats',
upToSeats: 'Up to {{endsAfterBlock}} seats',
},
},
proratedDiscount: 'Prorated discount',
prorationCredit: 'Prorated credit',
reSubscribe: 'Resubscribe',
seatBreakdownIncludedPlural: '{{chargeable}} seats at {{rate}}/mo ({{totalSeats}} total - {{included}} included)',
seatBreakdownIncludedSingular: '1 seat at {{rate}}/mo ({{totalSeats}} total - {{included}} included)',
seatBreakdownPlural: '{{chargeable}} seats at {{rate}}/mo',
seatBreakdownSingular: '1 seat at {{rate}}/mo',
seats: 'Seats',
seatsWithLimit: 'Seats (up to {{limit}})',
seeAllFeatures: 'See all features',
startFreeTrial: 'Start free trial',
startFreeTrial__days: 'Start {{days}}-day free trial',
subscribe: 'Subscribe',
subscriptionDetails: {
beginsOn: 'Begins on',
currentBillingCycle: 'Current billing cycle',
endsOn: 'Ends on',
firstPaymentAmount: 'First payment amount',
firstPaymentOn: 'First payment on',
nextPaymentAmount: 'Next payment amount',
nextPaymentOn: 'Next payment on',
pastDueAt: 'Past due on',
renewsAt: 'Renews at',
subscribedOn: 'Subscribed on',
title: 'Subscription',
trialEndsOn: 'Trial ends on',
trialStartedOn: 'Trial started on',
},
subtotal: 'Subtotal',
subtotalRenewal: 'Subtotal per period',
switchPlan: 'Switch to this plan',
switchToAnnual: 'Switch to annual',
switchToAnnualWithAnnualPrice: 'Switch to annual {{price}} / year',
switchToMonthly: 'Switch to monthly',
switchToMonthlyWithPrice: 'Switch to monthly {{price}} / month',
totalDue: 'Total due',
totalDuePerPeriod: 'Total per period',
totalDueToday: 'Total due today',
viewFeatures: 'View features',
viewPayment: 'View payment',
year: 'Year',
yearAbbreviation: 'yr',
yearPerUnit: 'Year per {{unitName}}',
},
configureSSO: {
activate: {
activateButton: 'Activate SSO',
activeSubtitle: 'Anyone signing in with {{domain}} must use your identity provider.',
activeTitle: 'SSO connection is active',
doneButton: 'Done',
skipButton: 'Skip for now',
subtitle:
'Your SSO connection is ready. Once activated, anyone signing in with {{domain}} must use your identity provider.',
title: 'SSO connection configured',
},
configureStep: {
attributeMappingTable: {
badges: {
optional: 'Optional',
required: 'Required',
},
},
samlCustom: {
assignUsersStep: {
headerSubtitle: 'Assign users to the enterprise application',
paragraph:
'You need to assign users or groups to your enterprise application before they can use it to sign in.',
title: 'Assign selected user or group',
},
attributeMappingStep: {
attributeMappingTable: {
columns: {
attributeName: 'Attribute Name',
userProfile: 'Identity Provider User Profile',
},
rows: {
email: {
attributeName: 'email',
userProfile: 'Primary email',
},
firstName: {
attributeName: 'firstName',
userProfile: 'First name',
},
lastName: {
attributeName: 'lastName',
userProfile: 'Last name',
},
},
},
headerSubtitle: 'Map user attributes from your identity provider to your application.',
paragraph: 'We expect your SAML response to return the user’s email, first name and last name.',
},
createAppStep: {
createAppInstructions: {
paragraph:
'In your identity provider’s admin dashboard, create a new SAML 2.0 application and use the following service provider details:',
title: 'Create a SAML application on your identity provider',
},
headerSubtitle: 'Create a new enterprise application in your identity provider’s admin dashboard',
serviceProviderFields: {
acsUrl: {
label: 'Assertion consumer service (ACS) URL',
},
spEntityId: {
label: 'Service provider entity ID',
},
},
},
identityProviderMetadataStep: {
headerSubtitle: 'Configure identity provider metadata',
manual: {
description: 'In your SAML application, retrieve these values.',
issuer: {
label: 'Issuer',
placeholder: 'Paste URL here...',
},
signOnUrl: {
label: 'Single Sign-On URL',
placeholder: 'Paste URL here...',
},
signingCertificate: {
fileUploaded: 'File uploaded',
label: 'X.509 certificate',
removeFile: 'Remove file',
replaceFile: 'Replace file',
uploadFile: 'Upload file',
},
},
metadataUrl: {
description: 'In your enterprise application, retrieve the metadata URL. Paste it below.',
label: 'Metadata URL',
placeholder: 'Paste URL here...',
},
modes: {
ariaLabel: 'Configuration ',
manual: 'Configure manually',
metadataUrl: 'Add via metadata',
title: 'Fill in your SAML application details',
},
},
mainHeaderTitle: 'Configure your identity provider (IdP)',
},
samlGoogle: {
attributeMappingStep: {
attributeMappingTable: {
columns: {
appAttribute: 'App attribute',
googleAttribute: 'Google attribute',
},
rows: {
email: {
appAttribute: 'email',
googleAttribute: 'Primary email',
},
firstName: {
appAttribute: 'firstName',
googleAttribute: 'First name',
},
lastName: {
appAttribute: 'lastName',
googleAttribute: 'Last name',
},
},
},
headerSubtitle: 'Map user attributes from Google Workspace to your application',
paragraph: 'We expect your SAML response to return the user’s email, first name and last name.',
step1: 'In the <bold>Google Admin Console</bold>, find the <bold>Attributes</bold> section.',
step2:
'Select <bold>Add mapping</bold> for each attribute, and enter the following Google and app attribute:',
},
configureUserAccess: {
assignUsersInstructions: {
paragraph1:
"Once the configuration is complete in Google, you'll be redirected to the app's overview page.",
paragraph2:
'Google may take up to 24 hours to propagate these changes. The connection will remain inactive until they take effect.',
step1: 'Open the <bold>User access</bold> section.',
step2: 'Select <bold>ON for everyone.</bold>',
step3: 'Select <bold>Save</bold>.',
},
headerSubtitle: 'Enable your Google Workspace SAML application',
},
createAppStep: {
createAppInstructions: {
step1: 'Sign in to Google Admin Portal.',
step2: 'In the side navigation, under <bold>Apps</bold>, select <bold>Web and mobile apps.</bold>',
step3: 'Click on the <bold>Add</bold> app button, and select <bold>Add custom SAML app.</bold>',
step4: 'In the <bold>App details</bold> section, fill out the required <bold>App name</bold>.',
step5: 'Select the <bold>Continue</bold> button.',
title: 'Create a new enterprise application in Google Workspace',
},
headerSubtitle: 'Create a new enterprise application in your Google Workspace',
},
identityProviderMetadataStep: {
headerSubtitle: 'Configure identity provider metadata',
manual: {
description: 'In your Google Workspace application, retrieve these values.',
issuer: {
label: 'Entity ID',
placeholder: 'Paste URL here...',
},
signOnUrl: {
label: 'SSO URL',
placeholder: 'Paste URL here...',
},
signingCertificate: {
fileUploaded: 'File uploaded',
label: 'Signing certificate',
removeFile: 'Remove file',
replaceFile: 'Replace file',
uploadFile: 'Upload file',
},
},
metadataFile: {
description: 'In your Google Workspace application, download the IdP metadata and upload it below.',
fileUploaded: 'File uploaded',
label: 'IdP metadata',
removeFile: 'Remove file',
replaceFile: 'Replace file',
uploadFile: 'Upload file',
},
modes: {
ariaLabel: 'Configuration ',
manual: 'Configure manually',
metadataFile: 'Add via metadata',
title: 'Fill in your Google Workspace application details',
},
},
mainHeaderTitle: 'Configure Google Workspace',
serviceProviderStep: {
headerSubtitle: 'Configure service provider',
nameIdInstructions: {
step1:
'Under the <bold>Name ID</bold> section, select the <bold>Name ID</bold> format dropdown and select <bold>Email</bold>.',
step2: 'Select <bold>Continue</bold>',
},
paragraph:
'To configure your service provider, you must add these two fields to your Google Workspace SAML application:',
serviceProviderFields: {
acsUrl: {
label: 'ACS URL',
},
spEntityId: {
label: 'Entity ID',
},
},
title: 'Configure service provider',
},
},
samlMicrosoft: {
attributeMappingStep: {
attributeMappingTable: {
columns: {
attribute: 'Attribute',
claimName: 'Claim name',
value: 'Value',
},
rows: {
email: {
attribute: 'Email address',
claimName: 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress',
value: 'user.mail',
},
firstName: {
attribute: 'First name',
claimName: 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname',
value: 'user.givenname',
},
lastName: {
attribute: 'Last name',
claimName: 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname',
value: 'user.surname',
},
},
},
headerSubtitle: 'Map user attributes from Microsoft Entra to your application',
paragraph:
"These are the defaults and probably won't need you to change them. However, many SAML configuration errors are due to incorrect attribute mappings, so it's worth double-checking. Here's how:",
step1: 'On the <bold>SAML-based Sign-on</bold> page, find the <bold>Attributes & Claims</bold> section.',
step2: 'Select <bold>Edit</bold>',
step3: 'Verify that the above three attributes and values are present.',
title: 'We expect your SAML responses to have the following specific attributes:',
},
createAppStep: {
assignUsersInstructions: {
paragraph1: 'You need to assign users or groups before they can use it to log in.',
step1: 'In the <bold>Getting Started</bold> section, select the <bold>Assign users and groups.</bold>',
step2: "Select <bold>Add user/group.</bold> You'll be redirected to the <bold>Add Assignment page.</bold>",
step3: 'Select the <bold>None Selected link.</bold>',
step4:
'To assign a user to the enterprise app, you can either use the search field to find a user or select the checkbox next to the user in the table.',
step5:
"Select <bold>Select</bold> at the bottom of the page. You'll be redirected to the <bold>Add Assignment</bold> page.",
step6: 'Select <bold>Assign</bold> at the bottom of the page.',
title: 'Assign your users or groups in Microsoft',
},
createAppInstructions: {
step1: 'Sign in to Microsoft Azure Portal and go to <bold>Enterprise applications.</bold>',
step2:
"Click <bold>New application.</bold> You'll be redirected to the <bold>Browse Microsoft Entra Gallery</bold> page.",
step3: 'Select <bold>Create your own application.</bold>',
step4: {
label: 'In the modal that opens:',
subSteps: {
appName: 'Fill out your application name.',
create: 'Select <bold>Create</bold>.',
nonGallery:
"Select <bold>Integrate any other application you don't find in the gallery (Non-gallery)</bold>.",
},
},
title: 'Create a new enterprise application in Microsoft Entra',
},
headerSubtitle: 'Create a new enterprise application in your Azure portal',
},
identityProviderMetadataStep: {
headerSubtitle: 'Configure identity provider metadata',
manual: {
description:
'On the <bold>SAML-based Sign-on</bold> page, find the <bold>SAML Certificates</bold> section. Retrieve these values and add them below.',
issuer: {
label: 'Issuer',
placeholder: 'Paste URL here...',
},
signOnUrl: {
label: 'Single Sign-On URL',
placeholder: 'Paste URL here...',
},
signingCertificate: {
fileUploaded: 'File uploaded',
label: 'Signing certificate',
removeFile: 'Remove file',
replaceFile: 'Replace file',
uploadFile: 'Upload file',
},
},
metadataUrl: {
description:
'On the <bold>SAML-based Sign-on</bold> page, find the <bold>SAML Certificates</bold> section. Add the <bold>App Federation Metadata Url</bold> below.',
label: 'Metadata URL',
placeholder: 'Paste URL here...',
},
modes: {
ariaLabel: 'Configuration ',
manual: 'Configure manually',
metadataUrl: 'Add via metadata',
title: 'Fill in your Microsoft Entra application details',
},
},
mainHeaderTitle: 'Configure Microsoft Entra',
serviceProviderStep: {
headerSubtitle: 'Add service provider configuration to Microsoft Entra',
serviceProviderFields: {
acsUrl: {
label: 'Reply URL (Assertion Consumer Service URL)',
},
spEntityId: {
label: 'Identifier (Entity ID)',
},
},
step1: 'In the side navigation, open the <bold>Manage</bold> dropdown and select Single sign-on.',
step2:
"In the <bold>Select a single sign-on</bold> method section, select <bold>SAML</bold>. You'll be redirected to the <bold>Set up Single Sign-On with SAML</bold> page.",
step3: 'Find the <bold>Basic SAML Configuration</bold> section.',
step4: 'Select <bold>Edit</bold>. The <bold>Basic SAML Configuration</bold> panel will open.',
step5:
'Add the following <bold>Identifier (Entity ID)</bold> and <bold>Reply URL (Assertion Consumer Service URL)</bold> values. These values will be saved automatically.',
step6: 'Select <bold>Save</bold> at the top of the panel. Close the panel.',
title: 'Configure service provider',
},
},
samlOkta: {
assignUsersStep: {
assignUsersInstructions: {
paragraph:
'You need to assign users or groups to your enterprise application before they can use it to sign in.',
step1: 'In the Okta dashboard, select the <bold>Assignments</bold> tab.',
step2:
'Select the <bold>Assign</bold> dropdown. You can either select <bold>Assign to people</bold> or <bold>Assign to groups</bold>.',
step3: 'In the search field, enter the user or group of users that you want to assign to the application.',
step4: 'Select the <bold>Assign</bold> button next to the user or group that you want to assign.',
step5: 'Select the <bold>Done</bold> button to complete the assignment.',
title: 'Assign selected user or group in Okta',
},
headerSubtitle: 'Assign users to the enterprise application',
},
attributeMappingStep: {
attributeMappingTable: {
columns: {
expression: 'Expression',
name: 'Attribute name',
},
rows: {
email: {
expression: 'user.mail',
name: 'mail',
},
firstName: {
expression: 'user.firstName',
name: 'firstName',
},
lastName: {
expression: 'user.lastName',
name: 'lastName',
},
},
},
headerSubtitle: 'Map user attributes from Okta to your application',
paragraph: 'We expect your SAML responses to have the following specific attributes:',
step1:
'Open the <bold>Sign On</bold> tab of your Okta application and locate the <bold>Attribute Statements</bold> section. If you don’t see it, click <bold>Show legacy configuration</bold>, then <bold>Edit</bold>.',
step2: 'Select <bold>Add Expression</bold> for each row below, then enter the matching name and value:',
},
createAppStep: {
completeSamlIntegrationInstructions: {
step1: 'Select <bold>This is an internal app that we have created</bold> from the options menu.',
step2: 'Complete the form with any comments and select <bold>"Finish"</bold>.',
title: 'Complete SAML integration',
},
createAppInstructions: {
step1: 'Sign in to Okta and go to <bold>Admin → Applications.</bold>',
step2: 'Click <bold>Create App Integration.</bold>',
step3: 'Select <bold>SAML 2.0.</bold>',
step4: 'Fill in the General Settings (App name is required).',
step5: 'Click <bold>Next</bold> to complete creating the application.',
title: 'Create a new enterprise application in Okta',
},
headerSubtitle: 'Create a new enterprise application in your Okta Dashboard',
serviceProviderInstructions: {
paragraph1:
'Once you have moved forward from the General Settings instructions, you will be presented with the Configure SAML page.',
paragraph2:
'To configure your service provider, you must add these two fields to your Okta SAML application:',
serviceProviderFields: {
acsUrl: {
label: 'Single sign-on URL',
},
spEntityId: {
label: 'Audience URI (SP Entity ID)',
},
},
title: 'Add service provider configuration to Okta',
},
},
identityProviderMetadataStep: {
headerSubtitle: 'Configure identity provider metadata',
manual: {
description: 'In your Okta SAML app, go to the Sign On tab and retrieve these values.',
issuer: {
label: 'Issuer',
placeholder: 'Paste URL here...',
},
signOnUrl: {
label: 'Single Sign-On URL',
placeholder: 'Paste URL here...',
},
signingCertificate: {
fileUploaded: 'File uploaded',
label: 'X.509 certificate',
removeFile: 'Remove file',
replaceFile: 'Replace file',
uploadFile: 'Upload file',
},
},
metadataUrl: {
description: 'In your Okta SAML app, go to the Sign On tab and retrieve the metadata URL. Paste it below.',
label: 'Metadata URL',
placeholder: 'Paste URL here...',
},
modes: {
ariaLabel: 'Configuration ',
manual: 'Configure manually',
metadataUrl: 'Add via metadata',
title: 'Fill in your Okta SAML application details',
},
},
mainHeaderTitle: 'Configure Okta Workforce',
},
},
missingManageEnterpriseConnectionsPermission: {
subtitle: "Contact your organization's administrator to upgrade your permissions.",
title: 'You do not have permission to manage Single Sign-on (SSO)',
},
navbar: {
title: 'Configure Single Sign-On (SSO)',
},
organizationDomainsStep: {
domainCard: {
badge__unverified: 'Unverified',
badge__verified: 'Verified',
removeButtonTooltip__lastVerifiedDomain: 'At least one verified domain is required to set up SSO.',
removeButtonTooltip__lastVerifiedDomainActive: 'At least one verified domain is required to keep SSO enabled.',
txtRecord: {
hostLabel: 'Host / Name',
instructions: "Add this TXT record to your DNS provider. We'll verify automatically once the record is live.",
typeLabel: 'Type',
valueLabel: 'Value',
},
verifiedAtLabel: "Verified on {{ date | shortDate('en-US') }}",
},
domainSuggestion: {
formButtonPrimary__add: 'Add {{domain}}',
messageLabel: 'Your email uses {{domain}}. Do you want to add it?',
},
formButtonPrimary__add: 'Add',
formFieldInputPlaceholder__domain: 'Type your domain here and click add to start',
formFieldLabel__domain: 'Domains',
removeDomainDialog: {
cancelButton: 'Cancel',
removeButton: 'Remove domain',
subtitle__active:
"You're about to remove {{domain}} from this enterprise connection. Users won't be able to sign-in with {{domain}} anymore.",
subtitle__inactive: "You're about to remove {{domain}} from this enterprise connection.",
title: 'Removing domain',
},
subtitle: 'Add and verify ownership of the domains your organization uses to sign in.',
title: 'Add SSO domains',
},
resetConnectionDialog: {
cancelButton: 'Cancel',
confirmationFieldLabel: 'Type "{{name}}" below to continue',
confirmationFieldPlaceholder: '{{name}}',
resetButton: 'Reset connection',
subtitle:
'Are you sure you want to reset the connection? This action is irreversible and you will have to configure all steps again',
title: 'Reset connection',
},
selectProviderStep: {
saml: {
customSaml: 'Custom SAML Provider',
google: 'Google Workspace',
groupLabel: 'SAML',
microsoft: 'Microsoft Entra (formerly AD)',
okta: 'Okta Workforce',
},
subtitle: 'We’ll guide you through the detailed setup process next.',
title: 'Select your identity provider',
warning: 'Once a provider is selected you cannot change again until the configuration is over',
},
testConfigurationStep: {
error__noSuccessfulTestRun:
'You need at least one successful test run before you can continue. Generate a test SSO URL and complete the sign-in flow.',
subtitle: 'Authenticate using the test SSO URL to verify you configured the connection correctly.',
testResults: {
actionLabel__refresh: 'Refresh logs',
empty: {
subtitle: 'Use the button above to start running tests',
title: 'No test results',
},
polling: 'Waiting for the test run to complete…',
status__failed: 'Failed',
status__pending: 'Pending',
status__success: 'Success',
title: 'Your test results',
},
testRunDetails: {
howToFix: {
actionLabel__viewDocumentation: 'View documentation',
oauth_access_denied: {
description:
"This error occurs when the user clicked Cancel or Deny on the OAuth provider's authorization screen, or the provider rejected the authorization request. Verify that the OAuth application credentials (Client ID and Client Secret) are correctly configured.",
},
oauth_fetch_user_error: {
intro: 'To fix this error, follow these steps:',
step1:
'Verify that the OAuth scopes configured in your connection settings include the necessary permissions to read user profile information.',
step2: 'Ensure that the user info endpoint URL is correctly configured.',
},
oauth_token_exchange_error: {
description:
"Verify that your OAuth application's Client ID and Client Secret are correctly configured and match the credentials from your OAuth provider's dashboard.",
},
saml_email_address_domain_mismatch: {
description:
'Verify that the user is signing in with an email address that matches one of the allowed domains for this connection. If you need to add additional domains, update the allowed domains in your connection settings.',
},
saml_response_relaystate_missing: {
description:
'Check that your identity provider is correctly returning the RelayState parameter that was sent in the original request.',
},
saml_user_attribute_missing: {
intro: 'To fix this error, follow these steps:',
step1: "Access your identity provider's configuration dashboard.",
step2: "Navigate to your application's SAML settings or attribute mapping configuration.",
step3: "Ensure that the 'mail' attribute is properly mapped to the user's email address field.",
},
sectionTitle: 'How to fix',
},
parsedUserInfo: {
email: 'Email',
firstName: 'First name',
sectionTitle: 'Parsed user info',
},
runDetails: {
actionLabel__copied: 'Copied',
actionLabel__copy: 'Copy message',
errorCode: 'Error code',
fullMessage: 'Full message',
sectionTitle: 'Run details',
status: 'Status',
timestamp: 'Timestamp',
},
title: 'Test run',
},
testUrl: {
actionLabel__open: 'Open test URL',
},
title: 'Test your SSO connection',
},
},
createOrganization: {
formButtonSubmit: 'Create organization',
invitePage: {
formButtonReset: 'Skip',
},
title: 'Create organization',
},
dates: {
lastDay: "Yesterday at {{ date | timeString('en-US') }}",
next6Days: "{{ date | weekday('en-US','long') }} at {{ date | timeString('en-US') }}",
nextDay: "Tomorrow at {{ date | timeString('en-US') }}",
numeric: "{{ date | numeric('en-US') }}",
previous6Days: "Last {{ date | weekday('en-US','long') }} at {{ date | timeString('en-US') }}",
sameDay: "Today at {{ date | timeString('en-US') }}",
},
dividerText: 'or',
footerActionLink__alternativePhoneCodeProvider: 'Send code via SMS instead',
footerActionLink__useAnotherMethod: 'Use another method',
footerPageLink__help: 'Help',
footerPageLink__privacy: 'Privacy',
footerPageLink__terms: 'Terms',
formButtonPrimary: 'Continue',
formButtonPrimary__verify: 'Verify',
formFieldAction__forgotPassword: 'Forgot password?',
formFieldError__matchingPasswords: 'Passwords match.',
formFieldError__notMatchingPasswords: "Passwords don't match.",
formFieldError__verificationLinkExpired: 'The verification link expired. Please request a new link.',
formFieldHintText__optional: 'Optional',
formFieldHintText__slug: 'A slug is a human-readable ID that must be unique. It’s often used in URLs.',
formFieldInputPlaceholder__apiKeyDescription: 'Explain why you’re generating this key',
formFieldInputPlaceholder__apiKeyExpirationDate: 'Select date',
formFieldInputPlaceholder__apiKeyName: 'Enter your secret key name',
formFieldInputPlaceholder__backupCode: 'Enter backup code',
formFieldInputPlaceholder__confirmDeletionUserAccount: 'Delete account',
formFieldInputPlaceholder__emailAddress: 'Enter your email address',
formFieldInputPlaceholder__emailAddress_username: 'Enter email or username',
formFieldInputPlaceholder__emailAddresses: 'example@email.com, example2@email.com',
formFieldInputPlaceholder__firstName: 'First name',
formFieldInputPlaceholder__lastName: 'Last name',
formFieldInputPlaceholder__organizationDomain: 'example.com',
formFieldInputPlaceholder__organizationDomainEmailAddress: 'you@example.com',
formFieldInputPlaceholder__organizationName: 'Organization name',
formFieldInputPlaceholder__organizationSlug: 'my-org',
formFieldInputPlaceholder__password: 'Enter your password',
formFieldInputPlaceholder__phoneNumber: 'Enter your phone number',
formFieldInputPlaceholder__signUpPassword: 'Create a password',
formFieldInputPlaceholder__username: 'Enter your username',
formFieldInput__emailAddress_format: 'Example format: name@example.com',
formFieldLabel__apiKey: 'API key',
formFieldLabel__apiKeyDescription: 'Description',
formFieldLabel__apiKeyExpiration: 'Expiration',
formFieldLabel__apiKeyName: 'Secret key name',
formFieldLabel__automaticInvitations: 'Enable automatic invitations for this domain',
formFieldLabel__backupCode: 'Backup code',
formFieldLabel__confirmDeletion: 'Confirmation',
formFieldLabel__confirmPassword: 'Confirm password',
formFieldLabel__currentPassword: 'Current password',
formFieldLabel__emailAddress: 'Email address',
formFieldLabel__emailAddress_username: 'Email address or username',
formFieldLabel__emailAddresses: 'Email addresses',
formFieldLabel__firstName: 'First name',
formFieldLabel__lastName: 'Last name',
formFieldLabel__newPassword: 'New password',
formFieldLabel__organizationDomain: 'Domain',
formFieldLabel__organizationDomainDeletePending: 'Delete pending invitations and suggestions',
formFieldLabel__organizationDomainEmailAddress: 'Verification email address',
formFieldLabel__organizationDomainEmailAddressDescription:
'Enter an email address under this domain to receive a code and verify this domain.',
formFieldLabel__organizationName: 'Name',
formFieldLabel__organizationSlug: 'Slug',
formFieldLabel__passkeyName: 'Name of passkey',
formFieldLabel__password: 'Password',
formFieldLabel__phoneNumber: 'Phone number',
formFieldLabel__role: 'Role',
formFieldLabel__signOutOfOtherSessions: 'Sign out of all other devices',
formFieldLabel__username: 'Username',
identityPreviewEditButton__emailAddress: 'Edit email address',
identityPreviewEditButton__identifier: 'Edit identifier',
identityPreviewEditButton__phoneNumber: 'Edit phone number',
impersonationFab: {
action__signOut: 'Sign out',
title: 'Signed in as {{identifier}}',
},
lastAuthenticationStrategy: 'Last used',
maintenanceMode:
"We are currently undergoing maintenance, but don't worry, it shouldn't take more than a few minutes.",
membershipRole__admin: 'Admin',
membershipRole__basicMember: 'Member',
membershipRole__guestMember: 'Guest',
oauthConsent: {
action__allow: 'Allow',
action__deny: 'Deny',
offlineAccessNotice: " You'll stay signed in until you sign out or revoke access.",
redirectNotice: 'If you allow access, this app will redirect you to {{domainAction}}.',
redirectUriModal: {
subtitle: 'Make sure you trust {{applicationName}} and that this URL belongs to {{applicationName}}.',
title: 'Redirect URL',
},
scopeList: {
title: 'This will allow {{applicationName}} access to:',
},
subtitle: 'wants to access {{applicationName}} on behalf of {{identifier}}',
viewFullUrl: 'View full URL',
warning:
'Make sure that you trust {{applicationName}} ({{domainAction}}). You may be sharing sensitive data with this site or app.',
},
organizationList: {
action__createOrganization: 'Create organization',
action__invitationAccept: 'Join',
action__suggestionsAccept: 'Request to join',
createOrganization: 'Create Organization',
invitationAcceptedLabel: 'Joined',
subtitle: 'to continue to {{applicationName}}',
suggestionsAcceptedLabel: 'Pending approval',
title: 'Choose an account',
titleWithoutPersonal: 'Choose an organization',
},
organizationProfile: {
apiKeysPage: {
title: 'API keys',
},
badge__automaticInvitation: 'Automatic invitations',
badge__automaticSuggestion: 'Automatic suggestions',
badge__enterpriseSso: 'Enterprise SSO',
badge__manualInvitation: 'No automatic enrollment',
badge__unverified: 'Unverified',
billingPage: {
paymentHistorySection: {
empty: 'No payment history',
notFound: 'Payment attempt not found',
tableHeader__amount: 'Amount',
tableHeader__date: 'Date',
tableHeader__status: 'Status',
},
paymentMethodsSection: {
actionLabel__default: 'Make default',
actionLabel__remove: 'Remove',
add: 'Add new payment method',
addSubtitle: 'Add a new payment method to your account.',
cancelButton: 'Cancel',
formButtonPrimary__add: 'Add Payment Method',
formButtonPrimary__pay: 'Pay {{amount}}',
payWithTestCardButton: 'Pay with test card',
removeMethod: {
messageLine1: '{{identifier}} will be removed from this account.',
messageLine2:
'You will no longer be able to use this payment method and any recurring subscriptions dependent on it will no longer work.',
successMessage: '{{paymentMethod}} has been removed from your account.',
title: 'Remove payment method',
},
title: 'Payment methods',
},
start: {
headerTitle__payments: 'Payments',
headerTitle__plans: 'Plans',
headerTitle__statements: 'Statements',
headerTitle__subscriptions: 'Subscription',
},
statementsSection: {
empty: 'No statements to display',
itemCaption__paidForPlan: 'Paid for {{plan}} {{period}} plan',
itemCaption__payerCredit: 'Credit from account balance',
itemCaption__proratedCredit: 'Prorated credit for partial usage of previous subscription',
itemCaption__subscribedAndPaidForPlan: 'Subscribed and paid for {{plan}} {{period}} plan',
notFound: 'Statement not found',
tableHeader__amount: 'Amount',
tableHeader__date: 'Date',
title: 'Statements',
totalPaid: 'Total paid',
},
subscriptionsListSection: {
actionLabel__manageSubscription: 'Manage',
actionLabel__newSubscription: 'Subscribe to a plan',
actionLabel__switchPlan: 'Switch plans',
includedSeatsUsage: '{{includedSeats}} seats included',
overview: 'Overview',
paidSeatsUsage: '{{seatsQuantity}} seats x {{amount}}',
seatLimit: 'Up to {{seatLimit}} seats',
seatLimitAndIncludedSeats: 'Up to {{seatLimit}} seats ({{includedSeats}} included)',
tableHeader__edit: 'Edit',
tableHeader__plan: 'Plan',
tableHeader__startDate: 'Start date',
title: 'Subscription',
},
subscriptionsSection: {
actionLabel__default: 'Manage',
},
switchPlansSection: {
title: 'Switch plans',
},
title: 'Billing',
},
createDomainPage: {
subtitle:
'Add the domain to verify. Users with email addresses at this domain can join the organization automatically or request to join.',
title: 'Add domain',
},
invitePage: {
detailsTitle__inviteFailed:
'The invitations could not be sent. There are already pending invitations for the following email addresses: {{email_addresses}}.',
formButtonPrimary__continue: 'Send invitations',
formButtonPrimary__purchaseSeats: 'Purchase additional seats',
selectDropdown__role: 'Select role',
subtitle: 'Enter or paste one or more email addresses, separated by spaces or commas.',
successMessage: 'Invitations successfully sent',
title: 'Invite new members',
},
membersPage: {
action__invite: 'Invite',
action__search: 'Search',
activeMembersTab: {
menuAction__remove: 'Remove member',
tableHeader__actions: 'Actions',
tableHeader__joined: 'Joined',
tableHeader__role: 'Role',
tableHeader__user: 'User',
},
alerts: {
roleSetMigrationInProgress: {
subtitle: 'We are updating the available roles. Once that’s done, you’ll be able to update roles again.',
title: 'Roles are temporarily locked',
},