-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathjs-en.yml
More file actions
1180 lines (1126 loc) · 50.4 KB
/
Copy pathjs-en.yml
File metadata and controls
1180 lines (1126 loc) · 50.4 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
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
---
en:
js:
ajax:
hide: "Hide"
loading: "Loading…"
updating: "Updating…"
attachments:
delete: "Delete attachment"
delete_confirmation: |
Are you sure you want to delete this file? This action is not reversible.
draggable_hint: |
Drag on editor field to inline image or reference attachment. Closed editor fields will be opened while you keep dragging.
quarantined_hint: "The file is quarantined, as a virus was found. It is not available for download."
autocomplete_ng_select:
add_tag: "Add item"
clear_all: "Clear all"
loading: "Loading..."
not_found: "No items found"
type_to_search: "Type to search"
autocomplete_select:
placeholder:
multi: 'Add "%{name}"'
single: 'Select "%{name}"'
remove: "Remove %{name}"
active: "Active %{label} %{name}"
backup:
attachments_disabled: Attachments may not be included since they exceed the maximum overall size allowed.
You can change this via the configuration (requires a server restart).
info: >
You can trigger a backup here. The process can take some time depending on the amount
of data (especially attachments) you have. You will receive an email once it's ready.
note: >
A new backup will override any previous one. Only a limited number of backups per day
can be requested.
last_backup: Last backup
last_backup_from: Last backup from
title: Backup OpenProject
options: Options
include_attachments: Include attachments
download_backup: Download backup
request_backup: Request backup
close_popup_title: "Close popup"
close_filter_title: "Close filter"
close_form_title: "Close form"
button_add_watcher: "Add watcher"
button_add: "Add"
button_back: "Back"
button_back_to_list_view: "Back to list view"
button_cancel: "Cancel"
button_close: "Close"
button_change_project: "Move to another project"
button_check_all: "Check all"
button_configure-form: "Configure form"
button_confirm: "Confirm"
button_continue: "Continue"
button_copy: "Copy"
button_copy_to_clipboard: "Copy to clipboard"
button_copy_link_to_clipboard: "Copy link to clipboard"
button_copy_to_other_project: "Duplicate in another project"
button_custom-fields: "Custom fields"
button_delete: "Delete"
button_delete_watcher: "Delete watcher"
button_details_view: "Details view"
button_duplicate: "Duplicate"
button_edit: "Edit"
button_filter: "Filter"
button_collapse_all: "Collapse all"
button_expand_all: "Expand all"
button_advanced_filter: "Advanced filter"
button_list_view: "List view"
button_show_view: "Fullscreen view"
button_log_time: "Log time"
button_start_timer: "Start timer"
button_stop_timer: "Stop timer"
button_more: "More"
button_open_details: "Open details view"
button_close_details: "Close details view"
button_open_fullscreen: "Open fullscreen view"
button_show_cards: "Show card view"
button_show_list: "Show list view"
button_show_table: "Show table view"
button_show_gantt: "Show Gantt view"
button_show_fullscreen: "Show fullscreen view"
button_more_actions: "More actions"
button_quote: "Quote"
button_save: "Save"
button_settings: "Settings"
button_uncheck_all: "Uncheck all"
button_update: "Update"
button_export-atom: "Download Atom"
button_generate_pdf: "Generate PDF"
button_create: "Create"
card:
add_new: "Add new card"
highlighting:
inline: "Highlight inline:"
entire_card_by: "Entire card by"
remove_from_list: "Remove card from list"
caption_rate_history: "Rate history"
clipboard:
browser_error: "Your browser doesn't support copying to clipboard. Please copy it manually: %{content}"
copied_successful: "Successfully copied to clipboard!"
chart:
type: "Chart type"
axis_criteria: "Axis criteria"
modal_title: "Work package graph configuration"
types:
line: "Line"
horizontal_bar: "Horizontal bar"
bar: "Bar"
pie: "Pie"
doughnut: "Doughnut"
radar: "Radar"
polar_area: "Polar area"
tabs:
graph_settings: "General"
dataset: "Dataset %{number}"
errors:
could_not_load: "The data to display the graph could not be loaded. The necessary permissions may be lacking."
description_available_columns: "Available Columns"
description_current_position: "You are here: "
description_select_work_package: "Select work package #%{id}"
description_subwork_package: "Child of work package #%{id}"
editor:
revisions: "Show local modifications"
no_revisions: "No local modifications found"
preview: "Toggle preview mode"
source_code: "Toggle Markdown source mode"
error_saving_failed: "Saving the document failed with the following error: %{error}"
ckeditor_error: "An error occurred within CKEditor"
mode:
manual: "Switch to Markdown source"
wysiwyg: "Switch to WYSIWYG editor"
macro:
error: "Cannot expand macro: %{message}"
attribute_reference:
macro_help_tooltip: "This text segment is being dynamically rendered by a macro."
not_found: "Requested resource could not be found"
nested_macro: "This macro is recursively referencing %{model} %{id}."
invalid_attribute: "The selected attribute '%{name}' does not exist."
child_pages:
button: "Links to child pages"
include_parent: "Include parent"
text: "[Placeholder] Links to child pages of"
page: "Wiki page"
this_page: "this page"
hint: |
Leave this field empty to list all child pages of the current page. If you want to reference a different page, provide its title or slug.
code_block:
button: "Insert code snippet"
title: "Insert / edit Code snippet"
language: "Formatting language"
language_hint: "Enter the formatting language that will be used for highlighting (if supported)."
dropdown:
macros: "Macros"
chose_macro: "Choose macro"
toc: "Table of contents"
toolbar_help: "Click to select widget and show the toolbar. Double-click to edit widget"
wiki_page_include:
button: "Include content of another wiki page"
text: "[Placeholder] Included wiki page of"
page: "Wiki page"
not_set: "(Page not yet set)"
hint: |
Include the content of another wiki page by specifying its title or slug.
You can include the wiki page of another project by separating them with a colon like the following example.
work_package_button:
button: "Insert create work package button"
type: "Work package type"
button_style: "Use button style"
button_style_hint: "Optional: Check to make macro appear as a button, not as a link."
without_type: "Create work package"
with_type: "Create work package (Type: %{typename})"
embedded_table:
button: "Embed work package table"
text: "[Placeholder] Embedded work package table"
embedded_calendar:
text: "[Placeholder] Embedded calendar"
admin:
type_form:
edit_query: "Edit query"
working_days:
calendar:
empty_state_header: "Non-working days"
empty_state_description: 'No specific non-working days are defined for this year. Click on "+ Non-working day" below to add a date.'
new_date: "(new)"
add_non_working_day: "Non-working day"
already_added_error: "A non-working day for this date exists already. There can only be one non-working day created for each unique date."
work_packages_settings:
warning_progress_calculation_mode_change_from_status_to_field_html: >-
Changing progress calculation mode from status-based to work-based will make
the <i>% Complete</i> field freely editable. If you optionally enter values
for <i>Work</i> or <i>Remaining work</i>, they will also be linked to <i>% Complete</i>.
Changing <i>Remaining work</i> can then update <i>% Complete</i>.
warning_progress_calculation_mode_change_from_field_to_status_html: >-
Changing progress calculation mode from work-based to status-based will result
in all existing <i>% Complete</i> values to be lost and replaced with values
associated with each status. Existing values for <i>Remaining work</i> may
also be recalculated to reflect this change. This action is not reversible.
custom_actions:
date:
specific: "on"
current_date: "Current date"
error:
internal: "An internal error has occurred."
cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}"
query_saving: "The view could not be saved."
embedded_table_loading: "The embedded view could not be loaded: %{message}"
enumeration_activities: "Activities (time tracking)"
enumeration_doc_categories: "Document categories"
enumeration_work_package_priorities: "Work package priorities"
filter:
more_values_not_shown: "There are %{total} more results, search to filter results."
description:
text_open_filter: "Open this filter with 'ALT' and arrow keys."
text_close_filter: "To select an entry leave the focus for example by pressing enter. To leave without filter select the first (empty) entry."
noneElement: "(none)"
time_zone_converted:
two_values: "%{from} - %{to} in your local time."
only_start: "From %{from} in your local time."
only_end: "Till %{to} in your local time."
value_spacer: "-"
sorting:
criteria:
one: "First sorting criteria"
two: "Second sorting criteria"
three: "Third sorting criteria"
gantt_chart:
label: "Gantt chart"
quarter_label: "Q%{quarter_number}"
labels:
title: "Label configuration"
bar: "Bar labels"
left: "Left"
right: "Right"
farRight: "Far right"
description: >
Select the attributes you want to be shown in the respective positions of the Gantt chart at all times.
Note that when hovering over an element, its date labels will be shown instead of these attributes.
button_activate: "Show Gantt chart"
button_deactivate: "Hide Gantt chart"
filter:
noneSelection: "(none)"
selection_mode:
notification: "Click on any highlighted work package to create the relation. Press escape to cancel."
zoom:
in: "Zoom in"
out: "Zoom out"
auto: "Auto zoom"
days: "Days"
weeks: "Weeks"
months: "Months"
quarters: "Quarters"
years: "Years"
description: >
Select the initial zoom level that should be shown when autozoom is not available.
general_text_no: "no"
general_text_yes: "yes"
general_text_No: "No"
general_text_Yes: "Yes"
hal:
error:
update_conflict_refresh: "Click here to refresh the resource and update to the newest version."
edit_prohibited: "Editing %{attribute} is blocked for this resource. Either this attribute is derived from relations (e.g, children) or otherwise not configurable."
format:
date: "%{attribute} is no valid date - YYYY-MM-DD expected."
general: "An error has occurred."
ical_sharing_modal:
title: "Subscribe to calendar"
inital_setup_error_message: "An error occured while fetching data."
description: "You can use the URL (iCalendar) to subscribe to this calendar in an external client and view up-to-date work package information from there."
warning: "Please don't share this URL with other users. Anyone with this link will be able to view work package details without an account or password."
token_name_label: "Where will you be using this?"
token_name_placeholder: 'Type a name, e.g. "Phone"'
token_name_description_text: 'If you subscribe to this calendar from multiple devices, this name will help you distinguish between them in your <a href="%{myAccessTokensUrl}" target="_blank">access tokens</a> list.'
copy_url_label: "Copy URL"
ical_generation_error_text: "An error occured while generating the calendar URL."
success_message: 'The URL "%{name}" was successfully copied to your clipboard. Paste it in your calendar client to complete the subscription.'
label_activate: "Activate"
label_assignee: "Assignee"
label_assignee_alt_text: "This work package is assigned to %{name}"
label_add_column_after: "Add column after"
label_add_column_before: "Add column before"
label_add_columns: "Add columns"
label_add_comment: "Add comment"
label_add_comment_title: "Comment and type @ to notify other people"
label_add_row_after: "Add row after"
label_add_row_before: "Add row before"
label_add_selected_columns: "Add selected columns"
label_added_by: "added by"
label_added_time_by: 'Added by <a href="%{authorLink}">%{author}</a> at %{age}'
label_ago: "days ago"
label_all: "all"
label_all_projects: "All projects"
label_all_uppercase: "All"
label_all_work_packages: "all work packages"
label_and: "and"
label_ascending: "Ascending"
label_author: "Author: %{user}"
label_avatar: "Avatar"
label_between: "between"
label_board: "Board"
label_board_locked: "Locked"
label_board_plural: "Boards"
label_board_sticky: "Sticky"
label_change: "Change"
label_create: "Create"
label_create_work_package: "Create new work package"
label_created_by: "Created by"
label_current: "current"
label_date: "Date"
label_date_with_format: "Enter the %{date_attribute} using the following format: %{format}"
label_deactivate: "Deactivate"
label_descending: "Descending"
label_description: "Description"
label_details: "Details"
label_display: "Display"
label_cancel_comment: "Cancel comment"
label_closed_work_packages: "closed"
label_collapse: "Collapse"
label_collapsed: "collapsed"
label_collapse_all: "Collapse all"
label_collapse_text: "Collapse text"
label_comment: "Comment"
label_contains: "contains"
label_created_on: "created on"
label_edit_comment: "Edit this comment"
label_edit_status: "Edit the status of the work package"
label_email: "Email"
label_equals: "is"
label_expand: "Expand"
label_expanded: "expanded"
label_expand_all: "Expand all"
label_expand_text: "Show full text"
label_expand_project_menu: "Expand project menu"
label_export: "Export"
label_export_preparing: "The export is being prepared and will be downloaded shortly."
label_favorites: "Favorites"
label_filename: "File"
label_filesize: "Size"
label_general: "General"
label_greater_or_equal: ">="
label_group: "Group"
label_group_by: "Group by"
label_group_plural: "Groups"
label_hide_attributes: "Show less"
label_hide_column: "Hide column"
label_hide_project_menu: "Collapse project menu"
label_in: "in"
label_in_less_than: "in less than"
label_in_more_than: "in more than"
label_incoming_emails: "Incoming emails"
label_information_plural: "Information"
label_infinity: "Infinity"
label_invalid: "Invalid"
label_import: "Import"
label_latest_activity: "Latest activity"
label_last_updated_on: "Last updated on"
label_learn_more_link: "Learn more"
label_less_or_equal: "<="
label_less_than_ago: "less than days ago"
label_loading: "Loading..."
label_mail_notification: "Email notifications"
label_manage_columns: "Manage and reorder columns"
label_me: "me"
label_meeting_agenda: "Agenda"
label_meeting_minutes: "Minutes"
label_more_than_ago: "more than days ago"
label_moderate_comment: "Moderate comment"
label_next: "Next"
label_no_color: "No color"
label_no_data: "No data to display"
label_no_due_date: "no finish date"
label_no_start_date: "no start date"
label_no_date: "no date"
label_no_value: "No value"
label_none: "none"
label_not_contains: "doesn't contain"
label_not_available: "Not available"
label_not_equals: "is not"
label_on: "on"
label_open_menu: "Open menu"
label_open_context_menu: "Open context menu"
label_open_work_packages: "open"
label_password: "Password"
label_previous: "Previous"
label_per_page: "Per page:"
label_please_wait: "Please wait"
label_project: "Project"
label_project_plural: "Projects"
label_visibility_settings: "Visibility settings"
label_quote_comment: "Quote this comment"
label_recent: "Recent"
label_reset: "Reset"
label_remove: "Remove"
label_remove_column: "Remove column"
label_remove_columns: "Remove selected columns"
label_remove_row: "Remove row"
label_report: "Report"
label_repository_plural: "Repositories"
label_resize_project_menu: "Resize project menu"
label_save_as: "Save as"
label_search_columns: "Search a column"
label_select_watcher: "Select a watcher..."
label_selected_filter_list: "Selected filters"
label_show_attributes: "Show all attributes"
label_show_in_menu: "Show view in menu"
label_sort_by: "Sort by"
label_sorted_by: "sorted by"
label_sort_higher: "Move up"
label_sort_lower: "Move down"
label_sorting: "Sorting"
label_spent_time: "Spent time"
label_star_query: "Favorited"
label_press_enter_to_save: "Press enter to save."
label_public_query: "Public"
label_sum: "Sum"
label_sum_for: "Sum for"
label_total_sum: "Total sum"
label_subject: "Subject"
label_this_week: "this week"
label_today: "Today"
label_time_entry_plural: "Spent time"
label_up: "Up"
label_user_plural: "Users"
label_activity_show_only_comments: "Show activities with comments only"
label_activity_show_all: "Show all activities"
label_total_progress: "%{percent}% Total progress"
label_total_amount: "Total: %{amount}"
label_updated_on: "updated on"
label_value_derived_from_children: "(value derived from children)"
label_children_derived_duration: "Work package's children derived duration"
label_warning: "Warning"
label_work_package: "Work package"
label_work_package_parent: "Parent work package"
label_work_package_plural: "Work packages"
label_watch: "Watch"
label_watch_work_package: "Watch work package"
label_watcher_added_successfully: "Watcher successfully added!"
label_watcher_deleted_successfully: "Watcher successfully deleted!"
label_work_package_details_you_are_here: "You are on the %{tab} tab for %{type} %{subject}."
label_work_package_context_menu: "Work package context menu"
label_unwatch: "Unwatch"
label_unwatch_work_package: "Unwatch work package"
label_uploaded_by: "Uploaded by"
label_default_queries: "Default"
label_starred_queries: "Favorite"
label_global_queries: "Public"
label_custom_queries: "Private"
label_columns: "Columns"
label_attachments: Attachments
label_drop_files: "Drop files here to attach files."
label_drop_or_click_files: "Drop files here or click to attach files."
label_drop_folders_hint: You cannot upload folders as an attachment. Please select single files.
label_add_attachments: "Attach files"
label_formattable_attachment_hint: "Attach and link files by dropping on this field, or pasting from the clipboard."
label_remove_file: "Delete %{fileName}"
label_remove_watcher: "Remove watcher %{name}"
label_remove_all_files: Delete all files
label_add_description: "Add a description for %{file}"
label_upload_notification: "Uploading files..."
label_work_package_upload_notification: "Uploading files for Work package #%{id}: %{subject}"
label_wp_id_added_by: "#%{id} added by %{author}"
label_files_to_upload: "These files will be uploaded:"
label_rejected_files: "These files cannot be uploaded:"
label_rejected_files_reason: "These files cannot be uploaded as their size is greater than %{maximumFilesize}"
label_wait: "Please wait for configuration..."
label_upload_counter: "%{done} of %{count} files finished"
label_validation_error: "The work package could not be saved due to the following errors:"
label_version_plural: "Versions"
label_view_has_changed: "This view has unsaved changes. Click to save them."
help_texts:
show_modal: "Show help text"
onboarding:
buttons:
skip: "Skip"
next: "Next"
got_it: "Got it"
steps:
help_menu: "The Help (?) menu provides <b>additional help resources</b>. Here you can find a user guide, helpful how-to videos and more. <br> Enjoy your work with OpenProject!"
members: "Invite new <b>members</b> to join your project."
quick_add_button: "Click on the plus (+) icon in the header navigation to <b>create a new project</b> or to <b>invite coworkers</b>."
sidebar_arrow: "Use the return arrow in the top left corner to return to the project’s <b>main menu</b>."
welcome: "Take a three-minute introduction tour to learn the most <b>important features</b>. <br> We recommend completing the steps until the end. You can restart the tour any time."
wiki: "Within the <b>wiki</b> you can document and share knowledge together with your team."
boards:
overview: "Select <b>boards</b> to shift the view and manage your project using the agile boards view."
lists_kanban: "Here you can create multiple lists (columns) within your board. This feature allows you to create a <b>Kanban board</b>, for example."
lists_basic: "Here you can create multiple lists (columns) within your agile board."
add: "Click on the plus (+) icon to <b>create a new card</b> or <b>add an existing card</b> to the list on the board."
drag: "Drag and drop your cards within a given list to reorder them, or to move them to another list. <br> You can click the info (i) icon in the upper right-hand corner or double-click a card to open its details."
wp:
toggler: "Now let's have a look at the <b>work package</b> section, which gives you a more detailed view of your work."
list: "This <b>work</b> package overview provides a list of all the work in your project, such as tasks, milestones, phases, and more. <br> Work packages can be created and edited directly from this view. To access the details of a particular work package, simply double-click its row."
full_view: "The <b>work package details</b> view provides all the relevant information pertaining to a given work package, such as its description, status, priority, activities, dependencies, and comments."
back_button: "Use the return arrow in the top left corner to exit and return to the work package list."
create_button: "The <b>+ Create</b> button will add a new work package to your project."
gantt_menu: "Create project schedules and timelines effortlessly using the Gantt chart module."
timeline: "Here you can <b>edit your project plan</b>, create new work packages, such as tasks, milestones, phases, and more, as well as <b>add dependencies</b>. All team members can see and update the latest plan at any time."
team_planner:
overview: "The team planner lets you visually assign tasks to team members and get an overview of who is working on what."
calendar: "The weekly or biweekly planning board displays all work packages assigned to your team members."
add_assignee: "To get started, add assignees to the team planner."
add_existing: "Search for existing work packages and drag them to the team planner to instantly assign them to a team member and define start and end dates."
card: "Drag work packages horizontally to move them backwards or forwards in time, drag the edges to change start and end dates and even drag them vertically to a different row to assign them to another member."
notifications:
title: "Notifications"
no_unread: "No unread notifications"
reasons:
mentioned: "Mentioned"
watched: "Watcher"
assigned: "Assignee"
# The enum value is named 'responsible' in the database and that is what is transported through the API
# up to the frontend.
responsible: "Accountable"
created: "Created"
scheduled: "Scheduled"
commented: "Commented"
processed: "Processed"
prioritized: "Prioritized"
dateAlert: "Date alert"
shared: "Shared"
reminder: "Reminder"
date_alerts:
milestone_date: "Milestone date"
overdue: "Overdue"
overdue_since: "for %{difference_in_days}."
property_today: "is today."
property_is: "is in %{difference_in_days}."
property_was: "was %{difference_in_days} ago."
property_is_deleted: "is deleted."
center:
label_actor_and: "and"
and_more_users:
one: "and 1 other"
other: "and %{count} others"
no_results:
at_all: "New notifications will appear here when there is activity that concerns you."
with_current_filter: "There are no notifications in this view at the moment"
mark_all_read: "Mark all as read"
mark_as_read: "Mark as read"
mark_all_read_confirmation: "This will mark all notifications in this view as read. Are you sure you want to do this?"
text_update_date_by: "%{date} by"
total_count_warning: "Showing the %{newest_count} most recent notifications. %{more_count} more are not displayed."
empty_state:
no_notification: "Looks like you are all caught up."
no_notification_with_current_project_filter: "Looks like you are all caught up with the selected project."
no_notification_with_current_filter: "Looks like you are all caught up for %{filter} filter."
no_notification_for_filter: "Looks like you are all caught up for this filter."
no_selection: "Click on a notification to view all activity details."
new_notifications:
message: "There are new notifications."
link_text: "Click here to load them."
reminders:
note: "Note: “%{note}”"
settings:
change_notification_settings: 'You can modify your <a target="_blank" href="%{url}">notification settings</a> to ensure you never miss an important update.'
title: "Notification settings"
pagination:
no_other_page: "You are on the only page."
pages_skipped: "Pages skipped."
page_navigation: "Pagination navigation"
per_page_navigation: 'Items per page selection'
pages:
page_number: Page %{number}
show_per_page: Show %{number} per page
placeholders:
default: "-"
subject: "Enter subject here"
selection: "Please select"
description: "Description: Click to edit..."
relation_description: "Click to add description for this relation"
project:
autocompleter:
label: "Project autocompletion"
click_to_switch_to_project: "Project: %{projectname}"
context: "Project context"
not_available: "Project N/A"
required_outside_context: >
Please choose a project to create the work package in to see all attributes.
You can only select projects which have the type above activated.
text_are_you_sure: "Are you sure?"
text_are_you_sure_to_cancel: "You have unsaved changes on this page. Are you sure you want to discard them?"
breadcrumb: "Breadcrumb"
text_data_lost: "All entered data will be lost."
text_user_wrote: "%{value} wrote:"
time_entry:
work_package_required: "Requires selecting a work package first."
title: "Log time"
tracking: "Time tracking"
stop: "Stop"
timer:
start_new_timer: "Start new timer"
timer_already_running: "To start a new timer, you must first stop the current timer:"
timer_already_stopped: "No active timer for this work package, have you stopped it in another window?"
tracking_time: "Tracking time"
button_stop: "Stop current timer"
two_factor_authentication:
label_two_factor_authentication: "Two-factor authentication"
watchers:
label_loading: loading watchers...
label_error_loading: An error occurred while loading the watchers
label_search_watchers: Search watchers
label_add: Add watchers
label_discard: Discard selection
typeahead_placeholder: Search for possible watchers
relation_labels:
parent: "Parent"
child: "Child"
children: "Children"
relates: "Related To"
duplicates: "Duplicates"
duplicated: "Duplicated by"
blocks: "Blocks"
blocked: "Blocked by"
precedes: "Precedes"
follows: "Follows"
includes: "Includes"
partof: "Part of"
requires: "Requires"
required: "Required by"
relation_type: "relation type"
relations_hierarchy:
parent_headline: "Parent"
hierarchy_headline: "Hierarchy"
children_headline: "Children"
relation_buttons:
set_parent: "Set parent"
change_parent: "Change parent"
remove_parent: "Remove parent"
hierarchy_indent: "Indent hierarchy"
hierarchy_outdent: "Outdent hierarchy"
group_by_wp_type: "Group by work package type"
group_by_relation_type: "Group by relation type"
add_parent: "Add existing parent"
add_new_child: "Create new child"
create_new: "Create new"
add_existing: "Add existing"
add_existing_child: "Add child"
remove_child: "Remove child"
add_new_relation: "Create new relation"
add_existing_relation: "Add existing relation"
update_description: "Set or update description of this relation"
toggle_description: "Toggle relation description"
update_relation: "Click to change the relation type"
show_relations: "Show relations"
add_predecessor: "Add predecessor"
add_successor: "Add successor"
remove: "Remove relation"
save: "Save relation"
abort: "Abort"
relations_autocomplete:
placeholder: "Type to search"
parent_placeholder: "Choose new parent or press escape to cancel."
autocompleter:
placeholder: "Type to search"
notFoundText: "No items found"
search: "Search"
project:
placeholder: "Select project"
repositories:
select_tag: "Select tag"
select_branch: "Select branch"
field_value_enter_prompt: "Enter a value for '%{field}'"
project_menu_details: "Details"
sort:
sorted_asc: "Ascending sort applied, "
sorted_dsc: "Descending sort applied, "
sorted_no: "No sort applied, "
sorting_disabled: "sorting is disabled"
activate_asc: "activate to apply an ascending sort"
activate_dsc: "activate to apply a descending sort"
activate_no: "activate to remove the sort"
text_work_packages_destroy_confirmation: "Are you sure you want to delete the selected work package(s)?"
text_query_destroy_confirmation: "Are you sure you want to delete the selected view?"
tl_toolbar:
zooms: "Zoom level"
outlines: "Hierarchy level"
upsell:
ee_only: "Enterprise edition add-on"
wiki_formatting:
strong: "Strong"
italic: "Italic"
underline: "Underline"
deleted: "Deleted"
code: "Inline Code"
heading1: "Heading 1"
heading2: "Heading 2"
heading3: "Heading 3"
unordered_list: "Unordered List"
ordered_list: "Ordered List"
quote: "Quote"
unquote: "Unquote"
preformatted_text: "Preformatted Text"
wiki_link: "Link to a Wiki page"
image: "Image"
sharing:
share: "Share"
selected_count: "%{count} selected"
selection:
mixed: "Mixed"
work_packages:
bulk_actions:
edit: "Bulk edit"
delete: "Bulk delete"
duplicate: "Bulk duplicate"
move: "Bulk change of project"
button_clear: "Clear"
comment_added: "The comment was successfully added."
comment_send_failed: "An error has occurred. Could not submit the comment."
comment_updated: "The comment was successfully updated."
confirm_edit_cancel: "Are you sure you want to cancel editing the work package?"
description_filter: "Filter"
description_enter_text: "Enter text"
description_options_hide: "Hide options"
description_options_show: "Show options"
edit_attribute: "%{attribute} - Edit"
key_value: "%{key}: %{value}"
label_enable_multi_select: "Enable multiselect"
label_disable_multi_select: "Disable multiselect"
label_filter_add: "Add filter"
label_filter_by_text: "Filter by text"
label_options: "Options"
label_column_multiselect: "Combined dropdown field: Select with arrow keys, confirm selection with enter, delete with backspace"
message_error_during_bulk_delete: An error occurred while trying to delete work packages.
message_successful_bulk_delete: Successfully deleted work packages.
message_successful_show_in_fullscreen: "Click here to open this work package in fullscreen view."
message_view_spent_time: "Show spent time for this work package"
message_work_package_read_only: "Work package is locked in this status. No attribute other than status can be altered."
message_work_package_status_blocked: "Work package status is not writable due to closed status and closed version being assigned."
placeholder_filter_by_text: "Subject, description, comments, ..."
progress:
title: "Work estimates and progress"
baseline:
addition_label: "Added to view within the comparison time period"
removal_label: "Removed from view within the comparison time period"
modification_label: "Modified within the comparison time period"
column_incompatible: "This column does not show changes in Baseline mode."
filters:
title: "Filter work packages"
baseline_incompatible: "This filter attribute is not taken into consideration in Baseline mode."
baseline_warning: "Baseline mode is on but some of your active filters are not included in the comparison."
inline_create:
title: "Click here to add a new work package to this list"
create:
title: "New work package"
header: "New %{type}"
header_no_type: "New work package (Type not yet set)"
header_with_parent: "New %{type} (Child of %{parent_type} #%{id})"
button: "Create"
duplicate:
title: "Duplicate work package"
hierarchy:
show: "Show hierarchy mode"
hide: "Hide hierarchy mode"
toggle_button: "Click to toggle hierarchy mode."
leaf: "Work package leaf at level %{level}."
children_collapsed: "Hierarchy level %{level}, collapsed. Click to show the filtered children"
children_expanded: "Hierarchy level %{level}, expanded. Click to collapse the filtered children"
faulty_query:
title: Work packages could not be loaded.
description: Your view is erroneous and could not be processed.
no_results:
title: No work packages to display.
description: Either none have been created or all work packages are filtered out.
limited_results: Only %{count} work packages can be shown in manual sorting mode. Please reduce the results by filtering, or switch to automatic sorting.
property_groups:
details: "Details"
people: "People"
estimatesAndTime: "Estimates & Time"
other: "Other"
properties:
assignee: "Assignee"
author: "Author"
createdAt: "Created on"
description: "Description"
date: "Date"
percentComplete: "% Complete"
percentCompleteAlternative: "Progress"
dueDate: "Finish date"
duration: "Duration"
spentTime: "Spent time"
category: "Category"
percentageDone: "Percentage done"
priority: "Priority"
projectName: "Project"
remainingWork: "Remaining work"
remainingWorkAlternative: "Remaining hours"
responsible: "Responsible"
startDate: "Start date"
status: "Status"
subject: "Subject"
subproject: "Subproject"
title: "Title"
type: "Type"
updatedAt: "Updated on"
versionName: "Version"
version: "Version"
work: "Work"
workAlternative: "Estimated time"
remainingTime: "Remaining work"
default_queries:
manually_sorted: "New manually sorted query"
latest_activity: "Latest activity"
created_by_me: "Created by me"
assigned_to_me: "Assigned to me"
recently_created: "Recently created"
all_open: "All open"
overdue: "Overdue"
summary: "Summary"
shared_with_users: "Shared with users"
shared_with_me: "Shared with me"
jump_marks:
pagination: "Jump to table pagination"
label_pagination: "Click here to skip over the work packages table and go to pagination"
content: "Jump to content"
label_content: "Click here to skip over the menu and go to the content"
placeholders:
default: "-"
date: "Select date"
query:
column_names: "Columns"
group_by: "Group results by"
group: "Group by"
group_by_disabled_by_hierarchy: "Group by is disabled due to the hierarchy mode being active."
hierarchy_disabled_by_group_by: "Hierarchy mode is disabled due to results being grouped by %{column}."
sort_ascending: "Sort ascending"
sort_descending: "Sort descending"
move_column_left: "Move column left"
move_column_right: "Move column right"
hide_column: "Hide column"
insert_columns: "Insert columns"
filters: "Filters"
display_sums: "Display Sums"
confirm_edit_cancel: "Are you sure you want to cancel editing the name of this view? Title will be set back to previous value."
click_to_edit_query_name: "Click to edit title of this view."
rename_query_placeholder: "Name of this view"
star_text: "Mark this view as favorite and add to the saved views sidebar on the left."
public_text: >
Publish this view, allowing other users to access your view. Users with the 'Manage public views' permission can modify or remove public query.
This does not affect the visibility of work package results in that view and depending on their permissions, users may see different results.
errors:
unretrievable_query: "Unable to retrieve view from URL"
not_found: "There is no such view"
duplicate_query_title: "Name of this view already exists. Change anyway?"
text_no_results: "No matching views were found."
reminders:
button_label: "Set reminder"
title:
new: "Set a reminder"
edit: "Edit reminder"
subtitle: "You will receive a notification for this work package at the chosen time."
presets:
tomorrow: "Tomorrow"
three_days: "In 3 days"
week: "In a week"
month: "In a month"
custom: "At a particular date/time"
scheduling:
is_parent: "The dates of this work package are automatically deduced from its children. Activate 'Manual scheduling' to set the dates."
is_switched_from_manual_to_automatic: "The dates of this work package may need to be recalculated after switching from manual to automatic scheduling due to relationships with other work packages."
sharing:
title: "Share work package"
show_all_users: "Show all users with whom the work package has been shared with"
table:
configure_button: "Configure work package table"
summary: "Table with rows of work package and columns of work package attributes."
text_inline_edit: "Most cells of this table are buttons that activate inline-editing functionality of that attribute."
text_sort_hint: "With the links in the table headers you can sort, group, reorder, remove and add table columns."
text_select_hint: "Select boxes should be opened with 'ALT' and arrow keys."
table_configuration:
button: "Configure this work package table"
choose_display_mode: "Display work packages as"
modal_title: "Work package table configuration"
embedded_tab_disabled: "This configuration tab is not available for the embedded view you are editing."
default: "default"
display_settings: "Display settings"
default_mode: "Flat list"
hierarchy_mode: "Hierarchy"
hierarchy_hint: "All filtered table results will be augmented with their ancestors. Hierarchies can be expanded and collapsed."
display_sums_hint: "Display sums of all summable attributes in a row below the table results."
show_timeline_hint: "Show an interactive gantt chart on the right side of the table. You can change its width by dragging the divider between table and gantt chart."
highlighting: "Highlighting"
highlighting_mode:
description: "Highlight with color"
none: "No highlighting"
inline: "Highlighted attribute(s)"
inline_all: "All attributes"
entire_row_by: "Entire row by"
status: "Status"
priority: "Priority"
type: "Type"
sorting_mode:
description: "Chose the mode to sort your Work packages:"
automatic: "Automatic"
manually: "Manually"
warning: "You will lose your previous sorting when activating the automatic sorting mode."
columns_help_text: "Use the input field above to add columns to your table view. You can drag and drop the columns to reorder them."
relation_filters:
filter_work_packages_by_relation_type: "Filter work packages by relation type"
tabs:
overview: Overview
activity: Activity
relations: Relations
watchers: Watchers
files: Files
time_relative:
days: "days"
weeks: "weeks"
months: "months"
toolbar:
settings:
configure_view: "Configure view"
columns: "Columns"
sort_by: "Sort by"
group_by: "Group by"
display_sums: "Display sums"
display_hierarchy: "Display hierarchy"
hide_hierarchy: "Hide hierarchy"
hide_sums: "Hide sums"
save: "Save"
save_as: "Save as"
export: "Export"
visibility_settings: "Visibility settings"
share_calendar: "Subscribe to calendar"
page_settings: "Rename view"
delete: "Delete"
filter: "Filter"