Newer
Older
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
{
// "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. ",
// TODO New key - Add a translation
"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",
// TODO New key - Add a translation
"404.link.home-page": "Take me to the home page",
// "404.page-not-found": "page not found",
// TODO New key - Add a translation
"404.page-not-found": "page not found",
// "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.",
// "admin.registries.bitstream-formats.create.failure.head": "Failure",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.create.failure.head": "Failure",
// "admin.registries.bitstream-formats.create.head": "Create Bitstream format",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.create.head": "Create Bitstream format",
// "admin.registries.bitstream-formats.create.new": "Add a new bitstream format",
// TODO New key - Add a translation
"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.",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.",
// "admin.registries.bitstream-formats.create.success.head": "Success",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.create.success.head": "Success",
// "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)",
// "admin.registries.bitstream-formats.delete.failure.head": "Failure",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.delete.failure.head": "Failure",
// "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)",
// "admin.registries.bitstream-formats.delete.success.head": "Success",
// TODO New key - Add a translation
"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.",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.",
// "admin.registries.bitstream-formats.edit.description.hint": "",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.description.hint": "",
// "admin.registries.bitstream-formats.edit.description.label": "Description",
// TODO New key - Add a translation
"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.",
// TODO New key - Add a translation
"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",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.extensions.label": "File extensions",
// "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extenstion without the dot",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extenstion without the dot",
// "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.",
// "admin.registries.bitstream-formats.edit.failure.head": "Failure",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.failure.head": "Failure",
// "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}",
// "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are are hidden from the user, and used for administrative purposes.",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are are hidden from the user, and used for administrative purposes.",
// "admin.registries.bitstream-formats.edit.internal.label": "Internal",
// TODO New key - Add a translation
"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.",
// TODO New key - Add a translation
"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",
// TODO New key - Add a translation
"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)",
// TODO New key - Add a translation
"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",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.shortDescription.label": "Name",
// "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.",
// "admin.registries.bitstream-formats.edit.success.head": "Success",
// TODO New key - Add a translation
"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.",
// TODO New key - Add a translation
"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",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.edit.supportLevel.label": "Support level",
// "admin.registries.bitstream-formats.head": "Bitstream Format Registry",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.head": "Bitstream Format Registry",
// "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.no-items": "No bitstream formats to show.",
// "admin.registries.bitstream-formats.table.delete": "Delete selected",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.delete": "Delete selected",
// "admin.registries.bitstream-formats.table.deselect-all": "Deselect all",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.deselect-all": "Deselect all",
// "admin.registries.bitstream-formats.table.internal": "internal",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.internal": "internal",
// "admin.registries.bitstream-formats.table.mimetype": "MIME Type",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.mimetype": "MIME Type",
// "admin.registries.bitstream-formats.table.name": "Name",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.name": "Name",
// "admin.registries.bitstream-formats.table.return": "Return",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.return": "Return",
// "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known",
// "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported",
// "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown",
// "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.supportLevel.head": "Support Level",
// "admin.registries.bitstream-formats.title": "DSpace Angular :: Bitstream Format Registry",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.title": "DSpace Angular :: Bitstream Format 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.",
// TODO New key - Add a translation
"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",
// TODO New key - Add a translation
"admin.registries.metadata.form.create": "Create metadata schema",
// "admin.registries.metadata.form.edit": "Edit metadata schema",
// TODO New key - Add a translation
"admin.registries.metadata.form.edit": "Edit metadata schema",
// "admin.registries.metadata.form.name": "Name",
// TODO New key - Add a translation
"admin.registries.metadata.form.name": "Name",
// "admin.registries.metadata.form.namespace": "Namespace",
// TODO New key - Add a translation
"admin.registries.metadata.form.namespace": "Namespace",
// "admin.registries.metadata.head": "Metadata Registry",
// TODO New key - Add a translation
"admin.registries.metadata.head": "Metadata Registry",
// "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.no-items": "No metadata schemas to show.",
// "admin.registries.metadata.schemas.table.delete": "Delete selected",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.table.delete": "Delete selected",
// "admin.registries.metadata.schemas.table.id": "ID",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.table.id": "ID",
// "admin.registries.metadata.schemas.table.name": "Name",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.table.name": "Name",
// "admin.registries.metadata.schemas.table.namespace": "Namespace",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.table.namespace": "Namespace",
// "admin.registries.metadata.title": "DSpace Angular :: Metadata Registry",
// TODO New key - Add a translation
"admin.registries.metadata.title": "DSpace Angular :: Metadata Registry",
// "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".",
// TODO New key - Add a translation
"admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".",
// "admin.registries.schema.fields.head": "Schema metadata fields",
// TODO New key - Add a translation
"admin.registries.schema.fields.head": "Schema metadata fields",
// "admin.registries.schema.fields.no-items": "No metadata fields to show.",
// TODO New key - Add a translation
"admin.registries.schema.fields.no-items": "No metadata fields to show.",
// "admin.registries.schema.fields.table.delete": "Delete selected",
// TODO New key - Add a translation
"admin.registries.schema.fields.table.delete": "Delete selected",
// "admin.registries.schema.fields.table.field": "Field",
// TODO New key - Add a translation
"admin.registries.schema.fields.table.field": "Field",
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
// TODO New key - Add a translation
"admin.registries.schema.fields.table.scopenote": "Scope Note",
// "admin.registries.schema.form.create": "Create metadata field",
// TODO New key - Add a translation
"admin.registries.schema.form.create": "Create metadata field",
// "admin.registries.schema.form.edit": "Edit metadata field",
// TODO New key - Add a translation
"admin.registries.schema.form.edit": "Edit metadata field",
// "admin.registries.schema.form.element": "Element",
// TODO New key - Add a translation
"admin.registries.schema.form.element": "Element",
// "admin.registries.schema.form.qualifier": "Qualifier",
// TODO New key - Add a translation
"admin.registries.schema.form.qualifier": "Qualifier",
// "admin.registries.schema.form.scopenote": "Scope Note",
// TODO New key - Add a translation
"admin.registries.schema.form.scopenote": "Scope Note",
// "admin.registries.schema.head": "Metadata Schema",
// TODO New key - Add a translation
"admin.registries.schema.head": "Metadata Schema",
// "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"",
// TODO New key - Add a translation
"admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"",
// "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas",
// TODO New key - Add a translation
"admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas",
// "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas",
// TODO New key - Add a translation
"admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas",
// "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"",
// TODO New key - Add a translation
"admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"",
// "admin.registries.schema.notification.failure": "Error",
// TODO New key - Add a translation
"admin.registries.schema.notification.failure": "Error",
// "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"",
// TODO New key - Add a translation
"admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"",
// "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields",
// TODO New key - Add a translation
"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",
// TODO New key - Add a translation
"admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields",
// "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"",
// TODO New key - Add a translation
"admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"",
// "admin.registries.schema.notification.success": "Success",
// TODO New key - Add a translation
"admin.registries.schema.notification.success": "Success",
// "admin.registries.schema.return": "Return",
// TODO New key - Add a translation
"admin.registries.schema.return": "Return",
// "admin.registries.schema.title": "DSpace Angular :: Metadata Schema Registry",
// TODO New key - Add a translation
"admin.registries.schema.title": "DSpace Angular :: Metadata Schema Registry",
// "auth.errors.invalid-user": "Invalid email address or password.",
// TODO New key - Add a translation
"auth.errors.invalid-user": "Invalid email address or password.",
// "auth.messages.expired": "Your session has expired. Please log in again.",
// TODO New key - Add a translation
"auth.messages.expired": "Your session has expired. Please log in again.",
// "browse.comcol.by.author": "By Author",
// TODO New key - Add a translation
"browse.comcol.by.author": "By Author",
// "browse.comcol.by.dateissued": "By Issue Date",
// TODO New key - Add a translation
"browse.comcol.by.dateissued": "By Issue Date",
// "browse.comcol.by.subject": "By Subject",
// TODO New key - Add a translation
"browse.comcol.by.subject": "By Subject",
// "browse.comcol.by.title": "By Title",
// TODO New key - Add a translation
"browse.comcol.by.title": "By Title",
// "browse.comcol.head": "Browse",
// TODO New key - Add a translation
"browse.comcol.head": "Browse",
// "browse.empty": "No items to show.",
// TODO New key - Add a translation
"browse.empty": "No items to show.",
// "browse.metadata.author": "Author",
// TODO New key - Add a translation
"browse.metadata.author": "Author",
// "browse.metadata.dateissued": "Issue Date",
// TODO New key - Add a translation
"browse.metadata.dateissued": "Issue Date",
// "browse.metadata.subject": "Subject",
// TODO New key - Add a translation
"browse.metadata.subject": "Subject",
// "browse.metadata.title": "Title",
// TODO New key - Add a translation
"browse.metadata.title": "Title",
// "browse.startsWith.choose_start": "(Choose start)",
// TODO New key - Add a translation
"browse.startsWith.choose_start": "(Choose start)",
// "browse.startsWith.choose_year": "(Choose year)",
// TODO New key - Add a translation
"browse.startsWith.choose_year": "(Choose year)",
// "browse.startsWith.jump": "Jump to a point in the index:",
// TODO New key - Add a translation
"browse.startsWith.jump": "Jump to a point in the index:",
// "browse.startsWith.months.april": "April",
// TODO New key - Add a translation
"browse.startsWith.months.april": "April",
// "browse.startsWith.months.august": "August",
// TODO New key - Add a translation
"browse.startsWith.months.august": "August",
// "browse.startsWith.months.december": "December",
// TODO New key - Add a translation
"browse.startsWith.months.december": "December",
// "browse.startsWith.months.february": "February",
// TODO New key - Add a translation
"browse.startsWith.months.february": "February",
// "browse.startsWith.months.january": "January",
// TODO New key - Add a translation
"browse.startsWith.months.january": "January",
// "browse.startsWith.months.july": "July",
// TODO New key - Add a translation
"browse.startsWith.months.july": "July",
// "browse.startsWith.months.june": "June",
// TODO New key - Add a translation
"browse.startsWith.months.june": "June",
// "browse.startsWith.months.march": "March",
// TODO New key - Add a translation
"browse.startsWith.months.march": "March",
// "browse.startsWith.months.may": "May",
// TODO New key - Add a translation
"browse.startsWith.months.may": "May",
// "browse.startsWith.months.none": "(Choose month)",
// TODO New key - Add a translation
"browse.startsWith.months.none": "(Choose month)",
// "browse.startsWith.months.november": "November",
// TODO New key - Add a translation
"browse.startsWith.months.november": "November",
// "browse.startsWith.months.october": "October",
// TODO New key - Add a translation
"browse.startsWith.months.october": "October",
// "browse.startsWith.months.september": "September",
// TODO New key - Add a translation
"browse.startsWith.months.september": "September",
// "browse.startsWith.submit": "Go",
// TODO New key - Add a translation
"browse.startsWith.submit": "Go",
// "browse.startsWith.type_date": "Or type in a date (year-month):",
// TODO New key - Add a translation
"browse.startsWith.type_date": "Or type in a date (year-month):",
// "browse.startsWith.type_text": "Or enter first few letters:",
// TODO New key - Add a translation
"browse.startsWith.type_text": "Or enter first few letters:",
// "browse.title": "Browsing {{ collection }} by {{ field }} {{ value }}",
// TODO New key - Add a translation
"browse.title": "Browsing {{ collection }} by {{ field }} {{ value }}",
// "chips.remove": "Remove chip",
// TODO New key - Add a translation
"chips.remove": "Remove chip",
// "collection.create.head": "Create a Collection",
// TODO New key - Add a translation
"collection.create.head": "Create a Collection",
// "collection.create.sub-head": "Create a Collection for Community {{ parent }}",
// TODO New key - Add a translation
"collection.create.sub-head": "Create a Collection for Community {{ parent }}",
// "collection.delete.cancel": "Cancel",
// TODO New key - Add a translation
"collection.delete.cancel": "Cancel",
// "collection.delete.confirm": "Confirm",
// TODO New key - Add a translation
"collection.delete.confirm": "Confirm",
// "collection.delete.head": "Delete Collection",
// TODO New key - Add a translation
"collection.delete.head": "Delete Collection",
// "collection.delete.notification.fail": "Collection could not be deleted",
// TODO New key - Add a translation
"collection.delete.notification.fail": "Collection could not be deleted",
// "collection.delete.notification.success": "Successfully deleted collection",
// TODO New key - Add a translation
"collection.delete.notification.success": "Successfully deleted collection",
// "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"",
// TODO New key - Add a translation
"collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"",
// "collection.edit.delete": "Delete this collection",
// TODO New key - Add a translation
"collection.edit.delete": "Delete this collection",
// "collection.edit.head": "Edit Collection",
// TODO New key - Add a translation
"collection.edit.head": "Edit Collection",
// "collection.edit.item-mapper.cancel": "Cancel",
// TODO New key - Add a translation
"collection.edit.item-mapper.cancel": "Cancel",
// "collection.edit.item-mapper.collection": "Collection: \"<b>{{name}}</b>\"",
// TODO New key - Add a translation
"collection.edit.item-mapper.collection": "Collection: \"<b>{{name}}</b>\"",
// "collection.edit.item-mapper.confirm": "Map selected items",
// TODO New key - Add a translation
"collection.edit.item-mapper.confirm": "Map selected items",
// "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.",
// TODO New key - Add a translation
"collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.",
// "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections",
// TODO New key - Add a translation
"collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections",
// "collection.edit.item-mapper.no-search": "Please enter a query to search",
// TODO New key - Add a translation
"collection.edit.item-mapper.no-search": "Please enter a query to search",
// "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.",
// "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.map.error.head": "Mapping errors",
// "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.",
// "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.map.success.head": "Mapping completed",
// "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.",
// "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors",
// "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.",
// "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed",
// TODO New key - Add a translation
"collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed",
// "collection.edit.item-mapper.remove": "Remove selected item mappings",
// TODO New key - Add a translation
"collection.edit.item-mapper.remove": "Remove selected item mappings",
// "collection.edit.item-mapper.tabs.browse": "Browse mapped items",
// TODO New key - Add a translation
"collection.edit.item-mapper.tabs.browse": "Browse mapped items",
// "collection.edit.item-mapper.tabs.map": "Map new items",
// TODO New key - Add a translation
"collection.edit.item-mapper.tabs.map": "Map new items",
// "collection.form.abstract": "Short Description",
// TODO New key - Add a translation
"collection.form.abstract": "Short Description",
// "collection.form.description": "Introductory text (HTML)",
// TODO New key - Add a translation
"collection.form.description": "Introductory text (HTML)",
// "collection.form.errors.title.required": "Please enter a collection name",
// TODO New key - Add a translation
"collection.form.errors.title.required": "Please enter a collection name",
// "collection.form.license": "License",
// TODO New key - Add a translation
"collection.form.license": "License",
// "collection.form.provenance": "Provenance",
// TODO New key - Add a translation
"collection.form.provenance": "Provenance",
// "collection.form.rights": "Copyright text (HTML)",
// TODO New key - Add a translation
"collection.form.rights": "Copyright text (HTML)",
// "collection.form.tableofcontents": "News (HTML)",
// TODO New key - Add a translation
"collection.form.tableofcontents": "News (HTML)",
// "collection.form.title": "Name",
// TODO New key - Add a translation
"collection.form.title": "Name",
// "collection.page.browse.recent.head": "Recent Submissions",
// TODO New key - Add a translation
"collection.page.browse.recent.head": "Recent Submissions",
// "collection.page.browse.recent.empty": "No items to show",
// TODO New key - Add a translation
"collection.page.browse.recent.empty": "No items to show",
// "collection.page.handle": "Permanent URI for this collection",
// TODO New key - Add a translation
"collection.page.handle": "Permanent URI for this collection",
// "collection.page.license": "License",
// TODO New key - Add a translation
"collection.page.license": "License",
// "collection.page.news": "News",
// TODO New key - Add a translation
"collection.page.news": "News",
// "collection.select.confirm": "Confirm selected",
// TODO New key - Add a translation
"collection.select.confirm": "Confirm selected",
// "collection.select.empty": "No collections to show",
// TODO New key - Add a translation
"collection.select.empty": "No collections to show",
// "collection.select.table.title": "Title",
// TODO New key - Add a translation
"collection.select.table.title": "Title",
// "community.create.head": "Create a Community",
// TODO New key - Add a translation
"community.create.head": "Create a Community",
// "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}",
// TODO New key - Add a translation
"community.create.sub-head": "Create a Sub-Community for Community {{ parent }}",
// "community.delete.cancel": "Cancel",
// TODO New key - Add a translation
"community.delete.cancel": "Cancel",
// "community.delete.confirm": "Confirm",
// TODO New key - Add a translation
"community.delete.confirm": "Confirm",
// "community.delete.head": "Delete Community",
// TODO New key - Add a translation
"community.delete.head": "Delete Community",
// "community.delete.notification.fail": "Community could not be deleted",
// TODO New key - Add a translation
"community.delete.notification.fail": "Community could not be deleted",
// "community.delete.notification.success": "Successfully deleted community",
// TODO New key - Add a translation
"community.delete.notification.success": "Successfully deleted community",
// "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"",
// TODO New key - Add a translation
"community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"",
// "community.edit.delete": "Delete this community",
// TODO New key - Add a translation
"community.edit.delete": "Delete this community",
// "community.edit.head": "Edit Community",
// TODO New key - Add a translation
"community.edit.head": "Edit Community",
// "community.form.abstract": "Short Description",
// TODO New key - Add a translation
"community.form.abstract": "Short Description",
// "community.form.description": "Introductory text (HTML)",
// TODO New key - Add a translation
"community.form.description": "Introductory text (HTML)",
// "community.form.errors.title.required": "Please enter a community name",
// TODO New key - Add a translation
"community.form.errors.title.required": "Please enter a community name",
// "community.form.rights": "Copyright text (HTML)",
// TODO New key - Add a translation
"community.form.rights": "Copyright text (HTML)",
// "community.form.tableofcontents": "News (HTML)",
// TODO New key - Add a translation
"community.form.tableofcontents": "News (HTML)",
// "community.form.title": "Name",
// TODO New key - Add a translation
"community.form.title": "Name",
// "community.page.handle": "Permanent URI for this community",
// TODO New key - Add a translation
"community.page.handle": "Permanent URI for this community",
// "community.page.license": "License",
// TODO New key - Add a translation
"community.page.license": "License",
// "community.page.news": "News",
// TODO New key - Add a translation
"community.page.news": "News",
// "community.all-lists.head": "Subcommunities and Collections",
// TODO New key - Add a translation
"community.all-lists.head": "Subcommunities and Collections",
// "community.sub-collection-list.head": "Collections of this Community",
// TODO New key - Add a translation
"community.sub-collection-list.head": "Collections of this Community",
// "community.sub-community-list.head": "Communities of this Community",
// TODO New key - Add a translation
"community.sub-community-list.head": "Communities of this Community",
// "dso-selector.create.collection.head": "New collection",
// TODO New key - Add a translation
"dso-selector.create.collection.head": "New collection",
// "dso-selector.create.community.head": "New community",
// TODO New key - Add a translation
"dso-selector.create.community.head": "New community",
// "dso-selector.create.community.sub-level": "Create a new community in",
// TODO New key - Add a translation
"dso-selector.create.community.sub-level": "Create a new community in",
// "dso-selector.create.community.top-level": "Create a new top-level community",
// TODO New key - Add a translation
"dso-selector.create.community.top-level": "Create a new top-level community",
// "dso-selector.create.item.head": "New item",
// TODO New key - Add a translation
"dso-selector.create.item.head": "New item",
// "dso-selector.edit.collection.head": "Edit collection",
// TODO New key - Add a translation
"dso-selector.edit.collection.head": "Edit collection",
// "dso-selector.edit.community.head": "Edit community",
// TODO New key - Add a translation
"dso-selector.edit.community.head": "Edit community",
// "dso-selector.edit.item.head": "Edit item",
// TODO New key - Add a translation
"dso-selector.edit.item.head": "Edit item",
// "dso-selector.no-results": "No {{ type }} found",
// TODO New key - Add a translation
"dso-selector.no-results": "No {{ type }} found",
// "dso-selector.placeholder": "Search for a {{ type }}",
// TODO New key - Add a translation
"dso-selector.placeholder": "Search for a {{ type }}",
// "error.browse-by": "Error fetching items",
// TODO New key - Add a translation
"error.browse-by": "Error fetching items",
// "error.collection": "Error fetching collection",
// TODO New key - Add a translation
"error.collection": "Error fetching collection",
// "error.collections": "Error fetching collections",
// TODO New key - Add a translation
"error.collections": "Error fetching collections",
// "error.community": "Error fetching community",
// TODO New key - Add a translation
"error.community": "Error fetching community",
// "error.identifier": "No item found for the identifier",
// TODO New key - Add a translation
"error.identifier": "No item found for the identifier",
// "error.default": "Error",
// TODO New key - Add a translation
"error.default": "Error",
// "error.item": "Error fetching item",
// TODO New key - Add a translation
"error.item": "Error fetching item",
// "error.items": "Error fetching items",
// TODO New key - Add a translation
"error.items": "Error fetching items",
// "error.objects": "Error fetching objects",
// TODO New key - Add a translation
"error.objects": "Error fetching objects",
// "error.recent-submissions": "Error fetching recent submissions",
// TODO New key - Add a translation
"error.recent-submissions": "Error fetching recent submissions",
// "error.search-results": "Error fetching search results",
// TODO New key - Add a translation
"error.search-results": "Error fetching search results",
// "error.sub-collections": "Error fetching sub-collections",
// TODO New key - Add a translation
"error.sub-collections": "Error fetching sub-collections",
// "error.sub-communities": "Error fetching sub-communities",
// TODO New key - Add a translation
"error.sub-communities": "Error fetching sub-communities",
// "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below : <br> <br>",
// TODO New key - Add a translation
"error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below : <br> <br>",
// "error.top-level-communities": "Error fetching top-level communities",
// TODO New key - Add a translation
"error.top-level-communities": "Error fetching top-level communities",
// "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.",
// TODO New key - Add a translation
"error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.",
// "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
// TODO New key - Add a translation
"error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
// "footer.copyright": "copyright © 2002-{{ year }}",
// TODO New key - Add a translation
"footer.copyright": "copyright © 2002-{{ year }}",
// "footer.link.dspace": "DSpace software",
// TODO New key - Add a translation
"footer.link.dspace": "DSpace software",
// "footer.link.duraspace": "DuraSpace",
// TODO New key - Add a translation
"footer.link.duraspace": "DuraSpace",
// "form.cancel": "Cancel",
// TODO New key - Add a translation
"form.cancel": "Cancel",
// "form.clear": "Clear",
// TODO New key - Add a translation
"form.clear": "Clear",
// "form.clear-help": "Click here to remove the selected value",
// TODO New key - Add a translation
"form.clear-help": "Click here to remove the selected value",
// "form.edit": "Edit",
// TODO New key - Add a translation
"form.edit": "Edit",
// "form.edit-help": "Click here to edit the selected value",
// TODO New key - Add a translation
"form.edit-help": "Click here to edit the selected value",
// "form.first-name": "First name",
// TODO New key - Add a translation
"form.first-name": "First name",
// "form.group-collapse": "Collapse",
// TODO New key - Add a translation
"form.group-collapse": "Collapse",
// "form.group-collapse-help": "Click here to collapse",
// TODO New key - Add a translation
"form.group-collapse-help": "Click here to collapse",
// "form.group-expand": "Expand",
// TODO New key - Add a translation
"form.group-expand": "Expand",
// "form.group-expand-help": "Click here to expand and add more elements",
// TODO New key - Add a translation
"form.group-expand-help": "Click here to expand and add more elements",
// "form.last-name": "Last name",
// TODO New key - Add a translation
"form.last-name": "Last name",
// "form.loading": "Loading...",
// TODO New key - Add a translation
"form.loading": "Loading...",
// "form.no-results": "No results found",
// TODO New key - Add a translation
"form.no-results": "No results found",
// "form.no-value": "No value entered",
// TODO New key - Add a translation
"form.no-value": "No value entered",
// "form.other-information": {},
// TODO New key - Add a translation
"form.other-information": {},
// "form.remove": "Remove",
// TODO New key - Add a translation
"form.remove": "Remove",
// "form.save": "Save",
// TODO New key - Add a translation
"form.save": "Save",
// "form.save-help": "Save changes",
// TODO New key - Add a translation
"form.save-help": "Save changes",
// "form.search": "Search",
// TODO New key - Add a translation
"form.search": "Search",
// "form.search-help": "Click here to looking for an existing correspondence",
// TODO New key - Add a translation
"form.search-help": "Click here to looking for an existing correspondence",
// "form.submit": "Submit",
// TODO New key - Add a translation
"form.submit": "Submit",
// "home.description": "",
// TODO New key - Add a translation
"home.description": "",
// "home.title": "DSpace Angular :: Home",
// TODO New key - Add a translation
"home.title": "DSpace Angular :: Home",
// "home.top-level-communities.head": "Communities in DSpace",
// TODO New key - Add a translation
"home.top-level-communities.head": "Communities in DSpace",
// "home.top-level-communities.help": "Select a community to browse its collections.",
// TODO New key - Add a translation
"home.top-level-communities.help": "Select a community to browse its collections.",
// "item.edit.delete.cancel": "Cancel",
// TODO New key - Add a translation
"item.edit.delete.cancel": "Cancel",
// "item.edit.delete.confirm": "Delete",
// TODO New key - Add a translation
"item.edit.delete.confirm": "Delete",
// "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.",
// TODO New key - Add a translation
"item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.",
// "item.edit.delete.error": "An error occurred while deleting the item",
// TODO New key - Add a translation
"item.edit.delete.error": "An error occurred while deleting the item",
// "item.edit.delete.header": "Delete item: {{ id }}",
// TODO New key - Add a translation
"item.edit.delete.header": "Delete item: {{ id }}",
// "item.edit.delete.success": "The item has been deleted",
// TODO New key - Add a translation
"item.edit.delete.success": "The item has been deleted",