-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathtranslations.ts
More file actions
2654 lines (2653 loc) · 86.7 KB
/
Copy pathtranslations.ts
File metadata and controls
2654 lines (2653 loc) · 86.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: "允許非成員分享錯誤、回饋和建議,而不會中斷您的工作流程。",
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, one{# 位成員} 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: "網址",
required: "網址無效",
placeholder: "輸入或貼上網址",
},
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: "Epic",
epics: "Epic",
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_is_invalid: "網址無效",
display_title: "顯示標題",
link_title_placeholder: "您希望如何顯示這個連結",
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: "封存",
restore: "還原",
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: "偏離軌道",
timeline: "時間軸",
completion: "完成",
upcoming: "即將發生",
completed: "已完成",
in_progress: "進行中",
planned: "已計劃",
paused: "暫停",
at_risk: "有風險",
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: "所有 Epic",
label: "{count, plural, one {Epic} other {Epic}}",
new: "新 Epic",
adding: "新增 Epic 中",
create: {
success: "Epic 建立成功",
},
add: {
press_enter: "按 'Enter' 以新增另一個 Epic",
label: "新增 Epic",
},
title: {
label: "Epic 標題",
required: "Epic 標題為必填。",
},
},
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: {