forked from Reamd7/notion-zh_CN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notion-zh_CN.js
10525 lines (10518 loc) · 674 KB
/
notion-zh_CN.js
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
// ==UserScript==
// @name Notion-zh_CN notion的汉化脚本
// @namespace http://tampermonkey.net/
// @version 2.4.7
// @description notion的100%汉化脚本,基于官方中文+机器翻译韩文,支持app版本以及网页油猴,地址:https://github.com/reamd7/notion-zh_CN
// @author reamd7
// @match *://www.notion.so/*
// @match *://*.notion.site/*
// @grant none
// @run-at document-start
// @copyright 2021, reamd7
// @license MIT
// ==/UserScript==
(function () {
"use strict";
var lang = "zh-CN";
var isSafari =
navigator.userAgent.includes("Safari/") &&
!navigator.userAgent.includes("Chrome/");
var isElectron = "undefined" != typeof global || window.__isElectron;
const scriptList = document.querySelectorAll("script[defer]");
const scriptSrcList = Array.from(scriptList).map((v) => v.src);
if (isSafari) {
scriptList.forEach((v) => v.remove());
document.getElementById("notion-app").remove();
}
const script = document.createElement("script");
script.id = "messages";
script.type = "application/json";
script.setAttribute("data-locale", lang);
script.text = JSON.stringify({
"AuditLogCSV.exportConfirmationDialog.label": "导出",
"AuditLogSettings.copyAuditLogEvent": "拷贝行",
"CollectionSettingsSyncedContentShare.continueButton": "继续",
"CollectionSettingsSyncedContentShare.header": "分享同步的内容给",
"CollectionSettingsSyncedContentShare.option.restrict.caption":
"你需要使用分享菜单与他人分享",
"CollectionSettingsSyncedContentShare.option.restrict.title": "只有你",
"CollectionSettingsSyncedContentShare.option.share.caption.accessToIntegration":
"将获得从 {integrationName} 同步内容的访问权限",
"CollectionSettingsSyncedContentShare.option.share.caption.sharedWithPublic":
"和通过链接分享的内容",
"CollectionSettingsSyncedContentShare.option.share.caption.usersWithGuests":
"{numberOfUsers} 个人(包括你 {numberOfGuests, plural, one {和 {numberOfGuests} 位访客} other {和 {numberOfGuests} 位访客}})",
"CollectionSettingsSyncedContentShare.option.share.caption.usersWithoutGuests":
"{numberOfUsers} 个人(包括你)",
"CollectionSettingsSyncedContentShare.option.share.title":
"此页面上的任何人",
"CollectionSettingsViewMain.editSettings": "编辑 {databaseName} 设置",
"CollectionViewActionMenu.editSettings": "编辑 {databaseName} 设置",
"ContextualInvite.permissions_invites.button.cancel": "取消",
"ContextualInvite.permissions_invites.guest.tooltip":
"将邀请 {email} 作为访客",
"ContextualInvite.permissions_invites.messageLengthWarning":
"{characters} / {maxCharacters} 个字符",
"ContextualInvite.permissions_invites.removeLinkWarning":
"消息中的链接将被删除",
"ContextualInvite.request_invite_workspace.subtitle2":
"向管理员发送请求以邀请成为工作区成员。",
"ContextualInvite.request_invite_workspace.title": "请求邀请加入工作区",
"ContextualInvite.send_guest_invite.button": "邀请",
"ContextualInvite.send_guest_invite.subtitle":
"{firstEmail},其他 {numOfEmails} 个",
"ContextualInvite.send_guest_invite.title": "邀请到页面或工作区?",
"ContextualInvite.send_guest_page_invite.button": "完成",
"ContextualInvite.share_this_page.subtitle": "邀请作为页面访客",
"ContextualInvite.share_this_page.subtitle2":
"这些人只能访问此页面。他们不会添加到你的账单中。",
"ContextualInvite.share_this_page.title": "仅分享此页面",
"ContextualInvite.share_this_workspace.subtitle": "邀请到此空间作为成员",
"ContextualInvite.share_this_workspace.subtitle2":
"这些人员将有权访问与 {workspaceName} 中的工作区成员共享的所有内容。将新电子邮件添加为计费成员。",
"ContextualInvite.share_this_workspace.title": "共享此工作区",
"ContextualInviteEmail.pageInviteMessage": "{name} 邀请你加入 {pageName}",
"ContextualInviteEmail.workspaceInviteMessage":
"{name} 邀请你加入 {workspaceName}",
"ContextualInviteEmail.workspaceInviteMessageFromBot":
"你已被邀请加入 {workspaceName}",
"ContextualInviteEmail.workspacePreview.numberOfMembers":
"{numberOfMembers} 个成员",
"ContexualInvites.inviteUserModal.searchInput.placeholder":
"添加电子邮件、人员、集成...",
"ContexualInvites.inviteUserModal.searchInput.placeholderWithTeams":
"添加电子邮件、人员、团队空间...",
"ContexualInvites.inviteUserModal.searchInput.placeholderWithoutBots":
"添加电子邮件或人员",
"CreateTeamspaceMenu.closedTeamspace.caption":
"任何人都可以看到此团队空间,但不能加入",
"CreateTeamspaceMenu.openTeamspace.caption":
"任何人都可以看到和加入此团队空间",
"CreateTeamspaceMenu.privateTeamspace.caption":
"只有成员才能看到此团队空间存在",
"OnboardingSurvery.usecase.question.docs": "文档编辑和共享",
"OnboardingSurvery.usecase.question.goals": "公司目标和 OKR",
"OnboardingSurvery.usecase.question.other": "其他",
"OnboardingSurvery.usecase.question.project": "项目管理",
"OnboardingSurvery.usecase.question.wikis": "Wiki / 知识库",
"OnboardingSurvey.usecase.question.notes": "个人笔记",
"PermissionsInviteSearchRequest.userTooltip.admin":
"点击以邀请 {userNameAndEmail}",
"PermissionsInviteSearchRequest.userTooltip.guest":
"{userNameAndEmail} 是此工作区的成员",
"PermissionsInviteSearchRequest.userTooltip.invited_page":
"{userNameAndEmail} 已受邀访问此页面",
"PermissionsInviteSearchRequest.userTooltip.invited_space":
"{userNameAndEmail} 已受邀加入此工作区",
"PermissionsInviteSearchRequest.userTooltip.member":
"{userNameAndEmail} 是此工作区的管理员",
"PermissionsInviteSearchRequest.userTooltip.not_in_space":
"{userNameAndEmail} 是此工作区的访客",
"PersonaCollectionModal.initial.1000PlusLabel": "超过 1001 人",
"PersonaCollectionModal.initial.101_1000Label": "101 到 1000 人",
"PersonaCollectionModal.initial.1_100Label": "1 到 100 人",
"PersonaCollectionModal.initial.caption":
"我们想了解更多有关你的信息,以便我们可以让我们的产品更好地为你服务",
"PersonaCollectionModal.initial.companySizeLabel": "公司规模",
"PersonaCollectionModal.initial.header": "请更多地向我们介绍一下你自己",
"PersonaCollectionModal.initial.questionLabel": "你打算用 Notion 做什么?",
"PersonaCollectionModal.initial.roleLabel": "你的角色是什么?",
"PersonaCollectionModal.initial.sendLabel": "提交",
"PersonaCollectionModal.initial.workLabel": "你从事哪一类工作?",
"PersonaCollectionModal.prompt.caption":
"我们想更多地了解你,以便我们可以让我们的产品更好地为你服务",
"PersonaCollectionModal.prompt.header": "请更多地介绍一下你自己",
"PersonaCollectionModal.prompt.skipLabel": "跳过",
"PersonaCollectionModal.prompt.survey": "参与 20 秒的问卷调查",
"PersonaCollectionModal.selectQuestion.label": "选择回答",
"PersonaCollectionModal.thanks.caption":
"谢谢你!在<textlink>模板库中</textlink>发现使用 Notion 的新方法",
"PersonaCollectionModalQuestionSelect.question.product": "产品管理",
"PersonaCollectionModalQuestionSelect.question.roleLabel": "角色",
"PersonaCollectionModalQuestionSelect.question.useLabel": "使用",
"PersonaCollectionModalQuestionSelect.question.workLabel": "工作",
"PersonaCollectionModalQuestionSelect.roleQuestion.dept_lead": "部门主管",
"PersonaCollectionModalQuestionSelect.roleQuestion.exec":
"行政人员(高层/副总裁)",
"PersonaCollectionModalQuestionSelect.roleQuestion.member": "团队成员",
"PersonaCollectionModalQuestionSelect.roleQuestion.personal":
"只为自己使用 Notion",
"PersonaCollectionModalQuestionSelect.roleQuestion.solo":
"个人企业家/自由职业者",
"PersonaCollectionModalQuestionSelect.roleQuestion.team_manager":
"团队经理",
"PersonaCollectionModalQuestionSelect.useQuestion.docs": "编辑和共享文档",
"PersonaCollectionModalQuestionSelect.useQuestion.goals": "目标设置和跟踪",
"PersonaCollectionModalQuestionSelect.useQuestion.notes": "个人笔记",
"PersonaCollectionModalQuestionSelect.useQuestion.other": "其他",
"PersonaCollectionModalQuestionSelect.useQuestion.project":
"项目或任务管理",
"PersonaCollectionModalQuestionSelect.useQuestion.wikis":
"公司知识库/内部网",
"PersonaCollectionModalQuestionSelect.workQuestion.design": "设计",
"PersonaCollectionModalQuestionSelect.workQuestion.educator": "教育工作者",
"PersonaCollectionModalQuestionSelect.workQuestion.eng": "工程",
"PersonaCollectionModalQuestionSelect.workQuestion.finance": "金融",
"PersonaCollectionModalQuestionSelect.workQuestion.hr": "人力资源",
"PersonaCollectionModalQuestionSelect.workQuestion.it": "IT",
"PersonaCollectionModalQuestionSelect.workQuestion.marketing": "市场营销",
"PersonaCollectionModalQuestionSelect.workQuestion.operations": "运营",
"PersonaCollectionModalQuestionSelect.workQuestion.other": "其他",
"PersonaCollectionModalQuestionSelect.workQuestion.sales": "销售",
"PersonaCollectionModalQuestionSelect.workQuestion.student": "学生",
"PersonaCollectionModalQuestionSelect.workQuestion.support": "客户服务",
"ReactionBar.emojiModalMenu.title": "反应",
"ReactionBar.hoverTooltip.text":
"{names} <medium>使用</medium> {icon} 做出反应。",
"RelationPropertyPageSection.button.addPage":
"在 {propertyName} 中新建页面",
"RelationPropertyPageSection.show.minimalRelations":
"{numberOfRelations, plural, other {{propertyName} 中的 {numberOfRelations} 个链接页面}}",
"SearchBadResultsForm.additionalInformation.placeholder":
"任何其他评论或上下文(例如...)",
"SearchBadResultsForm.cancelButton.label": "取消",
"SearchBadResultsForm.reportButton.label": "提交",
"SearchBadResultsForm.title": "报告错误搜索",
"SearchBadResultsForm.url.placeholder": "链接到你正在查找的页面",
"SearchResultsFooter.helpText.resultCount":
"{resultCount, plural, other {<resultwrapper>{resultCount}</resultwrapper> 个结果}}",
"SearchResultsFooter.helpText.resultCountApproximate":
"{resultCount, plural, other {<resultwrapper>{resultCount}+</resultwrapper> 个结果}}",
"SidebarDetailViewHeader.headers.workspace": "工作区",
"SpecificTeamMemberToAddRow.addMemberButton.text": "添加",
"SpecificTeamMemberToAddRow.team_invite_failure": "添加 {user} 失败",
"TeamAccessLevelSwitcher.closeOrPrivateTeam.disabledTooltip":
"你无法更改此设置,因为这是默认团队。请联系工作区管理员寻求帮助。",
"TeamAccessLevelSwitcher.closeOrPrivateTeam.disabledTooltipNonAdmin":
"你无法更改此设置,因为这是默认团队。请联系工作区管理员寻求帮助。",
"TeamAccessLevelSwitcher.closeOrPrivateTeam.disabledTooltipOnlyDefaultTeam":
"这是工作区中唯一的默认团队,并且默认团队必须处于开放状态。首先将另一个团队设置为默认团队。",
"TeamAccessLevelSwitcher.closeOrPrivateTeamspace.disabledTooltipNonAdmin":
"你无法更改此设置,因为这是默认团队空间。请联系你的工作区管理员以寻求帮助。",
"TeamAccessLevelSwitcher.closeOrPrivateTeamspace.disabledTooltipOnlyDefaultTeam":
"这是工作区中唯一的默认团队空间。添加另一个默认的团队空间来改变团队空间的权限。",
"TeamAccessLevelSwitcher.closedTeam.caption":
"任何人都可以查看,但不能加入",
"TeamAccessLevelSwitcher.closedTeam.title": "封闭式",
"TeamAccessLevelSwitcher.closedTeamSpace.title": "封闭式团队空间",
"TeamAccessLevelSwitcher.closedTeamspace.caption":
"任何人都可以看到,但不能加入",
"TeamAccessLevelSwitcher.openTeam.caption": "任何人都可以查看,并加入团队",
"TeamAccessLevelSwitcher.openTeam.title": "开放式",
"TeamAccessLevelSwitcher.openTeamspace.caption": "任何人都可以查看和加入",
"TeamAccessLevelSwitcher.openTeamspace.defaultPill": "默认",
"TeamAccessLevelSwitcher.openTeamspace.defaultTooltip":
"所有工作区成员都是此团队空间的成员",
"TeamAccessLevelSwitcher.openTeamspace.title": "开放式团队空间",
"TeamAccessLevelSwitcher.privateTeam.caption": "只有团队成员才能查看内容",
"TeamAccessLevelSwitcher.privateTeam.title": "私人",
"TeamAccessLevelSwitcher.privateTeamSpace.title": "私人",
"TeamAccessLevelSwitcher.privateTeamspace.caption": "只有成员才能查看",
"TeamAccessLevelSwitcher.privateTeamspaceUpsellBusiness.tooltip":
"升级到商业版以启用私人团队空间",
"TeamAccessLevelSwitcher.privateTeamspaceUpsellEnterprise.tooltip":
"升级到企业版以启用私人团队空间",
"TeamBreadcrumbPopup.morePages": "其他 {numberOfMorePages} 页…",
"TeamMemberOwnerSelect.guestLabel": "访客",
"TeamMemberOwnerSelect.memberCaption":
"对团队空间页面拥有访问权限,但不能编辑团队空间设置",
"TeamMemberOwnerSelect.memberItem.disableOwnerForGroupsTooltip":
"群组不能成为团队空间所有者",
"TeamMemberOwnerSelect.memberItem.disableWithOnlyOneOwnerTooltip":
"添加其他团队空间所有者以将自己降级为成员",
"TeamMemberOwnerSelect.memberLabel": "成员",
"TeamMemberOwnerSelect.ownerCaption":
"对团队空间页面拥有完全访问权限,并且可以编辑团队空间设置",
"TeamMemberOwnerSelect.ownerLabel": "团队空间所有者",
"TeamMemberOwnerSelect.permissionOverrideCaption":
"自定义团队空间页面访问权限",
"TeamMemberOwnerSelect.permissionsOverride": "自定义权限",
"TeamMemberOwnerSelect.remove": "移除",
"TeamMemberOwnerSelect.remove.disabledTooltip.cannotRemoveFromDefault":
"无法从默认团队空间中移除成员。",
"TeamMemberOwnerSelect.remove.disabledTooltip.multiple":
"移除 {groupName} 和 {numMoreGroups} {numMoreGroups, plural, one {个群组 } other {个群组}}以移除此成员",
"TeamMemberOwnerSelect.remove.disabledTooltip.single":
"移除 {groupName} 以移除此成员",
"TeamMemberOwnerSelect.roleName.comment_only": "可以评论",
"TeamMemberOwnerSelect.roleName.content_only_editor": "可以编辑内容",
"TeamMemberOwnerSelect.roleName.custom": "自定义",
"TeamMemberOwnerSelect.roleName.editor": "完整访问权限",
"TeamMemberOwnerSelect.roleName.none": "无访问权限",
"TeamMemberOwnerSelect.roleName.read_and_write": "可以编辑",
"TeamMemberOwnerSelect.roleName.reader": "可以查看",
"TeamMembersPermissionRow.teamPermissionItem.description":
"{num, plural, other {{num} 个团队成员}}",
"TeamMembersPermissionRow.teamspacePermissionItem.description":
"{num, plural, other {{num} 个人}}",
"TeamMembersTopSection.permissionItem.defaultAccessSpaceName":
"{spaceName} 中的其他所有人",
"TeamMembersTopSection.permissionItem.defaultAccessTeamSpaceName":
"团队空间成员",
"TeamMembersTopSection.permissionItem.defaultAccessWithoutSpaceName":
"工作区中的其他所有人",
"TeamMembersTopSection.permissionItem.defaultAccessWithoutTeamspaceName":
"团队空间成员",
"TeamOwnersPermissionRow.permissionItem.teamspaceOwnersAccessToggleName":
"团队空间所有者",
"TeamOwnersPermissionRow.permissionItem.teamspaceOwnersAccessToggleNameWithoutTeamName":
"团队空间所有者",
"TeamOwnersPermissionRow.teamPermissionItem.description":
"{num, plural, other {{num} 个团队所有者}}",
"TeamOwnersPermissionRow.teamspaceOwnersRowTooltip":
"默认情况下,团队空间所有者拥有对团队空间页面的完全访问权限",
"TeamOwnersPermissionRow.teamspacePermissionItem.description":
"{num, plural, other {{num} 个人}}",
"TeamPermissionsInviteOverlay.membersTitle.label": "将成员添加到",
"TeamPermissionsList.search.inThisTeam": "在这个团队中",
"TeamPermissionsList.search.notInTeam": "不在团队中",
"TeamPermissionsList.search.zeroState": "未找到成员",
"TeamPermissionsListHeader.nameColumn": "名称",
"TeamPermissionsListHeader.roleColumn": "角色",
"TeamSettings.groups.removeGroupModal.confirmationButton": "移除群组",
"TeamSettings.groups.removeGroupModal.description":
"此组中的 {numGroupMembers} {numGroupMembers, plural, one {位成员} other {位成员}} 将从该团队空间中移除。",
"TeamSettings.groups.removeGroupModal.title": "确定要移除 {groupName}?",
"TeamSettings.groups.removeGroupModal.title.noGroupName":
"确定要移除此群组?",
"TeamSettingsGeneral.generalSettings.description.title": "描述",
"TeamSettingsGeneral.generalSettings.iconAndName.title": "图标和名称",
"TeamSettingsGeneral.generalSettings.noDescription": "无描述",
"TeamSettingsGeneral.generalSettings.subtitle":
"编辑团队名称、描述或图标。",
"TeamSettingsGeneral.generalSettings.title": "团队空间详细信息",
"TeamSettingsGeneral.settingsChanged": "已更新团队空间详细信息",
"TeamSettingsMembers.title": "成员",
"TeamSettingsPermissions.pagePermissions.subtitle":
"选择用户默认拥有的页面权限。",
"TeamSettingsPermissions.pagePermissions.title": "权限",
"TeamSettingsPermissions.settingSelect.whoCanEditSidebarPinnedPages.upgradeToBusinessTooltip":
"升级到商业版以更改此设置",
"TeamSettingsPermissions.settingSelect.whoCanEditSidebarPinnedPages.upgradeToEnterpriseTooltip":
"升级到企业版以更改此设置",
"TeamSettingsPermissions.settingSelect.whoCanEditTeamPages.upgradeToBusinessTooltip":
"升级到商业版以更改此设置",
"TeamSettingsPermissions.settingSelect.whoCanEditTeamPages.upgradeToEnterpriseTooltip":
"升级到企业版以更改此设置",
"TeamSettingsPermissions.settingSelect.whoCanEditTeamspacePages.upgradeToBusinessTooltip":
"升级到商业版以更改此设置",
"TeamSettingsPermissions.settingSelect.whoCanEditTeamspacePages.upgradeToEnterpriseTooltip":
"升级到企业版以更改此设置",
"TeamSettingsPermissions.teamAccess.title": "团队访问权限",
"TeamSettingsPermissions.teamPageAccess.title": "团队页面访问权限",
"TeamSettingsPermissions.teamspaceAccess.title": "团队空间访问权限",
"TeamSettingsPermissions.whoCanEditSidebarPinnedPages.caption":
"添加、删除或重新排序团队侧边栏页面",
"TeamSettingsPermissions.whoCanEditSidebarPinnedPages.teamMembersAndOwners.title":
"任何团队成员",
"TeamSettingsPermissions.whoCanEditSidebarPinnedPages.teamOwners.title":
"仅限团队所有者",
"TeamSettingsPermissions.whoCanEditSidebarPinnedPages.title":
"谁可以编辑侧边栏固定页面",
"TeamSettingsPermissions.whoCanEditTeamPages.caption":
"添加、移除或重新排序侧边栏页面",
"TeamSettingsPermissions.whoCanEditTeamPages.teamMembersAndOwners.title":
"任何团队空间成员",
"TeamSettingsPermissions.whoCanEditTeamPages.teamOwners.title":
"仅团队空间所有者",
"TeamSettingsPermissions.whoCanEditTeamPages.title":
"谁可以编辑团队空间侧边栏",
"TeamSettingsPermissions.whoCanEditTeamspacePages.caption":
"添加、删除或重新排序团队空间侧边栏页面",
"TeamSettingsPermissions.whoCanEditTeamspacePages.teamMembersAndOwners.title":
"任何团队空间成员",
"TeamSettingsPermissions.whoCanEditTeamspacePages.teamOwners.title":
"仅团队空间所有者",
"TeamSettingsPermissions.whoCanEditTeamspacePages.title":
"谁可以编辑团队空间侧边栏",
"TeamSettingsPermissions.whoCanInviteTeamMembers.caption":
"谁可以向团队空间添加人员",
"TeamSettingsPermissions.whoCanInviteTeamMembers.teamMembersAndOwners.title":
"任何团队成员",
"TeamSettingsPermissions.whoCanInviteTeamMembers.teamOwners.title":
"仅限团队空间所有者",
"TeamSettingsPermissions.whoCanInviteTeamMembers.title":
"谁可以邀请团队空间成员",
"TeamSettingsPermissions.whoCanInviteTeamMembersDisabled.caption":
"将访问级别更改为“封闭式”或“私人”,以限制可以邀请团队空间成员的人员",
"TeamSettingsPermissions.whoCanInviteTeamspaceMembers.caption":
"谁可以向团队空间添加人员",
"TeamSettingsPermissions.whoCanInviteTeamspaceMembers.teamMembersAndOwners.title":
"任何团队成员",
"TeamSettingsPermissions.whoCanInviteTeamspaceMembers.teamOwners.title":
"仅团队空间所有者",
"TeamSettingsPermissions.whoCanInviteTeamspaceMembers.title":
"谁可以邀请团队空间成员",
"TeamSettingsPermissions.whoCanInviteTeamspaceMembersDisabled.caption":
"将访问级别更改为“封闭式”或“私人”,以限制可以邀请团队空间成员的人员",
"TeamSettingsPermissions.whoCanJoinTeam.everyoneInWorkspace.title":
"工作区中的所有人",
"TeamSettingsPermissions.whoCanJoinTeam.inviteOnly.title": "仅限邀请",
"TeamSettingsPermissions.whoCanJoinTeam.title": "谁可以加入团队",
"TeamSettingsPermissions.whoCanSeeTeam.everyoneInWorkspace.title":
"工作区中的所有人",
"TeamSettingsPermissions.whoCanSeeTeam.teamMembersOnly.title":
"仅限团队成员和所有者",
"TeamSettingsPermissions.whoCanSeeTeam.title": "谁可以看到团队",
"TeamSettingsSecurity.title": "安全性",
"TemplateDetail.TeamItem.addButton": "添加",
"TemplateDetail.TeamItem.goButton": "转到",
"TemplateDetail.TeamItem.teamMemberCount":
"{numberOfMembers, plural, other {{numberOfMembers} 个成员}}",
"TemporarySignUpEmail.signUpLink.continuedBody":
"附言:此链接对你是唯一的,当你使用上面的按钮或链接时,该链接将失效。因此,请不要与任何人分享!",
"TemporarySignUpEmail.signUpLink.linkAlternative":
"按钮不起作用?你也可以通过将此 URL 粘贴到浏览器中来完成注册:",
"TemporarySignUpEmail.signUpLink.subjectLine": "完成注册 Notion",
"TemporarySignUpEmail.signUpLink.titleOfEmail": "即将完成!",
"TemporarySignUpEmail.signUpLink.titleOfEmail.actionLink":
"继续前往 Notion",
"TemporarySignUpEmail.signUpLink.titleOfEmail.text":
"你的新 Notion 帐户创建很快就要完成了。点击下面的按钮继续:",
"UpdateSidebarFollowControl.follow.caption": "接收所有更新和评论通知",
"UpdateSidebarFollowControl.follow.label": "关注",
"UpdateSidebarFollowControl.following.label": "关注中",
"UpdateSidebarFollowControl.unfollow.caption": "不接收更新和评论通知",
"UpdateSidebarFollowControl.unfollow.label": "取消关注",
"abstractBlock.embeds.button.label": "嵌入 Abstract",
"abstractBlock.embeds.caption": "适用于启用了公共访问的 Abstract 链接",
"abstractBlock.placeholder": "嵌入 Abstract",
"accountActions.deletingAccount.loadingMessage": "正在删除你的帐户…",
"accountActions.deletingAccount.noUserToDeleteMessage":
"没有要删除的帐户。",
"action.addtoFavorites.name": "添加到最爱",
"action.alignment.center.name": "居中",
"action.alignment.left.name": "左对齐",
"action.alignment.name": "对齐",
"action.alignment.right.name": "右对齐",
"action.backgroundColor.blue.fuzzySearchKeyword": "蓝色背景 Bluebackground",
"action.backgroundColor.blue.name": "蓝色背景",
"action.backgroundColor.brown.fuzzySearchKeyword":
"棕色背景 Brownbackground",
"action.backgroundColor.brown.name": "棕色背景",
"action.backgroundColor.default.fuzzySearchKeyword":
"Default Black White 默认 moren mo'ren 黑 hei 白 bai",
"action.backgroundColor.default.name": "默认背景",
"action.backgroundColor.gray.fuzzySearchKeyword":
"Grey Gray background 灰色 huise hui'se 背景 beijing bei'jing",
"action.backgroundColor.gray.name": "灰色背景",
"action.backgroundColor.green.name": "绿色背景",
"action.backgroundColor.orange.fuzzySearchKeyword":
"橙色背景 Orangebackground",
"action.backgroundColor.orange.name": "橙色背景",
"action.backgroundColor.pink.fuzzySearchKeyword": "粉色背景 Pinkbackground",
"action.backgroundColor.pink.name": "粉色背景",
"action.backgroundColor.purple.fuzzySearchKeyword":
"紫色背景 Purplebackground",
"action.backgroundColor.purple.name": "紫色背景",
"action.backgroundColor.red.fuzzySearchKeyword": "红色背景 Redbackground",
"action.backgroundColor.red.name": "红色背景",
"action.backgroundColor.teal.fuzzySearchKeyword":
"蓝绿色背景 Tealbackground Greenbackground",
"action.backgroundColor.yellow.fuzzySearchKeyword":
"黄色背景 Yellowbackground",
"action.backgroundColor.yellow.name": "黄色背景",
"action.backtoNotion.name": "回到 Notion",
"action.bold.name": "加粗",
"action.calendarBy.name": "日历显示",
"action.caption.name": "标题",
"action.clearContents.title": "清除内容",
"action.clearDate.name": "清除日期",
"action.codePreviewSection.name": "在块中显示",
"action.color.name": "颜色",
"action.columnHeader.title": "标题行",
"action.comment.name": "评论",
"action.commentPage.name": "评论",
"action.configure.name": "块设置",
"action.copiedCodeToClipboard.snackBarMessage": "已将代码复制到剪贴板",
"action.copiedLinkToClipboard.snackBarMessage": "已将链接复制到剪贴板",
"action.copiedLinksToClipboard.snackBarMessage": "已将链接拷贝到剪贴板",
"action.copiedPropertyToClipboard.snackBarMessage": "已将属性复制到剪贴板",
"action.copiedToClipboard.snackBarMessage": "已复制到剪贴板",
"action.copiedTokenToClipboard.snackBarMessage": "已将令牌拷贝到剪贴板",
"action.copyDirectLink.name": "拷贝原始链接",
"action.copyFormattedLinkNavigableType.name": "复制链接的标题",
"action.copyLink.name": "复制块链接",
"action.copyLinkNavigableType.name": "拷贝链接",
"action.copyLinkToCurrentPage.snackBarMessage":
"指向当前页面的链接已复制到剪贴板。",
"action.copyLinks.name": "拷贝全部链接",
"action.copyLinktoView.name": "复制视图链接",
"action.createEquation.name": "创建公式",
"action.createLink.name": "创建链接",
"action.createNotionPage.name": "创建你自己的 Notion 页面",
"action.createTeamFromPage.caption": "团队自定义权限和协作的空间",
"action.createTeamFromPage.name": "转换为团队空间",
"action.customizeCollectionViewBlock.label": "编辑设置",
"action.customizeCollectionViewBlock.label.dynamic":
"编辑 {databaseName} 设置",
"action.customizePage.label": "自定义页面",
"action.darkMode.name": "深色模式",
"action.databaseLock.label": "锁定数据库",
"action.dateOrReminder.description": "在文本中插入日期或提醒。",
"action.dateOrReminder.title": "日期或提醒",
"action.delete.name": "删除",
"action.deletePages.snackBarMessage": "已移至垃圾箱",
"action.doNotHavePermissionToMoveBlock": "你没有移动此页面的权限。",
"action.download.name": "下载",
"action.duplicate.name": "创建副本",
"action.duplicatePage.name": "创建副本页面",
"action.duplicateTo.name": "保存副本到",
"action.edit.name": "编辑",
"action.editPage.name": "编辑",
"action.editProperty.name": "编辑属性",
"action.enter.name": "输入",
"action.export.caption": "PDF、HTML、Markdown",
"action.export.name": "导出",
"action.filter.name": "筛选",
"action.fontSmallText.fuzzySearchKeywords":
"Font Small Text 字体 ziti zi'ti 字号 zihao zi'hao 小字 xiaozi xiao'zi",
"action.fontSmallText.label": "小字号",
"action.foregroundColor.blue.fuzzySearchKeyword": "蓝色",
"action.foregroundColor.blue.name": "蓝色",
"action.foregroundColor.brown.fuzzySearchKeyword": "棕色",
"action.foregroundColor.brown.name": "棕色",
"action.foregroundColor.default.name": "默认",
"action.foregroundColor.gray.fuzzySearchKeyword":
"Grey Gray 灰色 huise hui'se",
"action.foregroundColor.gray.name": "灰色",
"action.foregroundColor.green.name": "绿色",
"action.foregroundColor.orange.fuzzySearchKeyword": "橙色",
"action.foregroundColor.orange.name": "橙色",
"action.foregroundColor.pink.fuzzySearchKeyword": "粉色",
"action.foregroundColor.pink.name": "粉色",
"action.foregroundColor.purple.fuzzySearchKeyword": "紫色",
"action.foregroundColor.purple.name": "紫色",
"action.foregroundColor.red.fuzzySearchKeyword": "红色",
"action.foregroundColor.red.name": "红色",
"action.foregroundColor.teal.fuzzySearchKeyword": "蓝绿色",
"action.foregroundColor.yellow.fuzzySearchKeyword": "黄色",
"action.foregroundColor.yellow.name": "黄色",
"action.fullScreen.name": "全屏",
"action.fullWidth.label": "全宽",
"action.group.name": "分组",
"action.groupBy.name": "分组",
"action.highlight.name": "高亮",
"action.import.name": "导入",
"action.insertBelow.name": "在下面插入",
"action.insertColumnLeft.title": "在左侧插入",
"action.insertColumnRight.title": "在右侧插入",
"action.insertEmoji.description": "搜索要放在文本中的表情符号。",
"action.insertEmoji.title": "表情符号",
"action.insertInlineEquation.description": "在文本中插入数学符号。",
"action.insertInlineEquation.fuzzySearchKeyword":
"LaTeX Math Inline Equation $ TeX LaTex 方程式 fangchengshi fang'cheng'shi 数学 shuxue shu'xue 行内 hangnei hang'nei 公式 gongshi gong'shi",
"action.insertInlineEquation.title": "行内公式",
"action.insertRowAbove.title": "在上方插入",
"action.insertRowBelow.title": "在下方插入",
"action.isLockedTopLevelTeamPage": "这是锁定的团队空间页面,无法移动。",
"action.italic.name": "斜体",
"action.languageMode.abap": "ABAP",
"action.languageMode.agda": "Agda",
"action.languageMode.arduino": "Arduino",
"action.languageMode.bash": "Bash",
"action.languageMode.basic": "Basic",
"action.languageMode.bnf": "BNF",
"action.languageMode.c": "C",
"action.languageMode.clojure": "Clojure",
"action.languageMode.coffeescript": "CoffeeScript",
"action.languageMode.coq": "Coq",
"action.languageMode.cplusplus": "C++",
"action.languageMode.csharp": "C#",
"action.languageMode.css": "CSS",
"action.languageMode.cstyle": "Java/C/C++/C#",
"action.languageMode.dart": "Dart",
"action.languageMode.dhall": "Dhall",
"action.languageMode.diff": "Diff",
"action.languageMode.docker": "Docker",
"action.languageMode.ebnf": "EBNF",
"action.languageMode.elixir": "Elixir",
"action.languageMode.elm": "Elm",
"action.languageMode.erlang": "Erlang",
"action.languageMode.flow": "Flow",
"action.languageMode.fortran": "Fortran",
"action.languageMode.fsharp": "F#",
"action.languageMode.gherkin": "Gherkin",
"action.languageMode.glsl": "GLSL",
"action.languageMode.go": "Go",
"action.languageMode.graphql": "Graphql",
"action.languageMode.groovy": "Groovy",
"action.languageMode.haskell": "Haskell",
"action.languageMode.html": "HTML",
"action.languageMode.idris": "Idris",
"action.languageMode.java": "Java",
"action.languageMode.javascript": "JavaScript",
"action.languageMode.json": "JSON",
"action.languageMode.julia": "Julia",
"action.languageMode.kotlin": "Kotlin",
"action.languageMode.latex": "LaTeX",
"action.languageMode.less": "LESS",
"action.languageMode.lisp": "Lisp",
"action.languageMode.livescript": "LiveScript",
"action.languageMode.llvm": "LLVM IR",
"action.languageMode.lua": "Lua",
"action.languageMode.makefile": "Makefile",
"action.languageMode.markdown": "Markdown",
"action.languageMode.markup": "Markup",
"action.languageMode.mathematica": "Mathematica",
"action.languageMode.matlab": "MATLAB",
"action.languageMode.mermaid": "Mermaid",
"action.languageMode.name": "语言设置",
"action.languageMode.nasm": "汇编语言",
"action.languageMode.nix": "Nix",
"action.languageMode.objectiveC": "Objective-C",
"action.languageMode.ocaml": "OCaml",
"action.languageMode.pascal": "Pascal",
"action.languageMode.perl": "Perl",
"action.languageMode.php": "PHP",
"action.languageMode.plaintext": "Plain Text",
"action.languageMode.powershell": "Powershell",
"action.languageMode.prolog": "Prolog",
"action.languageMode.protobuf": "Protobuf",
"action.languageMode.purescript": "PureScript",
"action.languageMode.python": "Python",
"action.languageMode.r": "R",
"action.languageMode.racket": "Racket",
"action.languageMode.reason": "Reason",
"action.languageMode.ruby": "Ruby",
"action.languageMode.rust": "Rust",
"action.languageMode.sass": "Sass",
"action.languageMode.scala": "Scala",
"action.languageMode.scheme": "Scheme",
"action.languageMode.scss": "SCSS",
"action.languageMode.shell": "Shell",
"action.languageMode.solidity": "坚固",
"action.languageMode.sql": "SQL",
"action.languageMode.swift": "Swift",
"action.languageMode.toml": "TOML",
"action.languageMode.typescript": "TypeScript",
"action.languageMode.vbdotnet": "VB.net",
"action.languageMode.verilog": "Verilog",
"action.languageMode.vhdl": "VHDL",
"action.languageMode.visualbasic": "Visual Basic",
"action.languageMode.webassembly": "WebAssembly",
"action.languageMode.xml": "XML",
"action.languageMode.yaml": "YAML",
"action.lastUsedHighlight.fuzzySearchKeywords":
"Color last used 上次使用的颜色 shangcishiyongdeyanse shang'ci'shi'yong'de'yan'se 上次 shangci shang'ci 使用 shiyong shi'yong 颜色 yanse yan'se",
"action.lastUsedHighlight.title": "上次使用",
"action.leave.name": "离开",
"action.listFormat.circle.name": "圆形",
"action.listFormat.disc.name": "盘型",
"action.listFormat.letters.default": "默认值",
"action.listFormat.letters.name": "字母",
"action.listFormat.letters.roman": "罗马数字",
"action.listFormat.name": "列表格式",
"action.listFormat.numbers.name": "数字",
"action.listFormat.sectionName": "列表格式",
"action.listFormat.square.name": "方形",
"action.lockDatabaseName.name": "锁定数据库",
"action.lockDatabaseViewsName.name": "锁定视图",
"action.lockPage.name": "锁定页面",
"action.logIn.name": "登录",
"action.mentionPage.description": "提及页面并链接在文本中。",
"action.mentionPage.title": "提及页面",
"action.mentionPerson.description": "提及某人并向他们发送通知。",
"action.mentionPerson.title": "提及人员",
"action.mergewithCSV.name": "与 CSV 合并",
"action.moveDown.name": "向下移动",
"action.moveTo.name": "移动到",
"action.moveUp.name": "向上移动",
"action.newPageIn.name": "转换成页面到",
"action.noDate.name": "无日期",
"action.openAllToggles.name": "展开所有折叠列表",
"action.openAsPage.name": "以全页面打开",
"action.openInNewTab.name": "在新选项卡中打开",
"action.openInNewWindow.name": "在新窗口中打开",
"action.openPageInNewTab.name": "在新选项卡中打开页面",
"action.openasPage.name": "以全页面打开",
"action.openinAndroidApp.name": "在安卓应用中打开",
"action.openinMacApp.name": "在 Mac 应用中打开",
"action.openinWindowsApp.name": "在 Windows 应用中打开",
"action.openiniOSApp.name": "在 iOS 应用中打开",
"action.pageHistory.name": "页面历史记录",
"action.pageUpdates.title": "更新页面",
"action.paste.name": "粘贴",
"action.properties.name": "属性",
"action.propertyVisibility.label": "切换属性可见性",
"action.quickFind.name": "快速查找",
"action.quoteSize.default": "默认",
"action.quoteSize.large": "大",
"action.quoteSize.name": "引用大小",
"action.redo.name": "重做",
"action.reloadPreview": "重新加载预览",
"action.reloadSyncedPage": "重新同步页面",
"action.removefromFavorites.name": "从最爱中移除",
"action.rename.name": "重命名",
"action.replace.name": "替换",
"action.reportPage.name": "报告页面",
"action.resetZoom.name": "重置缩放",
"action.resyncPage.name": "刷新离线数据",
"action.rowHeader.title": "标题列",
"action.search.name": "搜索",
"action.search.noResults": "无结果",
"action.section.actions": "操作",
"action.section.advancedBlocks": "高级块",
"action.section.background": "背景",
"action.section.background.fuzzySearchKeywords":
"Color Background 颜色 yanse yan'se 背景 beijing bei'jing",
"action.section.backgroundColor": "背景颜色",
"action.section.basicBlocks": "基本块",
"action.section.color": "颜色",
"action.section.database": "数据库",
"action.section.embeds": "嵌入块",
"action.section.fontStyle": "风格",
"action.section.inline": "行内",
"action.section.media": "媒体",
"action.section.quoteSize": "引用大小",
"action.section.simpleTableColumn": "列",
"action.section.syncedDatabases": "同步的数据库",
"action.section.textColor": "文本颜色",
"action.section.turnInto": "转换成",
"action.setPageFont.default.caption": "默认",
"action.setPageFont.default.fuzzySearchKeywords":
"Font Default 字体 ziti zi'ti 默认 moren mo'ren",
"action.setPageFont.default.tooltip": "适合任何场景的无衬线字体",
"action.setPageFont.mono.caption": "等宽体",
"action.setPageFont.mono.fuzzySearchKeywords":
"Font Mono 字体 ziti zi'ti 等宽体 dengkuanti deng'kuan'ti",
"action.setPageFont.mono.tooltip": "适合草稿和笔记",
"action.setPageFont.serif.caption": "衬线体",
"action.setPageFont.serif.fuzzySearchKeywords":
"Font Serif 字体 ziti zi'ti 衬线体 chenxianti chen'xian'ti",
"action.setPageFont.serif.tooltip": "适合发表长文章",
"action.shareLink.name": "分享链接",
"action.showCodePreviewFormat.name": "预览",
"action.showDeletedPages.name": "显示已删除的页面",
"action.showOnlyCodeFormat.name": "代码",
"action.showSplitViewFormat.name": "拆分",
"action.signUpForNotion.name": "注册 Notion",
"action.signUpOrlogIn.name": "注册或登录",
"action.sort.name": "排序",
"action.startPublicEditDialog.continueLabel": "继续",
"action.startPublicEditDialog.message":
"当你开始编辑时,页面所有者将可以看到你的姓名,邮箱地址和头像。",
"action.strikeThrough.name": "删除线",
"action.subGroupBy.name": "子组",
"action.syncPage.name": "保存到离线",
"action.templates.name": "模板",
"action.timelineBy.name": "时间轴显示",
"action.toggleRecordingInputLatency.name": "切换记录输入延迟",
"action.turnInto.name": "转换成",
"action.turnIntoCollection.title": "转换成数据库",
"action.turnPreviewIntoMention": "转换为提及",
"action.turnintoInline.name": "转换成内嵌",
"action.turnintoPage.name": "转换成页面",
"action.turnintoSimpleTable.name": "转换成简单的表格",
"action.underline.name": "下划线",
"action.undo.name": "撤消",
"action.unlockDatabaseName.name": "解锁视图",
"action.unlockPageName.name": "解锁页面",
"action.unpin.name": "从侧边栏移除",
"action.unsyncPage.name": "从离线中移除",
"action.unsyncTransclusionContainer.fuzzySearchKeywords":
"取消同步所有取消分组",
"action.unsyncTransclusionContainerName.name": "禁用所有同步",
"action.unsyncTransclusionReference.fuzzySearchKeywords":
"取消同步取消分组",
"action.unsyncTransclusionReference.name": "取消同步",
"action.viewOriginal.name": "查看原始内容",
"action.whatIsNotion.name": "Notion 是什么?",
"action.workAtNotion.name": "在 Notion 中工作",
"action.wrapAllColumns.name": "对所有列应用换行",
"action.wrapCode.fuzzySearchKeywords":
"Wrap Code 代码 daima dai'ma 换行 huanhang huan'hang",
"action.wrapCode.label": "代码换行",
"action.zoomIn.name": "放大",
"action.zoomOut.name": "缩小",
"activateReferral.dialogError.cannotInviteSelf.errorMessage":
"你不能邀请自己",
"activateReferral.dialogError.emailNotEligible.errorMessage":
"此邮箱地址不符合引荐计划的使用条例。如果你认为这是个错误,请与支持人员联系。",
"activateReferral.dialogError.invitationCreditAlreadyApplied.errorMessage":
"你已经应用了邀请积分。",
"activateReferral.dialogError.noValidReferral.errorMessage":
"找不到有效的引荐。",
"activateReferral.dialogError.referralAlreadyActivated.errorMessage":
"引荐已被激活。",
"activateReferral.dialogError.referringUserNotFound.errorMessage":
"找不到引荐用户。",
"activateReferral.dialogError.userAlreadySignedUp.errorMessage":
"用户已注册。",
"activity.accessRequested.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 请求访问 {pageName}}}",
"activity.accessRequested.messageLabel": "来自{author}的消息",
"activity.accessRequestedMembership.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 请求 {invitee} 成为工作区成员}}",
"activity.actions.unarchiveButton.label": "取消归档",
"activity.blockEdited.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 编辑了 {pageTitle}}}",
"activity.collectionCreated.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 创建了 {collectionTitle}}}",
"activity.collectionEdited.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 编辑了 {collectionTitle}}}",
"activity.collectionPropertyCreated.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 在 {collectionTitle} 中创建了属性 {collectionPropertyTitle}}}",
"activity.collectionPropertyDeleted.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 在 {collectionTitle} 中删除了属性 {collectionPropertyTitle}}}",
"activity.collectionPropertyEdited.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 在 {collectionTitle} 中编辑了属性 {collectionPropertyTitle}}}",
"activity.collectionRowCreated.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 创建了 {pageTitle}}}",
"activity.collectionRowDeleted.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 删除了 {pageTitle}}}",
"activity.collectionViewCreated.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 在 {collectionTitle} 中创建了视图 {collectionViewTitle}}}",
"activity.collectionViewDeleted.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 在 {collectionTitle} 中删除了视图 {collectionViewTitle}}}",
"activity.collectionViewEdited.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 在 {collectionTitle} 中编辑了视图 {collectionViewTitle}}}",
"activity.commentActivity.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 评论了 {blockName}}}",
"activity.deletedGroup.placeholder": "已删除的群组",
"activity.emailEdited.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 将邮箱地址从 {oldEmail} 更改为 {newEmail}}}",
"activity.mentionActivity.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 在 {pageName} 中提及了你}}",
"activity.pageLocked.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 锁定了 {blockTitle}}}",
"activity.pageUnlocked.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 解锁了 {blockTitle}}}",
"activity.permissionGroupTitles.deletedGroup": "已删除的群组",
"activity.permissionGroupTitles.untitledGroup": "无标题群组",
"activity.permissionsActivity.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 加入了 {pageOrSpaceName}}}",
"activity.privateContentTransferred.header":
"{authorPhrase} 已将私人内容从 {fromUserName} 转移给你: {pageName}",
"activity.refollowPageButton.label": "重新关注此页面",
"activity.reminderInActivity.header": "{pageTitle}中的提醒",
"activity.replyButton.label": "回复",
"activity.restorePermissionsForActivity.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 恢复了继承的 {pageOrSpaceName} 访问权限}}",
"activity.restrictPermissionsForActivity.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 限制了 {pageOrSpaceName} 的访问权限}}",
"activity.topLevelBlockPrivateCreated.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 创建了私人页面 {pageTitle}}}",
"activity.topLevelBlockPrivateDeleted.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 删除了私人页面 {pageTitle}}}",
"activity.topLevelBlockWorkspaceCreated.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 创建了工作区页面 {pageTitle}}}",
"activity.topLevelBlockWorkspaceDeleted.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 删除了工作区页面 {pageTitle}}}",
"activity.unarchiveButton.label": "取消归档",
"activity.unfollowPageButton.label": "取消关注此页面",
"activity.untitledGroup.placeholder": "无标题的群组",
"activity.untitledPlaceholder": "无标题",
"activity.updatedPermissionGroupCreated.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 创建了 {groupName} 群组}}",
"activity.updatedPermissionGroupDeleted.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 删除了 {groupName} 群组}}",
"activity.updatedPermissionGroupEdit.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 编辑了 {groupName} 群组}}",
"activity.updatedPermissionGroupEditedDefault.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 编辑了 {groupName} 群组}}",
"activity.updatedPermissionsForActivity.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 更新了 {pageOrSpaceName} 的权限}}",
"activity.userInvitedActivityGroupId.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 将你加入了 {groupName} 群组}}",
"activity.userInvitedActivityGroupIdByBot.header":
"你已被添加到 {groupName} 群组",
"activity.userInvitedActivityNavigableBlock.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 邀请你加入 {blockName}}}",
"activity.userInvitedActivityNavigableBlockByBot.header":
"你已被邀请加入{blockName}",
"activity.userInvitedActivityOtherInvite.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 邀请你加入 {spaceName}}}",
"activity.userInvitedActivityOtherInviteByBot.header":
"你已被邀请加入{spaceName}",
"activity.userInvitedToTeamActivity.header":
"{numberOfAuthors, plural, other {{authorOrAuthors} 邀请你加入 {teamName} 团队空间}}",
"activity.viewMoreButton.label": "查看其余 {moreCount} 项",
"activitySection.archiveAction.tooltip": "归档此通知",
"activitySection.authorPhrase.forMoreThanTwoAuthors.label":
"{numberOfOtherAuthors, plural, other {<b>{firstAuthor}</b>、<b>{secondAuthor}</b>及其他 {numberOfOtherAuthors} 位}}",
"activitySection.authorPhrase.forNoAuthors.label": "某人",
"activitySection.authorPhrase.forOneAuthor.label": "<b>{author}</b>",
"activitySection.authorPhrase.forTwoAuthors.label":
"<b>{firstAuthor}</b>和<b>{secondAuthor}</b>",
"activitySection.viewVersionForUpdate.tooltip": "查看本次更新后的版本",
"activityUpdate.unknownErrorLoadingActivities.message": "出了些问题。",
"activityUpdates.clearFilters": "清除",
"activityUpdates.filterMenu.byDate": "日期范围",
"activityUpdates.filterMenu.byType.addItemLabel": "添加活动类型",
"activityUpdates.filterMenu.byType.resultSectionTitle": "活动类型",
"activityUpdates.filterMenu.byType.title": "搜索类型",
"activityUpdates.offlineMessage": "请连接网络后查看动态。",
"actorHelpers.anonymousPlaceholder": "匿名",
"actorHelpers.userFullName": "{lastName} {firstName}",
"adminAPIRequest.loadingMessage": "载入中…",
"adminConnectionsSettings.autoApproveBuiltByNotion.caption":
"启动此选项,以批准所有工作区成员安装<helpcenterlink>由 Notion 构建</helpcenterlink>的连接。",
"adminConnectionsSettings.autoApproveBuiltByNotion.title":
"自动批准<builtbynotion>由 Notion 构建</builtbynotion>的连接",
"adminConnectionsSettings.connectionRestrictions.allowList.caption":
"工作区成员只能安装由管理员预先批准的连接。",
"adminConnectionsSettings.connectionRestrictions.info.title":
"管理员可以随时安装和批准新连接。",
"adminConnectionsSettings.connectionRestrictions.off.caption":
"工作区成员可以安装任何连接。",
"adminConnectionsSettings.requireApprovalSetting.allowList.caption":
"工作区成员只能安装由管理员预先批准的连接。",
"adminConnectionsSettings.requireApprovalSetting.allowList.workspaceOwner.caption":
"工作区成员只能安装由工作区所有者预先批准的连接。",
"adminConnectionsSettings.requireApprovalSetting.off.caption":
"工作区成员可以安装任何新连接。",
"adminConnectionsSettings.requireApprovalSetting.title": "禁止成员安装连接",
"adminConnectionsSettings.search.button.label":
"{plusIcon} 添加已批准的连接",
"adminConnectionsSettings.search.input.placeholder": "按名称或集成 ID 添加",
"adminConnectionsSettings.table.allowIntegrations.title":
"已批准的连接 {numberOfIntegrations}",
"adminConnectionsSettings.table.default.title":
"所有连接 {numberOfIntegrations}",
"adminIntegrationSettings.autoApproveBuiltByNotion.builtbyNotion.link":
"由 Notion 构建",
"adminIntegrationSettings.autoApproveBuiltByNotion.caption":
"启动此选项,批准所有工作区成员安装 <helpcenterlink>Built by Notion</helpcenterlink> 集成。",
"adminIntegrationSettings.autoApproveBuiltByNotion.title":
"自动批准 <builtbynotion>Built by Notion</builtbynotion> 集成",
"adminIntegrationSettings.integrationRestrictions.allowList.caption":
"工作区成员只能安装由管理员预先批准的集成。",
"adminIntegrationSettings.integrationRestrictions.allowList.title":
"从批准列表中",
"adminIntegrationSettings.integrationRestrictions.allowList.workspaceOwners.caption":
"工作区成员只能安装由工作区所有者预先批准的集成。",
"adminIntegrationSettings.integrationRestrictions.info.title":
"管理员可以随时安装和批准新的集成。",
"adminIntegrationSettings.integrationRestrictions.off.caption":
"工作区成员可以安装任何集成。",
"adminIntegrationSettings.integrationRestrictions.off.title": "关闭",
"adminIntegrationSettings.requireApprovalSetting.allowList.caption":
"工作区成员只能安装由管理员预先批准的集成。",
"adminIntegrationSettings.requireApprovalSetting.allowList.workspaceOwner.caption":
"工作区成员只能安装由工作区所有者预先批准的集成。",
"adminIntegrationSettings.requireApprovalSetting.off.caption":
"工作区成员可以安装任何新集成。",
"adminIntegrationSettings.requireApprovalSetting.title": "禁止成员安装集成",
"adminIntegrationSettings.search.button.label":
"{plusIcon} 添加批准的集成",
"adminIntegrationSettings.search.input.placeholder": "按名称或集成 ID 添加",
"adminIntegrationSettings.search.label.noResults": "无结果",
"adminIntegrationSettings.search.subtitle.notionBuilt": "由 Notion 开发",
"adminIntegrationSettings.search.title.popularIntegrations": "热门集成",
"adminIntegrationSettings.table.allowIntegrations.title":
"批准的集成 {numberOfIntegrations}",
"adminIntegrationSettings.table.default.title": "所有集成",
"adminLoginAsUser.loggingInAs.loadingMessage": "以 {userEmail} 登录",
"aliasBlock.comment.noAccess.subtitle": "你无权查看此页面及其评论",
"aliasBlock.comment.noAccess.title": "无权访问页面评论",
"allTimeZones.Africa/Abidjan": "非洲/阿比让",
"allTimeZones.Africa/Accra": "非洲/阿克拉",
"allTimeZones.Africa/Addis_Ababa": "非洲/亚的斯亚贝巴",
"allTimeZones.Africa/Algiers": "非洲/阿尔及尔",
"allTimeZones.Africa/Asmara": "非洲/阿斯马拉",
"allTimeZones.Africa/Asmera": "非洲/阿斯梅拉",
"allTimeZones.Africa/Bamako": "非洲/巴马科",
"allTimeZones.Africa/Bangui": "非洲/班吉",
"allTimeZones.Africa/Banjul": "非洲/班珠尔",
"allTimeZones.Africa/Bissau": "非洲/比绍",
"allTimeZones.Africa/Blantyre": "非洲/布兰太尔",
"allTimeZones.Africa/Brazzaville": "非洲/布拉柴维尔",
"allTimeZones.Africa/Bujumbura": "非洲/布琼布拉",
"allTimeZones.Africa/Cairo": "非洲/开罗",
"allTimeZones.Africa/Casablanca": "非洲/卡萨布兰卡",
"allTimeZones.Africa/Ceuta": "非洲/休达",
"allTimeZones.Africa/Conakry": "非洲/科纳克里",
"allTimeZones.Africa/Dakar": "非洲/达喀尔",
"allTimeZones.Africa/Dar_es_Salaam": "非洲/达累斯萨拉姆",
"allTimeZones.Africa/Djibouti": "非洲/吉布提",
"allTimeZones.Africa/Douala": "非洲/杜阿拉",
"allTimeZones.Africa/El_Aaiun": "非洲/阿尤恩",
"allTimeZones.Africa/Freetown": "非洲/弗里敦",
"allTimeZones.Africa/Gaborone": "非洲/哈博罗内",
"allTimeZones.Africa/Harare": "非洲/哈拉雷",
"allTimeZones.Africa/Johannesburg": "非洲/约翰内斯堡",
"allTimeZones.Africa/Juba": "非洲/朱巴",
"allTimeZones.Africa/Kampala": "非洲/坎帕拉",
"allTimeZones.Africa/Khartoum": "非洲/喀土穆",
"allTimeZones.Africa/Kigali": "非洲/基加利",
"allTimeZones.Africa/Kinshasa": "非洲/金沙萨",
"allTimeZones.Africa/Lagos": "非洲/拉各斯",
"allTimeZones.Africa/Libreville": "非洲/利伯维尔",
"allTimeZones.Africa/Lome": "非洲/洛美",
"allTimeZones.Africa/Luanda": "非洲/罗安达",
"allTimeZones.Africa/Lubumbashi": "非洲/卢本巴希",
"allTimeZones.Africa/Lusaka": "非洲/卢萨卡",
"allTimeZones.Africa/Malabo": "非洲/马拉博",
"allTimeZones.Africa/Maputo": "非洲/马普托",
"allTimeZones.Africa/Maseru": "非洲/马塞卢",
"allTimeZones.Africa/Mbabane": "非洲/姆巴巴纳",
"allTimeZones.Africa/Mogadishu": "非洲/摩加迪沙",
"allTimeZones.Africa/Monrovia": "非洲/蒙罗维亚",
"allTimeZones.Africa/Nairobi": "非洲/内罗毕",
"allTimeZones.Africa/Ndjamena": "非洲/恩贾梅纳",
"allTimeZones.Africa/Niamey": "非洲/尼亚美",
"allTimeZones.Africa/Nouakchott": "非洲/努瓦克肖特",
"allTimeZones.Africa/Ouagadougou": "非洲/瓦加杜古",
"allTimeZones.Africa/Porto-Novo": "非洲/波多诺伏",
"allTimeZones.Africa/Sao_Tome": "非洲/圣多美",
"allTimeZones.Africa/Timbuktu": "非洲/廷巴克图",
"allTimeZones.Africa/Tripoli": "非洲/的黎波里",
"allTimeZones.Africa/Tunis": "非洲/突尼斯",
"allTimeZones.Africa/Windhoek": "非洲/温得和克",
"allTimeZones.America/Adak": "美洲/阿达克",
"allTimeZones.America/Anchorage": "美洲/安克雷奇",
"allTimeZones.America/Anguilla": "美洲/安圭拉",
"allTimeZones.America/Antigua": "美洲/安提瓜",
"allTimeZones.America/Araguaina": "美洲/阿拉瓜伊纳",
"allTimeZones.America/Argentina/Buenos_Aires": "美洲/阿根廷/布宜诺斯艾利斯",
"allTimeZones.America/Argentina/Catamarca": "美洲/阿根廷/卡塔马卡",
"allTimeZones.America/Argentina/ComodRivadavia":
"美洲/阿根廷/ComodRivadavia",
"allTimeZones.America/Argentina/Cordoba": "美洲/阿根廷/科尔多瓦",
"allTimeZones.America/Argentina/Jujuy": "美洲/阿根廷/胡胡伊",
"allTimeZones.America/Argentina/La_Rioja": "美洲/阿根廷/拉里奥哈",
"allTimeZones.America/Argentina/Mendoza": "美洲/阿根廷/门多萨",
"allTimeZones.America/Argentina/Rio_Gallegos": "美洲/阿根廷/里奥加耶戈斯",
"allTimeZones.America/Argentina/Salta": "美洲/阿根廷/萨尔塔",
"allTimeZones.America/Argentina/San_Juan": "美洲/阿根廷/圣胡安",
"allTimeZones.America/Argentina/San_Luis": "美洲/阿根廷/圣路易斯",
"allTimeZones.America/Argentina/Tucuman": "美洲/阿根廷/图库曼",
"allTimeZones.America/Argentina/Ushuaia": "美洲/阿根廷/乌斯怀亚",
"allTimeZones.America/Aruba": "美洲/阿鲁巴",
"allTimeZones.America/Asuncion": "美洲/亚松森",
"allTimeZones.America/Atikokan": "美洲/阿蒂科肯",
"allTimeZones.America/Atka": "美洲/阿特卡",
"allTimeZones.America/Bahia": "美洲/巴伊亚",
"allTimeZones.America/Bahia_Banderas": "美洲/班德拉斯海湾",
"allTimeZones.America/Barbados": "美洲/巴巴多斯",
"allTimeZones.America/Belem": "美洲/贝伦",
"allTimeZones.America/Belize": "美洲/伯利兹",
"allTimeZones.America/Blanc-Sablon": "美洲/勃朗峰-萨伯隆",
"allTimeZones.America/Boa_Vista": "美洲/博阿维斯塔",
"allTimeZones.America/Bogota": "美洲/波哥大",
"allTimeZones.America/Boise": "美洲/博伊西",
"allTimeZones.America/Buenos_Aires": "美洲/布宜诺斯艾利斯",
"allTimeZones.America/Cambridge_Bay": "美洲/剑桥湾",
"allTimeZones.America/Campo_Grande": "美洲/大坎普",
"allTimeZones.America/Cancun": "美洲/坎昆",