-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathtranslations.ts
More file actions
2758 lines (2757 loc) 路 93.2 KB
/
Copy pathtranslations.ts
File metadata and controls
2758 lines (2757 loc) 路 93.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright (c) 2023-present Plane Software, Inc. and contributors
* SPDX-License-Identifier: AGPL-3.0-only
* See the LICENSE file for details.
*/
export default {
submit: "Submit",
cancel: "Cancel",
loading: "Loading",
error: "Error",
success: "Success",
warning: "Warning",
info: "Info",
close: "Close",
yes: "Yes",
no: "No",
ok: "OK",
name: "Name",
description: "Description",
search: "Search",
add_member: "Add member",
adding_members: "Adding members",
remove_member: "Remove member",
add_members: "Add members",
adding_member: "Adding members",
remove_members: "Remove members",
add: "Add",
adding: "Adding",
remove: "Remove",
add_new: "Add new",
remove_selected: "Remove selected",
first_name: "First name",
last_name: "Last name",
email: "Email",
display_name: "Display name",
role: "Role",
timezone: "Timezone",
avatar: "Avatar",
cover_image: "Cover image",
password: "Password",
change_cover: "Change cover",
language: "Language",
saving: "Saving",
save_changes: "Save changes",
deactivate_account: "Deactivate account",
deactivate_account_description:
"When deactivating an account, all of the data and resources within that account will be permanently removed and cannot be recovered.",
profile_settings: "Profile settings",
your_account: "Your account",
security: "Security",
activity: "Activity",
preferences: "Preferences",
language_and_time: "Language & Time",
notifications: "Notifications",
workspaces: "Workspaces",
create_workspace: "Create workspace",
invitations: "Invitations",
summary: "Summary",
assigned: "Assigned",
created: "Created",
subscribed: "Subscribed",
you_do_not_have_the_permission_to_access_this_page: "You do not have the permission to access this page.",
something_went_wrong_please_try_again: "Something went wrong. Please try again.",
load_more: "Load more",
select_or_customize_your_interface_color_scheme: "Select or customize your interface color scheme.",
timezone_setting: "Current timezone setting.",
language_setting: "Choose the language used in the user interface.",
settings_moved_to_preferences: "Timezone & Language settings have been moved to preferences.",
go_to_preferences: "Go to preferences",
theme: "Theme",
system_preference: "System preference",
light: "Light",
dark: "Dark",
light_contrast: "Light high contrast",
dark_contrast: "Dark high contrast",
custom: "Custom theme",
select_your_theme: "Select your theme",
customize_your_theme: "Customize your theme",
background_color: "Background color",
text_color: "Text color",
primary_color: "Primary(Theme) color",
sidebar_background_color: "Sidebar background color",
sidebar_text_color: "Sidebar text color",
set_theme: "Set theme",
enter_a_valid_hex_code_of_6_characters: "Enter a valid hex code of 6 characters",
background_color_is_required: "Background color is required",
text_color_is_required: "Text color is required",
primary_color_is_required: "Primary color is required",
sidebar_background_color_is_required: "Sidebar background color is required",
sidebar_text_color_is_required: "Sidebar text color is required",
updating_theme: "Updating theme",
theme_updated_successfully: "Theme updated successfully",
failed_to_update_the_theme: "Failed to update the theme",
email_notifications: "Email notifications",
stay_in_the_loop_on_issues_you_are_subscribed_to_enable_this_to_get_notified:
"Stay in the loop on Work items you are subscribed to. Enable this to get notified.",
email_notification_setting_updated_successfully: "Email notification setting updated successfully",
failed_to_update_email_notification_setting: "Failed to update email notification setting",
notify_me_when: "Notify me when",
property_changes: "Property changes",
property_changes_description:
"Notify me when work items' properties like assignees, priority, estimates or anything else changes.",
state_change: "State change",
state_change_description: "Notify me when the work items moves to a different state",
issue_completed: "Work item completed",
issue_completed_description: "Notify me only when a work item is completed",
comments: "Comments",
comments_description: "Notify me when someone leaves a comment on the work item",
mentions: "Mentions",
mentions_description: "Notify me only when someone mentions me in the comments or description",
old_password: "Old password",
general_settings: "General settings",
sign_out: "Sign out",
signing_out: "Signing out",
active_cycles: "Active cycles",
active_cycles_description:
"Monitor cycles across projects, track high-priority work items, and zoom in cycles that need attention.",
on_demand_snapshots_of_all_your_cycles: "On-demand snapshots of all your cycles",
upgrade: "Upgrade",
"10000_feet_view": "10,000-feet view of all active cycles.",
"10000_feet_view_description":
"Zoom out to see running cycles across all your projects at once instead of going from Cycle to Cycle in each project.",
get_snapshot_of_each_active_cycle: "Get a snapshot of each active cycle.",
get_snapshot_of_each_active_cycle_description:
"Track high-level metrics for all active cycles, see their state of progress, and get a sense of scope against deadlines.",
compare_burndowns: "Compare burndowns.",
compare_burndowns_description:
"Monitor how each of your teams are performing with a peek into each cycle's burndown report.",
quickly_see_make_or_break_issues: "Quickly see make-or-break work items.",
quickly_see_make_or_break_issues_description:
"Preview high-priority work items for each cycle against due dates. See all of them per cycle in one click.",
zoom_into_cycles_that_need_attention: "Zoom into cycles that need attention.",
zoom_into_cycles_that_need_attention_description:
"Investigate the state of any cycle that doesn't conform to expectations in one click.",
stay_ahead_of_blockers: "Stay ahead of blockers.",
stay_ahead_of_blockers_description:
"Spot challenges from one project to another and see inter-cycle dependencies that aren't obvious from any other view.",
analytics: "Analytics",
workspace_invites: "Workspace invites",
enter_god_mode: "Enter god mode",
workspace_logo: "Workspace logo",
new_issue: "New work item",
your_work: "Your work",
drafts: "Drafts",
projects: "Projects",
views: "Views",
workspace: "Workspace",
archives: "Archives",
settings: "Settings",
failed_to_move_favorite: "Failed to move favorite",
favorites: "Favorites",
no_favorites_yet: "No favorites yet",
create_folder: "Create folder",
new_folder: "New folder",
favorite_updated_successfully: "Favorite updated successfully",
favorite_created_successfully: "Favorite created successfully",
folder_already_exists: "Folder already exists",
folder_name_cannot_be_empty: "Folder name cannot be empty",
something_went_wrong: "Something went wrong",
failed_to_reorder_favorite: "Failed to reorder favorite",
favorite_removed_successfully: "Favorite removed successfully",
failed_to_create_favorite: "Failed to create favorite",
failed_to_rename_favorite: "Failed to rename favorite",
project_link_copied_to_clipboard: "Project link copied to clipboard",
link_copied: "Link copied",
add_project: "Add project",
create_project: "Create project",
failed_to_remove_project_from_favorites: "Couldn't remove the project from favorites. Please try again.",
project_created_successfully: "Project created successfully",
project_created_successfully_description: "Project created successfully. You can now start adding work items to it.",
project_name_already_taken: "The project name is already taken.",
project_identifier_already_taken: "The project identifier is already taken.",
project_cover_image_alt: "Project cover image",
name_is_required: "Name is required",
title_should_be_less_than_255_characters: "Title should be less than 255 characters",
project_name: "Project name",
project_id_must_be_at_least_1_character: "Project ID must at least be of 1 character",
project_id_must_be_at_most_5_characters: "Project ID must at most be of 5 characters",
project_id: "Project ID",
project_id_tooltip_content: "Helps you identify work items in the project uniquely. Max 10 characters.",
description_placeholder: "Description",
only_alphanumeric_non_latin_characters_allowed: "Only Alphanumeric & Non-latin characters are allowed.",
project_id_is_required: "Project ID is required",
project_id_allowed_char: "Only Alphanumeric & Non-latin characters are allowed.",
project_id_min_char: "Project ID must at least be of 1 character",
project_id_max_char: "Project ID must at most be of 10 characters",
project_description_placeholder: "Enter project description",
select_network: "Select network",
lead: "Lead",
date_range: "Date range",
private: "Private",
public: "Public",
accessible_only_by_invite: "Accessible only by invite",
anyone_in_the_workspace_except_guests_can_join: "Anyone in the workspace except Guests can join",
creating: "Creating",
creating_project: "Creating project",
adding_project_to_favorites: "Adding project to favorites",
project_added_to_favorites: "Project added to favorites",
couldnt_add_the_project_to_favorites: "Couldn't add the project to favorites. Please try again.",
removing_project_from_favorites: "Removing project from favorites",
project_removed_from_favorites: "Project removed from favorites",
couldnt_remove_the_project_from_favorites: "Couldn't remove the project from favorites. Please try again.",
add_to_favorites: "Add to favorites",
remove_from_favorites: "Remove from favorites",
publish_project: "Publish project",
publish: "Publish",
copy_link: "Copy link",
leave_project: "Leave project",
join_the_project_to_rearrange: "Join the project to rearrange",
drag_to_rearrange: "Drag to rearrange",
congrats: "Congrats!",
open_project: "Open project",
issues: "Work items",
cycles: "Cycles",
modules: "Modules",
pages: "Pages",
intake: "Intake",
time_tracking: "Time Tracking",
work_management: "Work management",
projects_and_issues: "Projects and work items",
projects_and_issues_description: "Toggle these on or off this project.",
cycles_description:
"Timebox work per project and adjust the time period as needed. One cycle can be 2 weeks, the next 1 week.",
modules_description: "Organize work into sub-projects with dedicated leads and assignees.",
views_description: "Save custom sorts, filters, and display options or share them with your team.",
pages_description: "Create and edit free-form content; notes, docs, anything.",
intake_description: "Let non-members share bugs, feedback, and suggestions; without disrupting your workflow.",
time_tracking_description: "Log time spent on work items and projects.",
work_management_description: "Manage your work and projects with ease.",
documentation: "Documentation",
contact_sales: "Contact sales",
hyper_mode: "Hyper Mode",
keyboard_shortcuts: "Keyboard shortcuts",
whats_new: "What's new?",
version: "Version",
we_are_having_trouble_fetching_the_updates: "We are having trouble fetching the updates.",
our_changelogs: "our changelogs",
for_the_latest_updates: "for the latest updates.",
please_visit: "Please visit",
docs: "Docs",
full_changelog: "Full changelog",
support: "Support",
forum: "Forum",
powered_by_plane_pages: "Powered by Plane Pages",
please_select_at_least_one_invitation: "Please select at least one invitation.",
please_select_at_least_one_invitation_description: "Please select at least one invitation to join the workspace.",
we_see_that_someone_has_invited_you_to_join_a_workspace: "We see that someone has invited you to join a workspace",
join_a_workspace: "Join a workspace",
we_see_that_someone_has_invited_you_to_join_a_workspace_description:
"We see that someone has invited you to join a workspace",
join_a_workspace_description: "Join a workspace",
accept_and_join: "Accept & Join",
go_home: "Go Home",
no_pending_invites: "No pending invites",
you_can_see_here_if_someone_invites_you_to_a_workspace: "You can see here if someone invites you to a workspace",
back_to_home: "Back to home",
workspace_name: "workspace-name",
deactivate_your_account: "Deactivate your account",
deactivate_your_account_description:
"Once deactivated, you can't be assigned work items and be billed for your workspace. To reactivate your account, you will need an invite to a workspace at this email address.",
deactivating: "Deactivating",
confirm: "Confirm",
confirming: "Confirming",
draft_created: "Draft created",
issue_created_successfully: "Work item created successfully",
draft_creation_failed: "Draft creation failed",
issue_creation_failed: "Work item creation failed",
draft_issue: "Draft work item",
issue_updated_successfully: "Work item updated successfully",
issue_could_not_be_updated: "Work item could not be updated",
create_a_draft: "Create a draft",
save_to_drafts: "Save to Drafts",
save: "Save",
update: "Update",
updating: "Updating",
create_new_issue: "Create new work item",
editor_is_not_ready_to_discard_changes: "Editor is not ready to discard changes",
failed_to_move_issue_to_project: "Failed to move work item to project",
create_more: "Create more",
add_to_project: "Add to project",
discard: "Discard",
duplicate_issue_found: "Duplicate work item found",
duplicate_issues_found: "Duplicate work items found",
no_matching_results: "No matching results",
title_is_required: "Title is required",
title: "Title",
state: "State",
priority: "Priority",
none: "None",
urgent: "Urgent",
high: "High",
medium: "Medium",
low: "Low",
members: "Members",
assignee: "Assignee",
assignees: "Assignees",
you: "You",
labels: "Labels",
create_new_label: "Create new label",
start_date: "Start date",
end_date: "End date",
due_date: "Due date",
estimate: "Estimate",
change_parent_issue: "Change parent work item",
remove_parent_issue: "Remove parent work item",
add_parent: "Add parent",
loading_members: "Loading members",
view_link_copied_to_clipboard: "View link copied to clipboard.",
required: "Required",
optional: "Optional",
Cancel: "Cancel",
edit: "Edit",
archive: "Archive",
restore: "Restore",
open_in_new_tab: "Open in new tab",
delete: "Delete",
deleting: "Deleting",
make_a_copy: "Make a copy",
move_to_project: "Move to project",
good: "Good",
morning: "morning",
afternoon: "afternoon",
evening: "evening",
night: "night",
greetings: {
morning: "Good morning, {first_name} {last_name}",
afternoon: "Good afternoon, {first_name} {last_name}",
evening: "Good evening, {first_name} {last_name}",
night: "Good night, {first_name} {last_name}",
},
show_all: "Show all",
show_less: "Show less",
no_data_yet: "No Data yet",
syncing: "Syncing",
add_work_item: "Add work item",
advanced_description_placeholder: "Press '/' for commands",
create_work_item: "Create work item",
attachments: "Attachments",
declining: "Declining",
declined: "Declined",
decline: "Decline",
unassigned: "Unassigned",
work_items: "Work items",
add_link: "Add link",
points: "Points",
no_assignee: "No assignee",
no_assignees_yet: "No assignees yet",
no_labels_yet: "No labels yet",
ideal: "Ideal",
current: "Current",
no_matching_members: "No matching members",
leaving: "Leaving",
removing: "Removing",
leave: "Leave",
refresh: "Refresh",
refreshing: "Refreshing",
refresh_status: "Refresh status",
prev: "Prev",
next: "Next",
re_generating: "Re-generating",
re_generate: "Re-generate",
re_generate_key: "Re-generate key",
export: "Export",
member: "{count, plural, one{# member} other{# members}}",
new_password_must_be_different_from_old_password: "New password must be different from old password",
edited: "edited",
bot: "Bot",
settings_description:
"Manage your account, workspace, and project preferences all in one place. Switch between tabs to easily configure.",
back_to_workspace: "Back to workspace",
project_view: {
sort_by: {
created_at: "Created at",
updated_at: "Updated at",
name: "Name",
},
},
toast: {
success: "Success!",
error: "Error!",
},
links: {
toasts: {
created: {
title: "Link created",
message: "The link has been successfully created",
},
not_created: {
title: "Link not created",
message: "The link could not be created",
},
updated: {
title: "Link updated",
message: "The link has been successfully updated",
},
not_updated: {
title: "Link not updated",
message: "The link could not be updated",
},
removed: {
title: "Link removed",
message: "The link has been successfully removed",
},
not_removed: {
title: "Link not removed",
message: "The link could not be removed",
},
},
},
home: {
empty: {
quickstart_guide: "Your quickstart guide",
not_right_now: "Not right now",
create_project: {
title: "Create a project",
description: "Most things start with a project in Plane.",
cta: "Get started",
},
invite_team: {
title: "Invite your team",
description: "Build, ship, and manage with coworkers.",
cta: "Get them in",
},
configure_workspace: {
title: "Set up your workspace.",
description: "Turn features on or off or go beyond that.",
cta: "Configure this workspace",
},
personalize_account: {
title: "Make Plane yours.",
description: "Choose your picture, colors, and more.",
cta: "Personalize now",
},
widgets: {
title: "It's Quiet Without Widgets, Turn Them On",
description: "It looks like all your widgets are turned off. Enable them\nnow to enhance your experience!",
primary_button: {
text: "Manage widgets",
},
},
},
quick_links: {
empty: "Save links to work things that you'd like handy.",
add: "Add quick Link",
title: "Quicklink",
title_plural: "Quicklinks",
},
recents: {
title: "Recents",
empty: {
project: "Your recent projects will appear here once you visit one.",
page: "Your recent pages will appear here once you visit one.",
issue: "Your recent work items will appear here once you visit one.",
default: "You don't have any recents yet.",
},
filters: {
all: "All",
projects: "Projects",
pages: "Pages",
issues: "Work items",
},
},
new_at_plane: {
title: "New at Plane",
},
quick_tutorial: {
title: "Quick tutorial",
},
widget: {
reordered_successfully: "Widget reordered successfully.",
reordering_failed: "Error occurred while reordering widget.",
},
manage_widgets: "Manage widgets",
title: "Home",
star_us_on_github: "Star us on GitHub",
},
link: {
modal: {
url: {
text: "URL",
required: "URL is invalid",
placeholder: "Type or paste a URL",
},
title: {
text: "Display title",
placeholder: "What you'd like to see this link as",
},
},
},
common: {
all: "All",
no_items_in_this_group: "No items in this group",
drop_here_to_move: "Drop here to move",
states: "States",
state: "State",
state_groups: "State groups",
state_group: "State group",
priorities: "Priorities",
priority: "Priority",
team_project: "Team project",
project: "Project",
cycle: "Cycle",
cycles: "Cycles",
module: "Module",
modules: "Modules",
labels: "Labels",
label: "Label",
admins: "Admins",
users: "Users",
guests: "Guests",
assignees: "Assignees",
assignee: "Assignee",
created_by: "Created by",
none: "None",
link: "Link",
estimates: "Estimates",
estimate: "Estimate",
created_at: "Created at",
completed_at: "Completed at",
layout: "Layout",
filters: "Filters",
display: "Display",
load_more: "Load more",
activity: "Activity",
analytics: "Analytics",
dates: "Dates",
success: "Success!",
something_went_wrong: "Something went wrong",
error: {
label: "Error!",
message: "Some error occurred. Please try again.",
},
group_by: "Group by",
epic: "Epic",
epics: "Epics",
work_item: "Work item",
work_items: "Work items",
sub_work_item: "Sub-work item",
add: "Add",
warning: "Warning",
updating: "Updating",
adding: "Adding",
update: "Update",
creating: "Creating",
create: "Create",
cancel: "Cancel",
description: "Description",
title: "Title",
attachment: "Attachment",
general: "General",
features: "Features",
automation: "Automation",
project_name: "Project name",
project_id: "Project ID",
project_timezone: "Project Timezone",
created_on: "Created on",
update_project: "Update project",
identifier_already_exists: "Identifier already exists",
add_more: "Add more",
defaults: "Defaults",
add_label: "Add label",
customize_time_range: "Customize time range",
loading: "Loading",
attachments: "Attachments",
property: "Property",
properties: "Properties",
parent: "Parent",
page: "Page",
remove: "Remove",
archiving: "Archiving",
archive: "Archive",
access: {
public: "Public",
private: "Private",
},
done: "Done",
sub_work_items: "Sub-work items",
comment: "Comment",
workspace_level: "Workspace level",
order_by: {
label: "Order by",
manual: "Manual",
last_created: "Last created",
last_updated: "Last updated",
start_date: "Start date",
due_date: "Due date",
asc: "Ascending",
desc: "Descending",
updated_on: "Updated on",
},
sort: {
asc: "Ascending",
desc: "Descending",
created_on: "Created on",
updated_on: "Updated on",
},
comments: "Comments",
updates: "Updates",
clear_all: "Clear all",
copied: "Copied!",
link_copied: "Link copied!",
link_copied_to_clipboard: "Link copied to clipboard",
copied_to_clipboard: "Work item link copied to clipboard",
is_copied_to_clipboard: "Work item is copied to clipboard",
no_links_added_yet: "No links added yet",
add_link: "Add link",
links: "Links",
go_to_workspace: "Go to workspace",
progress: "Progress",
optional: "Optional",
join: "Join",
go_back: "Go back",
continue: "Continue",
resend: "Resend",
relations: "Relations",
errors: {
default: {
title: "Error!",
message: "Something went wrong. Please try again.",
},
required: "This field is required",
entity_required: "{entity} is required",
restricted_entity: "{entity} is restricted",
},
update_link: "Update link",
attach: "Attach",
create_new: "Create new",
add_existing: "Add existing",
type_or_paste_a_url: "Type or paste a URL",
url_is_invalid: "URL is invalid",
display_title: "Display title",
link_title_placeholder: "What you'd like to see this link as",
url: "URL",
side_peek: "Side Peek",
modal: "Modal",
full_screen: "Full Screen",
close_peek_view: "Close the peek view",
toggle_peek_view_layout: "Toggle peek view layout",
options: "Options",
duration: "Duration",
today: "Today",
week: "Week",
month: "Month",
quarter: "Quarter",
press_for_commands: "Press '/' for commands",
click_to_add_description: "Click to add description",
on_track: "On-Track",
off_track: "Off-Track",
at_risk: "At risk",
timeline: "Timeline",
completion: "Completion",
upcoming: "Upcoming",
completed: "Completed",
in_progress: "In progress",
planned: "Planned",
paused: "Paused",
search: {
label: "Search",
placeholder: "Type to search",
no_matches_found: "No matches found",
no_matching_results: "No matching results",
},
actions: {
edit: "Edit",
make_a_copy: "Make a copy",
open_in_new_tab: "Open in new tab",
copy_link: "Copy link",
archive: "Archive",
restore: "Restore",
delete: "Delete",
remove_relation: "Remove relation",
subscribe: "Subscribe",
unsubscribe: "Unsubscribe",
clear_sorting: "Clear sorting",
show_weekends: "Show weekends",
enable: "Enable",
disable: "Disable",
copy_markdown: "Copy markdown",
},
name: "Name",
discard: "Discard",
confirm: "Confirm",
confirming: "Confirming",
read_the_docs: "Read the docs",
default: "Default",
active: "Active",
enabled: "Enabled",
disabled: "Disabled",
mandate: "Mandate",
mandatory: "Mandatory",
yes: "Yes",
no: "No",
please_wait: "Please wait",
enabling: "Enabling",
disabling: "Disabling",
beta: "Beta",
or: "or",
next: "Next",
back: "Back",
cancelling: "Cancelling",
configuring: "Configuring",
clear: "Clear",
import: "Import",
connect: "Connect",
authorizing: "Authorizing",
processing: "Processing",
no_data_available: "No data available",
from: "from {name}",
authenticated: "Authenticated",
select: "Select",
upgrade: "Upgrade",
add_seats: "Add Seats",
projects: "Projects",
workspace: "Workspace",
workspaces: "Workspaces",
team: "Team",
teams: "Teams",
entity: "Entity",
entities: "Entities",
task: "Task",
tasks: "Tasks",
section: "Section",
sections: "Sections",
edit: "Edit",
connecting: "Connecting",
connected: "Connected",
disconnect: "Disconnect",
disconnecting: "Disconnecting",
installing: "Installing",
install: "Install",
reset: "Reset",
live: "Live",
change_history: "Change History",
coming_soon: "Coming soon",
member: "Member",
members: "Members",
you: "You",
upgrade_cta: {
higher_subscription: "Upgrade to higher subscription",
talk_to_sales: "Talk to Sales",
},
category: "Category",
categories: "Categories",
saving: "Saving",
save_changes: "Save changes",
delete: "Delete",
deleting: "Deleting",
pending: "Pending",
invite: "Invite",
view: "View",
deactivated_user: "Deactivated user",
apply: "Apply",
applying: "Applying",
overview: "Overview",
no_of: "No. of {entity}",
resolved: "Resolved",
},
chart: {
x_axis: "X-axis",
y_axis: "Y-axis",
metric: "Metric",
},
form: {
title: {
required: "Title is required",
max_length: "Title should be less than {length} characters",
},
},
entity: {
grouping_title: "{entity} Grouping",
priority: "{entity} Priority",
all: "All {entity}",
drop_here_to_move: "Drop here to move the {entity}",
delete: {
label: "Delete {entity}",
success: "{entity} deleted successfully",
failed: "{entity} delete failed",
},
update: {
failed: "{entity} update failed",
success: "{entity} updated successfully",
},
link_copied_to_clipboard: "{entity} link copied to clipboard",
fetch: {
failed: "Error fetching {entity}",
},
add: {
success: "{entity} added successfully",
failed: "Error adding {entity}",
},
remove: {
success: "{entity} removed successfully",
failed: "Error removing {entity}",
},
},
epic: {
all: "All Epics",
label: "{count, plural, one {Epic} other {Epics}}",
new: "New Epic",
adding: "Adding epic",
create: {
success: "Epic created successfully",
},
add: {
press_enter: "Press 'Enter' to add another epic",
label: "Add Epic",
},
title: {
label: "Epic Title",
required: "Epic title is required.",
},
},
issue: {
label: "{count, plural, one {Work item} other {Work items}}",
all: "All Work items",
edit: "Edit work item",
title: {
label: "Work item title",
required: "Work item title is required.",
},
add: {
press_enter: "Press 'Enter' to add another work item",
label: "Add work item",
cycle: {
failed: "Work item could not be added to the cycle. Please try again.",
success: "{count, plural, one {Work item} other {Work items}} added to the cycle successfully.",
loading: "Adding {count, plural, one {work item} other {work items}} to the cycle",
},
assignee: "Add assignees",
start_date: "Add start date",
due_date: "Add due date",
parent: "Add parent work item",
sub_issue: "Add sub-work item",
relation: "Add relation",
link: "Add link",
existing: "Add existing work item",
},
remove: {
label: "Remove work item",
cycle: {
loading: "Removing work item from the cycle",
success: "Work item removed from the cycle successfully.",
failed: "Work item could not be removed from the cycle. Please try again.",
},
module: {
loading: "Removing work item from the module",
success: "Work item removed from the module successfully.",
failed: "Work item could not be removed from the module. Please try again.",
},
parent: {
label: "Remove parent work item",
},
},
new: "New work item",
adding: "Adding work item",
create: {
success: "Work item created successfully",
},
priority: {
urgent: "Urgent",
high: "High",
medium: "Medium",
low: "Low",
},
display: {
properties: {
label: "Display Properties",
id: "ID",
issue_type: "Work item Type",
sub_issue_count: "Sub-work item count",
attachment_count: "Attachment count",
created_on: "Created on",
sub_issue: "Sub-work item",
work_item_count: "Work item count",
},
extra: {
show_sub_issues: "Show sub-work items",
show_empty_groups: "Show empty groups",
},
},
layouts: {
ordered_by_label: "This layout is ordered by",
list: "List",
kanban: "Board",
calendar: "Calendar",
spreadsheet: "Table",
gantt: "Timeline",
title: {
list: "List Layout",
kanban: "Board Layout",
calendar: "Calendar Layout",
spreadsheet: "Table Layout",
gantt: "Timeline Layout",
},
},
states: {
active: "Active",
backlog: "Backlog",
},
comments: {
placeholder: "Add comment",
switch: {
private: "Switch to private comment",
public: "Switch to public comment",
},
create: {
success: "Comment created successfully",
error: "Comment creation failed. Please try again later.",
},
update: {
success: "Comment updated successfully",
error: "Comment update failed. Please try again later.",
},
remove: {
success: "Comment removed successfully",
error: "Comment remove failed. Please try again later.",
},
upload: {
error: "Asset upload failed. Please try again later.",
},
copy_link: {
success: "Comment link copied to clipboard",
error: "Error copying comment link. Please try again later.",
},
},
empty_state: {
issue_detail: {
title: "Work item does not exist",
description: "The work item you are looking for does not exist, has been archived, or has been deleted.",
primary_button: {
text: "View other work items",
},
},
},
sibling: {
label: "Sibling work items",
},
archive: {
description: "Only completed or canceled\nwork items can be archived",
label: "Archive Work item",
confirm_message:
"Are you sure you want to archive the work item? All your archived work items can be restored later.",
success: {
label: "Archive success",
message: "Your archives can be found in project archives.",
},
failed: {
message: "Work item could not be archived. Please try again.",
},
},
restore: {
success: {
title: "Restore success",
message: "Your work item can be found in project work items.",
},
failed: {
message: "Work item could not be restored. Please try again.",
},
},
relation: {
relates_to: "Relates to",
duplicate: "Duplicate of",
blocked_by: "Blocked by",
blocking: "Blocking",
},
copy_link: "Copy work item link",
delete: {
label: "Delete work item",
error: "Error deleting work item",
},
subscription: {
actions: {
subscribed: "Work item subscribed successfully",
unsubscribed: "Work item unsubscribed successfully",
},
},
select: {
error: "Please select at least one work item",
empty: "No work items selected",
add_selected: "Add selected work items",
select_all: "Select all",
deselect_all: "Deselect all",
},
open_in_full_screen: "Open work item in full screen",
},
attachment: {
error: "File could not be attached. Try uploading again.",
only_one_file_allowed: "Only one file can be uploaded at a time.",
file_size_limit: "File must be of {size}MB or less in size.",
drag_and_drop: "Drag and drop anywhere to upload",
delete: "Delete attachment",
},
label: {
select: "Add labels",
create: {
success: "Label created successfully",
failed: "Label creation failed",
already_exists: "Label already exists",
type: "Type to add a new label",