-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathtranslations.ts
More file actions
2633 lines (2632 loc) · 84.7 KB
/
Copy pathtranslations.ts
File metadata and controls
2633 lines (2632 loc) · 84.7 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
/**
* Copyright (c) 2023-present Plane Software, Inc. and contributors
* SPDX-License-Identifier: AGPL-3.0-only
* See the LICENSE file for details.
*/
export default {
sidebar: {
projects: "项目",
pages: "页面",
new_work_item: "新工作项",
home: "主页",
your_work: "我的工作",
inbox: "收件箱",
workspace: "工作区",
views: "视图",
analytics: "分析",
work_items: "工作项",
cycles: "周期",
modules: "模块",
intake: "收集",
drafts: "草稿",
favorites: "收藏",
pro: "专业版",
upgrade: "升级",
stickies: "便签",
},
auth: {
common: {
email: {
label: "邮箱",
placeholder: "name@company.com",
errors: {
required: "邮箱是必填项",
invalid: "邮箱格式无效",
},
},
password: {
label: "密码",
set_password: "设置密码",
placeholder: "输入密码",
confirm_password: {
label: "确认密码",
placeholder: "确认密码",
},
current_password: {
label: "当前密码",
},
new_password: {
label: "新密码",
placeholder: "输入新密码",
},
change_password: {
label: {
default: "修改密码",
submitting: "正在修改密码",
},
},
errors: {
match: "密码不匹配",
empty: "请输入密码",
length: "密码长度应超过8个字符",
strength: {
weak: "密码强度较弱",
strong: "密码强度较强",
},
},
submit: "设置密码",
toast: {
change_password: {
success: {
title: "成功!",
message: "密码修改成功。",
},
error: {
title: "错误!",
message: "出现错误。请重试。",
},
},
},
},
unique_code: {
label: "唯一码",
placeholder: "123456",
paste_code: "粘贴发送到您邮箱的验证码",
requesting_new_code: "正在请求新验证码",
sending_code: "正在发送验证码",
},
already_have_an_account: "已有账号?",
login: "登录",
create_account: "创建账号",
new_to_plane: "首次使用 Plane?",
back_to_sign_in: "返回登录",
resend_in: "{seconds} 秒后重新发送",
sign_in_with_unique_code: "使用唯一码登录",
forgot_password: "忘记密码?",
},
sign_up: {
header: {
label: "创建账号以开始与团队一起管理工作。",
step: {
email: {
header: "注册",
sub_header: "",
},
password: {
header: "注册",
sub_header: "使用邮箱-密码组合注册。",
},
unique_code: {
header: "注册",
sub_header: "使用发送到上述邮箱的唯一码注册。",
},
},
},
errors: {
password: {
strength: "请设置一个强密码以继续",
},
},
},
sign_in: {
header: {
label: "登录以开始与团队一起管理工作。",
step: {
email: {
header: "登录或注册",
sub_header: "",
},
password: {
header: "登录或注册",
sub_header: "使用您的邮箱-密码组合登录。",
},
unique_code: {
header: "登录或注册",
sub_header: "使用发送到上述邮箱的唯一码登录。",
},
},
},
},
forgot_password: {
title: "重置密码",
description: "输入您的用户账号已验证的邮箱地址,我们将向您发送密码重置链接。",
email_sent: "我们已将重置链接发送到您的邮箱",
send_reset_link: "发送重置链接",
errors: {
smtp_not_enabled: "我们发现您的管理员未启用 SMTP,我们将无法发送密码重置链接",
},
toast: {
success: {
title: "邮件已发送",
message: "请查看您的收件箱以获取重置密码的链接。如果几分钟内未收到,请检查垃圾邮件文件夹。",
},
error: {
title: "错误!",
message: "出现错误。请重试。",
},
},
},
reset_password: {
title: "设置新密码",
description: "使用强密码保护您的账号",
},
set_password: {
title: "保护您的账号",
description: "设置密码有助于您安全登录",
},
sign_out: {
toast: {
error: {
title: "错误!",
message: "登出失败。请重试。",
},
},
},
},
submit: "提交",
cancel: "取消",
loading: "加载中",
error: "错误",
success: "成功",
warning: "警告",
info: "信息",
close: "关闭",
yes: "是",
no: "否",
ok: "确定",
name: "名称",
description: "描述",
search: "搜索",
add_member: "添加成员",
adding_members: "正在添加成员",
remove_member: "移除成员",
add_members: "添加成员",
adding_member: "正在添加成员",
remove_members: "移除成员",
add: "添加",
adding: "添加中",
remove: "移除",
add_new: "添加新的",
remove_selected: "移除所选",
first_name: "名",
last_name: "姓",
email: "邮箱",
display_name: "显示名称",
role: "角色",
timezone: "时区",
avatar: "头像",
cover_image: "封面图片",
password: "密码",
change_cover: "更改封面",
language: "语言",
saving: "保存中",
save_changes: "保存更改",
deactivate_account: "停用账号",
deactivate_account_description: "停用账号后,该账号内的所有数据和资源将被永久删除且无法恢复。",
profile_settings: "个人资料设置",
your_account: "您的账号",
security: "安全",
activity: "活动",
appearance: "外观",
notifications: "通知",
workspaces: "工作区",
create_workspace: "创建工作区",
invitations: "邀请",
summary: "摘要",
assigned: "已分配",
created: "已创建",
subscribed: "已订阅",
you_do_not_have_the_permission_to_access_this_page: "您没有访问此页面的权限。",
something_went_wrong_please_try_again: "出现错误。请重试。",
load_more: "加载更多",
select_or_customize_your_interface_color_scheme: "选择或自定义您的界面配色方案。",
theme: "主题",
system_preference: "系统偏好",
light: "浅色",
dark: "深色",
light_contrast: "浅色高对比度",
dark_contrast: "深色高对比度",
custom: "自定义主题",
select_your_theme: "选择您的主题",
customize_your_theme: "自定义您的主题",
background_color: "背景颜色",
text_color: "文字颜色",
primary_color: "主要(主题)颜色",
sidebar_background_color: "侧边栏背景颜色",
sidebar_text_color: "侧边栏文字颜色",
set_theme: "设置主题",
enter_a_valid_hex_code_of_6_characters: "输入有效的6位十六进制代码",
background_color_is_required: "背景颜色为必填项",
text_color_is_required: "文字颜色为必填项",
primary_color_is_required: "主要颜色为必填项",
sidebar_background_color_is_required: "侧边栏背景颜色为必填项",
sidebar_text_color_is_required: "侧边栏文字颜色为必填项",
updating_theme: "正在更新主题",
theme_updated_successfully: "主题更新成功",
failed_to_update_the_theme: "主题更新失败",
email_notifications: "邮件通知",
stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified:
"及时了解您订阅的工作项。启用此功能以获取通知。",
email_notification_setting_updated_successfully: "邮件通知设置更新成功",
failed_to_update_email_notification_setting: "邮件通知设置更新失败",
notify_me_when: "在以下情况通知我",
property_changes: "属性变更",
property_changes_description: "当工作项的属性(如负责人、优先级、估算等)发生变更时通知我。",
state_change: "状态变更",
state_change_description: "当工作项移动到不同状态时通知我",
issue_completed: "工作项完成",
issue_completed_description: "仅当工作项完成时通知我",
comments: "评论",
comments_description: "当有人在工作项上发表评论时通知我",
mentions: "提及",
mentions_description: "仅当有人在评论或描述中提及我时通知我",
old_password: "旧密码",
general_settings: "常规设置",
sign_out: "退出登录",
signing_out: "正在退出登录",
active_cycles: "活动周期",
active_cycles_description: "监控各个项目的周期,跟踪高优先级工作项,并关注需要注意的周期。",
on_demand_snapshots_of_all_your_cycles: "所有周期的实时快照",
upgrade: "升级",
"10000_feet_view": "所有活动周期的全局视图。",
"10000_feet_view_description": "放大视角,一次性查看所有项目中正在进行的周期,而不是在每个项目中逐个查看周期。",
get_snapshot_of_each_active_cycle: "获取每个活动周期的快照。",
get_snapshot_of_each_active_cycle_description:
"跟踪所有活动周期的高级指标,查看其进度状态,并了解与截止日期相关的范围。",
compare_burndowns: "比较燃尽图。",
compare_burndowns_description: "通过查看每个周期的燃尽报告,监控每个团队的表现。",
quickly_see_make_or_break_issues: "快速查看关键工作项。",
quickly_see_make_or_break_issues_description:
"预览每个周期中与截止日期相关的高优先级工作项。一键查看每个周期的所有工作项。",
zoom_into_cycles_that_need_attention: "关注需要注意的周期。",
zoom_into_cycles_that_need_attention_description: "一键调查任何不符合预期的周期状态。",
stay_ahead_of_blockers: "提前预防阻塞。",
stay_ahead_of_blockers_description: "发现从一个项目到另一个项目的挑战,并查看从其他视图中不易发现的周期间依赖关系。",
analytics: "分析",
workspace_invites: "工作区邀请",
enter_god_mode: "进入管理员模式",
workspace_logo: "工作区标志",
new_issue: "新工作项",
your_work: "我的工作",
drafts: "草稿",
projects: "项目",
views: "视图",
workspace: "工作区",
archives: "归档",
settings: "设置",
failed_to_move_favorite: "移动收藏失败",
favorites: "收藏",
no_favorites_yet: "暂无收藏",
create_folder: "创建文件夹",
new_folder: "新建文件夹",
favorite_updated_successfully: "收藏更新成功",
favorite_created_successfully: "收藏创建成功",
folder_already_exists: "文件夹已存在",
folder_name_cannot_be_empty: "文件夹名称不能为空",
something_went_wrong: "出现错误",
failed_to_reorder_favorite: "重新排序收藏失败",
favorite_removed_successfully: "收藏移除成功",
failed_to_create_favorite: "创建收藏失败",
failed_to_rename_favorite: "重命名收藏失败",
project_link_copied_to_clipboard: "项目链接已复制到剪贴板",
link_copied: "链接已复制",
add_project: "添加项目",
create_project: "创建项目",
failed_to_remove_project_from_favorites: "无法从收藏中移除项目。请重试。",
project_created_successfully: "项目创建成功",
project_created_successfully_description: "项目创建成功。您现在可以开始添加工作项了。",
project_name_already_taken: "项目名称已被使用。",
project_identifier_already_taken: "项目标识符已被使用。",
project_cover_image_alt: "项目封面图片",
name_is_required: "名称为必填项",
title_should_be_less_than_255_characters: "标题应少于255个字符",
project_name: "项目名称",
project_id_must_be_at_least_1_character: "项目ID至少需要1个字符",
project_id_must_be_at_most_5_characters: "项目ID最多只能有5个字符",
project_id: "项目ID",
project_id_tooltip_content: "帮助您唯一标识项目中的工作项。最多10个字符。",
description_placeholder: "描述",
only_alphanumeric_non_latin_characters_allowed: "仅允许字母数字和非拉丁字符。",
project_id_is_required: "项目ID为必填项",
project_id_allowed_char: "仅允许字母数字和非拉丁字符。",
project_id_min_char: "项目ID至少需要1个字符",
project_id_max_char: "项目ID最多只能有10个字符",
project_description_placeholder: "输入项目描述",
select_network: "选择网络",
lead: "负责人",
date_range: "日期范围",
private: "私有",
public: "公开",
accessible_only_by_invite: "仅受邀者可访问",
anyone_in_the_workspace_except_guests_can_join: "除访客外的工作区所有成员都可以加入",
creating: "创建中",
creating_project: "正在创建项目",
adding_project_to_favorites: "正在将项目添加到收藏",
project_added_to_favorites: "项目已添加到收藏",
couldnt_add_the_project_to_favorites: "无法将项目添加到收藏。请重试。",
removing_project_from_favorites: "正在从收藏中移除项目",
project_removed_from_favorites: "项目已从收藏中移除",
couldnt_remove_the_project_from_favorites: "无法从收藏中移除项目。请重试。",
add_to_favorites: "添加到收藏",
remove_from_favorites: "从收藏中移除",
publish_project: "发布项目",
publish: "发布",
copy_link: "复制链接",
leave_project: "离开项目",
join_the_project_to_rearrange: "加入项目以重新排列",
drag_to_rearrange: "拖动以重新排列",
congrats: "恭喜!",
open_project: "打开项目",
issues: "工作项",
cycles: "周期",
modules: "模块",
pages: "页面",
intake: "收集",
time_tracking: "时间跟踪",
work_management: "工作管理",
projects_and_issues: "项目和工作项",
projects_and_issues_description: "在此项目中开启或关闭这些功能。",
cycles_description: "为每个项目设置时间框,并根据需要调整周期。一个周期可以是两周,下一个周期是一周。",
modules_description: "将工作组织为子项目,并指定专门的负责人和受理人。",
views_description: "保存自定义排序、筛选和显示选项,或与团队共享。",
pages_description: "创建和编辑自由格式的内容:笔记、文档,任何内容。",
intake_description: "允许非成员提交 Bug、反馈和建议,且不会干扰您的工作流程。",
time_tracking_description: "记录在工作项和项目上花费的时间。",
work_management_description: "轻松管理您的工作和项目。",
documentation: "文档",
contact_sales: "联系销售",
hyper_mode: "超级模式",
keyboard_shortcuts: "键盘快捷键",
whats_new: "新功能",
version: "版本",
we_are_having_trouble_fetching_the_updates: "我们在获取更新时遇到问题。",
our_changelogs: "我们的更新日志",
for_the_latest_updates: "获取最新更新。",
please_visit: "请访问",
docs: "文档",
full_changelog: "完整更新日志",
support: "支持",
forum: "Forum",
powered_by_plane_pages: "由Plane Pages提供支持",
please_select_at_least_one_invitation: "请至少选择一个邀请。",
please_select_at_least_one_invitation_description: "请至少选择一个加入工作区的邀请。",
we_see_that_someone_has_invited_you_to_join_a_workspace: "我们看到有人邀请您加入工作区",
join_a_workspace: "加入工作区",
we_see_that_someone_has_invited_you_to_join_a_workspace_description: "我们看到有人邀请您加入工作区",
join_a_workspace_description: "加入工作区",
accept_and_join: "接受并加入",
go_home: "返回首页",
no_pending_invites: "没有待处理的邀请",
you_can_see_here_if_someone_invites_you_to_a_workspace: "如果有人邀请您加入工作区,您可以在这里看到",
back_to_home: "返回首页",
workspace_name: "工作区名称",
deactivate_your_account: "停用您的账户",
deactivate_your_account_description:
"一旦停用,您将无法被分配工作项,也不会被计入工作区的账单。要重新激活您的账户,您需要收到发送到此电子邮件地址的工作区邀请。",
deactivating: "正在停用",
confirm: "确认",
confirming: "确认中",
draft_created: "草稿已创建",
issue_created_successfully: "工作项创建成功",
draft_creation_failed: "草稿创建失败",
issue_creation_failed: "工作项创建失败",
draft_issue: "草稿工作项",
issue_updated_successfully: "工作项更新成功",
issue_could_not_be_updated: "工作项无法更新",
create_a_draft: "创建草稿",
save_to_drafts: "保存到草稿",
save: "保存",
update: "更新",
updating: "更新中",
create_new_issue: "创建新工作项",
editor_is_not_ready_to_discard_changes: "编辑器尚未准备好放弃更改",
failed_to_move_issue_to_project: "无法将工作项移动到项目",
create_more: "创建更多",
add_to_project: "添加到项目",
discard: "放弃",
duplicate_issue_found: "发现重复的工作项",
duplicate_issues_found: "发现重复的工作项",
no_matching_results: "没有匹配的结果",
title_is_required: "标题为必填项",
title: "标题",
state: "状态",
priority: "优先级",
none: "无",
urgent: "紧急",
high: "高",
medium: "中",
low: "低",
members: "成员",
assignee: "负责人",
assignees: "负责人",
you: "您",
labels: "标签",
create_new_label: "创建新标签",
start_date: "开始日期",
end_date: "结束日期",
due_date: "截止日期",
estimate: "估算",
change_parent_issue: "更改父工作项",
remove_parent_issue: "移除父工作项",
add_parent: "添加父项",
loading_members: "正在加载成员",
view_link_copied_to_clipboard: "视图链接已复制到剪贴板",
required: "必填",
optional: "可选",
Cancel: "取消",
edit: "编辑",
archive: "归档",
restore: "恢复",
open_in_new_tab: "在新标签页中打开",
delete: "删除",
deleting: "删除中",
make_a_copy: "创建副本",
move_to_project: "移动到项目",
good: "早上",
morning: "早上",
afternoon: "下午",
evening: "晚上",
night: "晚安",
greetings: {
morning: "早上好,{first_name} {last_name}",
afternoon: "下午好,{first_name} {last_name}",
evening: "晚上好,{first_name} {last_name}",
night: "晚安,{first_name} {last_name}",
},
show_all: "显示全部",
show_less: "显示更少",
no_data_yet: "暂无数据",
syncing: "同步中",
add_work_item: "添加工作项",
advanced_description_placeholder: "按'/'使用命令",
create_work_item: "创建工作项",
attachments: "附件",
declining: "拒绝中",
declined: "已拒绝",
decline: "拒绝",
unassigned: "未分配",
work_items: "工作项",
add_link: "添加链接",
points: "点数",
no_assignee: "无负责人",
no_assignees_yet: "暂无负责人",
no_labels_yet: "暂无标签",
ideal: "理想",
current: "当前",
no_matching_members: "没有匹配的成员",
leaving: "离开中",
removing: "移除中",
leave: "离开",
refresh: "刷新",
refreshing: "刷新中",
refresh_status: "刷新状态",
prev: "上一个",
next: "下一个",
re_generating: "重新生成中",
re_generate: "重新生成",
re_generate_key: "重新生成密钥",
export: "导出",
member: "{count, plural, other{# 成员}}",
new_password_must_be_different_from_old_password: "新密码必须不同于旧密码",
edited: "已编辑",
bot: "机器人",
project_view: {
sort_by: {
created_at: "创建时间",
updated_at: "更新时间",
name: "名称",
},
},
toast: {
success: "成功!",
error: "错误!",
},
links: {
toasts: {
created: {
title: "链接已创建",
message: "链接已成功创建",
},
not_created: {
title: "链接未创建",
message: "无法创建链接",
},
updated: {
title: "链接已更新",
message: "链接已成功更新",
},
not_updated: {
title: "链接未更新",
message: "无法更新链接",
},
removed: {
title: "链接已移除",
message: "链接已成功移除",
},
not_removed: {
title: "链接未移除",
message: "无法移除链接",
},
},
},
home: {
empty: {
quickstart_guide: "快速入门指南",
not_right_now: "暂时不要",
create_project: {
title: "创建项目",
description: "在Plane中,大多数事情都从项目开始。",
cta: "开始使用",
},
invite_team: {
title: "邀请您的团队",
description: "与同事一起构建、发布和管理。",
cta: "邀请他们加入",
},
configure_workspace: {
title: "设置您的工作区",
description: "开启或关闭功能,或进行更多设置。",
cta: "配置此工作区",
},
personalize_account: {
title: "让Plane更适合您",
description: "选择您的头像、颜色等。",
cta: "立即个性化",
},
widgets: {
title: "没有小部件看起来很安静,开启它们吧",
description: "看起来您的所有小部件都已关闭。现在启用它们\n来提升您的体验!",
primary_button: {
text: "管理小部件",
},
},
},
quick_links: {
empty: "保存您想要方便访问的工作相关链接。",
add: "添加快速链接",
title: "快速链接",
title_plural: "快速链接",
},
recents: {
title: "最近",
empty: {
project: "访问项目后,您的最近项目将显示在这里。",
page: "访问页面后,您的最近页面将显示在这里。",
issue: "访问工作项后,您的最近工作项将显示在这里。",
default: "您还没有任何最近项目。",
},
filters: {
all: "所有",
projects: "项目",
pages: "页面",
issues: "工作项",
},
},
new_at_plane: {
title: "Plane新功能",
},
quick_tutorial: {
title: "快速教程",
},
widget: {
reordered_successfully: "小部件重新排序成功。",
reordering_failed: "重新排序小部件时出错。",
},
manage_widgets: "管理小部件",
title: "首页",
star_us_on_github: "在GitHub上为我们加星",
},
link: {
modal: {
url: {
text: "URL",
required: "URL无效",
placeholder: "输入或粘贴URL",
},
title: {
text: "显示标题",
placeholder: "您希望如何显示此链接",
},
},
},
common: {
all: "全部",
no_items_in_this_group: "此组中没有项目",
drop_here_to_move: "拖放到此处以移动",
states: "状态",
state: "状态",
state_groups: "状态组",
state_group: "状态组",
priorities: "优先级",
priority: "优先级",
team_project: "团队项目",
project: "项目",
cycle: "周期",
cycles: "周期",
module: "模块",
modules: "模块",
labels: "标签",
label: "标签",
assignees: "负责人",
assignee: "负责人",
created_by: "创建者",
none: "无",
link: "链接",
estimates: "估算",
estimate: "估算",
created_at: "创建于",
completed_at: "完成于",
layout: "布局",
filters: "筛选",
display: "显示",
load_more: "加载更多",
activity: "活动",
analytics: "分析",
dates: "日期",
success: "成功!",
something_went_wrong: "出现错误",
error: {
label: "错误!",
message: "发生错误。请重试。",
},
group_by: "分组方式",
epic: "史诗",
epics: "史诗",
work_item: "工作项",
work_items: "工作项",
sub_work_item: "子工作项",
add: "添加",
warning: "警告",
updating: "更新中",
adding: "添加中",
update: "更新",
creating: "创建中",
create: "创建",
cancel: "取消",
description: "描述",
title: "标题",
attachment: "附件",
general: "常规",
features: "功能",
automation: "自动化",
project_name: "项目名称",
project_id: "项目ID",
project_timezone: "项目时区",
created_on: "创建于",
update_project: "更新项目",
identifier_already_exists: "标识符已存在",
add_more: "添加更多",
defaults: "默认值",
add_label: "添加标签",
customize_time_range: "自定义时间范围",
loading: "加载中",
attachments: "附件",
property: "属性",
properties: "属性",
parent: "父项",
page: "页面",
remove: "移除",
archiving: "归档中",
archive: "归档",
access: {
public: "公开",
private: "私有",
},
done: "完成",
sub_work_items: "子工作项",
comment: "评论",
workspace_level: "工作区级别",
order_by: {
label: "排序方式",
manual: "手动",
last_created: "最近创建",
last_updated: "最近更新",
start_date: "开始日期",
due_date: "截止日期",
asc: "升序",
desc: "降序",
updated_on: "更新时间",
},
sort: {
asc: "升序",
desc: "降序",
created_on: "创建时间",
updated_on: "更新时间",
},
comments: "评论",
updates: "更新",
clear_all: "清除全部",
copied: "已复制!",
link_copied: "链接已复制!",
link_copied_to_clipboard: "链接已复制到剪贴板",
copied_to_clipboard: "工作项链接已复制到剪贴板",
is_copied_to_clipboard: "工作项已复制到剪贴板",
no_links_added_yet: "暂无添加的链接",
add_link: "添加链接",
links: "链接",
go_to_workspace: "前往工作区",
progress: "进度",
optional: "可选",
join: "加入",
go_back: "返回",
continue: "继续",
resend: "重新发送",
relations: "关系",
errors: {
default: {
title: "错误!",
message: "发生错误。请重试。",
},
required: "此字段为必填项",
entity_required: "{entity}为必填项",
restricted_entity: "{entity}已被限制",
},
update_link: "更新链接",
attach: "附加",
create_new: "创建新的",
add_existing: "添加现有",
type_or_paste_a_url: "输入或粘贴URL",
url_is_invalid: "URL无效",
display_title: "显示标题",
link_title_placeholder: "您希望如何显示此链接",
url: "URL",
side_peek: "侧边预览",
modal: "模态框",
full_screen: "全屏",
close_peek_view: "关闭预览视图",
toggle_peek_view_layout: "切换预览视图布局",
options: "选项",
duration: "持续时间",
today: "今天",
week: "周",
month: "月",
quarter: "季度",
press_for_commands: "按'/'使用命令",
click_to_add_description: "点击添加描述",
search: {
label: "搜索",
placeholder: "输入搜索内容",
no_matches_found: "未找到匹配项",
no_matching_results: "没有匹配的结果",
},
actions: {
edit: "编辑",
make_a_copy: "创建副本",
open_in_new_tab: "在新标签页中打开",
copy_link: "复制链接",
archive: "归档",
delete: "删除",
remove_relation: "移除关系",
subscribe: "订阅",
unsubscribe: "取消订阅",
clear_sorting: "清除排序",
show_weekends: "显示周末",
enable: "启用",
disable: "禁用",
},
name: "名称",
discard: "放弃",
confirm: "确认",
confirming: "确认中",
read_the_docs: "阅读文档",
default: "默认",
active: "活动",
enabled: "已启用",
disabled: "已禁用",
mandate: "授权",
mandatory: "必需的",
yes: "是",
no: "否",
please_wait: "请稍候",
enabling: "正在启用",
disabling: "正在禁用",
beta: "测试版",
or: "或",
next: "下一步",
back: "返回",
cancelling: "正在取消",
configuring: "正在配置",
clear: "清除",
import: "导入",
connect: "连接",
authorizing: "正在授权",
processing: "正在处理",
no_data_available: "暂无数据",
from: "来自 {name}",
authenticated: "已认证",
select: "选择",
upgrade: "升级",
add_seats: "添加席位",
projects: "项目",
workspace: "工作区",
workspaces: "工作区",
team: "团队",
teams: "团队",
entity: "实体",
entities: "实体",
task: "任务",
tasks: "任务",
section: "部分",
sections: "部分",
edit: "编辑",
connecting: "正在连接",
connected: "已连接",
disconnect: "断开连接",
disconnecting: "正在断开连接",
installing: "正在安装",
install: "安装",
reset: "重置",
live: "实时",
change_history: "变更历史",
coming_soon: "即将推出",
member: "成员",
members: "成员",
you: "你",
upgrade_cta: {
higher_subscription: "升级到更高订阅",
talk_to_sales: "联系销售",
},
category: "类别",
categories: "类别",
saving: "保存中",
save_changes: "保存更改",
delete: "删除",
deleting: "删除中",
pending: "待处理",
invite: "邀请",
view: "查看",
deactivated_user: "已停用用户",
apply: "应用",
applying: "应用中",
users: "用户",
admins: "管理员",
guests: "访客",
on_track: "进展顺利",
off_track: "偏离轨道",
at_risk: "有风险",
timeline: "时间轴",
completion: "完成",
upcoming: "即将发生",
completed: "已完成",
in_progress: "进行中",
planned: "已计划",
paused: "暂停",
no_of: "{entity} 的数量",
resolved: "已解决",
},
chart: {
x_axis: "X轴",
y_axis: "Y轴",
metric: "指标",
},
form: {
title: {
required: "标题为必填项",
max_length: "标题应少于 {length} 个字符",
},
},
entity: {
grouping_title: "{entity}分组",
priority: "{entity}优先级",
all: "所有{entity}",
drop_here_to_move: "拖放到此处以移动{entity}",
delete: {
label: "删除{entity}",
success: "{entity}删除成功",
failed: "{entity}删除失败",
},
update: {
failed: "{entity}更新失败",
success: "{entity}更新成功",
},
link_copied_to_clipboard: "{entity}链接已复制到剪贴板",
fetch: {
failed: "获取{entity}时出错",
},
add: {
success: "{entity}添加成功",
failed: "添加{entity}时出错",
},
remove: {
success: "{entity}删除成功",
failed: "删除{entity}时出错",
},
},
epic: {
all: "所有史诗",
label: "{count, plural, one {史诗} other {史诗}}",
new: "新建史诗",
adding: "正在添加史诗",
create: {
success: "史诗创建成功",
},
add: {
press_enter: "按'Enter'添加另一个史诗",
label: "添加史诗",
},
title: {
label: "史诗标题",
required: "史诗标题为必填项",
},
},
issue: {
label: "{count, plural, one {工作项} other {工作项}}",
all: "所有工作项",
edit: "编辑工作项",
title: {
label: "工作项标题",
required: "工作项标题为必填项",
},
add: {
press_enter: "按'Enter'添加另一个工作项",
label: "添加工作项",
cycle: {
failed: "无法将工作项添加到周期。请重试。",
success: "{count, plural, one {工作项} other {工作项}}已成功添加到周期。",
loading: "正在将{count, plural, one {工作项} other {工作项}}添加到周期",
},
assignee: "添加负责人",
start_date: "添加开始日期",
due_date: "添加截止日期",
parent: "添加父工作项",
sub_issue: "添加子工作项",
relation: "添加关系",
link: "添加链接",
existing: "添加现有工作项",
},
remove: {
label: "移除工作项",
cycle: {
loading: "正在从周期中移除工作项",
success: "已成功从周期中移除工作项。",
failed: "无法从周期中移除工作项。请重试。",
},
module: {
loading: "正在从模块中移除工作项",
success: "已成功从模块中移除工作项。",
failed: "无法从模块中移除工作项。请重试。",
},
parent: {