-
Notifications
You must be signed in to change notification settings - Fork 521
Expand file tree
/
Copy pathen.json5
More file actions
6778 lines (3445 loc) · 258 KB
/
en.json5
File metadata and controls
6778 lines (3445 loc) · 258 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
{
"401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
"401.link.home-page": "Take me to the home page",
"401.unauthorized": "Unauthorized",
"403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.",
"403.link.home-page": "Take me to the home page",
"403.forbidden": "Forbidden",
"500.page-internal-server-error": "Service unavailable",
"500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.",
"500.link.home-page": "Take me to the home page",
"404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ",
"404.link.home-page": "Take me to the home page",
"404.page-not-found": "Page not found",
"error-page.description.401": "Unauthorized",
"error-page.description.403": "Forbidden",
"error-page.description.500": "Service unavailable",
"error-page.description.404": "Page not found",
"error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator",
"access-status.embargo.listelement.badge": "Embargo",
"access-status.metadata.only.listelement.badge": "Metadata only",
"access-status.open.access.listelement.badge": "Open Access",
"access-status.restricted.listelement.badge": "Restricted",
"access-status.unknown.listelement.badge": "Unknown",
"admin.curation-tasks.breadcrumbs": "System curation tasks",
"admin.curation-tasks.title": "System curation tasks",
"admin.curation-tasks.header": "System curation tasks",
"admin.registries.bitstream-formats.breadcrumbs": "Format registry",
"admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format",
"admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.",
"admin.registries.bitstream-formats.create.failure.head": "Failure",
"admin.registries.bitstream-formats.create.head": "Create bitstream format",
"admin.registries.bitstream-formats.create.new": "Add a new bitstream format",
"admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.",
"admin.registries.bitstream-formats.create.success.head": "Success",
"admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)",
"admin.registries.bitstream-formats.delete.failure.head": "Failure",
"admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)",
"admin.registries.bitstream-formats.delete.success.head": "Success",
"admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.",
"admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format",
"admin.registries.bitstream-formats.edit.description.hint": "",
"admin.registries.bitstream-formats.edit.description.label": "Description",
"admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.",
"admin.registries.bitstream-formats.edit.extensions.label": "File extensions",
"admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot",
"admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.",
"admin.registries.bitstream-formats.edit.failure.head": "Failure",
"admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}",
"admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.",
"admin.registries.bitstream-formats.edit.internal.label": "Internal",
"admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.",
"admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type",
"admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)",
"admin.registries.bitstream-formats.edit.shortDescription.label": "Name",
"admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.",
"admin.registries.bitstream-formats.edit.success.head": "Success",
"admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.",
"admin.registries.bitstream-formats.edit.supportLevel.label": "Support level",
"admin.registries.bitstream-formats.head": "Bitstream Format Registry",
"admin.registries.bitstream-formats.no-items": "No bitstream formats to show.",
"admin.registries.bitstream-formats.table.delete": "Delete selected",
"admin.registries.bitstream-formats.table.deselect-all": "Deselect all",
"admin.registries.bitstream-formats.table.internal": "internal",
"admin.registries.bitstream-formats.table.mimetype": "MIME Type",
"admin.registries.bitstream-formats.table.name": "Name",
"admin.registries.bitstream-formats.table.selected": "Selected bitstream formats",
"admin.registries.bitstream-formats.table.id": "ID",
"admin.registries.bitstream-formats.table.return": "Back",
"admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known",
"admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported",
"admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown",
"admin.registries.bitstream-formats.table.supportLevel.head": "Support Level",
"admin.registries.bitstream-formats.title": "Bitstream Format Registry",
"admin.registries.bitstream-formats.select": "Select",
"admin.registries.bitstream-formats.deselect": "Deselect",
"admin.registries.metadata.breadcrumbs": "Metadata registry",
"admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.",
"admin.registries.metadata.form.create": "Create metadata schema",
"admin.registries.metadata.form.edit": "Edit metadata schema",
"admin.registries.metadata.form.name": "Name",
"admin.registries.metadata.form.namespace": "Namespace",
"admin.registries.metadata.head": "Metadata Registry",
"admin.registries.metadata.schemas.no-items": "No metadata schemas to show.",
"admin.registries.metadata.schemas.select": "Select",
"admin.registries.metadata.schemas.deselect": "Deselect",
"admin.registries.metadata.schemas.table.delete": "Delete selected",
"admin.registries.metadata.schemas.table.selected": "Selected schemas",
"admin.registries.metadata.schemas.table.id": "ID",
"admin.registries.metadata.schemas.table.name": "Name",
"admin.registries.metadata.schemas.table.namespace": "Namespace",
"admin.registries.metadata.title": "Metadata Registry",
"admin.registries.schema.breadcrumbs": "Metadata schema",
"admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".",
"admin.registries.schema.fields.select": "Select",
"admin.registries.schema.fields.deselect": "Deselect",
"admin.registries.schema.fields.head": "Schema metadata fields",
"admin.registries.schema.fields.no-items": "No metadata fields to show.",
"admin.registries.schema.fields.table.delete": "Delete selected",
"admin.registries.schema.fields.table.field": "Field",
"admin.registries.schema.fields.table.selected": "Selected metadata fields",
"admin.registries.schema.fields.table.id": "ID",
"admin.registries.schema.fields.table.scopenote": "Scope Note",
"admin.registries.schema.form.create": "Create metadata field",
"admin.registries.schema.form.edit": "Edit metadata field",
"admin.registries.schema.form.element": "Element",
"admin.registries.schema.form.qualifier": "Qualifier",
"admin.registries.schema.form.scopenote": "Scope Note",
"admin.registries.schema.head": "Metadata Schema",
"admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"",
"admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas",
"admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas",
"admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"",
"admin.registries.schema.notification.failure": "Error",
"admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"",
"admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields",
"admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields",
"admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"",
"admin.registries.schema.notification.success": "Success",
"admin.registries.schema.return": "Back",
"admin.registries.schema.title": "Metadata Schema Registry",
"admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management",
"administrativeBulkAccess.search.results.head": "Search Results",
"admin.access-control.bulk-access": "Bulk Access Management",
"admin.access-control.bulk-access.title": "Bulk Access Management",
"admin.access-control.bulk-access-browse.header": "Step 1: Select Objects",
"admin.access-control.bulk-access-browse.search.header": "Search",
"admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})",
"admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform",
"admin.access-control.epeople.actions.delete": "Delete EPerson",
"admin.access-control.epeople.actions.impersonate": "Impersonate EPerson",
"admin.access-control.epeople.actions.reset": "Reset password",
"admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson",
"admin.access-control.epeople.breadcrumbs": "EPeople",
"admin.access-control.epeople.title": "EPeople",
"admin.access-control.epeople.edit.breadcrumbs": "New EPerson",
"admin.access-control.epeople.edit.title": "New EPerson",
"admin.access-control.epeople.add.breadcrumbs": "Add EPerson",
"admin.access-control.epeople.add.title": "Add EPerson",
"admin.access-control.epeople.head": "EPeople",
"admin.access-control.epeople.search.head": "Search",
"admin.access-control.epeople.button.see-all": "Browse All",
"admin.access-control.epeople.search.scope.metadata": "Metadata",
"admin.access-control.epeople.search.scope.email": "Email (exact)",
"admin.access-control.epeople.search.button": "Search",
"admin.access-control.epeople.search.placeholder": "Search people...",
"admin.access-control.epeople.button.add": "Add EPerson",
"admin.access-control.epeople.table.id": "ID",
"admin.access-control.epeople.table.name": "Name",
"admin.access-control.epeople.table.email": "Email (exact)",
"admin.access-control.epeople.table.edit": "Edit",
"admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"",
"admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group",
"admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.epeople.no-items": "No EPeople to show.",
"admin.access-control.epeople.form.create": "Create EPerson",
"admin.access-control.epeople.form.edit": "Edit EPerson",
"admin.access-control.epeople.form.firstName": "First name",
"admin.access-control.epeople.form.lastName": "Last name",
"admin.access-control.epeople.form.email": "Email",
"admin.access-control.epeople.form.emailHint": "Must be a valid email address",
"admin.access-control.epeople.form.canLogIn": "Can log in",
"admin.access-control.epeople.form.requireCertificate": "Requires certificate",
"admin.access-control.epeople.form.return": "Back",
"admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.",
"admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.",
"admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"",
"admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:",
"admin.access-control.epeople.form.table.id": "ID",
"admin.access-control.epeople.form.table.name": "Name",
"admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups",
"admin.access-control.epeople.form.goToGroups": "Add to groups",
"admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"",
"admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"",
"admin.access-control.groups.title": "Groups",
"admin.access-control.groups.breadcrumbs": "Groups",
"admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group",
"admin.access-control.groups.title.singleGroup": "Edit Group",
"admin.access-control.groups.title.addGroup": "New Group",
"admin.access-control.groups.addGroup.breadcrumbs": "New Group",
"admin.access-control.groups.head": "Groups",
"admin.access-control.groups.button.add": "Add group",
"admin.access-control.groups.search.head": "Search groups",
"admin.access-control.groups.button.see-all": "Browse all",
"admin.access-control.groups.search.button": "Search",
"admin.access-control.groups.search.placeholder": "Search groups...",
"admin.access-control.groups.table.id": "ID",
"admin.access-control.groups.table.name": "Name",
"admin.access-control.groups.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.groups.table.members": "Members",
"admin.access-control.groups.table.edit": "Edit",
"admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"",
"admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID",
"admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"",
"admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"",
"admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"",
"admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.",
"admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the <a href='{{comcolEditRolesRoute}}'>\"assign roles\"</a> tab on the edit {{comcol}} page. You can still add and remove group members using this page.",
"admin.access-control.groups.form.head.create": "Create group",
"admin.access-control.groups.form.head.edit": "Edit group",
"admin.access-control.groups.form.groupName": "Group name",
"admin.access-control.groups.form.groupCommunity": "Community or Collection",
"admin.access-control.groups.form.groupDescription": "Description",
"admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"",
"admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"",
"admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.",
"admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"",
"admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!",
"admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"",
"admin.access-control.groups.form.actions.delete": "Delete Group",
"admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.cancel": "Cancel",
"admin.access-control.groups.form.delete-group.modal.confirm": "Delete",
"admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"",
"admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"",
"admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"",
"admin.access-control.groups.form.members-list.head": "EPeople",
"admin.access-control.groups.form.members-list.search.head": "Add EPeople",
"admin.access-control.groups.form.members-list.button.see-all": "Browse All",
"admin.access-control.groups.form.members-list.headMembers": "Current Members",
"admin.access-control.groups.form.members-list.search.button": "Search",
"admin.access-control.groups.form.members-list.table.id": "ID",
"admin.access-control.groups.form.members-list.table.name": "Name",
"admin.access-control.groups.form.members-list.table.identity": "Identity",
"admin.access-control.groups.form.members-list.table.email": "Email",
"admin.access-control.groups.form.members-list.table.netid": "NetID",
"admin.access-control.groups.form.members-list.table.edit": "Remove / Add",
"admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"admin.access-control.groups.form.members-list.no-members-yet": "No members in group yet, search and add.",
"admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search",
"admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"",
"admin.access-control.groups.form.subgroups-list.head": "Groups",
"admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup",
"admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All",
"admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups",
"admin.access-control.groups.form.subgroups-list.search.button": "Search",
"admin.access-control.groups.form.subgroups-list.table.id": "ID",
"admin.access-control.groups.form.subgroups-list.table.name": "Name",
"admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add",
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Remove subgroup with name \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Add subgroup with name \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "This is the current group, can't be added.",
"admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID",
"admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.",
"admin.access-control.groups.form.return": "Back",
"admin.quality-assurance.breadcrumbs": "Quality Assurance",
"admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions",
"admin.notifications.event.page.title": "Quality Assurance Suggestions",
"admin.quality-assurance.page.title": "Quality Assurance",
"admin.notifications.source.breadcrumbs": "Quality Assurance",
"admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.",
"admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
"admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
"admin.reports.collections.title": "Collection Filter Report",
"admin.reports.collections.breadcrumbs": "Collection Filter Report",
"admin.reports.collections.head": "Collection Filter Report",
"admin.reports.button.show-collections": "Show Collections",
"admin.reports.collections.collections-report": "Collection Report",
"admin.reports.collections.item-results": "Item Results",
"admin.reports.collections.community": "Community",
"admin.reports.collections.collection": "Collection",
"admin.reports.collections.nb_items": "Nb. Items",
"admin.reports.collections.match_all_selected_filters": "Matching all selected filters",
"admin.reports.items.breadcrumbs": "Metadata Query Report",
"admin.reports.items.head": "Metadata Query Report",
"admin.reports.items.run": "Run Item Query",
"admin.reports.items.section.collectionSelector": "Collection Selector",
"admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries",
"admin.reports.items.predefinedQueries": "Predefined Queries",
"admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries",
"admin.reports.items.limit": "Limit/",
"admin.reports.items.offset": "Offset",
"admin.reports.items.wholeRepo": "Whole Repository",
"admin.reports.items.anyField": "Any field",
"admin.reports.items.predicate.exists": "exists",
"admin.reports.items.predicate.doesNotExist": "does not exist",
"admin.reports.items.predicate.equals": "equals",
"admin.reports.items.predicate.doesNotEqual": "does not equal",
"admin.reports.items.predicate.like": "like",
"admin.reports.items.predicate.notLike": "not like",
"admin.reports.items.predicate.contains": "contains",
"admin.reports.items.predicate.doesNotContain": "does not contain",
"admin.reports.items.predicate.matches": "matches",
"admin.reports.items.predicate.doesNotMatch": "does not match",
"admin.reports.items.preset.new": "New Query",
"admin.reports.items.preset.hasNoTitle": "Has No Title",
"admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri",
"admin.reports.items.preset.hasCompoundSubject": "Has compound subject",
"admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author",
"admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator",
"admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description",
"admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance",
"admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance",
"admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata",
"admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description",
"admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata",
"admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata",
"admin.reports.items.number": "No.",
"admin.reports.items.id": "UUID",
"admin.reports.items.collection": "Collection",
"admin.reports.items.handle": "URI",
"admin.reports.items.title": "Title",
"admin.reports.commons.filters": "Filters",
"admin.reports.commons.additional-data": "Additional data to return",
"admin.reports.commons.previous-page": "Prev Page",
"admin.reports.commons.next-page": "Next Page",
"admin.reports.commons.page": "Page",
"admin.reports.commons.of": "of",
"admin.reports.commons.export": "Export for Metadata Update",
"admin.reports.commons.filters.deselect_all": "Deselect all filters",
"admin.reports.commons.filters.select_all": "Select all filters",
"admin.reports.commons.filters.matches_all": "Matches all specified filters",
"admin.reports.commons.filters.property": "Item Property Filters",
"admin.reports.commons.filters.property.is_item": "Is Item - always true",
"admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items",
"admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn",
"admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private",
"admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item",
"admin.reports.commons.filters.bitstream": "Basic Bitstream Filters",
"admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams",
"admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams",
"admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream",
"admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type",
"admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)",
"admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream",
"admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)",
"admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)",
"admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream",
"admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream",
"admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF",
"admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF",
"admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item",
"admin.reports.commons.filters.mime": "Supported MIME Type Filters",
"admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported",
"admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported",
"admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported",
"admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported",
"admin.reports.commons.filters.bundle": "Bitstream Bundle Filters",
"admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle",
"admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail",
"admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail",
"admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)",
"admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail",
"admin.reports.commons.filters.bundle.no_license": "Doesn't have a license",
"admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle",
"admin.reports.commons.filters.permission": "Permission Filters",
"admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream",
"admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user",
"admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail",
"admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user",
"admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata",
"admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user",
"admin.search.breadcrumbs": "Administrative Search",
"admin.search.collection.edit": "Edit",
"admin.search.community.edit": "Edit",
"admin.search.item.delete": "Delete",
"admin.search.item.edit": "Edit",
"admin.search.item.make-private": "Make non-discoverable",
"admin.search.item.make-public": "Make discoverable",
"admin.search.item.move": "Move",
"admin.search.item.reinstate": "Reinstate",
"admin.search.item.withdraw": "Withdraw",
"admin.search.title": "Administrative Search",
"administrativeView.search.results.head": "Administrative Search",
"admin.workflow.breadcrumbs": "Administer Workflow",
"admin.workflow.title": "Administer Workflow",
"admin.workflow.item.workflow": "Workflow",
"admin.workflow.item.workspace": "Workspace",
"admin.workflow.item.delete": "Delete",
"admin.workflow.item.send-back": "Send back",
"admin.workflow.item.policies": "Policies",
"admin.workflow.item.supervision": "Supervision",
"admin.metadata-import.breadcrumbs": "Import Metadata",
"admin.batch-import.breadcrumbs": "Import Batch",
"admin.metadata-import.title": "Import Metadata",
"admin.batch-import.title": "Import Batch",
"admin.metadata-import.page.header": "Import Metadata",
"admin.batch-import.page.header": "Import Batch",
"admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here",
"admin.batch-import.page.help": "Select the Collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the Items to import",
"admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source",
"admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import",
"admin.batch-import.page.dropMsg": "Drop a batch ZIP to import",
"admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import",
"admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import",
"admin.metadata-import.page.button.return": "Back",
"admin.metadata-import.page.button.proceed": "Proceed",
"admin.metadata-import.page.button.select-collection": "Select Collection",
"admin.metadata-import.page.error.addFile": "Select file first!",
"admin.metadata-import.page.error.addFileUrl": "Insert file URL first!",
"admin.batch-import.page.error.addFile": "Select ZIP file first!",
"admin.metadata-import.page.toggle.upload": "Upload",
"admin.metadata-import.page.toggle.url": "URL",
"admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import",
"admin.metadata-import.page.validateOnly": "Validate Only",
"admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.",
"advanced-workflow-action.rating.form.rating.label": "Rating",
"advanced-workflow-action.rating.form.rating.error": "You must rate the item",
"advanced-workflow-action.rating.form.review.label": "Review",
"advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating",
"advanced-workflow-action.rating.description": "Please select a rating below",
"advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review",
"advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting",
"advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search",
"advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.",
"admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.",
"admin.batch-import.page.remove": "remove",
"auth.errors.invalid-user": "Invalid email address or password.",
"auth.messages.expired": "Your session has expired. Please log in again.",
"auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.",
"bitstream.download.page": "Now downloading {{bitstream}}...",
"bitstream.download.page.back": "Back",
"bitstream.edit.authorizations.link": "Edit bitstream's Policies",
"bitstream.edit.authorizations.title": "Edit bitstream's Policies",
"bitstream.edit.return": "Back",
"bitstream.edit.bitstream": "Bitstream: ",
"bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"<i>Main article</i>\" or \"<i>Experiment data readings</i>\".",
"bitstream.edit.form.description.label": "Description",
"bitstream.edit.form.embargo.hint": "The first day from which access is allowed. <b>This date cannot be modified on this form.</b> To set an embargo date for a bitstream, go to the <i>Item Status</i> tab, click <i>Authorizations...</i>, create or edit the bitstream's <i>READ</i> policy, and set the <i>Start Date</i> as desired.",
"bitstream.edit.form.embargo.label": "Embargo until specific date",
"bitstream.edit.form.fileName.hint": "Change the filename for the bitstream. Note that this will change the display bitstream URL, but old links will still resolve as long as the sequence ID does not change.",
"bitstream.edit.form.fileName.label": "Filename",
"bitstream.edit.form.newFormat.label": "Describe new format",
"bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"<i>ACMESoft SuperApp version 1.5</i>\").",
"bitstream.edit.form.primaryBitstream.label": "Primary File",
"bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, <b>select \"format not in list\" above</b> and describe it under \"Describe new format\".",
"bitstream.edit.form.selectedFormat.label": "Selected Format",
"bitstream.edit.form.selectedFormat.unknown": "Format not in list",
"bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format",
"bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream",
"bitstream.edit.form.iiifLabel.label": "IIIF Label",
"bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.",
"bitstream.edit.form.iiifToc.label": "IIIF Table of Contents",
"bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.",
"bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width",
"bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.",
"bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height",
"bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.",
"bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.",
"bitstream.edit.notifications.saved.title": "Bitstream saved",
"bitstream.edit.title": "Edit bitstream",
"bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ",
"bitstream-request-a-copy.alert.canDownload2": "here",
"bitstream-request-a-copy.header": "Request a copy of the file",
"bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ",
"bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ",
"bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ",
"bitstream-request-a-copy.name.label": "Name *",
"bitstream-request-a-copy.name.error": "The name is required",
"bitstream-request-a-copy.email.label": "Your email address *",
"bitstream-request-a-copy.email.hint": "This email address is used for sending the file.",
"bitstream-request-a-copy.email.error": "Please enter a valid email address.",
"bitstream-request-a-copy.allfiles.label": "Files",
"bitstream-request-a-copy.files-all-false.label": "Only the requested file",
"bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access",
"bitstream-request-a-copy.message.label": "Message",
"bitstream-request-a-copy.return": "Back",
"bitstream-request-a-copy.submit": "Request copy",
"bitstream-request-a-copy.submit.success": "The item request was submitted successfully.",
"bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.",