hyrax 2.8.0 → 3.0.0.pre.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +52 -51
- data/.engine_cart.yml +40 -1
- data/.gitignore +4 -0
- data/.regen +1 -1
- data/.rubocop.yml +11 -30
- data/.rubocop_fixme.yml +37 -61
- data/CONTRIBUTING.md +183 -0
- data/Gemfile +3 -1
- data/README.md +14 -17
- data/Rakefile +7 -0
- data/app/actors/hyrax/actors/abstract_actor.rb +1 -0
- data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +59 -0
- data/app/actors/hyrax/actors/add_to_work_actor.rb +42 -39
- data/app/actors/hyrax/actors/apply_order_actor.rb +38 -37
- data/app/actors/hyrax/actors/apply_permission_template_actor.rb +20 -19
- data/app/actors/hyrax/actors/attach_members_actor.rb +57 -41
- data/app/actors/hyrax/actors/base_actor.rb +73 -47
- data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +13 -12
- data/app/actors/hyrax/actors/cleanup_trophies_actor.rb +4 -3
- data/app/actors/hyrax/actors/collections_membership_actor.rb +91 -136
- data/app/actors/hyrax/actors/create_with_files_actor.rb +38 -27
- data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +3 -2
- data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +50 -49
- data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +1 -0
- data/app/actors/hyrax/actors/default_admin_set_actor.rb +20 -19
- data/app/actors/hyrax/actors/embargo_actor.rb +1 -0
- data/app/actors/hyrax/actors/environment.rb +9 -1
- data/app/actors/hyrax/actors/featured_work_actor.rb +8 -7
- data/app/actors/hyrax/actors/file_actor.rb +83 -16
- data/app/actors/hyrax/actors/file_set_actor.rb +117 -58
- data/app/actors/hyrax/actors/initialize_workflow_actor.rb +5 -4
- data/app/actors/hyrax/actors/interpret_visibility_actor.rb +155 -163
- data/app/actors/hyrax/actors/lease_actor.rb +1 -0
- data/app/actors/hyrax/actors/model_actor.rb +12 -5
- data/app/actors/hyrax/actors/null_actor.rb +12 -0
- data/app/actors/hyrax/actors/optimistic_lock_validator.rb +12 -11
- data/app/actors/hyrax/actors/ordered_members_actor.rb +1 -1
- data/app/actors/hyrax/actors/terminator.rb +1 -0
- data/app/actors/hyrax/actors/transactional_request.rb +9 -8
- data/app/actors/hyrax/actors/transfer_request_actor.rb +8 -7
- data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +60 -0
- data/app/assets/images/unauthorized.png +0 -0
- data/app/assets/javascripts/hyrax.js +1 -0
- data/app/assets/javascripts/hyrax/admin/admin_set/visibility.es6 +57 -0
- data/app/assets/javascripts/hyrax/autocomplete.es6 +29 -0
- data/app/assets/javascripts/hyrax/batch_select_all.js +5 -0
- data/app/assets/javascripts/hyrax/collapse.js +91 -0
- data/app/assets/javascripts/hyrax/collections.js +5 -4
- data/app/assets/javascripts/hyrax/collections/editor.es6 +1 -6
- data/app/assets/javascripts/hyrax/editor.es6 +9 -10
- data/app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6 +1 -1
- data/app/assets/javascripts/hyrax/file_manager/save_manager.es6 +6 -5
- data/app/assets/javascripts/hyrax/monkey_patch_turbolinks.js +36 -0
- data/app/assets/javascripts/hyrax/nav_safety.js +23 -5
- data/app/assets/javascripts/hyrax/proxy_rights.js +8 -0
- data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +1 -15
- data/app/assets/stylesheets/hyrax/_collections.scss +8 -20
- data/app/assets/stylesheets/hyrax/_featured.scss +4 -0
- data/app/assets/stylesheets/hyrax/_file-listing.scss +1 -2
- data/app/assets/stylesheets/hyrax/_file_sets.scss +27 -0
- data/app/assets/stylesheets/hyrax/_forms.scss +0 -2
- data/app/assets/stylesheets/hyrax/_header.scss +1 -1
- data/app/assets/stylesheets/hyrax/_home-page.scss +23 -7
- data/app/assets/stylesheets/hyrax/_hyrax.scss +10 -10
- data/app/assets/stylesheets/hyrax/_login_signup.scss +20 -0
- data/app/assets/stylesheets/hyrax/_settings.scss +2 -2
- data/app/assets/stylesheets/hyrax/_styles.scss +10 -0
- data/app/assets/stylesheets/hyrax/_users.scss +16 -0
- data/app/assets/stylesheets/hyrax/_viewer.scss +14 -3
- data/app/assets/stylesheets/hyrax/_work-show.scss +42 -5
- data/app/assets/stylesheets/hyrax/dashboard.scss +3 -3
- data/app/authorities/qa/authorities/collections.rb +8 -7
- data/app/authorities/qa/authorities/find_works.rb +4 -3
- data/app/builders/hyrax/bootstrap_breadcrumbs_builder.rb +5 -4
- data/app/builders/hyrax/form_builder.rb +1 -0
- data/app/builders/hyrax/manifest_helper.rb +2 -1
- data/app/channels/hyrax/application_cable/channel.rb +1 -0
- data/app/channels/hyrax/application_cable/connection.rb +16 -15
- data/app/channels/hyrax/notifications_channel.rb +1 -0
- data/app/connections/hyrax/clean_connection.rb +9 -8
- data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +6 -5
- data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +4 -3
- data/app/controllers/concerns/hyrax/api.rb +23 -20
- data/app/controllers/concerns/hyrax/breadcrumbs.rb +3 -0
- data/app/controllers/concerns/hyrax/breadcrumbs_for_collections.rb +4 -3
- data/app/controllers/concerns/hyrax/breadcrumbs_for_works.rb +22 -21
- data/app/controllers/concerns/hyrax/collections.rb +1 -0
- data/app/controllers/concerns/hyrax/collections/accepts_batches.rb +26 -25
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +59 -58
- data/app/controllers/concerns/hyrax/controller.rb +57 -48
- data/app/controllers/concerns/hyrax/deny_access_override_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +7 -4
- data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +7 -3
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +69 -68
- data/app/controllers/concerns/hyrax/manages_embargoes.rb +1 -0
- data/app/controllers/concerns/hyrax/singular_subresource_controller.rb +1 -0
- data/app/controllers/concerns/hyrax/themed_layout_controller.rb +1 -0
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +242 -172
- data/app/controllers/hyrax/admin/admin_sets_controller.rb +50 -49
- data/app/controllers/hyrax/admin/appearances_controller.rb +7 -6
- data/app/controllers/hyrax/admin/collection_type_participants_controller.rb +1 -0
- data/app/controllers/hyrax/admin/collection_types_controller.rb +31 -32
- data/app/controllers/hyrax/admin/features_controller.rb +1 -0
- data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +47 -46
- data/app/controllers/hyrax/admin/permission_templates_controller.rb +63 -62
- data/app/controllers/hyrax/admin/stats_controller.rb +1 -0
- data/app/controllers/hyrax/admin/strategies_controller.rb +1 -0
- data/app/controllers/hyrax/admin/users_controller.rb +1 -0
- data/app/controllers/hyrax/admin/workflow_roles_controller.rb +4 -3
- data/app/controllers/hyrax/admin/workflows_controller.rb +4 -3
- data/app/controllers/hyrax/api/items_controller.rb +34 -33
- data/app/controllers/hyrax/api/zotero_controller.rb +39 -38
- data/app/controllers/hyrax/batch_edits_controller.rb +48 -54
- data/app/controllers/hyrax/batch_uploads_controller.rb +50 -49
- data/app/controllers/hyrax/citations_controller.rb +4 -3
- data/app/controllers/hyrax/collections_controller.rb +13 -12
- data/app/controllers/hyrax/contact_form_controller.rb +14 -10
- data/app/controllers/hyrax/content_blocks_controller.rb +13 -12
- data/app/controllers/hyrax/dashboard/collection_members_controller.rb +24 -23
- data/app/controllers/hyrax/dashboard/collections_controller.rb +226 -225
- data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +29 -28
- data/app/controllers/hyrax/dashboard/profiles_controller.rb +27 -26
- data/app/controllers/hyrax/dashboard/works_controller.rb +8 -7
- data/app/controllers/hyrax/dashboard_controller.rb +10 -0
- data/app/controllers/hyrax/depositors_controller.rb +35 -27
- data/app/controllers/hyrax/downloads_controller.rb +50 -58
- data/app/controllers/hyrax/embargoes_controller.rb +1 -0
- data/app/controllers/hyrax/featured_work_lists_controller.rb +4 -3
- data/app/controllers/hyrax/featured_works_controller.rb +1 -0
- data/app/controllers/hyrax/file_sets_controller.rb +96 -85
- data/app/controllers/hyrax/fixity_checks_controller.rb +9 -8
- data/app/controllers/hyrax/homepage_controller.rb +19 -18
- data/app/controllers/hyrax/leases_controller.rb +1 -0
- data/app/controllers/hyrax/my/collections_controller.rb +16 -15
- data/app/controllers/hyrax/my/highlights_controller.rb +22 -21
- data/app/controllers/hyrax/my/shares_controller.rb +8 -7
- data/app/controllers/hyrax/my/works_controller.rb +16 -15
- data/app/controllers/hyrax/my_controller.rb +18 -17
- data/app/controllers/hyrax/notifications_controller.rb +4 -3
- data/app/controllers/hyrax/operations_controller.rb +1 -0
- data/app/controllers/hyrax/pages_controller.rb +17 -16
- data/app/controllers/hyrax/permissions_controller.rb +2 -1
- data/app/controllers/hyrax/resource_sync_controller.rb +23 -22
- data/app/controllers/hyrax/single_use_links_controller.rb +13 -12
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +45 -44
- data/app/controllers/hyrax/static_controller.rb +1 -0
- data/app/controllers/hyrax/stats_controller.rb +11 -13
- data/app/controllers/hyrax/transfers_controller.rb +14 -13
- data/app/controllers/hyrax/trophies_controller.rb +1 -0
- data/app/controllers/hyrax/uploads_controller.rb +1 -0
- data/app/controllers/hyrax/users_controller.rb +57 -36
- data/app/controllers/hyrax/workflow_actions_controller.rb +19 -18
- data/app/conversions/power_converters.rb +1 -0
- data/app/conversions/power_converters/polymorphic_type.rb +2 -0
- data/app/conversions/power_converters/sipity_action.rb +2 -0
- data/app/conversions/power_converters/sipity_action_name.rb +2 -0
- data/app/conversions/power_converters/sipity_agent.rb +3 -0
- data/app/conversions/power_converters/sipity_entity.rb +2 -0
- data/app/conversions/power_converters/sipity_role.rb +2 -0
- data/app/conversions/power_converters/sipity_workflow_id.rb +1 -0
- data/app/conversions/power_converters/sipity_workflow_state.rb +3 -0
- data/app/forms/hyrax/forms/admin/appearance.rb +20 -19
- data/app/forms/hyrax/forms/admin/collection_type_form.rb +12 -1
- data/app/forms/hyrax/forms/admin/collection_type_participant_form.rb +1 -0
- data/app/forms/hyrax/forms/admin_set_form.rb +4 -3
- data/app/forms/hyrax/forms/batch_edit_form.rb +18 -17
- data/app/forms/hyrax/forms/batch_upload_form.rb +1 -1
- data/app/forms/hyrax/forms/collection_form.rb +25 -22
- data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +23 -22
- data/app/forms/hyrax/forms/file_manager_form.rb +4 -3
- data/app/forms/hyrax/forms/file_set_edit_form.rb +2 -1
- data/app/forms/hyrax/forms/permission_template_form.rb +178 -176
- data/app/forms/hyrax/forms/resource_form.rb +190 -0
- data/app/forms/hyrax/forms/widgets/admin_set_embargo_period.rb +1 -0
- data/app/forms/hyrax/forms/widgets/admin_set_visibility.rb +1 -0
- data/app/forms/hyrax/forms/work_form.rb +22 -22
- data/app/forms/hyrax/forms/workflow_action_form.rb +12 -5
- data/app/forms/hyrax/forms/workflow_responsibility_form.rb +1 -4
- data/app/helpers/hyrax/ability_helper.rb +5 -4
- data/app/helpers/hyrax/batch_edits_helper.rb +1 -0
- data/app/helpers/hyrax/blacklight_override.rb +1 -0
- data/app/helpers/hyrax/charts_helper.rb +1 -0
- data/app/helpers/hyrax/citations_behavior.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/common_behavior.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/formatters.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/formatters/apa_formatter.rb +40 -38
- data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +14 -14
- data/app/helpers/hyrax/citations_behaviors/formatters/mla_formatter.rb +10 -9
- data/app/helpers/hyrax/citations_behaviors/formatters/open_url_formatter.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/name_behavior.rb +5 -4
- data/app/helpers/hyrax/citations_behaviors/publication_behavior.rb +5 -5
- data/app/helpers/hyrax/citations_behaviors/title_behavior.rb +2 -1
- data/app/helpers/hyrax/collections_helper.rb +57 -7
- data/app/helpers/hyrax/contact_form_helper.rb +24 -0
- data/app/helpers/hyrax/content_block_helper.rb +1 -0
- data/app/helpers/hyrax/content_block_helper_behavior.rb +2 -1
- data/app/helpers/hyrax/dashboard_helper_behavior.rb +1 -0
- data/app/helpers/hyrax/embargo_helper.rb +21 -0
- data/app/helpers/hyrax/file_set_helper.rb +2 -1
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +58 -49
- data/app/helpers/hyrax/iiif_helper.rb +9 -0
- data/app/helpers/hyrax/lease_helper.rb +21 -0
- data/app/helpers/hyrax/membership_helper.rb +48 -0
- data/app/helpers/hyrax/permission_levels_helper.rb +32 -0
- data/app/helpers/hyrax/permissions_helper.rb +8 -7
- data/app/helpers/hyrax/title_helper.rb +11 -5
- data/app/helpers/hyrax/trophy_helper.rb +1 -0
- data/app/helpers/hyrax/url_helper.rb +1 -0
- data/app/helpers/hyrax/work_form_helper.rb +48 -0
- data/app/indexers/concerns/hyrax/indexes_basic_metadata.rb +1 -0
- data/app/indexers/concerns/hyrax/indexes_linked_metadata.rb +1 -0
- data/app/indexers/hyrax/admin_set_indexer.rb +7 -1
- data/app/indexers/hyrax/basic_metadata_indexer.rb +37 -36
- data/app/indexers/hyrax/collection_indexer.rb +2 -1
- data/app/indexers/hyrax/collection_with_basic_metadata_indexer.rb +1 -0
- data/app/indexers/hyrax/deep_indexing_service.rb +65 -73
- data/app/indexers/hyrax/file_set_indexer.rb +21 -24
- data/app/indexers/hyrax/indexes_workflow.rb +7 -8
- data/app/indexers/hyrax/permission_indexer.rb +25 -0
- data/app/indexers/hyrax/repository_reindexer.rb +1 -0
- data/app/indexers/hyrax/resource_indexer.rb +13 -0
- data/app/indexers/hyrax/valkyrie_collection_indexer.rb +19 -0
- data/app/indexers/hyrax/valkyrie_indexer.rb +87 -0
- data/app/indexers/hyrax/valkyrie_work_indexer.rb +12 -0
- data/app/indexers/hyrax/visibility_indexer.rb +26 -0
- data/app/indexers/hyrax/work_indexer.rb +2 -1
- data/app/inputs/controlled_vocabulary_input.rb +62 -62
- data/app/inputs/multi_value_select_input.rb +31 -30
- data/app/inputs/multifile_input.rb +1 -0
- data/app/jobs/attach_files_to_work_job.rb +78 -21
- data/app/jobs/attach_files_to_work_with_ordered_members_job.rb +19 -18
- data/app/jobs/batch_create_job.rb +15 -14
- data/app/jobs/characterize_job.rb +17 -2
- data/app/jobs/concerns/hyrax/members_permission_job_behavior.rb +28 -0
- data/app/jobs/concerns/hyrax/permission_job_behavior.rb +23 -0
- data/app/jobs/content_delete_event_job.rb +1 -0
- data/app/jobs/content_deposit_event_job.rb +1 -0
- data/app/jobs/content_depositor_change_event_job.rb +1 -0
- data/app/jobs/content_event_job.rb +1 -0
- data/app/jobs/content_new_version_event_job.rb +1 -0
- data/app/jobs/content_restored_version_event_job.rb +1 -0
- data/app/jobs/content_update_event_job.rb +1 -0
- data/app/jobs/create_derivatives_job.rb +1 -0
- data/app/jobs/create_work_job.rb +4 -3
- data/app/jobs/event_job.rb +3 -1
- data/app/jobs/file_set_attached_event_job.rb +16 -15
- data/app/jobs/fixity_check_job.rb +28 -29
- data/app/jobs/hyrax/application_job.rb +6 -0
- data/app/jobs/hyrax/grant_edit_job.rb +13 -8
- data/app/jobs/hyrax/grant_edit_to_members_job.rb +5 -13
- data/app/jobs/hyrax/grant_read_job.rb +13 -8
- data/app/jobs/hyrax/grant_read_to_members_job.rb +5 -13
- data/app/jobs/hyrax/revoke_edit_from_members_job.rb +6 -13
- data/app/jobs/hyrax/revoke_edit_job.rb +13 -8
- data/app/jobs/iiif_manifest_cache_prewarm_job.rb +16 -0
- data/app/jobs/import_export_job.rb +14 -13
- data/app/jobs/import_url_job.rb +74 -63
- data/app/jobs/ingest_job.rb +1 -0
- data/app/jobs/ingest_local_file_job.rb +4 -3
- data/app/jobs/inherit_permissions_job.rb +55 -4
- data/app/jobs/resolrize_job.rb +1 -0
- data/app/jobs/stream_notifications_job.rb +1 -0
- data/app/jobs/user_edit_profile_event_job.rb +1 -0
- data/app/jobs/visibility_copy_job.rb +4 -17
- data/app/mailers/hyrax/contact_mailer.rb +2 -1
- data/app/models/admin_set.rb +44 -49
- data/app/models/batch_upload_item.rb +1 -0
- data/app/models/checksum_audit_log.rb +1 -0
- data/app/models/collection_branding_info.rb +1 -0
- data/app/models/concerns/hyrax/ability.rb +144 -132
- data/app/models/concerns/hyrax/ability/admin_set_ability.rb +1 -0
- data/app/models/concerns/hyrax/ability/collection_ability.rb +12 -11
- data/app/models/concerns/hyrax/ability/collection_type_ability.rb +1 -0
- data/app/models/concerns/hyrax/ability/permission_template_ability.rb +1 -0
- data/app/models/concerns/hyrax/ability/solr_document_ability.rb +1 -0
- data/app/models/concerns/hyrax/basic_metadata.rb +9 -2
- data/app/models/concerns/hyrax/collection_behavior.rb +52 -33
- data/app/models/concerns/hyrax/collection_nesting.rb +5 -4
- data/app/models/concerns/hyrax/core_metadata.rb +1 -0
- data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +2 -1
- data/app/models/concerns/hyrax/file_set/characterization.rb +11 -3
- data/app/models/concerns/hyrax/file_set/derivatives.rb +5 -4
- data/app/models/concerns/hyrax/file_set/indexing.rb +2 -1
- data/app/models/concerns/hyrax/file_set/querying.rb +3 -2
- data/app/models/concerns/hyrax/file_set_behavior.rb +2 -1
- data/app/models/concerns/hyrax/has_rendering.rb +1 -0
- data/app/models/concerns/hyrax/has_representative.rb +1 -0
- data/app/models/concerns/hyrax/human_readable_type.rb +4 -11
- data/app/models/concerns/hyrax/in_admin_set.rb +4 -0
- data/app/models/concerns/hyrax/naming.rb +11 -2
- data/app/models/concerns/hyrax/nested_works.rb +1 -0
- data/app/models/concerns/hyrax/permissions.rb +1 -0
- data/app/models/concerns/hyrax/permissions/readable.rb +1 -0
- data/app/models/concerns/hyrax/permissions/writable.rb +1 -0
- data/app/models/concerns/hyrax/proxy_deposit.rb +1 -0
- data/app/models/concerns/hyrax/serializers.rb +2 -1
- data/app/models/concerns/hyrax/solr_document/characterization.rb +23 -22
- data/app/models/concerns/hyrax/solr_document/export.rb +24 -23
- data/app/models/concerns/hyrax/solr_document/metadata.rb +31 -31
- data/app/models/concerns/hyrax/solr_document/ordered_members.rb +44 -0
- data/app/models/concerns/hyrax/solr_document_behavior.rb +19 -12
- data/app/models/concerns/hyrax/suppressible.rb +6 -4
- data/app/models/concerns/hyrax/user.rb +12 -3
- data/app/models/concerns/hyrax/user_usage_stats.rb +1 -0
- data/app/models/concerns/hyrax/virus_check.rb +21 -0
- data/app/models/concerns/hyrax/with_events.rb +17 -7
- data/app/models/concerns/hyrax/with_file_sets.rb +6 -0
- data/app/models/concerns/hyrax/work_behavior.rb +5 -9
- data/app/models/concerns/hyrax/works/metadata.rb +1 -0
- data/app/models/content_block.rb +8 -1
- data/app/models/featured_work.rb +1 -0
- data/app/models/featured_work_list.rb +17 -16
- data/app/models/file_download_stat.rb +3 -1
- data/app/models/file_view_stat.rb +1 -0
- data/app/models/hyrax/access_control.rb +44 -0
- data/app/models/hyrax/active_job_proxy.rb +43 -0
- data/app/models/hyrax/administrative_set.rb +12 -0
- data/app/models/hyrax/avatar_validator.rb +1 -0
- data/app/models/hyrax/base.rb +18 -0
- data/app/models/hyrax/batch_create_operation.rb +3 -2
- data/app/models/hyrax/change_set.rb +45 -0
- data/app/models/hyrax/collection_type.rb +63 -49
- data/app/models/hyrax/collection_type_participant.rb +6 -5
- data/app/models/hyrax/contact_form.rb +1 -0
- data/app/models/hyrax/download.rb +1 -0
- data/app/models/hyrax/embargo.rb +21 -0
- data/app/models/hyrax/event.rb +30 -0
- data/app/models/hyrax/feature.rb +1 -0
- data/app/models/hyrax/file_metadata.rb +147 -0
- data/app/models/hyrax/file_set.rb +28 -0
- data/app/models/hyrax/group.rb +13 -6
- data/app/models/hyrax/lease.rb +21 -0
- data/app/models/hyrax/operation.rb +5 -4
- data/app/models/hyrax/orcid_validator.rb +13 -5
- data/app/models/hyrax/pageview.rb +1 -0
- data/app/models/hyrax/pcdm_collection.rb +22 -0
- data/app/models/hyrax/permission.rb +19 -0
- data/app/models/hyrax/permission_template.rb +42 -37
- data/app/models/hyrax/resource.rb +116 -0
- data/app/models/hyrax/statistic.rb +22 -17
- data/app/models/hyrax/uploaded_file.rb +11 -0
- data/app/models/hyrax/version_committer.rb +1 -0
- data/app/models/hyrax/virus_scanner.rb +57 -0
- data/app/models/hyrax/work.rb +30 -0
- data/app/models/hyrax/workflow_action_info.rb +3 -2
- data/app/models/job_io_wrapper.rb +47 -31
- data/app/models/proxy_deposit_request.rb +41 -33
- data/app/models/proxy_deposit_rights.rb +1 -0
- data/app/models/single_use_link.rb +21 -13
- data/app/models/sipity.rb +102 -0
- data/app/models/sipity/agent.rb +3 -3
- data/app/models/sipity/comment.rb +1 -0
- data/app/models/sipity/entity.rb +4 -3
- data/app/models/sipity/entity_specific_responsibility.rb +1 -0
- data/app/models/sipity/method.rb +1 -0
- data/app/models/sipity/notifiable_context.rb +2 -1
- data/app/models/sipity/notification.rb +2 -3
- data/app/models/sipity/notification_recipient.rb +1 -0
- data/app/models/sipity/role.rb +4 -4
- data/app/models/sipity/workflow.rb +19 -18
- data/app/models/sipity/workflow_action.rb +24 -0
- data/app/models/sipity/workflow_responsibility.rb +1 -0
- data/app/models/sipity/workflow_role.rb +1 -0
- data/app/models/sipity/workflow_state.rb +1 -0
- data/app/models/sipity/workflow_state_action.rb +1 -0
- data/app/models/sipity/workflow_state_action_permission.rb +1 -0
- data/app/models/solr_hit.rb +24 -0
- data/app/models/trophy.rb +1 -0
- data/app/models/user_mailbox.rb +15 -14
- data/app/models/user_stat.rb +1 -0
- data/app/models/vocab/fedora_resource_status.rb +5 -4
- data/app/models/work_view_stat.rb +1 -0
- data/app/presenters/hyrax/admin/dashboard_presenter.rb +1 -0
- data/app/presenters/hyrax/admin/repository_growth_presenter.rb +9 -8
- data/app/presenters/hyrax/admin/repository_object_presenter.rb +19 -18
- data/app/presenters/hyrax/admin/user_activity_presenter.rb +9 -8
- data/app/presenters/hyrax/admin/users_presenter.rb +5 -4
- data/app/presenters/hyrax/admin/workflow_role_presenter.rb +8 -7
- data/app/presenters/hyrax/admin/workflow_roles_presenter.rb +1 -0
- data/app/presenters/hyrax/admin_set_options_presenter.rb +37 -31
- data/app/presenters/hyrax/admin_set_presenter.rb +2 -1
- data/app/presenters/hyrax/admin_stats_presenter.rb +7 -6
- data/app/presenters/hyrax/characterization_behavior.rb +15 -14
- data/app/presenters/hyrax/collapsable_section_presenter.rb +24 -24
- data/app/presenters/hyrax/collection_presenter.rb +4 -3
- data/app/presenters/hyrax/composite_presenter_factory.rb +1 -0
- data/app/presenters/hyrax/dashboard/user_presenter.rb +11 -10
- data/app/presenters/hyrax/displays_image.rb +54 -35
- data/app/presenters/hyrax/embargo_presenter.rb +1 -0
- data/app/presenters/hyrax/file_set_presenter.rb +13 -17
- data/app/presenters/hyrax/file_usage.rb +7 -6
- data/app/presenters/hyrax/fixity_status_presenter.rb +49 -48
- data/app/presenters/hyrax/homepage_presenter.rb +5 -4
- data/app/presenters/hyrax/iiif_manifest_presenter.rb +237 -0
- data/app/presenters/hyrax/inspect_work_presenter.rb +18 -17
- data/app/presenters/hyrax/lease_presenter.rb +1 -0
- data/app/presenters/hyrax/member_presenter_factory.rb +21 -26
- data/app/presenters/hyrax/menu_presenter.rb +3 -2
- data/app/presenters/hyrax/model_icon.rb +1 -0
- data/app/presenters/hyrax/model_proxy.rb +13 -9
- data/app/presenters/hyrax/page_title_decorator.rb +30 -0
- data/app/presenters/hyrax/permission_badge.rb +14 -13
- data/app/presenters/hyrax/presenter_factory.rb +11 -23
- data/app/presenters/hyrax/presenter_renderer.rb +30 -22
- data/app/presenters/hyrax/presents_attributes.rb +22 -21
- data/app/presenters/hyrax/select_collection_type_list_presenter.rb +1 -0
- data/app/presenters/hyrax/select_collection_type_presenter.rb +1 -0
- data/app/presenters/hyrax/select_type_list_presenter.rb +4 -2
- data/app/presenters/hyrax/select_type_presenter.rb +17 -16
- data/app/presenters/hyrax/single_use_link_presenter.rb +9 -8
- data/app/presenters/hyrax/stats_usage_presenter.rb +28 -27
- data/app/presenters/hyrax/transfers_presenter.rb +9 -8
- data/app/presenters/hyrax/trophy_presenter.rb +2 -1
- data/app/presenters/hyrax/twitter_presenter.rb +1 -0
- data/app/presenters/hyrax/user_profile_presenter.rb +1 -0
- data/app/presenters/hyrax/version_list_presenter.rb +7 -6
- data/app/presenters/hyrax/version_presenter.rb +1 -0
- data/app/presenters/hyrax/work_show_presenter.rb +69 -69
- data/app/presenters/hyrax/work_usage.rb +4 -3
- data/app/presenters/hyrax/workflow_presenter.rb +10 -9
- data/app/renderers/hyrax/renderers.rb +1 -0
- data/app/renderers/hyrax/renderers/attribute_renderer.rb +38 -34
- data/app/renderers/hyrax/renderers/configured_microdata.rb +4 -3
- data/app/renderers/hyrax/renderers/date_attribute_renderer.rb +4 -3
- data/app/renderers/hyrax/renderers/external_link_attribute_renderer.rb +5 -4
- data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +10 -9
- data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +15 -14
- data/app/renderers/hyrax/renderers/linked_attribute_renderer.rb +12 -11
- data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +16 -15
- data/app/search_builders/hyrax/abstract_type_relation.rb +1 -0
- data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +3 -2
- data/app/search_builders/hyrax/admin_set_search_builder.rb +8 -7
- data/app/search_builders/hyrax/catalog_search_builder.rb +48 -19
- data/app/search_builders/hyrax/collection_member_search_builder.rb +9 -9
- data/app/search_builders/hyrax/collection_search_builder.rb +14 -13
- data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +6 -5
- data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +1 -0
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +69 -68
- data/app/search_builders/hyrax/dashboard/works_search_builder.rb +1 -0
- data/app/search_builders/hyrax/deactivated_embargo_search_builder.rb +1 -0
- data/app/search_builders/hyrax/deactivated_lease_search_builder.rb +1 -0
- data/app/search_builders/hyrax/deposit_search_builder.rb +5 -4
- data/app/search_builders/hyrax/embargo_search_builder.rb +1 -0
- data/app/search_builders/hyrax/expired_embargo_search_builder.rb +1 -0
- data/app/search_builders/hyrax/expired_lease_search_builder.rb +1 -0
- data/app/search_builders/hyrax/exposed_models_relation.rb +2 -1
- data/app/search_builders/hyrax/file_set_search_builder.rb +1 -0
- data/app/search_builders/hyrax/filter_by_type.rb +40 -40
- data/app/search_builders/hyrax/filter_suppressed.rb +1 -0
- data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +26 -19
- data/app/search_builders/hyrax/homepage_search_builder.rb +1 -0
- data/app/search_builders/hyrax/lease_search_builder.rb +1 -0
- data/app/search_builders/hyrax/member_with_files_search_builder.rb +4 -3
- data/app/search_builders/hyrax/my/collections_search_builder.rb +1 -0
- data/app/search_builders/hyrax/my/find_works_search_builder.rb +6 -9
- data/app/search_builders/hyrax/my/highlights_search_builder.rb +2 -3
- data/app/search_builders/hyrax/my/search_builder.rb +1 -0
- data/app/search_builders/hyrax/my/search_builder_behavior.rb +1 -0
- data/app/search_builders/hyrax/my/shares_search_builder.rb +1 -0
- data/app/search_builders/hyrax/my/works_search_builder.rb +1 -0
- data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +2 -1
- data/app/search_builders/hyrax/parent_collection_search_builder.rb +2 -1
- data/app/search_builders/hyrax/search_builder.rb +1 -0
- data/app/search_builders/hyrax/search_filters.rb +9 -8
- data/app/search_builders/hyrax/single_admin_set_search_builder.rb +1 -0
- data/app/search_builders/hyrax/single_collection_search_builder.rb +1 -0
- data/app/search_builders/hyrax/single_result.rb +1 -0
- data/app/search_builders/hyrax/single_use_link_search_builder.rb +1 -0
- data/app/search_builders/hyrax/stats/work_status_search_builder.rb +4 -3
- data/app/search_builders/hyrax/work_relation.rb +1 -0
- data/app/search_builders/hyrax/work_search_builder.rb +1 -0
- data/app/search_builders/hyrax/works_search_builder.rb +1 -0
- data/app/services/hyrax/abstract_message_service.rb +4 -3
- data/app/services/hyrax/access_control_list.rb +218 -0
- data/app/services/hyrax/adapters/nesting_index_adapter.rb +12 -11
- data/app/services/hyrax/admin_set_create_service.rb +50 -49
- data/app/services/hyrax/admin_set_member_service.rb +14 -13
- data/app/services/hyrax/admin_set_service.rb +18 -26
- data/app/services/hyrax/analytics.rb +7 -6
- data/app/services/hyrax/batch_create_failure_service.rb +3 -2
- data/app/services/hyrax/batch_create_success_service.rb +3 -2
- data/app/services/hyrax/caching_iiif_manifest_builder.rb +57 -0
- data/app/services/hyrax/change_content_depositor_service.rb +33 -1
- data/app/services/hyrax/characterization/file_set_description.rb +45 -0
- data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
- data/app/services/hyrax/child_types.rb +40 -0
- data/app/services/hyrax/collection_member_service.rb +1 -0
- data/app/services/hyrax/collection_types/create_service.rb +1 -0
- data/app/services/hyrax/collection_types/permissions_service.rb +9 -5
- data/app/services/hyrax/collections/collection_member_service.rb +43 -42
- data/app/services/hyrax/collections/managed_collections_service.rb +1 -0
- data/app/services/hyrax/collections/migration_service.rb +6 -5
- data/app/services/hyrax/collections/nested_collection_persistence_service.rb +3 -2
- data/app/services/hyrax/collections/nested_collection_query_service.rb +11 -10
- data/app/services/hyrax/collections/permissions_create_service.rb +3 -2
- data/app/services/hyrax/collections/permissions_service.rb +3 -2
- data/app/services/hyrax/collections/search_service.rb +1 -0
- data/app/services/hyrax/collections_service.rb +6 -5
- data/app/services/hyrax/contextual_path.rb +1 -0
- data/app/services/hyrax/curation_concern.rb +1 -0
- data/app/services/hyrax/custom_queries/find_access_control.rb +28 -0
- data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
- data/app/services/hyrax/custom_queries/find_collections_by_type.rb +38 -0
- data/app/services/hyrax/custom_queries/find_file_metadata.rb +72 -0
- data/app/services/hyrax/custom_queries/find_many_by_alternate_ids.rb +33 -0
- data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +35 -0
- data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +34 -0
- data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +38 -0
- data/app/services/hyrax/custom_queries/navigators/collection_members.rb +47 -0
- data/app/services/hyrax/custom_queries/navigators/find_files.rb +88 -0
- data/app/services/hyrax/database_migrator.rb +13 -13
- data/app/services/hyrax/default_middleware_stack.rb +1 -6
- data/app/services/hyrax/derivative_path.rb +24 -23
- data/app/services/hyrax/derivative_service.rb +1 -0
- data/app/services/hyrax/embargo_manager.rb +204 -0
- data/app/services/hyrax/embargo_service.rb +4 -3
- data/app/services/hyrax/file_set_csv_service.rb +2 -0
- data/app/services/hyrax/file_set_derivatives_service.rb +61 -60
- data/app/services/hyrax/file_set_fixity_check_service.rb +39 -45
- data/app/services/hyrax/file_set_visibility_propagator.rb +41 -0
- data/app/services/hyrax/fixity/active_fedora_fixity_service.rb +20 -0
- data/app/services/hyrax/fixity/missing_content_error.rb +9 -0
- data/app/services/hyrax/fixity_check_failure_service.rb +3 -2
- data/app/services/hyrax/form_factory.rb +29 -0
- data/app/services/hyrax/form_metadata_service.rb +1 -0
- data/app/services/hyrax/graph_exporter.rb +54 -53
- data/app/services/hyrax/identifier/builder.rb +45 -0
- data/app/services/hyrax/identifier/dispatcher.rb +61 -0
- data/app/services/hyrax/identifier/registrar.rb +41 -0
- data/app/services/hyrax/iiif_authorization_service.rb +4 -3
- data/app/services/hyrax/import_url_failure_service.rb +2 -1
- data/app/services/hyrax/indexes_thumbnails.rb +2 -1
- data/app/services/hyrax/institution.rb +1 -0
- data/app/services/hyrax/lease_manager.rb +126 -0
- data/app/services/hyrax/lease_service.rb +4 -4
- data/app/services/hyrax/license_service.rb +1 -0
- data/app/services/hyrax/list_source_exporter.rb +17 -16
- data/app/services/hyrax/listeners/acl_index_listener.rb +21 -0
- data/app/services/hyrax/listeners/batch_notification_listener.rb +26 -0
- data/app/services/hyrax/listeners/file_set_lifecycle_listener.rb +22 -0
- data/app/services/hyrax/listeners/file_set_lifecycle_notification_listener.rb +34 -0
- data/app/services/hyrax/listeners/metadata_index_listener.rb +23 -0
- data/app/services/hyrax/listeners/object_lifecycle_listener.rb +27 -0
- data/app/services/hyrax/local_file_service.rb +1 -0
- data/app/services/hyrax/lock_manager.rb +1 -0
- data/app/services/hyrax/lockable.rb +1 -0
- data/app/services/hyrax/manifest_builder_service.rb +88 -0
- data/app/services/hyrax/messenger_service.rb +1 -0
- data/app/services/hyrax/microdata.rb +22 -21
- data/app/services/hyrax/multiple_membership_checker.rb +24 -23
- data/app/services/hyrax/noid.rb +4 -3
- data/app/services/hyrax/permission_manager.rb +199 -0
- data/app/services/hyrax/persist_derivatives.rb +1 -0
- data/app/services/hyrax/persist_directly_contained_output_file_service.rb +2 -1
- data/app/services/hyrax/qa_select_service.rb +2 -1
- data/app/services/hyrax/query_service.rb +0 -0
- data/app/services/hyrax/quick_classification_query.rb +21 -9
- data/app/services/hyrax/repository_fixity_check_service.rb +1 -0
- data/app/services/hyrax/resource_status.rb +60 -0
- data/app/services/hyrax/resource_types_service.rb +1 -0
- data/app/services/hyrax/resource_visibility_propagator.rb +52 -0
- data/app/services/hyrax/restriction_service.rb +14 -13
- data/app/services/hyrax/rights_statement_service.rb +1 -0
- data/app/services/hyrax/simple_schema_loader.rb +152 -0
- data/app/services/hyrax/solr_query_builder_service.rb +72 -0
- data/app/services/hyrax/solr_service.rb +154 -0
- data/app/services/hyrax/statistics/collections/over_time.rb +4 -3
- data/app/services/hyrax/statistics/depositors/summary.rb +24 -23
- data/app/services/hyrax/statistics/file_sets/by_format.rb +5 -4
- data/app/services/hyrax/statistics/over_time.rb +17 -16
- data/app/services/hyrax/statistics/query_service.rb +7 -6
- data/app/services/hyrax/statistics/system_stats.rb +9 -8
- data/app/services/hyrax/statistics/term_query.rb +8 -12
- data/app/services/hyrax/statistics/users/over_time.rb +8 -7
- data/app/services/hyrax/statistics/works/by_depositor.rb +4 -3
- data/app/services/hyrax/statistics/works/by_resource_type.rb +4 -3
- data/app/services/hyrax/statistics/works/count.rb +12 -11
- data/app/services/hyrax/statistics/works/over_time.rb +4 -3
- data/app/services/hyrax/thumbnail_path_service.rb +33 -31
- data/app/services/hyrax/time_service.rb +1 -0
- data/app/services/hyrax/user_stat_importer.rb +83 -82
- data/app/services/hyrax/versioning_service.rb +75 -19
- data/app/services/hyrax/virus_checker_service.rb +53 -0
- data/app/services/hyrax/visibility_intention.rb +78 -0
- data/app/services/hyrax/visibility_intention_applicator.rb +43 -0
- data/app/services/hyrax/visibility_map.rb +65 -0
- data/app/services/hyrax/visibility_propagator.rb +20 -0
- data/app/services/hyrax/visibility_reader.rb +47 -0
- data/app/services/hyrax/visibility_writer.rb +50 -0
- data/app/services/hyrax/work_form_service.rb +3 -0
- data/app/services/hyrax/work_query_service.rb +14 -13
- data/app/services/hyrax/work_thumbnail_path_service.rb +1 -0
- data/app/services/hyrax/workflow/abstract_notification.rb +18 -17
- data/app/services/hyrax/workflow/action_taken_service.rb +1 -0
- data/app/services/hyrax/workflow/activate_object.rb +1 -0
- data/app/services/hyrax/workflow/changes_required_notification.rb +13 -10
- data/app/services/hyrax/workflow/deactivate_object.rb +1 -0
- data/app/services/hyrax/workflow/deposited_notification.rb +12 -10
- data/app/services/hyrax/workflow/grant_edit_to_depositor.rb +1 -0
- data/app/services/hyrax/workflow/grant_read_to_depositor.rb +1 -0
- data/app/services/hyrax/workflow/invalid_state_removal_exception.rb +1 -0
- data/app/services/hyrax/workflow/method_generator.rb +18 -17
- data/app/services/hyrax/workflow/notification_configuration_parameter.rb +1 -0
- data/app/services/hyrax/workflow/notification_generator.rb +26 -25
- data/app/services/hyrax/workflow/notification_service.rb +1 -0
- data/app/services/hyrax/workflow/pending_review_notification.rb +12 -9
- data/app/services/hyrax/workflow/permission_generator.rb +41 -40
- data/app/services/hyrax/workflow/permission_query.rb +31 -18
- data/app/services/hyrax/workflow/revoke_edit_from_depositor.rb +1 -0
- data/app/services/hyrax/workflow/sipity_actions_generator.rb +47 -46
- data/app/services/hyrax/workflow/state_machine_generator.rb +53 -52
- data/app/services/hyrax/workflow/status_list_service.rb +27 -26
- data/app/services/hyrax/workflow/workflow_action_service.rb +29 -28
- data/app/services/hyrax/workflow/workflow_factory.rb +33 -27
- data/app/services/hyrax/workflow/workflow_importer.rb +58 -44
- data/app/services/hyrax/workflow/workflow_permissions_generator.rb +13 -12
- data/app/services/hyrax/workflow/workflow_schema.rb +28 -94
- data/app/services/hyrax/working_directory.rb +17 -16
- data/app/services/hyrax/works/managed_works_service.rb +1 -0
- data/app/services/hyrax/works/migration_service.rb +34 -0
- data/app/strategies/hyrax/strategies/yaml_strategy.rb +13 -12
- data/app/uploaders/hyrax/avatar_uploader.rb +1 -0
- data/app/uploaders/hyrax/uploaded_file_uploader.rb +7 -6
- data/app/validators/hyrax/has_one_title_validator.rb +1 -0
- data/app/values/hyrax/chart_data.rb +14 -13
- data/app/views/_masthead.html.erb +3 -2
- data/app/views/catalog/_index_list_default.html.erb +3 -3
- data/app/views/hyrax/admin/admin_sets/_form.html.erb +6 -5
- data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +2 -2
- data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +57 -52
- data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +5 -4
- data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +1 -1
- data/app/views/hyrax/admin/admin_sets/_show_actions.html.erb +3 -2
- data/app/views/hyrax/admin/admin_sets/index.json.jbuilder +1 -0
- data/app/views/hyrax/base/_attribute_rows.html.erb +4 -1
- data/app/views/hyrax/base/_attributes.html.erb +3 -3
- data/app/views/hyrax/base/_citations.html.erb +4 -4
- data/app/views/hyrax/base/_file_manager_actions.html.erb +2 -2
- data/app/views/hyrax/base/_file_manager_member_resource_options.html.erb +2 -2
- data/app/views/hyrax/base/_form.html.erb +2 -2
- data/app/views/hyrax/base/_form_child_work_relationships.html.erb +2 -2
- data/app/views/hyrax/base/_form_files.html.erb +13 -11
- data/app/views/hyrax/base/_form_member_of_collections.html.erb +2 -2
- data/app/views/hyrax/base/_form_permission.html.erb +3 -4
- data/app/views/hyrax/base/_form_progress.html.erb +6 -2
- data/app/views/hyrax/base/_form_relationships.html.erb +1 -1
- data/app/views/hyrax/base/_form_share.html.erb +17 -16
- data/app/views/hyrax/base/_form_visibility_component.html.erb +3 -3
- data/app/views/hyrax/base/_guts4form.html.erb +0 -1
- data/app/views/hyrax/base/_items.html.erb +1 -1
- data/app/views/hyrax/base/_metadata.html.erb +2 -3
- data/app/views/hyrax/base/_relationships.html.erb +1 -2
- data/app/views/hyrax/base/_show_actions.html.erb +31 -24
- data/app/views/hyrax/base/_social_media.html.erb +6 -16
- data/app/views/hyrax/base/_work_button_row.html.erb +49 -0
- data/app/views/hyrax/base/_work_title.erb +13 -18
- data/app/views/hyrax/base/_work_type.html.erb +2 -2
- data/app/views/hyrax/base/_workflow_actions.html.erb +4 -4
- data/app/views/hyrax/base/edit.html.erb +1 -1
- data/app/views/hyrax/base/file_manager.html.erb +2 -2
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +5 -2
- data/app/views/hyrax/base/inspect_work.html.erb +13 -13
- data/app/views/hyrax/base/new.html.erb +1 -1
- data/app/views/hyrax/base/show.html.erb +26 -12
- data/app/views/hyrax/base/show.json.jbuilder +5 -1
- data/app/views/hyrax/base/unauthorized.html.erb +4 -4
- data/app/views/hyrax/batch_edits/_check_all.html.erb +2 -2
- data/app/views/hyrax/batch_edits/_delete_selected.html.erb +1 -1
- data/app/views/hyrax/batch_edits/edit.html.erb +11 -11
- data/app/views/hyrax/batch_select/_add_button.html.erb +1 -1
- data/app/views/hyrax/batch_uploads/_form.html.erb +1 -1
- data/app/views/hyrax/citations/work.html.erb +1 -1
- data/app/views/hyrax/collections/_list_collections.html.erb +1 -1
- data/app/views/hyrax/collections/_media_display.html.erb +1 -1
- data/app/views/hyrax/collections/_search_form.html.erb +1 -1
- data/app/views/hyrax/collections/_show_descriptions.html.erb +5 -5
- data/app/views/hyrax/collections/_show_document_list.html.erb +1 -1
- data/app/views/hyrax/collections/_show_document_list_row.html.erb +2 -2
- data/app/views/hyrax/collections/_sort_and_per_page.html.erb +6 -6
- data/app/views/hyrax/collections/show.html.erb +12 -11
- data/app/views/hyrax/contact_form/new.html.erb +1 -3
- data/app/views/hyrax/dashboard/_index_partials/_transfers.html.erb +2 -2
- data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_collection_title.html.erb +2 -2
- data/app/views/hyrax/dashboard/collections/_default_group.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_form.html.erb +6 -5
- data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +10 -10
- data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_form_share.html.erb +68 -70
- data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -2
- data/app/views/hyrax/dashboard/collections/_list_works.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +4 -4
- data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +6 -6
- data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +5 -5
- data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +4 -5
- data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +8 -8
- data/app/views/hyrax/dashboard/collections/show.html.erb +9 -8
- data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +8 -8
- data/app/views/hyrax/dashboard/show_admin.html.erb +8 -8
- data/app/views/hyrax/dashboard/show_user.html.erb +4 -4
- data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +2 -0
- data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +4 -1
- data/app/views/hyrax/dashboard/sidebar/_menu_partials.html.erb +3 -0
- data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +4 -0
- data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +10 -4
- data/app/views/hyrax/dashboard/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/dashboard/works/_list_works.html.erb +3 -3
- data/app/views/hyrax/depositors/_modal_proxy_deny.html.erb +14 -0
- data/app/views/hyrax/depositors/index.html.erb +3 -0
- data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
- data/app/views/hyrax/file_sets/_actions.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_deleted_flash.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_saved_flash.html.erb +5 -6
- data/app/views/hyrax/file_sets/_asset_updated_flash.html.erb +2 -1
- data/app/views/hyrax/file_sets/_descriptions.html.erb +2 -2
- data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +3 -3
- data/app/views/hyrax/file_sets/_form.html.erb +1 -1
- data/app/views/hyrax/file_sets/_permission.html.erb +2 -1
- data/app/views/hyrax/file_sets/_permission_form.html.erb +12 -12
- data/app/views/hyrax/file_sets/_show_actions.html.erb +6 -4
- data/app/views/hyrax/file_sets/_show_details.html.erb +7 -7
- data/app/views/hyrax/file_sets/_single_use_link_rows.html.erb +1 -1
- data/app/views/hyrax/file_sets/_versioning.html.erb +56 -10
- data/app/views/hyrax/file_sets/edit.html.erb +5 -4
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
- data/app/views/hyrax/file_sets/proxy.html.erb +2 -2
- data/app/views/hyrax/file_sets/show.json.jbuilder +1 -0
- data/app/views/hyrax/homepage/_announcement.html.erb +2 -2
- data/app/views/hyrax/homepage/_explore_collections.html.erb +1 -1
- data/app/views/hyrax/homepage/_featured_fields.html.erb +1 -1
- data/app/views/hyrax/homepage/_home_content.html.erb +8 -8
- data/app/views/hyrax/homepage/_marketing.html.erb +1 -1
- data/app/views/hyrax/homepage/_recent_document.html.erb +1 -1
- data/app/views/hyrax/homepage/_sortable_featured.html.erb +1 -0
- data/app/views/hyrax/homepage/index.html.erb +21 -23
- data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
- data/app/views/hyrax/my/collections/_default_group.html.erb +1 -1
- data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -2
- data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +1 -1
- data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +4 -1
- data/app/views/hyrax/my/collections/_tabs.html.erb +3 -4
- data/app/views/hyrax/my/collections/index.html.erb +1 -1
- data/app/views/hyrax/my/index.html.erb +1 -1
- data/app/views/hyrax/my/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/my/works/_list_works.html.erb +5 -5
- data/app/views/hyrax/my/works/_tabs.html.erb +1 -1
- data/app/views/hyrax/my/works/index.html.erb +1 -1
- data/app/views/hyrax/notifications/index.html.erb +1 -1
- data/app/views/hyrax/operations/index.html.erb +4 -4
- data/app/views/hyrax/pages/_form.html.erb +61 -60
- data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
- data/app/views/hyrax/single_use_links_viewer/single_use_error.html.erb +3 -7
- data/app/views/hyrax/static/mendeley.html.erb +2 -4
- data/app/views/hyrax/static/zotero.html.erb +2 -4
- data/app/views/hyrax/transfers/_received.html.erb +10 -10
- data/app/views/hyrax/transfers/_sent.html.erb +6 -6
- data/app/views/hyrax/uploads/_js_templates.html.erb +7 -7
- data/app/views/hyrax/uploads/_js_templates_branding.html.erb +8 -8
- data/app/views/hyrax/uploads/_js_templates_versioning.html.erb +172 -0
- data/app/views/hyrax/uploads/create.json.jbuilder +1 -0
- data/app/views/hyrax/users/_activity_log.html.erb +25 -22
- data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
- data/app/views/hyrax/users/_profile_tabs.html.erb +1 -1
- data/app/views/hyrax/users/_proxies.html.erb +1 -1
- data/app/views/hyrax/users/_search_form.html.erb +3 -3
- data/app/views/hyrax/users/_vitals.html.erb +3 -3
- data/app/views/hyrax/users/index.html.erb +6 -6
- data/app/views/hyrax/users/index.json.jbuilder +1 -0
- data/app/views/layouts/hyrax.html.erb +17 -3
- data/app/views/records/edit_fields/_abstract.html.erb +5 -0
- data/app/views/records/edit_fields/_access_right.html.erb +5 -0
- data/app/views/records/show_fields/_based_near.html.erb +1 -1
- data/app/views/records/show_fields/_creator.html.erb +1 -1
- data/app/views/records/show_fields/_keyword.html.erb +1 -1
- data/app/views/records/show_fields/_language.html.erb +1 -1
- data/app/views/records/show_fields/_publisher.html.erb +1 -1
- data/app/views/records/show_fields/_resource_type.html.erb +1 -1
- data/app/views/records/show_fields/_subject.html.erb +1 -1
- data/app/views/shared/_citations.html.erb +17 -0
- data/app/views/shared/_nav_safety_modal.html.erb +1 -0
- data/config/features.rb +6 -5
- data/config/initializers/1_healthz.rb +33 -0
- data/config/initializers/indexing_adapter_initializer.rb +14 -0
- data/config/initializers/listeners.rb +43 -0
- data/config/initializers/{samvera-nesting_indexer_initializer.rb → nesting_indexer_initializer.rb} +5 -5
- data/config/initializers/simple_form.rb +1 -0
- data/config/initializers/valkyrie_id_equality.rb +3 -0
- data/config/locales/hyrax.de.yml +382 -50
- data/config/locales/hyrax.en.yml +387 -2
- data/config/locales/hyrax.es.yml +340 -1
- data/config/locales/hyrax.fr.yml +339 -0
- data/config/locales/hyrax.it.yml +339 -0
- data/config/locales/hyrax.pt-BR.yml +350 -11
- data/config/locales/hyrax.zh.yml +339 -0
- data/config/metadata/basic_metadata.yaml +113 -0
- data/config/metadata/core_metadata.yaml +17 -0
- data/config/routes.rb +1 -0
- data/hyrax.gemspec +21 -18
- data/lib/generators/hyrax/arkivo_api_generator.rb +1 -0
- data/lib/generators/hyrax/assets_generator.rb +4 -3
- data/lib/generators/hyrax/clamav_generator.rb +1 -0
- data/lib/generators/hyrax/collection_generator.rb +1 -0
- data/lib/generators/hyrax/config_generator.rb +7 -0
- data/lib/generators/hyrax/health_check_generator.rb +14 -0
- data/lib/generators/hyrax/install_generator.rb +11 -0
- data/lib/generators/hyrax/models_generator.rb +4 -3
- data/lib/generators/hyrax/riiif_generator.rb +3 -2
- data/lib/generators/hyrax/sample_data_generator.rb +1 -0
- data/lib/generators/hyrax/templates/app/models/collection.rb +1 -0
- data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -0
- data/lib/generators/hyrax/templates/catalog_controller.rb +77 -75
- data/lib/generators/hyrax/templates/config/action_dispatch_http_upload_monkey_patch.rb +1 -0
- data/lib/generators/hyrax/templates/config/analytics.yml +5 -5
- data/lib/generators/hyrax/templates/config/arkivo_constraint.rb +1 -0
- data/lib/generators/hyrax/templates/config/clamav.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +23 -3
- data/lib/generators/hyrax/templates/config/initializers/mini_magick.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/redis_config.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +6 -5
- data/lib/generators/hyrax/templates/config/initializers/simple_form.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/simple_form_bootstrap.rb +1 -0
- data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +10 -10
- data/lib/generators/hyrax/templates/config/mime_types.rb +1 -0
- data/lib/generators/hyrax/templates/config/redis.yml +6 -6
- data/lib/generators/hyrax/templates/config/solr_wrapper_valkyrie_test.yml +7 -0
- data/lib/generators/hyrax/templates/config/valkyrie_index.yml +12 -0
- data/lib/generators/hyrax/templates/db/migrate/20180612002029_update_single_use_links_column_names.rb.erb +6 -0
- data/lib/generators/hyrax/templates/db/migrate/20200617002029_change_sipity_entity_specific_responsibility.rb.erb +9 -0
- data/lib/generators/hyrax/templates/db/seeds.rb +1 -0
- data/lib/generators/hyrax/templates/hyrax.scss +1 -0
- data/lib/generators/hyrax/templates/hyrax_helper.rb +1 -0
- data/lib/generators/hyrax/templates/package.json +17 -0
- data/lib/generators/hyrax/templates/spec/models/collection_spec.rb +1 -0
- data/lib/generators/hyrax/templates/spec/models/file_set_spec.rb +1 -0
- data/lib/generators/hyrax/templates/uv-config.json +3 -0
- data/lib/generators/hyrax/templates/uv.html +87 -0
- data/lib/generators/hyrax/work/USAGE +10 -5
- data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +1 -2
- data/lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb +1 -1
- data/lib/generators/hyrax/work/work_generator.rb +15 -14
- data/lib/generators/hyrax/work_resource/USAGE +17 -0
- data/lib/generators/hyrax/work_resource/templates/controller.rb.erb +22 -0
- data/lib/generators/hyrax/work_resource/templates/form.rb.erb +20 -0
- data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +16 -0
- data/lib/generators/hyrax/work_resource/templates/indexer_spec.rb.erb +12 -0
- data/lib/generators/hyrax/work_resource/templates/metadata.yaml +22 -0
- data/lib/generators/hyrax/work_resource/templates/work.html.erb_spec.rb.erb +6 -0
- data/lib/generators/hyrax/work_resource/templates/work.rb.erb +8 -0
- data/lib/generators/hyrax/work_resource/templates/work_spec.rb.erb +12 -0
- data/lib/generators/hyrax/work_resource/work_resource_generator.rb +112 -0
- data/lib/hyrax.rb +60 -2
- data/lib/hyrax/arkivo.rb +1 -0
- data/lib/hyrax/arkivo/actor.rb +49 -48
- data/lib/hyrax/arkivo/config.rb +1 -0
- data/lib/hyrax/arkivo/create_subscription_job.rb +31 -30
- data/lib/hyrax/arkivo/metadata_munger.rb +20 -19
- data/lib/hyrax/arkivo/schema_validator.rb +1 -0
- data/lib/hyrax/callbacks.rb +1 -0
- data/lib/hyrax/callbacks/registry.rb +20 -3
- data/lib/hyrax/collection_name.rb +15 -0
- data/lib/hyrax/configuration.rb +124 -27
- data/lib/hyrax/controlled_vocabularies.rb +1 -0
- data/lib/hyrax/controlled_vocabularies/location.rb +1 -0
- data/lib/hyrax/controlled_vocabulary/importer/downloader.rb +1 -0
- data/lib/hyrax/controlled_vocabulary/importer/language.rb +2 -1
- data/lib/hyrax/controller_resource.rb +5 -4
- data/lib/hyrax/engine.rb +27 -15
- data/lib/hyrax/errors.rb +5 -0
- data/lib/hyrax/event_store.rb +81 -0
- data/lib/hyrax/form_fields.rb +55 -0
- data/lib/hyrax/health_checks.rb +4 -0
- data/lib/hyrax/health_checks/solr_check.rb +24 -0
- data/lib/hyrax/indexer.rb +27 -0
- data/lib/hyrax/inflections.rb +1 -0
- data/lib/hyrax/model_decorator.rb +31 -0
- data/lib/hyrax/move_all_works_to_admin_set.rb +1 -0
- data/lib/hyrax/name.rb +2 -1
- data/lib/hyrax/publisher.rb +64 -0
- data/lib/hyrax/rails/routes.rb +24 -28
- data/lib/hyrax/redis_event_store.rb +25 -12
- data/lib/hyrax/resource_name.rb +18 -0
- data/lib/hyrax/resource_sync.rb +1 -0
- data/lib/hyrax/resource_sync/capability_list_writer.rb +15 -14
- data/lib/hyrax/resource_sync/change_list_writer.rb +58 -58
- data/lib/hyrax/resource_sync/resource_list_writer.rb +46 -45
- data/lib/hyrax/resource_sync/source_description_writer.rb +11 -10
- data/lib/hyrax/role_registry.rb +7 -6
- data/lib/hyrax/schema.rb +92 -0
- data/lib/hyrax/search_state.rb +1 -0
- data/lib/hyrax/specs/shared_specs.rb +4 -0
- data/lib/hyrax/specs/shared_specs/factories/strategies/valkyrie_resource.rb +32 -0
- data/lib/hyrax/specs/shared_specs/hydra_works.rb +292 -0
- data/lib/hyrax/specs/shared_specs/identifiers.rb +27 -0
- data/lib/hyrax/specs/shared_specs/indexers.rb +175 -0
- data/lib/hyrax/specs/shared_specs/metadata.rb +30 -0
- data/lib/hyrax/specs/spy_listener.rb +39 -0
- data/lib/hyrax/transactions.rb +2 -7
- data/lib/hyrax/transactions/apply_change_set.rb +47 -0
- data/lib/hyrax/transactions/container.rb +75 -3
- data/lib/hyrax/transactions/create_work.rb +16 -1
- data/lib/hyrax/transactions/destroy_work.rb +25 -0
- data/lib/hyrax/transactions/steps/add_to_collections.rb +36 -0
- data/lib/hyrax/transactions/steps/apply_collection_permission_template.rb +32 -0
- data/lib/hyrax/transactions/steps/apply_permission_template.rb +2 -1
- data/lib/hyrax/transactions/steps/apply_visibility.rb +39 -0
- data/lib/hyrax/transactions/steps/destroy_work.rb +24 -0
- data/lib/hyrax/transactions/steps/ensure_admin_set.rb +5 -5
- data/lib/hyrax/transactions/steps/save.rb +45 -0
- data/lib/hyrax/transactions/steps/set_default_admin_set.rb +10 -9
- data/lib/hyrax/transactions/steps/set_modified_date.rb +16 -7
- data/lib/hyrax/transactions/steps/set_uploaded_date_unless_present.rb +58 -0
- data/lib/hyrax/transactions/steps/set_user_as_depositor.rb +41 -0
- data/lib/hyrax/transactions/steps/validate.rb +36 -0
- data/lib/hyrax/transactions/transaction.rb +161 -0
- data/lib/hyrax/transactions/update_work.rb +16 -0
- data/lib/hyrax/transactions/work_create.rb +24 -0
- data/lib/hyrax/valkyrie_can_can_adapter.rb +25 -0
- data/lib/hyrax/version.rb +2 -1
- data/lib/hyrax/zotero.rb +1 -0
- data/lib/hyrax/zotero/config.rb +1 -0
- data/lib/tasks/controlled_vocabularies.rake +1 -0
- data/lib/tasks/default_admin_set.rake +1 -0
- data/lib/tasks/default_collection_type.rake +1 -0
- data/lib/tasks/hyrax.rake +1 -0
- data/lib/tasks/hyrax_user.rake +1 -0
- data/lib/tasks/install.rake +1 -0
- data/lib/tasks/migrate.rake +7 -0
- data/lib/tasks/reindex.rake +1 -0
- data/lib/tasks/stats_tasks.rake +1 -0
- data/lib/tasks/universal_viewer.rake +16 -0
- data/lib/tasks/workflow.rake +1 -0
- data/lib/valkyrie/indexing/null_indexing_adapter.rb +31 -0
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +97 -0
- data/lib/valkyrie/indexing_adapter.rb +29 -0
- data/lib/wings.rb +134 -0
- data/lib/wings/active_fedora_classifier.rb +16 -0
- data/lib/wings/active_fedora_converter.rb +217 -0
- data/lib/wings/attribute_transformer.rb +30 -0
- data/lib/wings/converter_value_mapper.rb +197 -0
- data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +28 -0
- data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +28 -0
- data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +171 -0
- data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +31 -0
- data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +31 -0
- data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +60 -0
- data/lib/wings/hydra/works/services/add_file_to_file_set.rb +57 -0
- data/lib/wings/model_registry.rb +54 -0
- data/lib/wings/model_transformer.rb +169 -0
- data/lib/wings/models/concerns/collection_behavior.rb +39 -0
- data/lib/wings/models/multi_checksum.rb +18 -0
- data/lib/wings/orm_converter.rb +102 -0
- data/lib/wings/services/custom_queries/find_access_control.rb +42 -0
- data/lib/wings/services/custom_queries/find_collections_by_type.rb +27 -0
- data/lib/wings/services/custom_queries/find_file_metadata.rb +90 -0
- data/lib/wings/services/custom_queries/find_many_by_alternate_ids.rb +35 -0
- data/lib/wings/services/file_converter_service.rb +68 -0
- data/lib/wings/services/file_metadata_builder.rb +90 -0
- data/lib/wings/services/id_converter_service.rb +15 -0
- data/lib/wings/setup.rb +49 -0
- data/lib/wings/transformer_value_mapper.rb +78 -0
- data/lib/wings/valkyrie/metadata_adapter.rb +29 -0
- data/lib/wings/valkyrie/persister.rb +113 -0
- data/lib/wings/valkyrie/query_service.rb +176 -0
- data/lib/wings/valkyrie/resource_factory.rb +45 -0
- data/lib/wings/valkyrie/storage/active_fedora.rb +27 -0
- data/lib/wings/valkyrizable.rb +24 -0
- data/tasks/hyrax_dev.rake +4 -1
- data/template.rb +2 -1
- metadata +332 -114
- data/app/presenters/hyrax/collection_options_presenter.rb +0 -31
- data/app/services/hyrax/collection_size_service.rb +0 -52
- data/config/initializers/hyrax_callbacks.rb +0 -43
- data/lib/hyrax/transactions/steps/set_uploaded_date.rb +0 -28
data/config/locales/hyrax.zh.yml
CHANGED
@@ -18,9 +18,11 @@ zh:
|
|
18
18
|
fields:
|
19
19
|
facet:
|
20
20
|
admin_set_sim: 集
|
21
|
+
collection_type_gid_ssim: 集合类型
|
21
22
|
member_of_collections_ssim: 采集
|
22
23
|
resource_type_sim: 资源类型
|
23
24
|
suppressed_bsi: 状况
|
25
|
+
visibility_ssi: 公开度
|
24
26
|
show:
|
25
27
|
admin_set: '管理集内:'
|
26
28
|
based_near_label: 地点
|
@@ -38,6 +40,7 @@ zh:
|
|
38
40
|
extension_whitelist_error: "%{extension} 的文件不能上传, 可上传的扩展类型: %{allowed_types}"
|
39
41
|
helpers:
|
40
42
|
action:
|
43
|
+
accept: 接受
|
41
44
|
add: 加
|
42
45
|
admin_set:
|
43
46
|
new: 创建新管理集
|
@@ -265,6 +268,7 @@ zh:
|
|
265
268
|
collections: 收藏
|
266
269
|
configuration: 配置
|
267
270
|
content_blocks: 内容块
|
271
|
+
delete_all: 删除所有
|
268
272
|
notifications: 通知
|
269
273
|
pages: 网页
|
270
274
|
profile: 个人资料
|
@@ -279,6 +283,7 @@ zh:
|
|
279
283
|
workflow_review: 评审提交
|
280
284
|
workflow_roles: 工作流程角色
|
281
285
|
works: 作品
|
286
|
+
works_listing: 作品清单
|
282
287
|
stats:
|
283
288
|
deposited_form:
|
284
289
|
end_label: 结束 [默认到此刻]
|
@@ -346,11 +351,33 @@ zh:
|
|
346
351
|
default: 您试着要修改的资源按照您的请求无法被修改。
|
347
352
|
background_attribution_html: ''
|
348
353
|
base:
|
354
|
+
attributes:
|
355
|
+
table_attribute_name: 属性名称
|
356
|
+
table_heading_attributes: 属性
|
357
|
+
table_values: 值
|
358
|
+
visibility: 能见度
|
349
359
|
citations:
|
360
|
+
citations: 引文
|
361
|
+
endnote: 的EndNote
|
350
362
|
header: '引文:'
|
363
|
+
mendeley: Mendeley
|
364
|
+
zotero: Zotero只
|
365
|
+
file_manager:
|
366
|
+
back_to: 回到
|
367
|
+
toolbar: 工具条
|
368
|
+
file_manager_actions:
|
369
|
+
save: 保存
|
370
|
+
sort_alphabetically: 按字母顺序排序
|
371
|
+
file_manager_member_resource_options:
|
372
|
+
representative_media: 媒体代表
|
373
|
+
thumbnail: 缩略
|
374
|
+
form:
|
375
|
+
batch_link: 批量上传
|
376
|
+
batch_upload_hint: 要为每个文件创建单独的工作,请转到
|
351
377
|
form_child_work_relationships:
|
352
378
|
actions:
|
353
379
|
remove: 从这个工作中删除
|
380
|
+
add: 加
|
354
381
|
attach_new_work: 作为这项工作的孩子存入新的工作
|
355
382
|
caption: 这项工作目前包含这些儿童作品
|
356
383
|
confirm:
|
@@ -361,6 +388,9 @@ zh:
|
|
361
388
|
actions: 行动
|
362
389
|
title: 职称
|
363
390
|
form_files:
|
391
|
+
add_files: 添加文件
|
392
|
+
add_folder: 添加文件夹
|
393
|
+
cancel_upload: 取消上传
|
364
394
|
dropzone: 请将文件拖放此处。
|
365
395
|
local_upload_browse_everything_html: |
|
366
396
|
<p>您可以添加一个或多个文件与该工作相关联。</p>
|
@@ -370,6 +400,7 @@ zh:
|
|
370
400
|
form_member_of_collections:
|
371
401
|
actions:
|
372
402
|
remove: 从收藏中删除
|
403
|
+
add: 加
|
373
404
|
caption: 这项工作目前在这些收藏
|
374
405
|
confirm:
|
375
406
|
cancel: 取消
|
@@ -378,6 +409,8 @@ zh:
|
|
378
409
|
header:
|
379
410
|
actions: 行动
|
380
411
|
title: 集合标题
|
412
|
+
form_permission:
|
413
|
+
visibility: 可见性<small>谁应该能够查看或下载此内容?</ small>
|
381
414
|
form_permission_under_embargo:
|
382
415
|
help_html: "<strong>这件作品限制公开。</strong>您可以在此更改设置,也可以访问%{edit_link}以取消限制。"
|
383
416
|
legend_html: 公开度<small>谁可以查看或下载此内容?</small>
|
@@ -391,6 +424,8 @@ zh:
|
|
391
424
|
required_descriptions: 描述您的作品
|
392
425
|
required_files: 添加文件
|
393
426
|
requirements: 必要条件
|
427
|
+
saving_your_work: 保存你的工作。这可能需要一些时间
|
428
|
+
yourself: 自己
|
394
429
|
form_rendering:
|
395
430
|
help_html: 在Universal Viewer中选择要作为每个图像下载的文件,例如整个作品的PDF。
|
396
431
|
legend_html: 渲染
|
@@ -398,12 +433,36 @@ zh:
|
|
398
433
|
help_html: 选择代表这项工作的媒体文件。
|
399
434
|
legend_html: 代表媒体
|
400
435
|
form_share:
|
436
|
+
access_type_to_grant: 要授予的访问类型
|
437
|
+
account_label_without_suffix: "%{account_label}(没有%{suffix}部分)"
|
401
438
|
add_sharing: 添加共享
|
439
|
+
add_this_group_html: 添加<span class =“sr-only”>此组</ span>
|
402
440
|
currently_sharing: 目前与...共享
|
441
|
+
depositor: 储户
|
403
442
|
directions: 无论此工作的可见性设置如何,您也可以与其他用户和组共享。
|
443
|
+
group: 组
|
444
|
+
permissions_save_note_html: 权限<strong> </ strong>保存,直到“保存”为止。按钮在页面底部按下。
|
445
|
+
use_add_button: 使用添加按钮一次可以访问一个%{account_label}(它将被添加到下面的列表中)。按名称或%{account_label} \选择用户。然后选择您要授予的访问级别,并单击“添加此%{account_label}”以完成添加权限。
|
404
446
|
form_thumbnail:
|
405
447
|
help_html: 选择要用作此作品缩略图的文件。
|
406
448
|
legend_html: 缩略图
|
449
|
+
form_visibility_component:
|
450
|
+
visibility: 可见性
|
451
|
+
inspect_work:
|
452
|
+
back_to: 回到
|
453
|
+
entity_id: 实体ID
|
454
|
+
id: ID
|
455
|
+
name: 名称
|
456
|
+
object_name: 对象名称
|
457
|
+
persistence: 坚持
|
458
|
+
processing_entity_id: 处理实体ID
|
459
|
+
proxy_for: 代理
|
460
|
+
roles: 角色
|
461
|
+
state: 州
|
462
|
+
state_name: 州名
|
463
|
+
users: 用户
|
464
|
+
workflow: 工作流程
|
465
|
+
workflow_comments: 工作流程评论
|
407
466
|
items:
|
408
467
|
actions: 行动
|
409
468
|
date_uploaded: 上传日期
|
@@ -423,16 +482,62 @@ zh:
|
|
423
482
|
definitions_html: "<strong>查看/下载:</strong>可以从%{application_name}中访问此文件(内容和元数据)。 <br /> <strong>编辑:</strong>可以<strong>编辑</strong>此文件(包括内容和元数据)。您只能将此权限授予%{institution_name}用户和/或组。"
|
424
483
|
share_with_html: 您可以为特定用户和/或组授予对文件的“查看/下载”或“编辑”访问权限。输入有效的%{account_name},一次选择一个,选择该用户的访问级别,然后单击+添加。
|
425
484
|
show:
|
485
|
+
items: 项目
|
426
486
|
last_modified: 最新修改
|
487
|
+
relationships: 关系
|
488
|
+
show_actions:
|
489
|
+
analytics: 分析
|
490
|
+
attach_child: 附上的孩子
|
491
|
+
confirm_delete: 删除这一%{work_type}
|
492
|
+
delete: 删除
|
493
|
+
edit: 编辑
|
494
|
+
feature: 功能
|
495
|
+
unfeature: Unfeature
|
427
496
|
social_media:
|
428
497
|
facebook: Facebook
|
429
498
|
google: Google+
|
430
499
|
tumblr: Tumblr
|
431
500
|
twitter: Twitter
|
501
|
+
unauthorized:
|
502
|
+
id: ID:%{id}
|
503
|
+
is_private: 您尝试访问的%{type}是私有的
|
504
|
+
page_is_private: 您尝试访问的页面是私有的
|
505
|
+
unauthorized: 擅自
|
506
|
+
work_button_row:
|
507
|
+
analytics: Analytics(分析)
|
508
|
+
attach: 附上%{type}
|
509
|
+
delete: 删除
|
510
|
+
delete_type: 删除这个%{type}?
|
511
|
+
edit: 编辑
|
512
|
+
feature: 特征
|
513
|
+
unfeature: Unfeature
|
514
|
+
workflow_actions:
|
515
|
+
actions: 操作
|
516
|
+
previous_comments: 以前的评论
|
517
|
+
review_comment: 评论评论
|
518
|
+
title: 审核和批准
|
519
|
+
base/unauthorized:
|
520
|
+
is_private: 您尝试访问的%{type}是私有的
|
521
|
+
unauthorized: 擅自
|
432
522
|
batch:
|
433
523
|
help:
|
434
524
|
resource_type: 您可以选择适用于所有文件的多种类型
|
435
525
|
title: 文件名将作为默认标题。请提供更有意义的标题,文件名将会在系统内保留。
|
526
|
+
batch_edits:
|
527
|
+
check_all:
|
528
|
+
select_to_access_selection_options: 选择以访问选择选项
|
529
|
+
delete_selected:
|
530
|
+
button_label: 删除选择
|
531
|
+
deleting_file_from: 从%{application_name}删除文件是永久性的。单击“确定”从%{application_name}中删除此文件,或单击“取消”以取消此操作
|
532
|
+
edit:
|
533
|
+
apply_changes_to: 更改将应用于:(%{x_number_of}有效)
|
534
|
+
batch_edit_descriptions: 批量修改说明&nbsp;&nbsp;&nbsp; <small>点击下面的标签编辑工作说明。</ small>
|
535
|
+
clear_batch: 清除批次
|
536
|
+
descriptions: 说明
|
537
|
+
descriptions_title: 说明:
|
538
|
+
permissions: 权限
|
539
|
+
sharing: 分享
|
540
|
+
visibility: 能见度
|
436
541
|
batch_uploads:
|
437
542
|
disabled: 功能被管理员禁用
|
438
543
|
files:
|
@@ -448,6 +553,9 @@ zh:
|
|
448
553
|
header: 保存作品
|
449
554
|
bread_crumb:
|
450
555
|
search_results: 回到检索结果
|
556
|
+
citations:
|
557
|
+
work:
|
558
|
+
citation_formats: 引文格式
|
451
559
|
collection:
|
452
560
|
actions:
|
453
561
|
add_existing_works:
|
@@ -478,6 +586,7 @@ zh:
|
|
478
586
|
desc: 将现有集合添加到此集合
|
479
587
|
modal_title: 将此集合添加到另一个集合中
|
480
588
|
select_label: 选择收藏
|
589
|
+
also_belongs_to: 这项工作也属于
|
481
590
|
browse_view: 浏览页面
|
482
591
|
document_list:
|
483
592
|
edit: 编辑
|
@@ -519,6 +628,10 @@ zh:
|
|
519
628
|
show_more_parent_collections: 展示更多...
|
520
629
|
subcollection_count: 子集合
|
521
630
|
works_in_collection: 作品在此收藏集
|
631
|
+
sort_and_per_page:
|
632
|
+
number_of_results_to_display_per_page: 数量的结果显示,每页
|
633
|
+
results_per_page: 每页结果
|
634
|
+
sort_by_html: "<跨>排序:</跨>"
|
522
635
|
contact_form:
|
523
636
|
button_label: 发送
|
524
637
|
email_label: 您的邮件
|
@@ -581,15 +694,22 @@ zh:
|
|
581
694
|
relationships: 关系
|
582
695
|
sharing: 分享
|
583
696
|
form_branding:
|
697
|
+
alt_text: Alt案文:
|
584
698
|
banner:
|
585
699
|
description: 要显示在收集页面顶部的图像。为获得最佳效果,请上传至少120像素高,1200像素宽的图像(JPG,GIF或PNG)。
|
586
700
|
label: 旗帜
|
587
701
|
branding:
|
588
702
|
description: 或者,您可以上传横幅图像和/或徽标图像以与此集合关联。如果上传,这些图像将显示在收集页面的顶部,为收藏提供独特的品牌。
|
589
703
|
label: 品牌
|
704
|
+
choose_file: 选择文件
|
705
|
+
link_url: 链接网址:
|
590
706
|
logo:
|
591
707
|
description: 一个或多个图像显示在收集页面的顶部。为获得最佳效果,请上传高度为40像素的图像(JPG,GIF或PNG)。较大的图像将被调整到40像素的高度。
|
592
708
|
label: 商标
|
709
|
+
previous: 以前的
|
710
|
+
remove: 删除
|
711
|
+
remove_current_banner: 删除目前的旗帜
|
712
|
+
remove_logo: 删除标志
|
593
713
|
form_discovery:
|
594
714
|
para1: 这些设置决定了哪些人能够发现并查看此收藏集的着陆页;它们不会影响集合中项目的可见性。
|
595
715
|
para2: 如果您选择不让该集合成为开放访问权限,您仍然可以使用共享选项卡将该集合与特定用户和组共享。
|
@@ -616,7 +736,13 @@ zh:
|
|
616
736
|
add_sharing: 添加共享
|
617
737
|
add_user: 添加用户
|
618
738
|
current_shared: 目前与...共享
|
739
|
+
depositor: 存款
|
740
|
+
manager: 经理
|
619
741
|
note: 无论此集合的可见性设置如何,您都可以将此集合与特定的组和用户共享。
|
742
|
+
search_for_a_group: 搜索一组...
|
743
|
+
search_for_a_user: 搜索一个用户...
|
744
|
+
select_a_role: 选择一个角色...
|
745
|
+
viewer: 观众
|
620
746
|
form_share_table:
|
621
747
|
allow_all_registered: 允许所有注册
|
622
748
|
depositors:
|
@@ -657,6 +783,32 @@ zh:
|
|
657
783
|
show_less_parent_collections: "...显示较少"
|
658
784
|
show_more_parent_collections: 展示更多...
|
659
785
|
subcollection_count: 子集合
|
786
|
+
show_descriptions:
|
787
|
+
descriptions: 说明
|
788
|
+
show_document_list:
|
789
|
+
action: 行动
|
790
|
+
date_added: 添加日期
|
791
|
+
list_items_in_collection: 此集合中的项目列表
|
792
|
+
owner: 所有者
|
793
|
+
title: 标题
|
794
|
+
visibility: 能见度
|
795
|
+
show_document_list_menu:
|
796
|
+
select: 选择
|
797
|
+
show_document_list_row:
|
798
|
+
creator: 创建者:
|
799
|
+
depositor: 储户:
|
800
|
+
edit_access: 编辑权限:
|
801
|
+
sort_and_per_page:
|
802
|
+
show_par_page_html: 显示%{select}每页
|
803
|
+
sort_by: 排序:
|
804
|
+
work_action_menu:
|
805
|
+
delete_work: 删除工作
|
806
|
+
deleting_from_work: 从%{application_name}删除作品是永久性的。单击“确定”从%{application_name}中删除此工作,或单击“取消”取消此操作
|
807
|
+
edit_work: 编辑工作
|
808
|
+
press_to: 按到
|
809
|
+
remove_from_collection: 从收藏中删除
|
810
|
+
select_an_action: 选择一个动作
|
811
|
+
transfer_ownership_of_work: 转移工作所有权
|
660
812
|
create_work: 创建作品
|
661
813
|
current_proxies: 目前代理
|
662
814
|
delete_notification: 删除通知
|
@@ -680,6 +832,8 @@ zh:
|
|
680
832
|
collection_update_success: 收集已成功更新。
|
681
833
|
collections_confirmation_html: 删除<span class='pluralized'>这个集合</span>将永久地从存储库中删除<span class='pluralized'>这个集合</span> 。 <span class='pluralized'>此集合中的</span>项目将保留在存储库中。你确定要删除<span class='pluralized'>这个集合</span>吗?
|
682
834
|
collections_confirmation_no_items_html: 你确定要删除这个集合吗?此操作无法撤消。
|
835
|
+
collections_confirmation_plural: 这些集合
|
836
|
+
collections_confirmation_singular: 此集合
|
683
837
|
delete_admin_set: 删除集合
|
684
838
|
delete_admin_set_deny: 这个集合被定义为Admin Set并且不是空的。要删除此管理员设置,您必须先删除(删除或移动到另一个管理员设置集合)管理员设置中的所有项目。
|
685
839
|
delete_collection: 删除收藏集
|
@@ -722,6 +876,7 @@ zh:
|
|
722
876
|
heading:
|
723
877
|
access: 访问
|
724
878
|
action: 行动
|
879
|
+
caption: 此集合中的项目列表
|
725
880
|
collection_type: 集合类型
|
726
881
|
date_modified: 上一次更改
|
727
882
|
date_uploaded: 上传日期
|
@@ -738,6 +893,7 @@ zh:
|
|
738
893
|
check_all_label: 选择添加或编辑所有文件
|
739
894
|
detail_label: 展示概括细节
|
740
895
|
listing: 您存储细项列单
|
896
|
+
number_of_results_to_display_per_page: 每页显示的结果数
|
741
897
|
press_to: 按击
|
742
898
|
results_per_page: 每页显示的结果数量
|
743
899
|
show_label: 展示所有细节
|
@@ -753,7 +909,19 @@ zh:
|
|
753
909
|
no_proxies: 没有代理分配
|
754
910
|
no_transfer_requests: 您没有收到任何在作品转让请求
|
755
911
|
no_transfers: 您没有转让任何作品
|
912
|
+
profiles:
|
913
|
+
edit_primary:
|
914
|
+
change_picture: "<i class =“glyphicon glyphicon-camera”> </ i>更改图片"
|
915
|
+
delete_picture: 删除图片
|
916
|
+
delete_picture_data_content: 如果您想完全删除图片,请选中相应复选框并保存您的个人资料。
|
917
|
+
delete_picture_data_original_title: 删除图片
|
918
|
+
facebook_handle: "<i class =“fa fa-facebook”aria-hidden =“true”> </ i> Facebook句柄"
|
919
|
+
google_handle: "<i class =“fa fa-google-plus”> </ i> Google+处理"
|
920
|
+
help_change_picture_type: JPG,GIF或PNG(小于2MB)
|
921
|
+
save_profile: "<i class =“glyphicon glyphicon-save”> </ i>保存个人资料"
|
922
|
+
twitter_handle: "<i class =“fa fa-twitter”aria-hidden =“true”> </ i> Twitter句柄"
|
756
923
|
proxy_activity: 代理活动
|
924
|
+
proxy_add_deny: 你不能让自己成为代理人
|
757
925
|
proxy_delete: 删除代理
|
758
926
|
proxy_help: 选择一个可以代表您存放作品的用户。您将成为该用户为您存储的作品的所有者。您可以通过单击删除代理按钮来撤销代理。
|
759
927
|
proxy_user: 代理用户
|
@@ -768,7 +936,9 @@ zh:
|
|
768
936
|
subtitle: 当前状态
|
769
937
|
title: 存储库对象
|
770
938
|
show_admin:
|
939
|
+
current_registered_users: 电流
|
771
940
|
new_visitors: 新访问者
|
941
|
+
past_30_days: 过去30天
|
772
942
|
registered_users: 注册用户
|
773
943
|
returning_visitors: 老访问者
|
774
944
|
total_visitors: 所有访问者
|
@@ -778,6 +948,7 @@ zh:
|
|
778
948
|
file_views: 阅览
|
779
949
|
files: 文件已存储
|
780
950
|
heading: 您的【下载?】统计
|
951
|
+
joined_on: 加入上
|
781
952
|
works: 已建立的作品
|
782
953
|
title: 我的控件板
|
783
954
|
transfer_of_ownership: 转让所有权
|
@@ -817,6 +988,7 @@ zh:
|
|
817
988
|
deactivate: 停用限制
|
818
989
|
deactivate_selected: 停用选定的限制
|
819
990
|
missing: 目前没有有效的限制。
|
991
|
+
select_all: 全选
|
820
992
|
table_headers:
|
821
993
|
release_date: 限制发布日期
|
822
994
|
title: 标题
|
@@ -834,12 +1006,14 @@ zh:
|
|
834
1006
|
download: 下载文件
|
835
1007
|
downloadable_content:
|
836
1008
|
audio_link: 下载音频
|
1009
|
+
audio_tag_not_supported: 您的浏览器不支持音频标签。
|
837
1010
|
default_link: 下载文件
|
838
1011
|
heading: 可下载的内容
|
839
1012
|
image_link: 下载图片
|
840
1013
|
office_link: 下载文件
|
841
1014
|
pdf_link: 下载PDF文件
|
842
1015
|
video_link: 下载视频
|
1016
|
+
video_tag_not_supported: 您的浏览器不支持视频标记。
|
843
1017
|
file_sets:
|
844
1018
|
actions:
|
845
1019
|
delete: 删除
|
@@ -850,13 +1024,28 @@ zh:
|
|
850
1024
|
edit: 编辑
|
851
1025
|
edit_title: 编辑%{file_set}
|
852
1026
|
header: 选择一个动作
|
1027
|
+
press_to: 按到
|
853
1028
|
versions: 版本
|
854
1029
|
versions_title: 显示以前的版本
|
1030
|
+
asset_deleted_flash:
|
1031
|
+
message: 该文件已经被删除。
|
1032
|
+
asset_saved_flash:
|
1033
|
+
message:
|
1034
|
+
one: 该文件%{saved_files}已经保存。
|
1035
|
+
other: 该文件%{saved_files}已经保存。
|
1036
|
+
asset_updated_flash:
|
1037
|
+
message: 该文件%{link_to_file}已经更新。
|
1038
|
+
descriptions:
|
1039
|
+
save: 保存说明
|
1040
|
+
title: 说明
|
855
1041
|
edit:
|
856
1042
|
descriptions: 说明
|
857
1043
|
header: 编辑%{file_set}
|
858
1044
|
permissions: 权限
|
859
1045
|
versions: 版本
|
1046
|
+
extra_fields_modal:
|
1047
|
+
additional: 额外
|
1048
|
+
label: 附加%{label}(s)
|
860
1049
|
form:
|
861
1050
|
attach_to: 附加到%{parent}
|
862
1051
|
cancel: 取消
|
@@ -867,10 +1056,19 @@ zh:
|
|
867
1056
|
permission:
|
868
1057
|
save: 保存
|
869
1058
|
permission_form:
|
1059
|
+
add_new_group_skel: 添加此组
|
1060
|
+
add_new_user_skel: 添加此%{account_label}
|
870
1061
|
applied_to: "(适用于刚刚上传的所有文件)"
|
1062
|
+
bulk: 块
|
871
1063
|
depositor: 储户
|
872
1064
|
enter: 输入%{account_label}(一次一个)
|
873
1065
|
header: 权限
|
1066
|
+
new_group_help_text: 使用添加按钮一次可以访问一个组(它将添加到下面的列表中)。
|
1067
|
+
new_group_name_skel: 组
|
1068
|
+
new_group_permission_skel: 要授予的访问类型
|
1069
|
+
new_user_help_text: 使用添加按钮一次可以访问一个%{account_label}(它将被添加到下面的列表中)。按名称或%{account_label}选择用户。然后选择您希望授予的访问级别,并单击Add this %{account_label}以完成添加权限。
|
1070
|
+
new_user_name_skel: "%{account_label}(没有%{suffix}部分)"
|
1071
|
+
new_user_permission_skel: 要授予的访问类型
|
874
1072
|
optional: "(可选的)"
|
875
1073
|
save_note_html: 在页面底部按“保存”按钮之前, <strong>不会</strong>保存权限。
|
876
1074
|
select_group: 选择一个组
|
@@ -878,12 +1076,28 @@ zh:
|
|
878
1076
|
table_title_access: 访问权限
|
879
1077
|
table_title_user: 人/组
|
880
1078
|
user_search: 搜索用户
|
1079
|
+
proxy:
|
1080
|
+
message: "%{sending_user}代表您存放了%{title}文件。"
|
1081
|
+
show_actions:
|
1082
|
+
analytics: 分析
|
1083
|
+
confirm_delete_this: 删除这一%{type}吗?
|
1084
|
+
delete_this: 删除这一%{type}
|
1085
|
+
edit_this: 编辑本%{type}
|
1086
|
+
show_details:
|
1087
|
+
characterization: 表征
|
1088
|
+
date_modified: 修改日期
|
1089
|
+
date_uploaded: 日上传
|
1090
|
+
depositor: 存款
|
1091
|
+
file_details: 文件的详细信息
|
1092
|
+
fixity_check: 固定性检查
|
1093
|
+
not_yet_characterized: 没有特征
|
881
1094
|
versioning:
|
882
1095
|
current: 当前版本
|
883
1096
|
header: 版本
|
884
1097
|
restore: 恢复以前的版本
|
885
1098
|
restore_from: 还原自
|
886
1099
|
save: 保存修订
|
1100
|
+
save_your_note: 您必须点击“保存修订版”还原此文件的先前版本
|
887
1101
|
upload: 上传新版本
|
888
1102
|
help:
|
889
1103
|
header: 用户支持
|
@@ -981,15 +1195,62 @@ zh:
|
|
981
1195
|
my:
|
982
1196
|
count:
|
983
1197
|
collections:
|
1198
|
+
collections_listing: 收藏清单
|
984
1199
|
in_repo: 存储库中的<strong> %{total_count}集合</ strong>
|
985
1200
|
you_manage: 您可以在存储库中管理<strong> %{total_count}集合</ strong>
|
986
1201
|
you_own: 您在存储库中拥有<strong> %{total_count}集合</ strong>
|
987
1202
|
works:
|
988
1203
|
in_repo: 存储库中的<strong> %{total_count}有效</ strong>
|
1204
|
+
works_listing: 作品清单
|
989
1205
|
you_manage: 您可以在存储库中管理<strong> %{total_count}作品</ strong>
|
990
1206
|
you_own: 您在存储库中拥有<strong> %{total_count}作品</ strong>
|
1207
|
+
sort_and_per_page:
|
1208
|
+
number_of_results_to_display_per_page: 每页显示的结果数
|
991
1209
|
nav_safety:
|
992
1210
|
change_tab_message: 你确定要离开这个标签吗?任何未保存的数据都将丢失。
|
1211
|
+
notifications:
|
1212
|
+
batch_create_failure:
|
1213
|
+
message: 为%{user}创建的批处理失败:%{messages}
|
1214
|
+
subject: 失败的批次创建
|
1215
|
+
batch_create_success:
|
1216
|
+
message: 传递的%{user}批量创建。
|
1217
|
+
subject: 传递批量创建
|
1218
|
+
fixity_check_failure:
|
1219
|
+
message: "%{log_date}(%{uri})的%{log_date}运行的固定性检查失败。"
|
1220
|
+
subject: 失败的固定检查
|
1221
|
+
import_url_failure:
|
1222
|
+
subject: 文件导入错误
|
1223
|
+
proxy_deposit_request:
|
1224
|
+
transfer_on_create:
|
1225
|
+
message: "%{user_link}想要将作品转移给你。查看所有%{transfer_link}"
|
1226
|
+
subject: 所有权变更请求
|
1227
|
+
transfer_link_label: 转移请求
|
1228
|
+
transfer_on_update:
|
1229
|
+
comments: 评论:%{receiver_comment}
|
1230
|
+
message: 您的转移请求是%{status}。
|
1231
|
+
subject: 所有权变更%{status}
|
1232
|
+
proxy_depositor_added:
|
1233
|
+
grantee_message: "%{grantor}已指定您为代理存款人"
|
1234
|
+
grantor_message: 您已将%{grantee}指定为代理存款人
|
1235
|
+
subject: 代理存款人已添加
|
1236
|
+
workflow:
|
1237
|
+
changes_required:
|
1238
|
+
message: |-
|
1239
|
+
%{title}(%{link})在批准之前需要进行其他更改。
|
1240
|
+
'%{comment}'
|
1241
|
+
subject: 您的存款需要更改
|
1242
|
+
deposited:
|
1243
|
+
message: zxzxzxx(%{link})被%{user}批准。 %{comment}
|
1244
|
+
subject: 存款已获批准
|
1245
|
+
pending_review:
|
1246
|
+
message: "%{title}(%{link})由%{user}存放,正在等待批准%{comment}"
|
1247
|
+
subject: 存款需要审核
|
1248
|
+
operations:
|
1249
|
+
index:
|
1250
|
+
operations_type: 运营类型
|
1251
|
+
status: 状态
|
1252
|
+
title: 操作
|
1253
|
+
updated: 更新
|
993
1254
|
pages:
|
994
1255
|
cancel: 取消
|
995
1256
|
tabs:
|
@@ -1045,7 +1306,21 @@ zh:
|
|
1045
1306
|
link: 链接
|
1046
1307
|
no_links: 链接未生成
|
1047
1308
|
title: 单次使用链接
|
1309
|
+
single_use_links_viewer:
|
1310
|
+
single_use_error:
|
1311
|
+
help: '%{application_name}无法找到单次使用链接。此链接已过期或之前已使用过。我们对不便表示抱歉。您可能有兴趣使用<a href="/help/">帮助页面</a>查找解决方案。'
|
1312
|
+
link_expired_not_found: 单次使用链接已过期或未找到
|
1313
|
+
link_not_found: 单用链接未找到
|
1048
1314
|
sort_label: 对清单中单件排序
|
1315
|
+
static:
|
1316
|
+
mendeley:
|
1317
|
+
contact_form: 联系表
|
1318
|
+
export_to_mendeley: 出口到门德利
|
1319
|
+
export_to_mendeley_details: 通过嵌入式元数据支持导出到Mendeley。如果Mendeley没有自动获取存放文件的元数据,请通过以下方式报告问题
|
1320
|
+
zotero:
|
1321
|
+
contact_form: 联系表
|
1322
|
+
export_to_zotero: 导出到Zotero
|
1323
|
+
export_to_zotero_details: 通过嵌入式元数据支持导出到Zotero。如果Zotero没有自动获取存放文件的元数据,请通过以下方式报告问题
|
1049
1324
|
toolbar:
|
1050
1325
|
dashboard:
|
1051
1326
|
menu: 控件板
|
@@ -1066,6 +1341,29 @@ zh:
|
|
1066
1341
|
placeholder: 搜索用户
|
1067
1342
|
sr_only_description: 选择要转让 “%{work_title}” 的用户,添加可选注释,然后按转让。
|
1068
1343
|
title: 转让所有权 "%{work_title}"
|
1344
|
+
received:
|
1345
|
+
accept: 接受
|
1346
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_and_authorize: 接受该文件并允许原始存款人保留访问权并授权原始存款人代表您存放文件。
|
1347
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_to_edit_the_file_and_metadata: 接受该文件并允许原始存款人保留访问权以编辑文件和元数据。
|
1348
|
+
accept_the_file_remove_access_from_the_original_depositor: 接受文件删除原始存款人的访问权限。
|
1349
|
+
allow_depositor_to_retain_edit_access: 允许存款人保留编辑权限
|
1350
|
+
are_you_sure_you_want_to_reject_this_request: 您确定要拒绝此请求吗?
|
1351
|
+
authorize_depositor_as_proxy: 授权存款人作为代理人
|
1352
|
+
comments: 评论
|
1353
|
+
date: 日期
|
1354
|
+
from: 从
|
1355
|
+
reject: 拒绝
|
1356
|
+
remove_depositor_access: 删除存款人访问权限
|
1357
|
+
status: 状态
|
1358
|
+
title: 标题
|
1359
|
+
sent:
|
1360
|
+
are_you_sure_you_want_to_cancel_this_request: 您确定要取消此请求吗?
|
1361
|
+
cancel: 取消
|
1362
|
+
comments: 评论
|
1363
|
+
date: 日期
|
1364
|
+
from: 从
|
1365
|
+
status: 状态
|
1366
|
+
title: 标题
|
1069
1367
|
upload:
|
1070
1368
|
alert:
|
1071
1369
|
contact_href_text: 联系表格
|
@@ -1081,6 +1379,7 @@ zh:
|
|
1081
1379
|
change_access_flash_message: 更新文件访问级别。 稍等片刻。 您可能需要刷新浏览器或稍后回访查询该文件访问级别是否更新。
|
1082
1380
|
change_access_message_html: "<p>您改变了其他用户或群组对作品阅览或编辑的访问级别 <i>%{curation_concern}</i> </p><p>您需要对作品内所有文件的用户或群组的访问级别和公开度做同样的改变吗</p>"
|
1083
1381
|
change_access_no_message: 不用。 我会手动更新。
|
1382
|
+
change_access_title_html: 申请更改的内容吗?
|
1084
1383
|
change_access_yes_message: 是的, 请做同样的更新。
|
1085
1384
|
change_permissions_message_html: "<p>您改变了对%{curation_concern_human_readable_type}, <i>%{curation_concern}</i>的权限,使它对<b>%{visibility_badge}</b>公开。</p><p> 您需要对%{curation_concern_human_readable_type}中所有文件对<b>%{visibility_badge}</b>的权限做同样的改变吗?</p>"
|
1086
1385
|
local_ingest:
|
@@ -1091,6 +1390,20 @@ zh:
|
|
1091
1390
|
tab_label: 我的电脑
|
1092
1391
|
permissions_message: 文件许可正在更新中。稍等片刻。您可能需要刷新浏览器或稍后回访查询该文件访问许可是否更新
|
1093
1392
|
processing: 文件正在处理。 等处理完毕,您可以开始编辑。
|
1393
|
+
uploads:
|
1394
|
+
js_templates:
|
1395
|
+
display_label: 显示标签
|
1396
|
+
error: 错误
|
1397
|
+
set_all_to_this_resource_type: 将all设置为此资源类型
|
1398
|
+
start: 开始
|
1399
|
+
js_templates_branding:
|
1400
|
+
alt_text: 替代文字:
|
1401
|
+
error: 错误
|
1402
|
+
link_url: 链接网址:
|
1403
|
+
previous: 以前
|
1404
|
+
remove: 去掉
|
1405
|
+
remove_new_banner: 删除新横幅
|
1406
|
+
remove_new_logo: 删除新徽标
|
1094
1407
|
user_profile:
|
1095
1408
|
orcid:
|
1096
1409
|
alt: ORCID 图标
|
@@ -1103,6 +1416,24 @@ zh:
|
|
1103
1416
|
connected: 已连接!
|
1104
1417
|
label: Zotero 个人资料
|
1105
1418
|
unlinked: 与Zotero链接
|
1419
|
+
users:
|
1420
|
+
activity_log:
|
1421
|
+
date: 日期
|
1422
|
+
user_activity: 用户活动
|
1423
|
+
index:
|
1424
|
+
avatar: 阿凡达
|
1425
|
+
department: 部门
|
1426
|
+
user_id: 用户身份
|
1427
|
+
user_name: 用户名
|
1428
|
+
users: 用户
|
1429
|
+
works_created: 作品创作
|
1430
|
+
left_sidebar:
|
1431
|
+
view_users: 查看用户
|
1432
|
+
proxies:
|
1433
|
+
proxies: 代理
|
1434
|
+
search_form:
|
1435
|
+
go: 走
|
1436
|
+
search_users: 搜索用户
|
1106
1437
|
visibility:
|
1107
1438
|
authenticated:
|
1108
1439
|
note_html: 访问仅限于%{institution}
|
@@ -1122,6 +1453,8 @@ zh:
|
|
1122
1453
|
note_html: 非公开保留分享权限。
|
1123
1454
|
text: 非公开
|
1124
1455
|
restricted_title_attr: 更改此资源的公开度
|
1456
|
+
work_button_row:
|
1457
|
+
attach_child: 附上孩子
|
1125
1458
|
workflow:
|
1126
1459
|
default:
|
1127
1460
|
deposit: 存储
|
@@ -1185,6 +1518,8 @@ zh:
|
|
1185
1518
|
share_applies_to_new_works: 当直接在集合中创建新作品时,根据其集合角色为新作品授予共享用户和组的权限。
|
1186
1519
|
title: ''
|
1187
1520
|
defaults:
|
1521
|
+
abstract: 研究文章,论文,评论,会议程序或对特定主题的任何深入分析的简要概述。
|
1522
|
+
access_right: 包含有关谁可以访问资源或其安全状态指示的信息。
|
1188
1523
|
based_near: 与作品相关的地名,例如出版品的地点,或者是作品中涉及的城市,州、或国家。 参见<a href='http://www.geonames.org'>GeoNames web service</a>。
|
1189
1524
|
contributor: 个人与团体,虽未担任主要职责,却对作品创建做出贡献。
|
1190
1525
|
creator: 对作品负责的个人与团体。通常指作品内容的作者。 个人姓名应该先输入姓氏,例如 "Smith, John."。
|
@@ -1197,6 +1532,7 @@ zh:
|
|
1197
1532
|
publisher: 出版作品的个人或团体,一般来说是机构单位。
|
1198
1533
|
related_url: 相关链接,用于链接与作品相关的网页或其它具体内容(音频、视频、PDF文件)。例如一个研究项目的网址,作品是此研究项目的成果。
|
1199
1534
|
resource_type: 预定类型用于描述上传内容类型,例如"文章" or "数据集。" 可以选择多项类型。
|
1535
|
+
rights_notes: 包含有关资源内和资源上的权限的信息。
|
1200
1536
|
subject: 用于描述作品的主题词或索引词,需要选自现存的词汇表。
|
1201
1537
|
title: 用于帮助识别作品的名称。
|
1202
1538
|
labels:
|
@@ -1217,6 +1553,8 @@ zh:
|
|
1217
1553
|
share_applies_to_new_works: 适用于新作品
|
1218
1554
|
title: 类型名称
|
1219
1555
|
defaults:
|
1556
|
+
abstract: 抽象
|
1557
|
+
access_right: 访问权限
|
1220
1558
|
admin_set_id: 在行政
|
1221
1559
|
based_near: 地点
|
1222
1560
|
creator: 创建者
|
@@ -1229,6 +1567,7 @@ zh:
|
|
1229
1567
|
license: 许可
|
1230
1568
|
member_of_collection_ids: 添加到收藏
|
1231
1569
|
related_url: 相关链接
|
1570
|
+
rights_notes: 权利说明
|
1232
1571
|
rights_statement: 权利声明
|
1233
1572
|
title: 标题
|
1234
1573
|
visibility_after_embargo: 开放
|