-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathzh-CN.ts
933 lines (931 loc) · 37.1 KB
/
zh-CN.ts
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
/*
* =====================================================================================
* 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/types';
export const zhCN: LocalizationResource = {
locale: 'zh-CN',
__experimental_commerce: {
billedAnnually: undefined,
free: undefined,
getStarted: undefined,
manageMembership: undefined,
month: undefined,
switchPlan: undefined,
},
backButton: '返回',
badge__currentPlan: undefined,
badge__default: '默认',
badge__otherImpersonatorDevice: '其他模拟器设备',
badge__primary: '主要',
badge__requiresAction: '需要操作',
badge__thisDevice: '此设备',
badge__unverified: '未验证',
badge__userDevice: '用户设备',
badge__you: '您',
createOrganization: {
formButtonSubmit: '创建组织',
invitePage: {
formButtonReset: '跳过',
},
title: '创建组织',
},
dates: {
lastDay: "昨天{{ date | timeString('zh-CN') }}",
next6Days: "{{ date | weekday('zh-CN','long') }} {{ date | timeString('zh-CN') }}",
nextDay: "明天{{ date | timeString('zh-CN') }}",
numeric: "{{ date | numeric('zh-CN') }}",
previous6Days: "上周{{ date | weekday('zh-CN','long') }} {{ date | timeString('zh-CN') }}",
sameDay: "今天{{ date | timeString('zh-CN') }}",
},
dividerText: '或者',
footerActionLink__useAnotherMethod: '使用另一种方法',
footerPageLink__help: '帮助',
footerPageLink__privacy: '隐私',
footerPageLink__terms: '条款',
formButtonPrimary: '继续',
formButtonPrimary__verify: '验证',
formFieldAction__forgotPassword: '忘记密码?',
formFieldError__matchingPasswords: '密码匹配。',
formFieldError__notMatchingPasswords: '密码不匹配。',
formFieldError__verificationLinkExpired: '验证链接已过期。请申请新的链接。',
formFieldHintText__optional: '选填',
formFieldHintText__slug: 'Slug 是一个人类可读的 ID,它必须是唯一的。它通常用于 URL 中。',
formFieldInputPlaceholder__backupCode: undefined,
formFieldInputPlaceholder__confirmDeletionUserAccount: '删除帐户',
formFieldInputPlaceholder__emailAddress: undefined,
formFieldInputPlaceholder__emailAddress_username: undefined,
formFieldInputPlaceholder__emailAddresses: '输入或粘贴一个或多个电子邮件地址,用空格或逗号分隔',
formFieldInputPlaceholder__firstName: undefined,
formFieldInputPlaceholder__lastName: undefined,
formFieldInputPlaceholder__organizationDomain: undefined,
formFieldInputPlaceholder__organizationDomainEmailAddress: undefined,
formFieldInputPlaceholder__organizationName: undefined,
formFieldInputPlaceholder__organizationSlug: '我的组织',
formFieldInputPlaceholder__password: undefined,
formFieldInputPlaceholder__phoneNumber: undefined,
formFieldInputPlaceholder__username: undefined,
formFieldLabel__automaticInvitations: '为此域名启用自动邀请',
formFieldLabel__backupCode: '备用代码',
formFieldLabel__confirmDeletion: '确认',
formFieldLabel__confirmPassword: '确认密码',
formFieldLabel__currentPassword: '当前密码',
formFieldLabel__emailAddress: '电子邮件地址',
formFieldLabel__emailAddress_username: '电子邮件地址或用户名',
formFieldLabel__emailAddresses: '电子邮件地址',
formFieldLabel__firstName: '名字',
formFieldLabel__lastName: '姓氏',
formFieldLabel__newPassword: '新密码',
formFieldLabel__organizationDomain: '域名',
formFieldLabel__organizationDomainDeletePending: '删除待处理的邀请和建议',
formFieldLabel__organizationDomainEmailAddress: '验证邮箱地址',
formFieldLabel__organizationDomainEmailAddressDescription: '输入此域名下的一个邮箱地址以接收验证码并验证此域名。',
formFieldLabel__organizationName: '组织名称',
formFieldLabel__organizationSlug: 'URL 简称',
formFieldLabel__passkeyName: undefined,
formFieldLabel__password: '密码',
formFieldLabel__phoneNumber: '电话号码',
formFieldLabel__role: '角色',
formFieldLabel__signOutOfOtherSessions: '登出所有其他设备',
formFieldLabel__username: '用户名',
impersonationFab: {
action__signOut: '退出登录',
title: '以 {{identifier}} 登录',
},
maintenanceMode: undefined,
membershipRole__admin: '管理员',
membershipRole__basicMember: '成员',
membershipRole__guestMember: '访客',
organizationList: {
action__createOrganization: '创建组织',
action__invitationAccept: '加入',
action__suggestionsAccept: '请求加入',
createOrganization: '创建组织',
invitationAcceptedLabel: '已加入',
subtitle: '以继续使用 {{applicationName}}',
suggestionsAcceptedLabel: '等待批准',
title: '选择一个账户',
titleWithoutPersonal: '选择一个组织',
},
organizationProfile: {
badge__automaticInvitation: '自动邀请',
badge__automaticSuggestion: '自动建议',
badge__manualInvitation: '无自动注册',
badge__unverified: '未验证',
createDomainPage: {
subtitle: '添加域名以进行验证。具有此域名电子邮件地址的用户可以自动加入组织或请求加入。',
title: '添加域名',
},
invitePage: {
detailsTitle__inviteFailed: '邀请无法发送。修复以下问题然后重试:',
formButtonPrimary__continue: '发送邀请',
selectDropdown__role: '选择角色',
subtitle: '邀请新成员加入此组织',
successMessage: '邀请成功发送',
title: '邀请成员',
},
membersPage: {
action__invite: '邀请',
action__search: undefined,
activeMembersTab: {
menuAction__remove: '移除成员',
tableHeader__actions: undefined,
tableHeader__joined: '加入',
tableHeader__role: '角色',
tableHeader__user: '用户',
},
detailsTitle__emptyRow: '没有可显示的成员',
invitationsTab: {
autoInvitations: {
headerSubtitle:
'通过将电子邮件域名与您的组织连接来邀请用户。任何使用匹配电子邮件域名注册的人都可以随时加入组织。',
headerTitle: '自动邀请',
primaryButton: '管理已验证域名',
},
table__emptyRow: '没有可显示的邀请',
},
invitedMembersTab: {
menuAction__revoke: '撤销邀请',
tableHeader__invited: '已邀请',
},
requestsTab: {
autoSuggestions: {
headerSubtitle: '使用匹配电子邮件域名注册的用户将能够看到请求加入您组织的建议。',
headerTitle: '自动建议',
primaryButton: '管理已验证域名',
},
menuAction__approve: '批准',
menuAction__reject: '拒绝',
tableHeader__requested: '已请求访问',
table__emptyRow: '没有可显示的请求',
},
start: {
headerTitle__invitations: '邀请',
headerTitle__members: '成员',
headerTitle__requests: '请求',
},
},
navbar: {
description: '管理您的组织。',
general: '常规',
members: '成员',
title: '组织',
},
profilePage: {
dangerSection: {
deleteOrganization: {
actionDescription: '在下方输入 "{{organizationName}}" 以继续。',
messageLine1: '您确定要删除此组织吗?',
messageLine2: '此操作是永久性的且无法撤销。',
successMessage: '您已删除该组织。',
title: '删除组织',
},
leaveOrganization: {
actionDescription: '在下方输入 "{{organizationName}}" 以继续。',
messageLine1: '您确定要离开此组织吗?您将失去对此组织及其应用程序的访问权限。',
messageLine2: '此操作是永久性的且无法撤销。',
successMessage: '您已离开了组织。',
title: '离开组织',
},
title: '危险',
},
domainSection: {
menuAction__manage: '管理',
menuAction__remove: '删除',
menuAction__verify: '验证',
primaryButton: '添加域名',
subtitle: '允许用户根据已验证的电子邮件域名自动加入组织或请求加入。',
title: '已验证域名',
},
successMessage: '组织信息已更新。',
title: '组织简介',
},
removeDomainPage: {
messageLine1: '电子邮件域名 {{domain}} 将被删除。',
messageLine2: '此后,用户将无法自动加入组织。',
successMessage: '{{domain}} 已被删除。',
title: '删除域名',
},
start: {
headerTitle__general: '常规',
headerTitle__members: '成员',
profileSection: {
primaryButton: '更新组织简介',
title: '组织简介',
uploadAction__title: '标志',
},
},
verifiedDomainPage: {
dangerTab: {
calloutInfoLabel: '删除此域名将影响受邀用户。',
removeDomainActionLabel__remove: '删除域名',
removeDomainSubtitle: '从您的已验证域名中删除此域名',
removeDomainTitle: '删除域名',
},
enrollmentTab: {
automaticInvitationOption__description: '用户在注册时会自动收到加入组织的邀请,并且可以随时加入。',
automaticInvitationOption__label: '自动邀请',
automaticSuggestionOption__description: '用户会收到请求加入的建议,但在加入组织之前必须得到管理员的批准。',
automaticSuggestionOption__label: '自动建议',
calloutInfoLabel: '更改注册模式只会影响新用户。',
calloutInvitationCountLabel: '已发送给用户的待处理邀请:{{count}}',
calloutSuggestionCountLabel: '已发送给用户的待处理建议:{{count}}',
manualInvitationOption__description: '用户只能被手动邀请加入组织。',
manualInvitationOption__label: '无自动注册',
subtitle: '选择此域名的用户如何加入组织。',
},
start: {
headerTitle__danger: '危险',
headerTitle__enrollment: '注册选项',
},
subtitle: '域名 {{domain}} 现已验证。继续选择注册模式。',
title: '更新 {{domain}}',
},
verifyDomainPage: {
formSubtitle: '输入发送到您邮箱地址的验证码',
formTitle: '验证码',
resendButton: '未收到验证码?重新发送',
subtitle: '域名 {{domainName}} 需要通过电子邮件进行验证。',
subtitleVerificationCodeScreen: '验证码已发送到 {{emailAddress}}。输入验证码以继续。',
title: '验证域名',
},
},
organizationSwitcher: {
action__createOrganization: '创建组织',
action__invitationAccept: '加入',
action__manageOrganization: '管理组织',
action__suggestionsAccept: '请求加入',
notSelected: '未选择组织',
personalWorkspace: '个人工作区',
suggestionsAcceptedLabel: '等待批准',
},
paginationButton__next: '下一页',
paginationButton__previous: '上一页',
paginationRowText__displaying: '显示',
paginationRowText__of: '的',
reverification: {
alternativeMethods: {
actionLink: undefined,
actionText: undefined,
blockButton__backupCode: undefined,
blockButton__emailCode: undefined,
blockButton__passkey: undefined,
blockButton__password: undefined,
blockButton__phoneCode: undefined,
blockButton__totp: undefined,
getHelp: {
blockButton__emailSupport: undefined,
content: undefined,
title: undefined,
},
subtitle: undefined,
title: undefined,
},
backupCodeMfa: {
subtitle: undefined,
title: undefined,
},
emailCode: {
formTitle: undefined,
resendButton: undefined,
subtitle: undefined,
title: undefined,
},
noAvailableMethods: {
message: undefined,
subtitle: undefined,
title: undefined,
},
passkey: {
blockButton__passkey: undefined,
subtitle: undefined,
title: undefined,
},
password: {
actionLink: undefined,
subtitle: undefined,
title: undefined,
},
phoneCode: {
formTitle: undefined,
resendButton: undefined,
subtitle: undefined,
title: undefined,
},
phoneCodeMfa: {
formTitle: undefined,
resendButton: undefined,
subtitle: undefined,
title: undefined,
},
totpMfa: {
formTitle: undefined,
subtitle: undefined,
title: undefined,
},
},
signIn: {
accountSwitcher: {
action__addAccount: '添加账户',
action__signOutAll: '退出所有账户',
subtitle: '选择您要继续使用的账户。',
title: '选择一个账户',
},
alternativeMethods: {
actionLink: '获取帮助',
actionText: '没有这些?',
blockButton__backupCode: '使用备用代码',
blockButton__emailCode: '电子邮件验证码到 {{identifier}}',
blockButton__emailLink: '电子邮件链接到 {{identifier}}',
blockButton__passkey: undefined,
blockButton__password: '使用您的密码登录',
blockButton__phoneCode: '发送短信代码到 {{identifier}}',
blockButton__totp: '使用您的验证应用程序',
getHelp: {
blockButton__emailSupport: '邮件支持',
content: '如果您在登录账户时遇到困难,请给我们发送电子邮件,我们将尽快让您恢复访问。',
title: '获取帮助',
},
subtitle: '遇到问题?您可以使用以下任何方法登录。',
title: '使用其他方法',
},
backupCodeMfa: {
subtitle: '继续使用 {{applicationName}}',
title: '输入备用代码',
},
emailCode: {
formTitle: '验证码',
resendButton: '重新发送验证码',
subtitle: '继续使用 {{applicationName}}',
title: '查看您的电子邮件',
},
emailLink: {
clientMismatch: {
subtitle: undefined,
title: undefined,
},
expired: {
subtitle: '返回原始标签页继续。',
title: '此验证链接已过期',
},
failed: {
subtitle: '返回原始标签页继续。',
title: '此验证链接无效',
},
formSubtitle: '使用发送到您的电子邮件的验证链接',
formTitle: '验证链接',
loading: {
subtitle: '即将为您重定向',
title: '正在登录...',
},
resendButton: '重新发送链接',
subtitle: '继续使用 {{applicationName}}',
title: '查看您的电子邮件',
unusedTab: {
title: '您可以关闭此标签页',
},
verified: {
subtitle: '即将为您重定向',
title: '成功登录',
},
verifiedSwitchTab: {
subtitle: '返回原始标签页继续',
subtitleNewTab: '返回新打开的标签页继续',
titleNewTab: '在其他标签页上登录',
},
},
forgotPassword: {
formTitle: '重置密码代码',
resendButton: '重新发送代码',
subtitle: '以重置您的密码',
subtitle_email: '首先,输入发送到您的电子邮件 ID 的代码',
subtitle_phone: '首先,输入发送到您手机的代码',
title: '重置密码',
},
forgotPasswordAlternativeMethods: {
blockButton__resetPassword: '重置密码',
label__alternativeMethods: '或者,使用其他方式登录。',
title: '忘记密码?',
},
noAvailableMethods: {
message: '无法继续登录。没有可用的身份验证因素。',
subtitle: '出现错误',
title: '无法登录',
},
passkey: {
subtitle: undefined,
title: undefined,
},
password: {
actionLink: '使用其他方法',
subtitle: '继续使用 {{applicationName}}',
title: '输入您的密码',
},
passwordPwned: {
title: undefined,
},
phoneCode: {
formTitle: '验证码',
resendButton: '重新发送验证码',
subtitle: '继续使用 {{applicationName}}',
title: '检查手机短信',
},
phoneCodeMfa: {
formTitle: '验证码',
resendButton: '重新发送验证码',
subtitle: '请继续输入发送到您手机的验证码。',
title: '检查手机短信',
},
resetPassword: {
formButtonPrimary: '重置密码',
requiredMessage: '出于安全原因,需要重置您的密码。',
successMessage: '您的密码已成功更改。正在为您登录,请稍等。',
title: '重置密码',
},
resetPasswordMfa: {
detailsLabel: '我们需要验证您的身份才能重置您的密码。',
},
start: {
actionLink: '注册',
actionLink__join_waitlist: undefined,
actionLink__use_email: '使用电子邮件',
actionLink__use_email_username: '使用电子邮件或用户名',
actionLink__use_passkey: undefined,
actionLink__use_phone: '使用电话',
actionLink__use_username: '使用用户名',
actionText: '还没有账户?',
actionText__join_waitlist: undefined,
subtitle: '继续使用 {{applicationName}}',
subtitleCombined: undefined,
title: '登录',
titleCombined: undefined,
},
totpMfa: {
formTitle: '验证码',
subtitle: '请继续输入由您的身份验证应用生成的验证码。',
title: '两步验证',
},
},
signInEnterPasswordTitle: '输入您的密码',
signUp: {
continue: {
actionLink: '登录',
actionText: '已经有账户了?',
subtitle: '继续使用 {{applicationName}}',
title: '填写缺少的字段',
},
emailCode: {
formSubtitle: '输入发送到您的电子邮件地址的验证码',
formTitle: '验证码',
resendButton: '重新发送验证码',
subtitle: '继续使用 {{applicationName}}',
title: '验证您的电子邮件',
},
emailLink: {
clientMismatch: {
subtitle: undefined,
title: undefined,
},
formSubtitle: '使用发送到您的电子邮件地址的验证链接',
formTitle: '验证链接',
loading: {
title: '正在注册...',
},
resendButton: '重新发送链接',
subtitle: '继续使用 {{applicationName}}',
title: '验证您的电子邮件',
verified: {
title: '成功注册',
},
verifiedSwitchTab: {
subtitle: '返回新打开的标签页继续',
subtitleNewTab: '返回上一个标签页继续',
title: '成功验证电子邮件',
},
},
legalConsent: {
checkbox: {
label__onlyPrivacyPolicy: undefined,
label__onlyTermsOfService: undefined,
label__termsOfServiceAndPrivacyPolicy: undefined,
},
continue: {
subtitle: undefined,
title: undefined,
},
},
phoneCode: {
formSubtitle: '输入发送到您的电话号码的验证码',
formTitle: '验证码',
resendButton: '重新发送验证码',
subtitle: '继续使用 {{applicationName}}',
title: '验证您的电话',
},
restrictedAccess: {
actionLink: undefined,
actionText: undefined,
blockButton__emailSupport: undefined,
blockButton__joinWaitlist: undefined,
subtitle: undefined,
subtitleWaitlist: undefined,
title: undefined,
},
start: {
actionLink: '登录',
actionLink__use_email: undefined,
actionLink__use_phone: undefined,
actionText: '已经有账户了?',
subtitle: '继续使用 {{applicationName}}',
subtitleCombined: '继续使用 {{applicationName}}',
title: '创建您的账户',
titleCombined: '创建您的账户',
},
},
socialButtonsBlockButton: '使用 {{provider|titleize}} 登录',
socialButtonsBlockButtonManyInView: undefined,
unstable__errors: {
already_a_member_in_organization: undefined,
captcha_invalid: '由于安全验证失败,注册未成功。请刷新页面重试或联系支持获取更多帮助。',
captcha_unavailable: '注册失败,原因是未通过机器人验证。请刷新页面重试或联系支持团队以获取更多帮助。',
form_code_incorrect: undefined,
form_identifier_exists__email_address: undefined,
form_identifier_exists__phone_number: undefined,
form_identifier_exists__username: undefined,
form_identifier_not_found: undefined,
form_param_format_invalid: undefined,
form_param_format_invalid__email_address: '邮箱地址必须是有效的邮箱格式。',
form_param_format_invalid__phone_number: '电话号码必须符合有效的国际格式。',
form_param_max_length_exceeded__first_name: '名字长度不得超过256个字符。',
form_param_max_length_exceeded__last_name: '姓氏长度不得超过256个字符。',
form_param_max_length_exceeded__name: '姓名长度不得超过256个字符。',
form_param_nil: undefined,
form_param_value_invalid: undefined,
form_password_incorrect: undefined,
form_password_length_too_short: undefined,
form_password_not_strong_enough: '您的密码强度不够。',
form_password_pwned: '这个密码在数据泄露中被发现,不能使用,请换一个密码试试。',
form_password_pwned__sign_in: undefined,
form_password_size_in_bytes_exceeded: '您的密码超过了允许的最大字节数,请缩短它或去掉一些特殊字符。',
form_password_validation_failed: '密码错误',
form_username_invalid_character: undefined,
form_username_invalid_length: undefined,
identification_deletion_failed: '您无法删除最后一个身份标识。',
not_allowed_access: undefined,
organization_domain_blocked: undefined,
organization_domain_common: undefined,
organization_domain_exists_for_enterprise_connection: undefined,
organization_membership_quota_exceeded: undefined,
organization_minimum_permissions_needed: undefined,
passkey_already_exists: undefined,
passkey_not_supported: undefined,
passkey_pa_not_supported: undefined,
passkey_registration_cancelled: undefined,
passkey_retrieval_cancelled: undefined,
passwordComplexity: {
maximumLength: '少于{{length}}个字符',
minimumLength: '{{length}}个或更多字符',
requireLowercase: '一个小写字母',
requireNumbers: '一个数字',
requireSpecialCharacter: '一个特殊字符',
requireUppercase: '一个大写字母',
sentencePrefix: '您的密码必须包含',
},
phone_number_exists: '该电话号码已被使用,请尝试其他号码。',
web3_missing_identifier: undefined,
zxcvbn: {
couldBeStronger: '您的密码可以用,但可以更强。试着添加更多字符。',
goodPassword: '做得好。这是一个优秀的密码。',
notEnough: '您的密码强度不够。',
suggestions: {
allUppercase: '大写一些,但不是所有的字母。',
anotherWord: '添加更不常见的更多单词。',
associatedYears: '避免与你有关的年份。',
capitalization: '大写不仅仅是第一个字母。',
dates: '避免与你有关的日期和年份。',
l33t: '避免预测的字母替换,如"@"代替"a"。',
longerKeyboardPattern: '使用更长的键盘模式,并多次改变打字方向。',
noNeed: '你可以创建强密码,而无需使用符号,数字或大写字母。',
pwned: '如果您在其他地方使用此密码,您应该更改它。',
recentYears: '避免近年来。',
repeated: '避免重复的单词和字符。',
reverseWords: '避免常用词的反向拼写。',
sequences: '避免常见字符序列。',
useWords: '使用多个单词,但避免常见短语。',
},
warnings: {
common: '这是一个常用的密码。',
commonNames: '常见的名字和姓氏易被猜到。',
dates: '日期易被猜到。',
extendedRepeat: '像"abcabcabc"这样的重复字符模式易被猜到。',
keyPattern: '短键盘模式易被猜到。',
namesByThemselves: '单个名字或姓氏易被猜到。',
pwned: '您的密码在互联网上的数据泄露中被暴露。',
recentYears: '近年来易被猜到。',
sequences: '像"abc"这样的常见字符序列易被猜到。',
similarToCommon: '这个密码和常用密码相似。',
simpleRepeat: '像"aaa"这样的重复字符易被猜到。',
straightRow: '键盘上的直行键易被猜到。',
topHundred: '这是一个频繁使用的密码。',
topTen: '这是一个大量使用的密码。',
userInputs: '不应该有任何个人或页面相关的数据。',
wordByItself: '单个单词易被猜到。',
},
},
},
userButton: {
action__addAccount: '添加账户',
action__manageAccount: '管理账户',
action__signOut: '退出登录',
action__signOutAll: '退出所有账户',
},
userProfile: {
__experimental_billingPage: {
start: {
headerTitle__invoices: undefined,
headerTitle__paymentSources: undefined,
headerTitle__plans: undefined,
},
title: undefined,
},
backupCodePage: {
actionLabel__copied: '已复制!',
actionLabel__copy: '复制全部',
actionLabel__download: '下载 .txt',
actionLabel__print: '打印',
infoText1: '将为此账户启用备份代码。',
infoText2: '保密并安全存储备份代码。如果您怀疑它们已经泄露,您可以重新生成备份代码。',
subtitle__codelist: '安全存储并保守秘密。',
successMessage:
'现在已启用备份代码。如果您失去了验证设备的访问权限,您可以使用其中之一登录您的账户。每个代码只能使用一次。',
successSubtitle: '如果您失去了验证设备的访问权限,您可以使用其中之一登录您的账户。',
title: '添加备份代码验证',
title__codelist: '备份代码',
},
connectedAccountPage: {
formHint: '选择一个供应商来连接您的账户。',
formHint__noAccounts: '没有可用的外部账户供应商。',
removeResource: {
messageLine1: '{{identifier}} 将从此账户中被移除。',
messageLine2: '您将无法再使用这个已连接的账户,任何依赖的功能将不再工作。',
successMessage: '{{connectedAccount}} 已从您的账户中移除。',
title: '移除已连接的账户',
},
socialButtonsBlockButton: '连接 {{provider|titleize}} 账户',
successMessage: '供应商已被添加到您的账户',
title: '添加已连接的账户',
},
deletePage: {
actionDescription: '在下方输入 "Delete account" 以继续。',
confirm: 'Delete account',
messageLine1: '您确定要删除您的账户吗?',
messageLine2: '此操作是永久且不可逆的。',
title: '删除账户',
},
emailAddressPage: {
emailCode: {
formHint: '一封含有验证码的邮件将会被发送到这个电子邮件地址。',
formSubtitle: '输入发送到 {{identifier}} 的验证码',
formTitle: '验证码',
resendButton: '重发验证码',
successMessage: '电子邮件 {{identifier}} 已被添加到您的账户。',
},
emailLink: {
formHint: '一封含有验证链接的邮件将会被发送到这个电子邮件地址。',
formSubtitle: '点击发送到 {{identifier}} 的邮件中的验证链接',
formTitle: '验证链接',
resendButton: '重发链接',
successMessage: '电子邮件 {{identifier}} 已被添加到您的账户。',
},
enterpriseSSOLink: {
formButton: undefined,
formSubtitle: undefined,
},
formHint: undefined,
removeResource: {
messageLine1: '{{identifier}} 将从此账户中被移除。',
messageLine2: '您将无法使用这个电子邮件地址登录。',
successMessage: '电子邮件 {{emailAddress}} 已从您的账户中移除。',
title: '移除电子邮件地址',
},
title: '添加电子邮件地址',
verifyTitle: 'Verify email address',
},
formButtonPrimary__add: '添加',
formButtonPrimary__continue: '继续',
formButtonPrimary__finish: '完成',
formButtonPrimary__remove: '移除',
formButtonPrimary__save: '保存',
formButtonReset: '取消',
mfaPage: {
formHint: '选择一个添加的方法。',
title: '添加两步验证',
},
mfaPhoneCodePage: {
backButton: '使用现有号码',
primaryButton__addPhoneNumber: '添加电话号码',
removeResource: {
messageLine1: '{{identifier}} 将不再在登录时接收验证代码。',
messageLine2: '您的账户可能不再安全。您确定要继续吗?',
successMessage: '已移除{{mfaPhoneCode}}的短信验证码两步验证',
title: '移除两步验证',
},
subtitle__availablePhoneNumbers: '选择一个电话号码来注册短信验证码两步验证。',
subtitle__unavailablePhoneNumbers: '没有可用的电话号码来注册短信验证码两步验证。',
successMessage1: '登录时,您需要输入发送到此电话号码的验证码作为额外的步骤。',
successMessage2: '请保存这些备份代码并将其妥善存放。如果您无法访问身份验证设备,可以使用备份代码进行登录。',
successTitle: '短信验证码验证已启用',
title: '添加短信验证码验证',
},
mfaTOTPPage: {
authenticatorApp: {
buttonAbleToScan__nonPrimary: '扫描二维码',
buttonUnableToScan__nonPrimary: '不能扫描二维码?',
infoText__ableToScan: '在您的验证器应用中设置一个新的登录方法,并扫描下面的二维码将其链接到您的账户。',
infoText__unableToScan: '在验证器中设置一个新的登录方法,并输入下面提供的 Key。',
inputLabel__unableToScan1: '确保启用了基于时间或一次性密码,然后完成链接您的账户。',
inputLabel__unableToScan2: '或者,如果您的验证器支持 TOTP URIs,您也可以复制完整的 URI。',
},
removeResource: {
messageLine1: '登录时,将不再需要来自此验证器的验证码。',
messageLine2: '您的账户可能不再安全。您确定要继续吗?',
successMessage: '已移除通过验证器应用程序的两步验证。',
title: '移除两步验证',
},
successMessage: '现在已启用两步验证。在登录时,您需要输入来自此验证器的验证码作为额外步骤。',
title: '添加验证器应用程序',
verifySubtitle: '输入您的验证器生成的验证码',
verifyTitle: '验证代码',
},
mobileButton__menu: '菜单',
navbar: {
account: '账户',
billing: undefined,
description: '管理您的账户。',
security: '安全',
title: '账户',
},
passkeyScreen: {
removeResource: {
messageLine1: undefined,
title: undefined,
},
subtitle__rename: undefined,
title__rename: undefined,
},
passwordPage: {
checkboxInfoText__signOutOfOtherSessions: '建议您从所有可能使用过旧密码的其他设备上退出登录。',
readonly: '由于您只能通过企业连接登录,当前无法编辑您的密码。',
successMessage__set: '您的密码已设置。',
successMessage__signOutOfOtherSessions: '所有其他设备已退出。',
successMessage__update: '您的密码已更新。',
title__set: '设置密码',
title__update: '更改密码',
},
phoneNumberPage: {
infoText: '一条包含验证链接的短信将会发送到这个电话号码。',
removeResource: {
messageLine1: '{{identifier}} 将从此账户中被移除。',
messageLine2: '您将无法使用这个电话号码登录。',
successMessage: '电话号码 {{phoneNumber}} 已从您的账户中移除。',
title: '移除电话号码',
},
successMessage: '{{identifier}} 已被添加到您的账户。',
title: '添加电话号码',
verifySubtitle: '请输入发送至 {{identifier}} 的验证码',
verifyTitle: '验证电话号码',
},
profilePage: {
fileDropAreaHint: '上传小于10MB的JPG, PNG, GIF, 或WEBP格式的图片',
imageFormDestructiveActionSubtitle: '移除图片',
imageFormSubtitle: '上传图片',
imageFormTitle: '个人资料图片',
readonly: '您的个人信息由企业连接提供,无法进行编辑。',
successMessage: '您的个人资料已更新。',
title: '更新个人资料',
},
start: {
activeDevicesSection: {
destructiveAction: '退出设备',
title: '活动设备',
},
connectedAccountsSection: {
actionLabel__connectionFailed: '再试一次',
actionLabel__reauthorize: '立即授权',
destructiveActionTitle: '移除',
primaryButton: '连接账户',
subtitle__disconnected: undefined,
subtitle__reauthorize:
'“所需的权限范围已更新,您可能会遇到功能受限的问题。请重新授权此应用程序,以避免出现任何问题。”',
title: '已连接的账户',
},
dangerSection: {
deleteAccountButton: '删除账户',
title: '终止账户',
},
emailAddressesSection: {
destructiveAction: '移除电子邮件地址',
detailsAction__nonPrimary: '设为主要',
detailsAction__primary: '完成验证',
detailsAction__unverified: '完成验证',
primaryButton: '添加电子邮件地址',
title: '电子邮件地址',
},
enterpriseAccountsSection: {
title: '企业账户',
},
headerTitle__account: '账户',
headerTitle__security: '安全',
mfaSection: {
backupCodes: {
actionLabel__regenerate: '重新生成代码',
headerTitle: '备份代码',
subtitle__regenerate: '获取一套新的安全备份代码。之前的备份代码将被删除,无法使用。',
title__regenerate: '重新生成备份代码',
},
phoneCode: {
actionLabel__setDefault: '设为默认',
destructiveActionLabel: '移除电话号码',
},
primaryButton: '添加两步验证',
title: '两步验证',
totp: {
destructiveActionTitle: '移除',
headerTitle: '验证器应用程序',
},
},
passkeysSection: {
menuAction__destructive: undefined,
menuAction__rename: undefined,
primaryButton: undefined,
title: undefined,
},
passwordSection: {
primaryButton__setPassword: '设置密码',
primaryButton__updatePassword: '更改密码',
title: '密码',
},
phoneNumbersSection: {
destructiveAction: '移除电话号码',
detailsAction__nonPrimary: '设为主要',
detailsAction__primary: '完成验证',
detailsAction__unverified: '完成验证',
primaryButton: '添加电话号码',
title: '电话号码',
},
profileSection: {
primaryButton: '更新个人资料',
title: '个人资料',
},
usernameSection: {
primaryButton__setUsername: '设置用户名',
primaryButton__updateUsername: '更改用户名',
title: '用户名',
},
web3WalletsSection: {
destructiveAction: '移除钱包',
detailsAction__nonPrimary: undefined,
primaryButton: 'Web3 钱包',
title: 'Web3 钱包',
},
},
usernamePage: {
successMessage: '您的用户名已更新。',
title__set: '更新用户名',
title__update: '更新用户名',
},
web3WalletPage: {
removeResource: {
messageLine1: '{{identifier}} 将从此账户中被移除。',
messageLine2: '您将无法使用这个 web3 钱包登录。',
successMessage: '{{web3Wallet}} 已从您的账户中移除。',
title: '移除 web3 钱包',
},
subtitle__availableWallets: '选择一个 web3 钱包连接到您的账户。',
subtitle__unavailableWallets: '没有可用的 web3 钱包。',
successMessage: '钱包已被添加到您的账户。',
title: '添加web3钱包',
web3WalletButtonsBlockButton: undefined,
},
},
waitlist: {
start: {
actionLink: undefined,
actionText: undefined,
formButton: undefined,
subtitle: undefined,
title: undefined,
},
success: {
message: undefined,
subtitle: undefined,
title: undefined,
},
},
} as const;