-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathhyrax.en.yml
1241 lines (1241 loc) · 59.1 KB
/
hyrax.en.yml
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
---
en:
activefedora:
models:
batch_upload_item: Works by Batch
file_set: File
activemodel:
errors:
messages:
cannot_have_child_nested: cannot have child nested within it
cannot_nest_in_parent: cannot nest within parent
cannot_remove_relationship: permission is inadequate for removal of nesting relationship
conflict: Your changes could not be saved because another user (or background job) updated this %{model} after you began editing. Please make sure all file attachments have completed successfully and try again. This form has refreshed with the most recent saved copy of the %{model}.
exceeds_maximum_nesting_depth: nesting exceeds the allowed maximum nesting depth.
is_not_nestable: is not nestable
blacklight:
search:
fields:
facet:
admin_set_sim: Admin Set
member_of_collections_ssim: Collection
resource_type_sim: Resource type
suppressed_bsi: Status
show:
admin_set: 'In Administrative Set:'
based_near_label: Location
contributor: Contributors
keyword: Keyword
filters:
title: 'Filtering by:'
start_over: Start Over
errors:
messages:
carrierwave_download_error: Couldn't download image.
carrierwave_integrity_error: Not an image.
carrierwave_processing_error: Cannot resize image.
extension_blacklist_error: 'You are not allowed to upload %{extension} files, prohibited types: %{prohibited_types}'
extension_whitelist_error: 'You are not allowed to upload %{extension} files, allowed types: %{allowed_types}'
helpers:
action:
add: Add
admin_set:
new: Create new administrative set
batch:
new: Create batch of works
cancel: Cancel
close: Close
collection:
new: New Collection
delete: Delete
edit: Edit
less: Less
more: More
refresh: Refresh
remove: Remove
work:
new: Add new work
submit:
admin_set:
create: Save
update: Save changes
create: Save
hyrax_permission_template:
create: Save
update: Save
hyrax_permission_template_access:
create: Add
proxy_deposit_request:
create: Transfer
update: Save changes
hyrax:
account_label: User
active_consent_to_agreement: I have read and agree to the
admin:
admin_sets:
delete:
error_default_set: Administrative set cannot be deleted as it is the default set
error_not_empty: Administrative set cannot be deleted as it is not empty
notification: Administrative set successfully deleted
document_list:
edit: Edit
no_works: The administrative set does not contain any works.
title: List of items in this administrative set
edit:
header: 'Edit Administrative Set: %{title}'
form:
cancel: Cancel
note: Users granted a new role will only gain the role on works that are deposited after that role has been granted.
permission_destroy_errors:
admin_group: The repository administrators group cannot be removed
permission_update_errors:
error: Invalid update option for permission template.
no_date: A date is required for the selected release option.
no_embargo: An embargo period is required for the selected option.
nothing: Select release options before pressing save.
permission_update_notices:
new_admin_set: The administrative set '%{name}' has been created. Use the additional tabs to define other aspects of the administrative set.
participants: The administrative set's participant rights have been updated
updated_admin_set: The administrative set '%{name}' has been updated.
visibility: The administrative set's release & visibility settings have been updated.
workflow: The administrative set's workflow has been updated.
tabs:
description: Description
participants: Participants
visibility: Release and Visibility
workflow: Workflow
form_participant_table:
admin_users: Repository Administrators
allow_all_registered: Allow all registered users to deposit
depositors:
action: Action
agent_name: Depositors of This Set
empty: No depositors have been added to this administrative set.
help: Depositors can add new works to this administrative set.
remove: Remove
title: Depositors
type: Type
managers:
action: Action
agent_name: Managers of This Set
empty: No managers have been added to this administrative set.
help: Managers of this administrative set can edit the set metadata, participants, and release and visibility settings. Managers can also edit work metadata, add to or remove files from a work, and add new works to the set.
remove: Remove
title: Managers
type: Type
registered_users: Registered Users
viewers:
action: Action
agent_name: Viewers of This Set
empty: No viewers have been added to this administrative set.
help: Viewers of this administrative set can view works in the set regardless of the visibility settings applied to the work. For example, viewers can view works in this set even if the works are currently embargoed or restricted.
remove: Remove
title: Viewers
type: Type
form_participants:
add_group: 'Add group:'
add_participants: Add Participants
add_user: 'Add user:'
current_participants: Current Participants
form_visibility:
cancel: Cancel
page_description: Release and visibility settings determine the options available to depositors when submitting a work to this administrative set. Changes to these settings do not affect previously deposited works.
release:
description: Set embargoes and lease polices for this administrative set.
fixed: Depositor must choose embargo -- delay release of all works until
no_delay: Do not allow embargoes or leases
title: Release
varies:
any: Depositor can choose any embargo length; leases are allowed
between: 'Depositor can choose embargo up to date:'
description: 'Allow depositor to choose settings:'
embargo:
1yr: 1 year after deposit
2yrs: 2 years after deposit
3yrs: 3 years after deposit
6mos: 6 months after deposit
select: Select embargo period..
period: 'Depositor can choose embargo period up to:'
visibility:
description: Set visibility policies for the administrative set. Setting honors embargo policies above.
everyone: Public - depositor can only choose public visibility setting
institution: Institution -- depositor can only select institution visibility setting
restricted: Private -- depositor can only select private for visibility. Access is restricted to repository administrators, managers, and viewers of the set. Must be used with "No embargo" setting above.
title: Visibility
varies: All settings allowed -- depositor can choose. Must use this option to allow leases.
form_workflow:
cancel: Cancel
no_workflows: There are no workflows to select.
page_description: Each administrative set has a workflow associated with it. This workflow is applied to all works added to the administrative set. Select the workflow to be used for this administrative set below.
new:
header: Create New Administrative Set
show:
breadcrumb: View Set
header: Administrative Set
item_list_header: Works in This Set
show_actions:
confirm_delete: Are you sure you wish to delete this Administrative Set? This action cannot be undone.
appearances:
show:
header: Appearance
update:
flash:
success: The appearance was successfully updated
collection_types:
create:
notification: The collection type %{name} has been created.
delete:
notification: The collection type %{name} has been deleted.
edit:
header: Edit Collection Type
submit: Save changes
errors:
no_settings_change_for_admin_sets: Collection type settings cannot be altered for the Administrative Set type
no_settings_change_for_user_collections: Collection type settings cannot be altered for the User Collection type
no_settings_change_if_not_empty: Collection type settings cannot be altered for a type that has collections
not_empty: Collection type cannot be altered as it has collections
form:
tab:
appearance: Badge Color
metadata: Description
participants: Participants
settings: Settings
form_participant_table:
creators:
action: Action
agent_name: Collection Creators
empty: No creators have been added to this collection type.
help: Creators of collections of this type can create and manage their own collections.
title: Creators
type: Type
managers:
action: Action
agent_name: Collection Managers
empty: No managers have been added to this collection type.
help: Managers of collections of this type can edit collections other users have created, including adding to and removing works from a collection, modifying collection metadata, and deleting collections.
title: Managers
type: Type
form_participants:
add_group: Add group
add_participants: Add Participants
add_user: Add user
current_participants: Current Participants
header: Collection Participants
instructions: You can designate both groups and users as creators and managers of collections of this type
remove_success: Participant Removed
submit: Add
update_notice: Participants Updated
form_settings:
instructions: These settings determine how collections of this type can be managed and discovered.
warning: 'Warning: These settings cannot be changed after a collection of this type has been created.'
index:
breadcrumb: Collection Types
create_new_button: Create new collection type
description: Collection types enable you to define settings that govern collections that serve different purposes in your repository. You can define as many collection types as you need.
header: Collection Types
modal:
can_delete_body_html: "<p>Deleting this collection type will permanently remove the type and its settings from the repository. Are you sure you want to delete this collection type?</p>"
cannot_delete_body_html: "<p>You cannot delete this collection type because one or more collections of this type have already been created.</p> <p>To delete this collection type, first ensure that all collections of this type have been deleted.</p>"
header_can_delete: Delete Collection Type?
header_cannot_delete: Cannot Delete Collection Type
view_collections: View collections of this type
more_toggle_content_html: "<p>Typical scenarios for collection types include:</p> <ul> <li><strong>User Collections</strong> that any registered user can create to organize items they deposit.</li> <li><strong>Exhibits</strong> that staff create and curate for public display, where items can be included in any number of exhibits.</li> <li><strong>Controlled Collections</strong> created and managed by staff and not intended for public display, such as collections associated with organizational units or departments.</li> <li><strong>Community Collections</strong> that are intended for public display, similar to how DSpace communities and collections are sometimes used.</li> </ul>"
more_toggle_header_html: "<span>More</span> about collection types"
table:
actions: Actions
name: Name
multiple_membership_checker:
error_preamble: 'Error: You have specified more than one of the same single-membership collection type '
error_type_and_collections: "(type: %{type}, collections: %{collections})"
new:
header: Create New Collection Type
submit: Save
update:
notification: The collection type %{name} has been updated.
features:
index:
action: Action
description: Description
feature: Feature
header: Features
sidebar:
activity: Activity
appearance: Appearance
collection_types: Collection Types
collections: Collections
configuration: Configuration
content_blocks: Content Blocks
notifications: Notifications
pages: Pages
profile: Profile
repository_objects: Repository Contents
settings: Settings
statistics: Reports
tasks: Tasks
technical: Features
transfers: Transfers
user_activity: Your activity
users: Manage Users
workflow_review: Review Submissions
workflow_roles: Workflow Roles
works: Works
stats:
deposited_form:
end_label: end [defaults to now]
heading: 'Display Files Deposited:'
start_label: Start
repository_objects:
series:
published: Published
unknown: Unknown
unpublished: Unpublished
user_deposits:
end_label: Ending [defaults to now]
heading: Display files deposited by users
start_label: Starting
works:
headers:
main: Work Statistics
total: 'Total Works:'
visibility: Totals by Visibility
users:
index:
access_label: Last access
describe_users_html:
one: There is <b>%{count} user</b> in this repository.
other: There are <b>%{count} users</b> in this repository.
id_label: Username
role_label: Roles
title: Manage Users
workflow_roles:
header: Workflow Roles
index:
current_roles: Current Roles
delete:
confirm: Are you sure?
header:
name: Name
roles: Roles
user: User
new_role: Assign Role
no_roles: No roles
workflows:
index:
header: Review Submissions
tabs:
published: Published
under_review: Under Review
api:
accepted:
default: Your request has been accepted for processing, but processing is not complete. See job for more info.
bad_request:
default: Unable to process your request. See errors for more info.
deleted:
default: Deleted the Resource
forbidden:
default: You are not authorized to access this content.
internal_error:
default: The server encountered an error.
not_found:
default: Could not find a resource that matches your request.
success:
default: Your request was processed successfully.
unauthorized:
default: You must be logged in to do that!
unprocessable_entity:
default: The resource you attempted to modify cannot be modified according to your request.
background_attribution_html: ''
base:
citations:
header: 'Citations:'
form_child_work_relationships:
actions:
remove: Remove from this work
attach_new_work: Deposit new work as child of this work
caption: This work currently contains these child works
confirm:
cancel: Cancel
remove: Remove
text: Removing this child work will not remove it from the repository, only from this parent work. Are you sure you want to remove this work from this parent work?
header:
actions: Action
title: Work title
form_files:
dropzone: Drop files here.
local_upload_browse_everything_html: |
<p>You can add one or more files to associate with this work. Add files
from your local system or a cloud provider.</p>
<p>Note that if you use a cloud provider to upload a large number of
files within a short period of time, the provider may not be able to
accommodate your request. If you experience errors uploading from the
cloud, let us know via the %{contact_href}.</p>
local_upload_html: "<p>You can add one or more files to associate with this work.</p>"
form_member_of_collections:
actions:
remove: Remove from collection
caption: This work is currently in these collections
confirm:
cancel: Cancel
remove: Remove
text: Removing this work will not remove it from the repository, only from this collection. Are you sure you want to remove this work from the collection?
header:
actions: Action
title: Collection title
form_permission_under_embargo:
help_html: "<strong>This work is under embargo.</strong> You can change the settings of the embargo here, or you can visit the %{edit_link} to deactivate it."
legend_html: Visibility <small>Who should be able to view or download this content?</small>
management_page: Embargo Management Page
form_permission_under_lease:
help_html: "<strong>This work is under lease.</strong> You can change the settings of the lease here, or you can visit the %{edit_link} to deactivate it."
legend_html: Visibility <small>Who should be able to view or download this content?</small>
management_page: Lease Management Page
form_progress:
required_agreement: Check deposit agreement
required_descriptions: Describe your work
required_files: Add files
requirements: Requirements
form_rendering:
help_html: Select file(s) to be offered as a download for every image in Universal Viewer, for example a PDF of the whole work.
legend_html: Rendering
form_representative:
help_html: Select the file with media that represents this work.
legend_html: Representative Media
form_share:
add_sharing: Add Sharing
currently_sharing: Currently Shared With
directions: Regardless of the visibility settings for this work, you can also share it with other users and groups.
form_thumbnail:
help_html: Select the file to be used as the thumbnail for this work.
legend_html: Thumbnail
items:
actions: Actions
date_uploaded: Date Uploaded
empty: This %{type} has no files associated with it. Click "edit" to add more files.
header: Items
thumbnail: Thumbnail
title: Title
unauthorized: There are no publicly available items in this %{type}.
visibility: Visibility
relationships:
empty: This %{type} is not currently in any collections.
header: Relationships
relationships_parent_row:
label: 'In %{type}:'
share_with:
definition_heading: Permission Definitions
definitions_html: "<strong>View/Download:</strong> this file (both contents and metadata) is accessible from within %{application_name}.<br /> <strong>Edit:</strong> this file (both contents and metadata) can be edited. You may only grant this permission to %{institution_name} users and/or groups."
share_with_html: You may grant "View/Download" or "Edit" access for specific users and/or groups to files. Enter a valid %{account_name}, one at a time, select the access level for that user, and click +Add.
show:
last_modified: Last modified
social_media:
facebook: Facebook
google: Google+
tumblr: Tumblr
twitter: Twitter
batch:
help:
resource_type: You may select multiple types to apply to all files
title: Filename will be the default title. Please provide a more meaningful title, and filenames will still be preserved by the system.
batch_uploads:
disabled: Feature disabled by administrator
files:
button_label: Add New Work
instructions: Each file will be uploaded to a separate new work resulting in one work per uploaded file.
upload_type_instructions: To create a single work for all the files, go to
new:
header: Batch Create New Works
in_collections: These Works in Collections
in_other_works: This Work in Other Works
in_this_work: Other Works in this Work
progress:
header: Save Works
bread_crumb:
search_results: Back to search results
collection:
actions:
add_existing_works:
desc: Add existing works to this Collection
label: Add existing works to this collection
add_new_nested_collection:
desc: Add new collection to this Collection
label: Create new collection as subcollection
add_new_work:
desc: Deposit new work through this collection
label: Deposit new work through this collection
delete:
confirmation: Delete this collection?
desc: Delete this collection
label: Delete collection
edit:
desc: Edit this collection
label: Edit collection
header: Actions
nest_collections:
button_label: Add a subcollection
desc: Nest other collections within this Collection
label: Add existing collections to this collection
modal_title: Add a Subcollection to Collection
select_label: Select subcollection
nested_subcollection:
button_label: Add to collection
desc: Add existing collections to this collection
modal_title: Add this Collection Within Another Collection
select_label: Select collection
browse_view: Browse View
document_list:
edit: Edit
no_visible_works: The collection is either empty or does not contain items to which you have access.
edit:
manage_items: Manage Items in this Collection
form:
additional_fields: Additional fields
description: Descriptions
is_part_of: Is part of
select_form:
close: Close
create: Save
create_new: Add to new Collection
no_collections: You do not have access to any existing collections. You may create a new collection.
select_heading: 'Select the collection to add your files to:'
title: Add to collection
update: Save changes
collection_type:
admin_set_title: Admin Set
default_title: User Collection
collection_types:
create_service:
admin_set_description: An aggregation of works that is intended to help with administrative control. Admin Sets provide a way of defining behaviors and policies around a set of works.
default_description: A User Collection can be created by any user to organize their works.
collections:
search_form:
button_label: Go
label: Search Collection %{title}
placeholder: Search subcollections and works in this collection
show:
buttons:
remove_from_collection: Remove
remove_this_sub_collection: Remove
no_visible_parent_collections: There are no visible parent collections.
no_visible_subcollections: There are no visible subcollections.
parent_collection_header: Parent Collections
show_less_parent_collections: "...show less"
show_more_parent_collections: show more...
subcollection_count: Subcollections
works_in_collection: Works
contact_form:
button_label: Send
email_label: Your Email
header: Contact Form
issue_types:
browsing: Browsing and searching
changing: Making changes to my content
depositing: Depositing content
general: General inquiry or request
reporting: Reporting a problem
message_label: Message
name_label: Your Name
notice: Please use the contact form to submit inquiries about this system; to report a problem you are experiencing with the system; to request assistance using the system; or to provide general feedback. See the Help page for additional information about this system.
select_type: Select an Issue Type
subject_label: Subject
type_label: Issue Type
content_blocks:
cancel: Cancel
tabs:
announcement_text: Announcement Text
featured_researcher: Featured Researcher
marketing_text: Marketing Text
updated: Content blocks updated.
controls:
about: About
contact: Contact
help: Help
home: Home
dashboard:
additional_notifications: See all notifications
admin_sets:
admin_set: Administrative Set
files: Files
subtitle: Recent activity
title: Administrative Sets
works: Works
all:
collections: All Collections
works: All Works
authorize_proxies: Authorize Proxies
breadcrumbs:
admin: Dashboard
collection_type_actions:
close: Close
create_collection: Create collection
select_type_of_collection: Select type of collection
collections:
edit:
header: 'Edit %{type_title}: %{title}'
form:
permission_update_errors:
error: Invalid update option for permission template.
permission_update_notices:
participants: The collection's sharing options have been updated.
sharing: The collection's sharing options have been updated.
tabs:
branding: Branding
description: Description
discovery: Discovery
relationships: Relationships
sharing: Sharing
form_branding:
banner:
description: An image to be displayed at the top of the collection page. For best results, upload an image (JPG, GIF or PNG) that is at least 120 pixels tall and 1200 pixels wide.
label: Banner
branding:
description: Optionally, you can upload a banner image and/or logo images to associate with this collection. If uploaded, these images will be displayed at the top of the collection page to provide unique branding for the collection.
label: Branding
logo:
description: One or more images to be displayed at the top of the collection page. For best results, upload an image (JPG, GIF or PNG) that is 40 pixels in height. Larger images will be resized to 40 pixels in height.
label: Logo
form_discovery:
para1: These settings determine who is able to discover and view this collection's landing page; they do not affect the visibility of items in the collection.
para2: If you chose not to make this collection open access, you can still share the collection with specific users and groups using the Sharing tab.
form_relationships:
add_other_collections_as_sub_collections_description: You can manage the sub-collections of this collection.
buttons:
remove_from_collection: Remove
remove_this_sub_collection: Remove
collection_is_subcollection_description: This collection is currently a sub-collection of these collections
headlines:
other_collections_in_this_collection: Other Collections in This Collection
this_collection_in_other_collections: This Collection in Other Collections
modals:
remove_from_collection_description: Removing this collection will not remove it from the repository, only as a parent of this collection. Are you sure you want to remove this collection?
remove_parent_collection_deny: You do not have sufficient privileges for the parent collection to be able to remove it.
remove_this_sub_collection_description: Removing this sub-collection will not remove it from the repository, only from this parent collection. Are you sure you want to remove this sub-collection?
sub_collections_of_collection_description: These collections are currently sub-collections of this collection
table:
action: Action
collection_title: Collection Title
this_collection_in_other_collections_description: You can add this collection to other collections as a sub-collection.
form_share:
add_group: Add group
add_sharing: Add Sharing
add_user: Add user
current_shared: Currently Shared With
note: Regardless of the visibility settings of this collection, you can share this collection with specific groups and users.
form_share_table:
allow_all_registered: Allow all registered
depositors:
action: Action
agent_name: User/Group
empty: No depositors have been added to this collection.
help: Depositors of this collection can view the collection and add works to it, even if the visibility permissions of the collection otherwise would not permit them to view it.
remove: Remove
title: Depositors
type: Type
managers:
action: Action
agent_name: User/Group
empty: No managers have been added to this collection.
help: Managers of this collection can add to and remove works from the collection, modify collection metadata, and delete the collection.
help_with_works: For collections of type %{type_title}, when works are created directly in this collection, the managers are given edit access to the new work.
remove: Remove
title: Managers
type: Type
viewers:
action: Action
agent_name: User/Group
empty: No viewers have been added to this collection.
help: Viewers of this collection can view it even if the visibility permissions of the collection otherwise would not permit them to view it.
help_with_works: For collections of type %{type_title}, when works are created directly in this collection, the viewers are given read access to the new work.
remove: Remove
title: Viewers
type: Type
new:
header: New %{type_title}
show:
header: Collection
item_count: Works
parent_collection_header: Parent Collections
public_view_label: Public view of Collection
search_results: Search Results within this Collection
show_less_parent_collections: "...show less"
show_more_parent_collections: show more...
subcollection_count: Subcollections
create_work: Create Work
current_proxies: Current Proxies
delete_notification: Delete Notification
heading_actions:
close: Close
create_work: Create work
select_type_of_work: Select type of work
manage_proxies: Manage Proxies
managed:
collections: Managed Collections
works: Managed Works
my:
action:
add_to_collection: Add to collection
add_to_collection_only: Allowed actions are limited to adding members
admin_set_confirmation: Deleting an admin set from %{application_name} is permanent. Click OK to delete this admin set from %{application_name}, or Cancel to cancel this operation
collection_create_success: Collection was successfully created.
collection_delete_fail: Collection could not be deleted
collection_delete_success: Collection was successfully deleted
collection_deny_add_members: You do not have sufficient privileges to add members to the collection
collection_update_success: Collection was successfully updated.
collections_confirmation_html: Deleting <span class='pluralized'>this collection</span> will permanently remove <span class='pluralized'>this collection</span> from the repository. Items in <span class='pluralized'>this collection</span> will remain in the repository. Are you sure you want to delete <span class='pluralized'>this collection</span>?
collections_confirmation_no_items_html: Are you sure you want to delete this collection? This action cannot be undone.
delete_admin_set: Delete collection
delete_admin_set_deny: This collection is defined as Admin Set and is not empty. To delete this Admin Set, you must first remove (delete or move to another Admin Set collection) all items from the Admin Set.
delete_collection: Delete collection
delete_collection_deny: You do not have sufficient privileges to delete this collection.
delete_collections: Delete collections
delete_collections_deny: You do not have sufficient privileges to delete one or more collections.
delete_work: Delete Work
edit_admin_set: Edit collection
edit_collection: Edit collection
edit_collection_deny: You do not have sufficient privileges to edit this collection.
edit_selected: Edit Selected
edit_work: Edit Work
highlight: Highlight Work on Profile
members_no_access: You do not have sufficient privileges to any of the selected members
nesting_not_allowed: Collections of this type do not support nesting.
nesting_permission_denied: You do not have sufficient privileges to add this collection to another collection.
select: Select
select_all: Select Current Page
select_none: Select None
transfer: Transfer Ownership of Work
unhighlight: Unhighlight Work
view_admin_set: View collection
view_collection: View collection
work_confirmation: Deleting a work from %{application_name} is permanent. Click OK to delete this work from %{application_name}, or Cancel to cancel this operation
collection_list:
description: 'Description:'
edit_access: 'Edit Access:'
groups: 'Groups:'
managed_access:
deposit: Deposit
manage: Manage
view: View
users: 'Users:'
collections: Collections
facet_label:
collections: 'Filter collections:'
highlighted: 'Filter highlights:'
shared: 'Filter shares:'
works: 'Filter works:'
heading:
access: Access
action: Actions
collection_type: Collection Type
date_modified: Last Modified
date_uploaded: Date Added
highlighted: Highlighted
items: Items
last_modified: Last modified
title: Title
type: Type
visibility: Visibility
highlighted: My Highlights
shared: Works Shared with Me
sr:
batch_checkbox: Check to add to a collection or edit list
check_all_label: Select all files to be added to a collection or edited
detail_label: Display summary details of
listing: Listing of items you have deposited in
press_to: Press to
results_per_page: Number of results to display per page
show_label: Display all details of
works: Works
your_collections: Your Collections
your_works: Your Works
nest_collections_form:
create_under: "'%{child_title}' has been added to '%{parent_title}'"
create_within: "'%{child_title}' has been added to '%{parent_title}'"
removed_relationship: "'%{child_title}' has been removed from '%{parent_title}'"
no_activity: User has no recent activity
no_notifications: User has no notifications
no_proxies: There are no proxies assigned
no_transfer_requests: You haven't received any work transfer requests
no_transfers: You haven't transferred any work
proxy_activity: Proxy Activity
proxy_delete: Delete Proxy
proxy_help: Select a user who can deposit works on your behalf. Both you and your proxy will be able to make changes to these works. You can revoke a proxy by clicking the Delete Proxy button. To revoke their ability to edit a work they previously submitted, remove them from the Sharing tab on each work.
proxy_user: Proxy User
show_admin:
new_visitors: New Visitors
registered_users: Registered Users
repository_growth:
subtitle: Past 90 days
title: Repository Growth
repository_objects:
subtitle: Current Status
title: Repository Objects
returning_visitors: Returning Visitors
total_visitors: Total Visitors
user_activity:
subtitle: New user signups
title: User Activity
stats:
collections: Collections created
file_downloads: Download
file_views: View
files: Files deposited
heading: Your Statistics
works: Works created
title: Dashboard
transfer_of_ownership: Transfers of Ownership
transfer_works_link: Select works to transfer
transfers_received: Transfers Received
transfers_sent: Transfers Sent
user_activity: User Activity
user_notifications: User Notifications
view_files: View Files
document_language: en
edit_profile: Edit Profile
embargoes:
edit:
embargo_apply: Apply Embargo
embargo_cancel: Cancel and manage all embargoes
embargo_deactivate: Deactivate Embargo
embargo_false_html: "<strong>This %{cc} is not currently under embargo.</strong> If you would like to apply an embargo, provide the information here."
embargo_return: Return to editing this %{cc}
embargo_true_html: "<strong>This %{cc} is under embargo.</strong>"
embargo_update: Update Embargo
header:
current: Current Embargo
past: Past Embargoes
history_empty: This %{cc} has no previous embargoes applied to it.
manage_embargoes_html: Manage Embargoes for %{cc} <span class='human_readable_type'>(%{cc_type})</span>
index:
active: All Active Embargoes
deactivated: Deactivated Embargoes
expired: Expired Active Embargoes
manage_embargoes: Manage Embargoes
list_expired_active_embargoes:
change_all: 'Change all files within %{cc} to '
deactivate: Deactivate Embargo
deactivate_selected: Deactivate Embargoes for Selected
missing: There are no expired embargoes in effect at this time.
table_headers:
release_date: Embargo Release Date
title: Title
type: Type of Item
viz_after: Visibility will Change to
viz_current: Current Visibility
featured_researchers: Featured Researchers
file_manager:
link_text: File Manager
file_set:
browse_view: Browse View
show:
download: Download the file
downloadable_content:
audio_link: Download audio
default_link: Download file
heading: Downloadable Content
image_link: Download image
office_link: Download file
pdf_link: Download PDF
video_link: Download video
file_sets:
actions:
delete: Delete
delete_confirm: Deleting %{file_set} from %{application_name} is permanent. Click OK to delete this from %{application_name}, or Cancel to cancel this operation
delete_title: Delete %{file_set}
download: Download
download_title: Download %{file_set}
edit: Edit
edit_title: Edit %{file_set}
header: Select an action
versions: Versions
versions_title: Display previous versions
edit:
descriptions: Descriptions
header: Edit %{file_set}
permissions: Permissions
versions: Versions
form:
attach_to: Attach to %{parent}
cancel: Cancel
save: Save
title: Title
groups_description:
description_html: The list of groups in the drop-down marked "Select a group" is a list of User Managed Groups that you are a member of. You may select a specific group and assign an access level for a file within %{application_name}, similarly to adding user access levels.
permission:
save: Save
permission_form:
applied_to: "(applied to all files just uploaded)"
depositor: Depositor
enter: Enter %{account_label} (one at a time)
header: Permissions
optional: "(optional)"
save_note_html: Permissions are <strong>not</strong> saved until the "Save" button is pressed at the bottom of the page.
select_group: Select a group
share_with: Share With
table_title_access: Access Level
table_title_user: Person/Group
user_search: Search for a user
versioning:
current: Current Version
header: Versions
restore: Restore Previous Version
restore_from: Restore From
save: Save Revision
upload: Upload New Version
help:
header: User Support
override_text: Use app/views/static/help.html.erb to override this file.
homepage:
admin_sets:
link: View all collections
tab_label: Explore Collections
title: Explore Collections
featured_researcher:
missing: No researchers have been featured.
tab_label: Featured Researcher
title: Featured Researcher
featured_works:
document:
depositor_label: Depositor
depositor_missing: no depositor value
keyword_label: Keywords
keyword_missing: no keywords specified
title_label: Title
drag: Drag
no_works: No works have been featured
tab_label: Featured Works
title: Featured Works
recently_uploaded:
depositor: Depositor
details: Details
document:
depositor_label: Depositor
depositor_missing: no depositor value
keyword_label: Keywords
keyword_missing: no keywords specified
title_label: Title
no_public: No public work has been contributed.
tab_label: Recently Uploaded
title: Recently Uploaded
icons:
collection: fa fa-cubes
default: fa fa-cube
leases:
edit:
header:
current: Current Lease
past: Past Leases
history_empty: This %{cc} has no previous leases applied to it.
lease_apply: Apply Lease
lease_cancel: Cancel and manage all leases
lease_deactivate: Deactivate Lease
lease_false_html: "<strong>This %{cc} is not currently under lease.</strong> If you would like to apply a lease, provide the information here."
lease_return: Return to editing this %{cc}
lease_true_html: "<strong>This %{cc} is under lease.</strong>"
lease_update: Update Lease
manage_leases_html: Manage Leases for %{cc} <span class='human_readable_type'>(%{cc_type})</span>
index:
active: All Active Leases
deactivated: Deactivated Leases
expired: Expired Active Leases
manage_leases: Manage Leases
list_expired_active_leases:
change_all: 'Change all files within %{cc} to '
deactivate: Deactivate Lease
deactivate_selected: Deactivate Leases for Selected
missing: There are no expired leases in effect at this time.
table_headers:
release_date: Lease Release Date
title: Title
type: Type of Item
viz_after: Visibility will Change to
viz_current: Current Visibility
mailbox:
date: Date
delete: Delete Message
empty: No notifications found
message: Message
notifications_deleted: Notifications have been deleted
subject: Subject
manifest:
download_text: Download whole resource
unknown_mime_text: unknown mime type
messages:
failure:
multiple:
keyword: could not be updated. You do not have sufficient privileges to edit them.
link: These files
single: could not be updated. You do not have sufficient privileges to edit it.
subject: Batch upload permission denied
title: Files failed
success:
multiple:
keyword: have been saved.
link: These files
single: has been saved.
subject: Batch upload complete
title: Files uploaded successfully
my:
count:
collections:
in_repo: "<strong>%{total_count} collections</strong> in the repository"
you_manage: "<strong>%{total_count} collections</strong> you can manage in the repository"
you_own: "<strong>%{total_count} collections</strong> you own in the repository"
works:
in_repo: "<strong>%{total_count} works</strong> in the repository"
you_manage: "<strong>%{total_count} works</strong> you can manage in the repository"
you_own: "<strong>%{total_count} works</strong> you own in the repository"
nav_safety:
change_tab_message: Are you sure you want to leave this tab? Any unsaved data will be lost.
pages:
cancel: Cancel
tabs:
about_page: About Page
agreement_page: Deposit Agreement
help_page: Help Page
terms_page: Terms of Use
updated: Pages updated.
passive_consent_to_agreement: By saving this work I agree to the
search:
button:
html: <span class="glyphicon glyphicon-search" aria-hidden="true"></span> Go
text: Search