-
-
Notifications
You must be signed in to change notification settings - Fork 300
Expand file tree
/
Copy pathmessages.js
More file actions
869 lines (867 loc) · 27.3 KB
/
messages.js
File metadata and controls
869 lines (867 loc) · 27.3 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
import { defineMessages } from 'react-intl';
/**
* Internationalized messages for use on task selection.
*/
export default defineMessages({
unsavedChanges: {
id: 'project.tasks.unsaved_map_changes.title',
defaultMessage: 'You have some unsaved map changes',
},
unsavedChangesToSplit: {
id: 'project.tasks.unsaved_map_changes.split',
defaultMessage: 'Save or undo it to be able to split the task',
},
unsavedChangesToUnlock: {
id: 'project.tasks.unsaved_map_changes.unlock',
defaultMessage: 'Save or undo it to be able to select another task',
},
unsavedChangesToReloadEditor: {
id: 'project.tasks.unsaved_map_changes.reload_editor',
defaultMessage: 'Save or undo it to be able to switch editors',
},
unsavedChangesTooltip: {
id: 'project.tasks.unsaved_map_changes.tooltip',
defaultMessage: 'You have unsaved edits. Save or undo them to submit this task.',
},
closeModal: {
id: 'project.tasks.unsaved_map_changes.actions.close_modal',
defaultMessage: 'Close',
},
deselectAndValidate: {
id: 'project.tasks.validation.cannot_validate_mapped_tasks.deselect_and_validate',
defaultMessage: 'Deselect and validate',
},
cantValidateMappedTask: {
id: 'project.tasks.select.cantValidateMappedTask',
defaultMessage: 'This task was mapped by you',
},
priorityAreasLoadingError: {
id: 'project.tasks.selection.map.priorityAreas.loading.error',
defaultMessage: 'An error occured while loading the priority areas for the project',
},
noMappedTasksSelectedError: {
id: 'project.tasks.no_mapped_tasks_selected',
defaultMessage: 'No mapped tasks selected',
},
noMappedTasksSelectedErrorDescription: {
id: 'project.tasks.no_mapped_tasks_selected.description',
defaultMessage:
'It was not possible to lock the selected tasks, as none of them are on the mapped status.',
},
InvalidTaskStateError: {
id: 'project.tasks.invalid_task_state_errortitle',
defaultMessage: 'Invalid Task State',
},
InvalidTaskStateErrorDescription: {
id: 'project.tasks.invalid_task_state_error.description',
defaultMessage: 'Task in invalid state for mapping',
},
UserNotAllowedError: {
id: 'project.tasks.user_not_allowed_error.title',
defaultMessage: 'User Not Allowed Error',
},
UserNotAllowedErrorDescription: {
id: 'project.tasks.user_not_allowed_error.description',
defaultMessage: 'Mapping not allowed because user not on allowed list',
},
ProjectNotPublishedError: {
id: 'project.tasks.project_not_published_error.title',
defaultMessage: 'Project Not Published',
},
ProjectNotPublishedErrorDescription: {
id: 'project.tasks.project_not_published_error.description',
defaultMessage: 'Mapping not allowed because project not published',
},
TaskNotOwnedError: {
id: 'project.tasks.task_not_owned_error.title',
defaultMessage: 'Task Not Owned',
},
TaskNotOwnedErrorDescription: {
id: 'project.tasks.task_not_owned_error.description',
defaultMessage: 'Attempting to unlock a task owned by another user',
},
NotReadyForValidationError: {
id: 'project.tasks.not_ready_for_validation_error.title',
defaultMessage: 'Not Ready for Validation',
},
NotReadyForValidationErrorDescription: {
id: 'project.tasks.not_ready_for_validation_error.description',
defaultMessage: 'Task is not MAPPED, BADIMAGERY or INVALIDATED',
},
CannotValidateMappedTaskError: {
id: 'project.tasks.cannot_validate_mapped_task_error.title',
defaultMessage: 'Cannot Validate Mapped Task',
},
CannotValidateMappedTaskErrorDescription: {
id: 'project.tasks.cannot_validate_mapped_task_error.description',
defaultMessage:
'Tasks cannot be validated by the same user who marked task as mapped or badimagery',
},
JOSMError: {
id: 'project.tasks.josm_error',
defaultMessage: 'Connection with JOSM failed',
},
JOSMErrorDescription: {
id: 'project.tasks.josm_error.description',
defaultMessage:
'Please verify if JOSM is running on your computer and the remote control is enabled.',
},
lockError: {
id: 'project.tasks.lock_error.generic',
defaultMessage: "It wasn't possible to lock this task for you...",
},
lockErrorDescription: {
id: 'project.tasks.lock_error.generic.description',
defaultMessage:
'Some error occurred when trying to lock this task. Check if your user matches the level, role and permissions required by this project.',
},
lockErrorLicense: {
id: 'project.tasks.lock_error.license.title',
defaultMessage: 'This project has a required license.',
},
lockErrorLicenseDescription: {
id: 'project.tasks.lock_error.license.description',
defaultMessage: 'Please accept this license in order to collaborate in this project. ',
},
acceptLicense: {
id: 'project.tasks.lock_error.license.accept',
defaultMessage: 'Accept',
},
cancel: {
id: 'project.tasks.lock_error.cancel',
defaultMessage: 'Cancel',
},
anotherLockedTask: {
id: 'project.tasks.lock_error.another_project',
defaultMessage: 'We found another mapping task already locked by you',
},
anotherProjectLockTextSingular: {
id: 'project.tasks.lock_error.another_project.description.singular',
defaultMessage:
'It is on the Project #{project}. You will need to update the status of that task before you can map another task.',
},
anotherProjectLockTextPlural: {
id: 'project.tasks.lock_error.another_project.description.plural',
defaultMessage:
'It is on the Project #{project}. You will need to update the status of that task before you can map another task.',
},
currentProjectLockTextSingular: {
id: 'project.tasks.lock_error.current_project.description.singular',
defaultMessage:
'The task #{taskId} was previously locked by you. You will need to update the status of that task before you can map another task.',
},
currentProjectLockTextPlural: {
id: 'project.tasks.lock_error.current_project.description.plural',
defaultMessage:
'Some tasks were previously locked by you on this project. You will need to update the status of those tasks before you can map another task.',
},
goToProject: {
id: 'project.tasks.lock_error.go_to_project.button',
defaultMessage: 'Go to Project #{project}',
},
workOnTasksSingular: {
id: 'project.tasks.lock_error.work_on_tasks.singular.button',
defaultMessage: '{mapOrValidate} that task',
},
workOnTasksPlural: {
id: 'project.tasks.lock_error.work_on_tasks.plural.button',
defaultMessage: '{mapOrValidate} those tasks',
},
legend: {
id: 'project.tasks.map.legend',
defaultMessage: 'Legend',
},
typesOfMapping: {
id: 'project.typesOfMapping',
defaultMessage: 'Types of Mapping',
},
editor: {
id: 'project.editor',
defaultMessage: 'Editor',
},
selectEditor: {
id: 'project.editor.select',
defaultMessage: 'Select editor',
},
filterPlaceholder: {
id: 'project.input.placeholders.filter',
defaultMessage: 'Filter tasks by id or username',
},
reloadEditor: {
id: 'project.editor.reload_editor',
defaultMessage: 'Reload editor',
},
openEditor: {
id: 'project.editor.open_editor',
defaultMessage: 'Open editor',
},
showSidebar: {
id: 'project.sidebar.show',
defaultMessage: 'Show sidebar',
},
sessionAboutToExpireTitle: {
id: 'project.sidebar.lockTimeAboutToExpire.title',
defaultMessage: 'Extend session for this task',
},
sessionAboutToExpireDescription: {
id: 'project.sidebar.lockTimeAboutToExpire.description',
defaultMessage:
'Your session of two hours is about to expire. Do you want to extend your time for this session to continue working on this task?',
},
extendTime: {
id: 'project.sidebar.extendTime',
defaultMessage: 'Extend session',
},
sessionExtended: {
id: 'project.sidebar.sessionExtended',
defaultMessage: 'Your session has been extended',
},
sessionExtensionError: {
id: 'project.sidebar.sessionExtensionError',
defaultMessage: 'An error occurred while extending your session.',
},
sessionExpiredTitle: {
id: 'project.sidebar.sessionExpired.title',
defaultMessage: 'Your session has expired',
},
sessionExpiredDescription: {
id: 'project.sidebar.sessionExpired.description',
defaultMessage:
'Do you want to relock the tasks to extend the session so that you can update the status of the {count, plural, =1 {task} other{tasks}}?',
},
relockTask: {
id: 'project.sidebar.relockTask',
defaultMessage: 'Relock {count, plural, =1 {task} other{tasks}}',
},
taskRelocked: {
id: 'project.sidebar.taskRelocked',
defaultMessage: 'Your {count, plural, =1 {task has} other{tasks have}} been relocked.',
},
taskRelockError: {
id: 'project.sidebar.taskRelockError',
defaultMessage:
'An error occurred while relocking your {count, plural, =1 {task} other{tasks}}.',
},
hideSidebar: {
id: 'project.sidebar.hide',
defaultMessage: 'Hide sidebar',
},
timeToUnlock: {
id: 'project.sidebar.timeToUnlock',
defaultMessage: 'Time available for you to complete work on this task',
},
task: {
id: 'project.task',
defaultMessage: 'Task',
},
tasks: {
id: 'project.tasks',
defaultMessage: 'Tasks',
},
taskId: {
id: 'project.taskId',
defaultMessage: 'Task #{id}',
},
instructions: {
id: 'project.instructions',
defaultMessage: 'Instructions',
},
projectIsArchived: {
id: 'project.isArchived',
defaultMessage:
'This project is archived and read-only. You can view the project, but you cannot update tasks.',
},
enforcedRandomTaskSelection: {
id: 'project.enforcedRandomTaskSelection',
defaultMessage:
"This project has enforced random task selection for mapping. When you click the 'Map a task' button, a random task will be presented for mapping.",
},
changesetComment: {
id: 'project.changesetComment',
defaultMessage: 'Changeset comment',
},
contributions: {
id: 'project.contributions',
defaultMessage: 'contributions',
},
registered: {
id: 'project.contributions.registered',
defaultMessage: 'Registered on',
},
imagery: {
id: 'project.imagery',
defaultMessage: 'Imagery',
},
customTMSLayer: {
id: 'project.imagery.tms',
defaultMessage: 'Custom TMS Layer',
},
customWMSLayer: {
id: 'project.imagery.wms',
defaultMessage: 'Custom WMS Layer',
},
customWMTSLayer: {
id: 'project.imagery.wmts',
defaultMessage: 'Custom WMTS Layer',
},
customLayer: {
id: 'project.imagery.customLayer',
defaultMessage: 'Custom Layer',
},
noImageryDefined: {
id: 'project.imagery.noDefined',
defaultMessage: 'Any available source',
},
copyImageryURL: {
id: 'project.imagery.copy',
defaultMessage: 'Copy imagery URL',
},
mapATask: {
id: 'project.selectTask.footer.button.mapRandomTask',
defaultMessage: 'Map a task',
},
mapSelectedTask: {
id: 'project.selectTask.footer.button.mapSelectedTask',
defaultMessage: 'Map selected task',
},
mapAnotherTask: {
id: 'project.selectTask.footer.button.mapAnotherTask',
defaultMessage: 'Map another task',
},
validateATask: {
id: 'project.selectTask.footer.button.validateRandomTask',
defaultMessage: 'Validate a task',
},
validateSelectedTask: {
id: 'project.selectTask.footer.button.validateSelectedTask',
defaultMessage:
'{number, plural, one {Validate selected task} other {Validate # selected tasks}}',
},
validateAnotherTask: {
id: 'project.selectTask.footer.button.validateAnotherTask',
defaultMessage: 'Validate another task',
},
selectAnotherProject: {
id: 'project.selectTask.footer.button.selectAnotherProject',
defaultMessage: 'Select another project',
},
resumeMapping: {
id: 'project.selectTask.footer.button.resumeMapping',
defaultMessage: 'Resume mapping',
},
resumeValidation: {
id: 'project.selectTask.footer.button.resumeValidation',
defaultMessage: 'Resume validation',
},
taskLastUpdate: {
id: 'project.tasks.list.lastUpdate',
defaultMessage: 'Last updated by {user}',
},
seeTaskHistory: {
id: 'project.tasks.list.details',
defaultMessage: 'See task history',
},
zoomToTask: {
id: 'project.tasks.list.zoom',
defaultMessage: 'Zoom map to task',
},
copyTaskLink: {
id: 'project.tasks.list.copyLink',
defaultMessage: 'Copy task link',
},
taskLinkCopied: {
id: 'project.tasks.list.linkCopied',
defaultMessage: 'Task link copied to the clipboard',
},
taskStatus_PRIORITY_AREAS: {
id: 'project.tasks.priority_areas',
defaultMessage: 'Priority areas',
},
taskStatus_READY: {
id: 'project.tasks.status.ready',
defaultMessage: 'Available for mapping',
},
taskStatus_MAPPED: {
id: 'project.tasks.status.mapped',
defaultMessage: 'Ready for validation',
},
taskStatus_LOCKED: {
id: 'project.tasks.status.locked',
defaultMessage: 'Locked',
},
taskStatus_LOCKED_FOR_MAPPING: {
id: 'project.tasks.status.lockedForMapping',
defaultMessage: 'Locked for mapping',
},
taskStatus_LOCKED_FOR_VALIDATION: {
id: 'project.tasks.status.lockedForValidation',
defaultMessage: 'Locked for validation',
},
taskStatus_VALIDATED: {
id: 'project.tasks.status.validated',
defaultMessage: 'Finished',
},
taskStatus_INVALIDATED: {
id: 'project.tasks.status.invalidated',
defaultMessage: 'More mapping needed',
},
taskStatus_BADIMAGERY: {
id: 'project.tasks.status.badImagery',
defaultMessage: 'Unavailable',
},
taskStatus_SPLIT: {
id: 'project.tasks.status.split',
defaultMessage: 'Split',
},
sortById: {
id: 'project.tasks.sorting.id',
defaultMessage: 'Sort by task number',
},
sortByMostRecentlyUpdate: {
id: 'project.tasks.sorting.date',
defaultMessage: 'Most recently updated',
},
sortByLeastRecentlyUpdate: {
id: 'project.tasks.sorting.date.reverse',
defaultMessage: 'Least recently updated',
},
filterAll: {
id: 'project.tasks.filter.all',
defaultMessage: 'All',
},
filterReadyToValidate: {
id: 'project.tasks.filter.readyToValidate',
defaultMessage: 'Ready for validation',
},
filterReadyToMap: {
id: 'project.tasks.filter.readyToMap',
defaultMessage: 'Available for mapping',
},
noTasksFound: {
id: 'project.tasks.filter.noTasksFound',
defaultMessage: 'No tasks were found.',
},
readTaskComments: {
id: 'project.tasks.readComments',
defaultMessage: 'Please check the history tab for relevant comments.',
},
completion: {
id: 'project.tasks.action.completion',
defaultMessage: 'Completion',
},
history: {
id: 'project.tasks.action.history',
defaultMessage: 'History',
},
taskHistoryComments: {
id: 'project.tasks.history.comments',
defaultMessage: 'Comments',
},
taskHistoryActivities: {
id: 'project.tasks.history.activities',
defaultMessage: 'Activities',
},
taskHistoryAll: {
id: 'project.tasks.history.all',
defaultMessage: 'All',
},
copyComment: {
id: 'project.tasks.action.comments.copy',
defaultMessage: 'Copy comment',
},
copyCommentToAll: {
id: 'project.tasks.action.comments.copy_to_all',
defaultMessage: 'To all tasks',
},
copyCommentToINVALIDATED: {
id: 'project.tasks.action.comments.copy_to_invalidated',
defaultMessage: 'To tasks marked as "No"',
},
copyCommentToVALIDATED: {
id: 'project.tasks.action.comments.copy_to_validated',
defaultMessage: 'To tasks marked as "Yes"',
},
resources: {
id: 'project.tasks.action.resources',
defaultMessage: 'Resources',
},
finishMappingTitle: {
id: 'project.tasks.action.finish_mapping.title',
defaultMessage: 'Once you have finished mapping',
},
instructionsSelect: {
id: 'project.tasks.action.instructions.select_task',
defaultMessage: 'Select one of the options below that matches your edit status',
},
instructionTabDescription: {
id: 'project.tasks.tab.instructions.description',
defaultMessage: 'Read the task guidelines and mapping steps before you begin.',
},
historyTabDescription: {
id: 'project.tasks.tab.history.description',
defaultMessage: 'View past mapping and validation activity, including comments.',
},
completionTabDescription: {
id: 'project.tasks.tab.completion.description',
defaultMessage: 'Leave comments, unlock the task, and update its status.',
},
resourcesTabDescription: {
id: 'project.tasks.tab.resources.description',
defaultMessage: 'Access reference materials, links, and supporting data.',
},
otherTabs: {
id: 'project.tasks.tab.heading',
defaultMessage: 'Other tabs',
},
writeComment: {
id: 'project.input.placeholder.write_comment',
defaultMessage: 'Write a comment',
},
instructionsComment: {
id: 'project.tasks.action.instructions.leave_comment',
defaultMessage: 'Leave a comment (optional)',
},
instructionsSubmit: {
id: 'project.tasks.action.instructions.submit_task',
defaultMessage: 'Submit your work',
},
comment: {
id: 'project.tasks.action.comment.title',
defaultMessage: 'Comment',
},
redirectToPreviousProject: {
id: 'project.tasks.action.redirectToPreviousProject',
defaultMessage: 'Redirect to previous project #{projectId}',
},
commentPlaceholder: {
id: 'project.tasks.action.comment.input.placeholder',
defaultMessage: 'Write a comment on this task',
},
editStatus: {
id: 'project.tasks.action.selection.title',
defaultMessage: 'Task status',
},
revertVALIDATED: {
id: 'project.tasks.action.invalidate',
defaultMessage: 'Request revalidation',
},
confirmRevertVALIDATED: {
id: 'project.tasks.action.invalidate.confirmation',
defaultMessage: 'Task status will be changed to "Ready for validation".',
},
revertBADIMAGERY: {
id: 'project.tasks.action.set_as_ready',
defaultMessage: 'Request mapping',
},
confirmRevertBADIMAGERY: {
id: 'project.tasks.action.set_as_ready.confirmation',
defaultMessage: 'Task status will be changed to "Available for mapping".',
},
proceed: {
id: 'project.tasks.action.proceed.confirmation',
defaultMessage: 'Do want to proceed?',
},
yes: {
id: 'project.tasks.action.confirmation.yes',
defaultMessage: 'Yes',
},
no: {
id: 'project.tasks.action.confirmation.no',
defaultMessage: 'No',
},
mappedQuestion: {
id: 'project.tasks.action.options.mapped_question',
defaultMessage: 'Is this task completely mapped?',
},
validatedQuestion: {
id: 'project.tasks.action.options.validated_question',
defaultMessage:
'{number, plural, one {Is this task well mapped?} other {Are these tasks well mapped?}}',
},
complete: {
id: 'project.tasks.action.options.complete',
defaultMessage: 'Yes',
},
validMapping: {
id: 'project.tasks.action.options.valid_mapping',
defaultMessage: 'Task well mapped, thanks for mapping',
},
incomplete: {
id: 'project.tasks.action.options.incomplete',
defaultMessage: 'No',
},
invalidMapping: {
id: 'project.tasks.action.options.invalid_mapping',
defaultMessage:
'More work is required to complete this task. Please carefully read the comment section for further information.',
},
badImagery: {
id: 'project.tasks.action.options.bad_imagery',
defaultMessage: 'The imagery is bad',
},
splitTask: {
id: 'project.tasks.action.split_task',
defaultMessage: 'Split task',
},
splitTaskError: {
id: 'project.tasks.action.split_task.error',
defaultMessage: 'It was not possible to split the task',
},
splitTaskErrorDescription: {
id: 'project.tasks.action.split_task.error.description',
defaultMessage: 'This task is already too small and can not be split.',
},
splitTaskGenericError: {
id: 'project.tasks.action.split_task.error.generic',
defaultMessage: 'An error occured while splitting the task.',
},
selectAnotherTask: {
id: 'project.tasks.action.select_another_task',
defaultMessage: 'Select another task',
},
stopMappingError: {
id: 'project.tasks.action.stop_mapping.error',
defaultMessage: 'An error occured while stopping mapping.',
},
stopValidation: {
id: 'project.tasks.action.stop_validation',
defaultMessage: 'Stop validation',
},
stopValidationError: {
id: 'project.tasks.action.stop_validation.error',
defaultMessage: 'An error occured while stopping validation.',
},
tasksMap: {
id: 'project.tasks.action.tasks_map',
defaultMessage: 'Tasks map',
},
submitTask: {
id: 'project.tasks.action.submit_task',
defaultMessage: 'Submit task',
},
submitTasks: {
id: 'project.tasks.action.submit_tasks',
defaultMessage: 'Submit tasks',
},
submitTaskError: {
id: 'project.tasks.action.submit_task.error',
defaultMessage:
'An error occured while submitting your {numTasks, plural, =1 {task} other {tasks}}.',
},
taskActivity: {
id: 'project.tasks.history.title',
defaultMessage: 'Task {n}',
},
taskUnavailable: {
id: 'project.tasks.history.unavailable',
defaultMessage: 'Task unavailable',
},
taskSplitDescription: {
id: 'project.tasks.history.split.description',
defaultMessage: 'The task {id} was split and its history is not available anymore',
},
taskData: {
id: 'project.tasks.activity.data.links',
defaultMessage: 'Task data',
},
projectId: {
id: 'project.tasks.activity.project_id',
defaultMessage: 'Project #{id}',
},
overpassDownload: {
id: 'project.tasks.activity.overpass.download',
defaultMessage: 'Download from Overpass',
},
overpassVisualization: {
id: 'project.tasks.activity.overpass.visualization',
defaultMessage: 'Visualize with Overpass',
},
projectData: {
id: 'project.resources.data',
defaultMessage: "Project's data",
},
changesets: {
id: 'project.resources.changesets',
defaultMessage: 'Changesets',
},
selectTask: {
id: 'project.resources.changesets.select_task',
defaultMessage: 'Select task',
},
entireProject: {
id: 'project.resources.changesets.entire_project',
defaultMessage: 'Entire project',
},
seeTaskChangesets: {
id: 'project.resources.changesets.task',
defaultMessage: "See task's changesets",
},
taskOnOSMCha: {
id: 'project.tasks.activity.osmcha',
defaultMessage: 'View changesets in OSMCha',
},
taskHistoryComment: {
id: 'project.tasks.history.comment',
defaultMessage: 'commented',
},
taskDetailFetchError: {
id: 'project.tasks.history.taskDetailFetchError',
defaultMessage: 'An error occured while fetching the task details.',
},
noCommentsYet: {
id: 'project.tasks.history.noCommentsYet',
defaultMessage: 'No comments have been made on the task yet.',
},
noActivitiesToDisplay: {
id: 'project.tasks.history.nothingToDisplay',
defaultMessage: 'No comments/activities have been made on this task yet.',
},
taskHistoryLockedMapping: {
id: 'project.tasks.history.lockedmapping',
defaultMessage: 'locked for mapping',
},
taskHistoryLockedValidation: {
id: 'project.tasks.history.lockedvalidation',
defaultMessage: 'locked for validation',
},
taskHistoryAutoUnlockedMapping: {
id: 'project.tasks.history.autounlockedmapping',
defaultMessage: 'automatically unlocked for mapping',
},
taskHistoryAutoUnlockedValidation: {
id: 'project.tasks.history.autounlockedvalidation',
defaultMessage: 'automatically unlocked for validation',
},
taskHistoryExtendedForMapping: {
id: 'project.tasks.history.extendedForMapping',
defaultMessage: 'extended the lock session for mapping',
},
taskHistoryExtendedForValidation: {
id: 'project.tasks.history.extendedForValidation',
defaultMessage: 'extended the lock session for validation',
},
taskHistoryBadImagery: {
id: 'project.tasks.history.badimagery',
defaultMessage: 'marked as unavailable',
},
taskHistoryMapped: {
id: 'project.tasks.history.mapped',
defaultMessage: 'marked as mapped',
},
taskHistoryValidated: {
id: 'project.tasks.history.validated',
defaultMessage: 'marked as validated',
},
taskHistoryInvalidated: {
id: 'project.tasks.history.invalidated',
defaultMessage: 'marked as more mapping needed',
},
taskHistorySplit: {
id: 'project.tasks.history.split',
defaultMessage: 'split a task',
},
taskHistoryReady: {
id: 'project.tasks.history.ready',
defaultMessage: 'marked as ready for mapping',
},
map: {
id: 'project.tasks.action.map',
defaultMessage: 'Map',
},
mapped: {
id: 'project.tasks.action.mapped',
defaultMessage: 'Mapped',
},
validate: {
id: 'project.tasks.action.validate',
defaultMessage: 'Validate',
},
validated: {
id: 'project.tasks.action.validated',
defaultMessage: 'Validated',
},
total: {
id: 'project.tasks.number.total',
defaultMessage: 'Total',
},
lockedBy: {
id: 'project.tasks.locked_by_user',
defaultMessage: '{lockStatus} by {user}',
},
taskExtraInfo: {
id: 'project.tasks.extra_information.title',
defaultMessage: 'Specific task information',
},
userFilterDefaultLabel: {
id: 'project.users.all',
defaultMessage: 'All users',
},
mappingLevelALL: {
id: 'project.level.all',
defaultMessage: 'All levels',
},
mappingLevelADVANCED: {
id: 'project.level.advanced',
defaultMessage: 'Advanced',
},
mappingLevelINTERMEDIATE: {
id: 'project.level.intermediate',
defaultMessage: 'Intermediate',
},
mappingLevelBEGINNER: {
id: 'project.level.beginner',
defaultMessage: 'Beginner',
},
mappingLevelNEWUSER: {
id: 'project.level.new_users',
defaultMessage: 'New users',
},
statistics: {
id: 'project.contributions.stats',
defaultMessage: 'Statistics',
},
mappedByUser: {
id: 'project.contributions.user.select.mapped',
defaultMessage: 'Select tasks mapped by {username}',
},
validatedByUser: {
id: 'project.contributions.user.select.validated',
defaultMessage: 'Select tasks validated by {username}',
},
allUserTasks: {
id: 'project.contributions.user.select.all',
defaultMessage: 'Select all tasks mapped or validated by {username}',
},
permissionErrorTitle: {
id: 'project.permissions.error.title',
defaultMessage: 'You are not ready to work on this project...',
},
permissionError_userLevelToValidate: {
id: 'project.permissions.error.userLevelToValidate',
defaultMessage:
'Only users with intermediate or advanced experience level can validate this project.',
},
permissionError_userLevelToMap: {
id: 'project.permissions.error.userLevelToMap',
defaultMessage:
'Only users with intermediate or advanced experience level can map this project.',
},
permissionError_userIsNotValidationTeamMember: {
id: 'project.permissions.error.userIsNotValidationTeamMember',
defaultMessage:
'You need to be member of one of the validation teams to be able to validate this project.',
},
permissionError_userIsNotMappingTeamMember: {
id: 'project.permissions.error.userIsNotMappingTeamMember',
defaultMessage:
'You need to be member of one of the mapping teams to be able to map this project.',
},
infoBox: {
id: 'project.detail.sandbox',
defaultMessage: 'Sandbox(Practice)',
},
infoBoxTooltip: {
id: 'project.detail.sandbox.tooltip',
defaultMessage: 'This is a training project. Edits will not be saved to OpenStreetMap.',
},
});