hyrax 5.2.0 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.dassie/.env +5 -1
- data/.dassie/Gemfile +4 -2
- data/.dassie/app/assets/images/bulkrax/removed.png +0 -0
- data/.dassie/app/assets/javascripts/application.js +2 -0
- data/.dassie/app/assets/stylesheets/application.css +1 -0
- data/.dassie/app/controllers/catalog_controller.rb +1 -0
- data/.dassie/app/forms/admin_set_resource_form.rb +6 -0
- data/.dassie/app/forms/collection_resource_form.rb +5 -2
- data/.dassie/app/forms/generic_work_resource_form.rb +5 -2
- data/.dassie/app/forms/monograph_form.rb +5 -3
- data/.dassie/app/indexers/admin_set_resource_indexer.rb +5 -0
- data/.dassie/app/indexers/collection_resource_indexer.rb +3 -3
- data/.dassie/app/indexers/generic_work_resource_indexer.rb +6 -3
- data/.dassie/app/indexers/monograph_indexer.rb +6 -2
- data/.dassie/app/models/ability.rb +8 -0
- data/.dassie/app/models/collection_resource.rb +4 -2
- data/.dassie/app/models/concerns/bulkrax/has_local_processing.rb +8 -0
- data/.dassie/app/models/generic_work_resource.rb +5 -2
- data/.dassie/app/models/monograph.rb +5 -2
- data/.dassie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
- data/.dassie/bin/importer +142 -0
- data/.dassie/bin/web +4 -0
- data/.dassie/config/browse_everything_providers.yml +1 -1
- data/.dassie/config/bulkrax_api.yml +86 -0
- data/.dassie/config/initializers/bulkrax.rb +92 -0
- data/.dassie/config/initializers/clamav.rb +2 -0
- data/.dassie/config/initializers/hyrax.rb +7 -1
- data/.dassie/config/initializers/riiif.rb +4 -80
- data/.dassie/config/initializers/wings.rb +1 -1
- data/.dassie/config/metadata_profiles/m3_profile.yaml +929 -0
- data/.dassie/config/puma.rb +4 -2
- data/.dassie/config/routes.rb +7 -0
- data/.dassie/config/sidekiq.yml +17 -0
- data/.dassie/config/uv/uv.html +63 -81
- data/.dassie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb +9 -0
- data/.dassie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb +5 -0
- data/.dassie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb +17 -0
- data/.dassie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb +17 -0
- data/.dassie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb +10 -0
- data/.dassie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb +20 -0
- data/.dassie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb +15 -0
- data/.dassie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb +20 -0
- data/.dassie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb +10 -0
- data/.dassie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb +31 -0
- data/.dassie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb +13 -0
- data/.dassie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb +14 -0
- data/.dassie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb +18 -0
- data/.dassie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb +26 -0
- data/.dassie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb +13 -0
- data/.dassie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb +32 -0
- data/.dassie/db/schema.rb +154 -1
- data/.dassie/package.json +1 -1
- data/.dassie/rspec_split_configuration.json +835 -0
- data/.dassie/solr/conf/solrconfig.xml +21 -5
- data/.github/{ISSUE_TEMPLATE.md → ISSUE_TEMPLATE/issue_template.md} +5 -0
- data/.github/workflows/lint-build-test.yml +5 -1
- data/.github/workflows/release-charts.yml +48 -0
- data/.gitignore +6 -0
- data/.koppie/.env +5 -1
- data/.koppie/Gemfile +3 -1
- data/.koppie/app/assets/images/bulkrax/removed.png +0 -0
- data/.koppie/app/assets/javascripts/application.js +2 -0
- data/.koppie/app/assets/stylesheets/application.css +1 -0
- data/.koppie/app/controllers/catalog_controller.rb +1 -1
- data/.koppie/app/forms/collection_resource_form.rb +5 -2
- data/.koppie/app/forms/file_set_form.rb +5 -0
- data/.koppie/app/forms/generic_work_form.rb +5 -3
- data/.koppie/app/forms/monograph_form.rb +5 -3
- data/.koppie/app/indexers/collection_resource_indexer.rb +5 -2
- data/.koppie/app/indexers/file_set_indexer.rb +7 -0
- data/.koppie/app/indexers/generic_work_indexer.rb +6 -3
- data/.koppie/app/indexers/monograph_indexer.rb +6 -2
- data/.koppie/app/models/ability.rb +8 -0
- data/.koppie/app/models/collection_resource.rb +4 -2
- data/.koppie/app/models/concerns/bulkrax/has_local_processing.rb +8 -0
- data/.koppie/app/models/generic_work.rb +5 -2
- data/.koppie/app/models/monograph.rb +5 -2
- data/.koppie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
- data/.koppie/bin/importer +142 -0
- data/.koppie/bin/web +4 -0
- data/.koppie/config/browse_everything_providers.yml +2 -0
- data/.koppie/config/bulkrax_api.yml +86 -0
- data/.koppie/config/initializers/bulkrax.rb +92 -0
- data/.koppie/config/initializers/clamav.rb +2 -0
- data/.koppie/config/initializers/hyrax.rb +11 -3
- data/.koppie/config/initializers/riiif.rb +4 -82
- data/.koppie/config/metadata_profiles/m3_profile.yaml +930 -0
- data/.koppie/config/routes.rb +7 -0
- data/.koppie/config/sidekiq.yml +2 -0
- data/.koppie/config/uv/uv.html +63 -81
- data/.koppie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb +9 -0
- data/.koppie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb +5 -0
- data/.koppie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb +17 -0
- data/.koppie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb +17 -0
- data/.koppie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb +10 -0
- data/.koppie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb +20 -0
- data/.koppie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb +15 -0
- data/.koppie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb +20 -0
- data/.koppie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb +10 -0
- data/.koppie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb +31 -0
- data/.koppie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb +13 -0
- data/.koppie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb +14 -0
- data/.koppie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb +18 -0
- data/.koppie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb +26 -0
- data/.koppie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb +13 -0
- data/.koppie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb +32 -0
- data/.koppie/db/schema.rb +154 -1
- data/.koppie/package.json +1 -1
- data/.koppie/rspec_split_configuration.json +835 -0
- data/.koppie/solr/conf/solrconfig.xml +0 -5
- data/.koppie/yarn.lock +5587 -752
- data/.rubocop.yml +1 -0
- data/CONTAINERS.md +2 -0
- data/Dockerfile +9 -22
- data/Gemfile +0 -1
- data/Gemfile.allinson +2 -0
- data/README.md +1 -2
- data/app/actors/hyrax/actors/file_actor.rb +2 -0
- data/app/actors/hyrax/actors/file_set_actor.rb +1 -1
- data/app/assets/javascripts/hyrax/app.js.erb +143 -10
- data/app/assets/javascripts/hyrax/collection_select.js +68 -0
- data/app/assets/javascripts/hyrax/copy_permalink_button.js +28 -0
- data/app/assets/javascripts/hyrax/redirects.js +45 -0
- data/app/assets/javascripts/hyrax/relationships/control.es6 +21 -1
- data/app/assets/javascripts/hyrax/select_work_type.es6 +7 -2
- data/app/assets/javascripts/hyrax.js +3 -1
- data/app/assets/stylesheets/hyrax/_file-show.scss +1 -0
- data/app/assets/stylesheets/hyrax/_viewer.scss +8 -0
- data/app/assets/stylesheets/hyrax/dashboard.scss +22 -1
- data/app/assets/stylesheets/hyrax/sidebar.scss +98 -3
- data/app/authorities/qa/authorities/collections.rb +9 -9
- data/app/controllers/concerns/hyrax/analytics_error_handling.rb +97 -0
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +3 -1
- data/app/controllers/concerns/hyrax/ensure_migrated_behavior.rb +50 -0
- data/app/controllers/concerns/hyrax/flexible_catalog_behavior.rb +206 -0
- data/app/controllers/concerns/hyrax/flexible_schema_behavior.rb +17 -0
- data/app/controllers/concerns/hyrax/redirect_to_display_url.rb +54 -0
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +52 -10
- data/app/controllers/hyrax/admin/admin_sets_controller.rb +21 -13
- data/app/controllers/hyrax/admin/analytics/collection_reports_controller.rb +2 -0
- data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +1 -0
- data/app/controllers/hyrax/admin/metadata_profiles_controller.rb +66 -0
- data/app/controllers/hyrax/batch_uploads_controller.rb +2 -0
- data/app/controllers/hyrax/dashboard/collections_controller.rb +27 -6
- data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +2 -1
- data/app/controllers/hyrax/dashboard_controller.rb +2 -1
- data/app/controllers/hyrax/file_sets_controller.rb +19 -1
- data/app/controllers/hyrax/homepage_controller.rb +7 -0
- data/app/controllers/hyrax/my/works_controller.rb +2 -21
- data/app/controllers/hyrax/permissions_controller.rb +4 -2
- data/app/controllers/hyrax/redirects_controller.rb +56 -0
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +2 -1
- data/app/controllers/hyrax/transcripts_controller.rb +31 -0
- data/app/controllers/hyrax/uploads_controller.rb +18 -9
- data/app/forms/concerns/hyrax/based_near_field_behavior.rb +77 -0
- data/app/forms/concerns/hyrax/flexible_form_behavior.rb +37 -0
- data/app/forms/concerns/hyrax/redirects_field_behavior.rb +95 -0
- data/app/forms/concerns/hyrax/transcripts_behavior.rb +40 -0
- data/app/forms/hyrax/forms/admin_set_form.rb +1 -1
- data/app/forms/hyrax/forms/administrative_set_form.rb +3 -0
- data/app/forms/hyrax/forms/batch_edit_form.rb +1 -3
- data/app/forms/hyrax/forms/batch_upload_form.rb +14 -0
- data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/file_set_form.rb +6 -7
- data/app/forms/hyrax/forms/pcdm_collection_form.rb +17 -5
- data/app/forms/hyrax/forms/pcdm_object_form.rb +11 -3
- data/app/forms/hyrax/forms/resource_batch_edit_form.rb +8 -22
- data/app/forms/hyrax/forms/resource_form.rb +110 -10
- data/app/forms/hyrax/forms.rb +1 -0
- data/app/helpers/hyrax/attributes_helper.rb +109 -0
- data/app/helpers/hyrax/blacklight_override.rb +26 -0
- data/app/helpers/hyrax/collections_helper.rb +2 -0
- data/app/helpers/hyrax/file_set_form_helper.rb +24 -0
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +51 -2
- data/app/helpers/hyrax/iiif_helper.rb +11 -1
- data/app/helpers/hyrax/permalink_helper.rb +37 -0
- data/app/helpers/hyrax/redirects_tab_helper.rb +29 -0
- data/app/helpers/hyrax/work_form_helper.rb +9 -5
- data/app/helpers/hyrax/works_helper.rb +14 -0
- data/app/indexers/concerns/hyrax/workflow_indexer.rb +30 -0
- data/app/indexers/hyrax/file_set_indexer.rb +1 -0
- data/app/indexers/hyrax/indexers/administrative_set_indexer.rb +2 -1
- data/app/indexers/hyrax/indexers/file_set_indexer.rb +6 -2
- data/app/indexers/hyrax/indexers/pcdm_collection_indexer.rb +11 -1
- data/app/indexers/hyrax/indexers/pcdm_object_indexer.rb +25 -4
- data/app/indexers/hyrax/indexers/redirects_indexer.rb +29 -0
- data/app/indexers/hyrax/indexers/resource_indexer.rb +4 -0
- data/app/indexers/hyrax/indexers.rb +2 -0
- data/app/inputs/controlled_vocabulary_input.rb +7 -1
- data/app/jobs/content_deposit_error_event_job.rb +14 -0
- data/app/jobs/create_work_job.rb +2 -0
- data/app/jobs/migrate_files_to_valkyrie_job.rb +7 -1
- data/app/models/batch_upload_item.rb +4 -0
- data/app/models/concerns/hyrax/ability/flexible_metadata_ability.rb +10 -0
- data/app/models/concerns/hyrax/ability.rb +3 -1
- data/app/models/concerns/hyrax/collection_behavior.rb +4 -0
- data/app/models/concerns/hyrax/file_set/transcripts.rb +16 -0
- data/app/models/concerns/hyrax/file_set_behavior.rb +9 -0
- data/app/models/concerns/hyrax/flexibility.rb +107 -0
- data/app/models/concerns/hyrax/redirects_normalization.rb +38 -0
- data/app/models/concerns/hyrax/solr_document/characterization.rb +1 -1
- data/app/models/concerns/hyrax/solr_document/metadata.rb +9 -0
- data/app/models/concerns/hyrax/solr_document/ordered_members.rb +4 -0
- data/app/models/concerns/hyrax/solr_document_behavior.rb +28 -6
- data/app/models/concerns/hyrax/suppressible.rb +1 -1
- data/app/models/concerns/hyrax/valkyrie_lazy_migration.rb +1 -1
- data/app/models/concerns/hyrax/with_embargoes_and_leases.rb +30 -0
- data/app/models/concerns/hyrax/work_behavior.rb +8 -0
- data/app/models/hyrax/administrative_set.rb +1 -1
- data/app/models/hyrax/change_set.rb +3 -1
- data/app/models/hyrax/embargo.rb +3 -1
- data/app/models/hyrax/file_set.rb +4 -2
- data/app/models/hyrax/flexible_schema.rb +219 -0
- data/app/models/hyrax/lease.rb +3 -1
- data/app/models/hyrax/pcdm_collection.rb +4 -1
- data/app/models/hyrax/redirect.rb +64 -0
- data/app/models/hyrax/redirect_path.rb +14 -0
- data/app/models/hyrax/resource.rb +22 -25
- data/app/models/hyrax/riiif/file.rb +43 -0
- data/app/models/hyrax/riiif/file_resolver.rb +65 -0
- data/app/models/hyrax/uploaded_file.rb +9 -0
- data/app/models/hyrax/virus_scanner.rb +16 -3
- data/app/models/hyrax/work.rb +4 -1
- data/app/models/job_io_wrapper.rb +12 -3
- data/app/models/user_mailbox.rb +3 -1
- data/app/presenters/hyrax/admin_set_presenter.rb +11 -0
- data/app/presenters/hyrax/annotates_content.rb +35 -0
- data/app/presenters/hyrax/collection_presenter.rb +5 -1
- data/app/presenters/hyrax/displays_content.rb +133 -0
- data/app/presenters/hyrax/displays_image.rb +11 -4
- data/app/presenters/hyrax/displays_transcripts.rb +59 -0
- data/app/presenters/hyrax/file_set_presenter.rb +8 -18
- data/app/presenters/hyrax/google_scholar_presenter.rb +39 -0
- data/app/presenters/hyrax/iiif_manifest_presenter.rb +22 -4
- data/app/presenters/hyrax/missing_method_behavior.rb +15 -0
- data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +2 -4
- data/app/presenters/hyrax/work_show_presenter.rb +56 -14
- data/app/renderers/hyrax/renderers/attribute_renderer.rb +6 -2
- data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +10 -10
- data/app/renderers/hyrax/renderers/redirects_label_attribute_renderer.rb +25 -0
- data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +10 -11
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +1 -5
- data/app/search_builders/hyrax/filter_by_type.rb +1 -1
- data/app/services/hyrax/action/create_valkyrie_work.rb +3 -2
- data/app/services/hyrax/authority_rendering_helper.rb +28 -0
- data/app/services/hyrax/authority_service.rb +107 -0
- data/app/services/hyrax/callbacks.rb +2 -2
- data/app/services/hyrax/collections/nested_collection_query_service.rb +9 -3
- data/app/services/hyrax/collections_service.rb +17 -0
- data/app/services/hyrax/custom_queries/find_by_property_value.rb +89 -0
- data/app/services/hyrax/edit_permissions_service.rb +4 -4
- data/app/services/hyrax/file_set_type_service.rb +12 -4
- data/app/services/hyrax/flexible_schema_validator_service.rb +153 -0
- data/app/services/hyrax/flexible_schema_validators/class_validator.rb +123 -0
- data/app/services/hyrax/flexible_schema_validators/core_metadata_validator.rb +211 -0
- data/app/services/hyrax/flexible_schema_validators/existing_records_validator.rb +83 -0
- data/app/services/hyrax/flexible_schema_validators/redirects_validator.rb +116 -0
- data/app/services/hyrax/flexible_schema_validators/schema_validator.rb +34 -0
- data/app/services/hyrax/flexible_schema_validators/sort_properties_validator.rb +54 -0
- data/app/services/hyrax/license_service.rb +1 -1
- data/app/services/hyrax/listeners/metadata_index_listener.rb +11 -0
- data/app/services/hyrax/m3_profile_editor.rb +32 -0
- data/app/services/hyrax/m3_schema_loader.rb +119 -0
- data/app/services/hyrax/manifest_builder_service.rb +18 -24
- data/app/services/hyrax/permalink_path.rb +25 -0
- data/app/services/hyrax/qa_select_service.rb +9 -5
- data/app/services/hyrax/redirect_path_normalizer.rb +58 -0
- data/app/services/hyrax/redirects_lookup.rb +59 -0
- data/app/services/hyrax/resource_permissions_visibility_propagator.rb +54 -0
- data/app/services/hyrax/resource_types_service.rb +3 -20
- data/app/services/hyrax/rights_statement_service.rb +1 -1
- data/app/services/hyrax/schema_loader.rb +205 -0
- data/app/services/hyrax/search_service.rb +1 -1
- data/app/services/hyrax/simple_schema_loader.rb +28 -127
- data/app/services/hyrax/solr_service.rb +39 -2
- data/app/services/hyrax/tolerant_select_service.rb +5 -3
- data/app/services/hyrax/valkyrie_upload.rb +2 -2
- data/app/services/hyrax/visibility_propagator.rb +4 -1
- data/app/services/hyrax/work_uploads_handler.rb +17 -9
- data/app/services/hyrax/workflow/workflow_factory.rb +5 -4
- data/app/services/migrate_resource_service.rb +7 -1
- data/app/uploaders/hyrax/uploaded_file_uploader.rb +2 -2
- data/app/utils/hyrax/data_destroyers/collection_branding_destroyer.rb +1 -1
- data/app/utils/hyrax/required_data_seeder.rb +1 -0
- data/app/utils/hyrax/required_data_seeders/collection_type_seeder.rb +1 -1
- data/app/utils/hyrax/required_data_seeders/flexible_profile_seeder.rb +28 -0
- data/app/validators/hyrax/controlled_vocabulary_validator.rb +64 -0
- data/app/validators/hyrax/redirect_validator.rb +128 -0
- data/app/views/catalog/_thumbnail_list_default.html.erb +2 -2
- data/app/views/collections/edit_fields/_schema_version.html.erb +1 -0
- data/app/views/hyrax/admin/admin_sets/_form_metadata.html.erb +24 -2
- data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/admin/admin_sets/show.html.erb +1 -1
- data/app/views/hyrax/admin/analytics/_analytics_error.html.erb +42 -0
- data/app/views/hyrax/admin/analytics/collection_reports/index.html.erb +11 -9
- data/app/views/hyrax/admin/analytics/work_reports/index.html.erb +60 -57
- data/app/views/hyrax/admin/features/index.html.erb +1 -1
- data/app/views/hyrax/admin/metadata_profiles/_import_modal.html.erb +20 -0
- data/app/views/hyrax/admin/metadata_profiles/index.html.erb +54 -0
- data/app/views/hyrax/base/_attribute_rows.html.erb +4 -21
- data/app/views/hyrax/base/_citations.html.erb +1 -0
- data/app/views/hyrax/base/_currently_shared.html.erb +2 -1
- data/app/views/hyrax/base/_file_manager_thumbnail.html.erb +1 -1
- data/app/views/hyrax/base/_form_member_of_collections.html.erb +6 -6
- data/app/views/hyrax/base/_form_redirects.html.erb +125 -0
- data/app/views/hyrax/base/_form_share.html.erb +7 -2
- data/app/views/hyrax/base/_member.html.erb +1 -1
- data/app/views/hyrax/base/_social_media.html.erb +1 -1
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +1 -1
- data/app/views/hyrax/base/show.html.erb +3 -0
- data/app/views/hyrax/collections/_default_group.html.erb +3 -0
- data/app/views/hyrax/collections/_list_collections.html.erb +3 -0
- data/app/views/hyrax/collections/_list_works.html.erb +1 -1
- data/app/views/hyrax/collections/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/collections/show.html.erb +4 -0
- data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -2
- data/app/views/hyrax/dashboard/collections/_button_for_update_collection.html.erb +2 -1
- data/app/views/hyrax/dashboard/collections/_default_group.html.erb +3 -0
- data/app/views/hyrax/dashboard/collections/_form.html.erb +17 -0
- data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +7 -10
- data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -0
- data/app/views/hyrax/dashboard/collections/_list_works.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +1 -8
- data/app/views/hyrax/dashboard/profiles/_trophy_edit.html.erb +1 -1
- data/app/views/hyrax/dashboard/profiles/show.html.erb +5 -5
- data/app/views/hyrax/dashboard/sidebar/_metadata.html.erb +11 -0
- data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +1 -0
- data/app/views/hyrax/dashboard/works/_default_group.html.erb +3 -0
- data/app/views/hyrax/dashboard/works/_list_works.html.erb +4 -2
- data/app/views/hyrax/file_sets/_form.html.erb +16 -3
- data/app/views/hyrax/file_sets/_metadata.html.erb +35 -0
- data/app/views/hyrax/file_sets/_valkyrie_form.html.erb +37 -0
- data/app/views/hyrax/file_sets/edit.html.erb +14 -8
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +4 -0
- data/app/views/hyrax/file_sets/media_display/_image.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +4 -0
- 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/_recent_document.html.erb +1 -1
- data/app/views/hyrax/homepage/robots.text.erb +17 -0
- data/app/views/hyrax/my/collections/_default_group.html.erb +3 -0
- data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -0
- data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +2 -2
- data/app/views/hyrax/my/collections/_modal_add_to_collection.html.erb +2 -2
- data/app/views/hyrax/my/works/_default_group.html.erb +3 -0
- data/app/views/hyrax/my/works/_list_works.html.erb +5 -2
- data/app/views/hyrax/shared/_copy_permalink.html.erb +10 -0
- data/app/views/hyrax/users/_user_info.html.erb +1 -6
- data/app/views/layouts/_head_tag_content.html.erb +2 -0
- data/app/views/layouts/hyrax/dashboard.html.erb +2 -1
- data/app/views/records/edit_fields/_contexts.html.erb +1 -0
- data/app/views/records/edit_fields/_license.html.erb +17 -5
- data/app/views/records/edit_fields/_resource_type.html.erb +16 -2
- data/app/views/records/edit_fields/_rights_statement.html.erb +17 -5
- data/app/views/records/edit_fields/_schema_version.html.erb +1 -0
- data/app/views/records/edit_fields/_transcript_ids.html.erb +18 -0
- data/app/views/records/show_fields/_rights.html.erb +1 -1
- data/app/views/shared/_citations.html.erb +46 -31
- data/app/views/shared/_schema_version.html.erb +38 -0
- data/bin/dev-entrypoint.sh +14 -4
- data/chart/hyrax/Chart.yaml +4 -4
- data/chart/hyrax/templates/ingress.yaml +3 -0
- data/chart/hyrax/values.yaml +10 -8
- data/config/features.rb +27 -0
- data/config/initializers/blacklight_dynamic_sitemap.rb +43 -0
- data/config/initializers/deprecation_patch.rb +27 -0
- data/config/initializers/hydra_works.rb +3 -0
- data/config/initializers/i18n_extensions.rb +197 -0
- data/config/initializers/storage_adapter_initializer.rb +15 -9
- data/config/locales/hyrax.de.yml +172 -54
- data/config/locales/hyrax.en.yml +183 -66
- data/config/locales/hyrax.es.yml +174 -49
- data/config/locales/hyrax.fr.yml +169 -45
- data/config/locales/hyrax.it.yml +172 -48
- data/config/locales/hyrax.pt-BR.yml +172 -54
- data/config/locales/hyrax.zh.yml +145 -21
- data/config/metadata/basic_metadata.yaml +66 -0
- data/config/metadata/batch_edit_metadata.yaml +119 -0
- data/config/metadata/file_set_metadata.yaml +19 -0
- data/config/metadata/redirects.yaml +15 -0
- data/config/metadata_profiles/m3_json_schema.json +487 -0
- data/config/metadata_profiles/m3_profile.yaml +954 -0
- data/config/routes.rb +9 -0
- data/docker-compose-allinson.yml +176 -0
- data/docker-compose-dassie.yml +14 -6
- data/docker-compose-koppie.yml +18 -10
- data/docker-compose-sirenia.yml +20 -10
- data/documentation/copy_permalink.md +29 -0
- data/documentation/developing-your-hyrax-based-app.md +2 -2
- data/documentation/file-ingest-characterization.md +763 -0
- data/documentation/flexible_metadata.md +113 -0
- data/documentation/forms/field_behaviors.md +297 -0
- data/documentation/redirects.md +428 -0
- data/hyrax.gemspec +7 -2
- data/lib/freyja/metadata_adapter.rb +1 -1
- data/lib/freyja/persister.rb +25 -1
- data/lib/generators/hyrax/collection_resource/collection_resource_generator.rb +2 -2
- data/lib/generators/hyrax/collection_resource/templates/collection.rb.erb +5 -1
- data/lib/generators/hyrax/collection_resource/templates/collection_form.rb.erb +5 -1
- data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +6 -1
- data/lib/generators/hyrax/iiif_viewer/USAGE +22 -0
- data/lib/generators/hyrax/iiif_viewer/iiif_viewer_generator.rb +49 -0
- data/lib/generators/hyrax/iiif_viewer/templates/_clover.html.erb +7 -0
- data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.css +3328 -0
- data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.html +16 -0
- data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.js +237 -0
- data/lib/generators/hyrax/install_generator.rb +25 -1
- data/lib/generators/hyrax/riiif_generator.rb +1 -1
- data/lib/generators/hyrax/templates/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
- data/lib/generators/hyrax/templates/config/clamav.rb +2 -0
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +4 -80
- data/lib/generators/hyrax/templates/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb.erb +9 -0
- data/lib/generators/hyrax/templates/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb.erb +5 -0
- data/lib/generators/hyrax/templates/db/migrate/20260430000001_create_hyrax_redirect_paths.rb.erb +22 -0
- data/lib/generators/hyrax/templates/db/migrate/20260521003627_add_additional_redirect_info.rb.erb +39 -0
- data/lib/generators/hyrax/templates/package.json +1 -1
- data/lib/generators/hyrax/templates/uv.html +60 -82
- data/lib/generators/hyrax/work/templates/indexer.rb.erb +1 -1
- data/lib/generators/hyrax/work/templates/model.rb.erb +5 -1
- data/lib/generators/hyrax/work_resource/templates/form.rb.erb +5 -2
- data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +6 -2
- data/lib/generators/hyrax/work_resource/templates/work.rb.erb +5 -2
- data/lib/generators/hyrax/work_resource/work_resource_generator.rb +1 -0
- data/lib/hyrax/active_fedora_dummy_model.rb +6 -0
- data/lib/hyrax/configuration.rb +197 -3
- data/lib/hyrax/deprecation.rb +31 -0
- data/lib/hyrax/engine.rb +2 -0
- data/lib/hyrax/form_fields.rb +17 -5
- data/lib/hyrax/indexer.rb +31 -2
- data/lib/hyrax/resource_sync/resource_list_writer.rb +3 -0
- data/lib/hyrax/schema.rb +15 -4
- data/lib/hyrax/specs/shared_specs/factories/administrative_sets.rb +12 -0
- data/lib/hyrax/specs/shared_specs/factories/hyrax_embargo.rb +1 -1
- data/lib/hyrax/specs/shared_specs/factories/hyrax_file_set.rb +13 -0
- data/lib/hyrax/specs/shared_specs/factories/hyrax_lease.rb +5 -1
- data/lib/hyrax/specs/shared_specs/factories/hyrax_work.rb +14 -0
- data/lib/hyrax/specs/shared_specs/simple_work.rb +41 -0
- data/lib/hyrax/specs/shared_specs.rb +1 -0
- data/lib/hyrax/transactions/collection_create.rb +2 -1
- data/lib/hyrax/transactions/collection_destroy.rb +1 -0
- data/lib/hyrax/transactions/collection_update.rb +2 -1
- data/lib/hyrax/transactions/container.rb +28 -0
- data/lib/hyrax/transactions/steps/apply_permission_template_on_update.rb +65 -0
- data/lib/hyrax/transactions/steps/apply_workflow_on_admin_set_change.rb +97 -0
- data/lib/hyrax/transactions/steps/ensure_admin_set.rb +1 -1
- data/lib/hyrax/transactions/steps/remove_redirect_paths.rb +35 -0
- data/lib/hyrax/transactions/steps/save.rb +10 -0
- data/lib/hyrax/transactions/steps/set_default_admin_set.rb +1 -1
- data/lib/hyrax/transactions/steps/sync_redirect_paths.rb +141 -0
- data/lib/hyrax/transactions/work_create.rb +2 -1
- data/lib/hyrax/transactions/work_destroy.rb +1 -0
- data/lib/hyrax/transactions/work_update.rb +4 -1
- data/lib/hyrax/version.rb +1 -1
- data/lib/hyrax.rb +61 -0
- data/lib/tasks/m3_profile_cleanup.rake +35 -0
- data/template.rb +4 -1
- metadata +313 -19
- data/.dassie/public/robots.txt +0 -1
- data/.koppie/public/robots.txt +0 -1
- data/app/forms/concerns/hyrax/basic_metadata_form_fields_behavior.rb +0 -39
- data/app/views/catalog/_thumbnail_list_collection.html.erb +0 -4
data/config/locales/hyrax.fr.yml
CHANGED
|
@@ -24,12 +24,12 @@ fr:
|
|
|
24
24
|
suppressed_bsi: Statut
|
|
25
25
|
visibility_ssi: Visibilité
|
|
26
26
|
show:
|
|
27
|
-
admin_set:
|
|
27
|
+
admin_set: "Dans l'ensemble administratif:"
|
|
28
28
|
based_near_label: Emplacement
|
|
29
29
|
contributor: Contributeurs
|
|
30
30
|
keyword: Mot-clé
|
|
31
31
|
filters:
|
|
32
|
-
title:
|
|
32
|
+
title: "Filtrage par:"
|
|
33
33
|
start_over: Effacer les filtres
|
|
34
34
|
download:
|
|
35
35
|
one: et 1 téléchargement
|
|
@@ -39,8 +39,15 @@ fr:
|
|
|
39
39
|
carrierwave_download_error: Impossible de télécharger l'image.
|
|
40
40
|
carrierwave_integrity_error: Pas une image.
|
|
41
41
|
carrierwave_processing_error: Impossible de redimensionner l'image.
|
|
42
|
-
extension_blacklist_error:
|
|
43
|
-
extension_whitelist_error:
|
|
42
|
+
extension_blacklist_error: "Vous n'êtes pas autorisé à télécharger des fichiers %{extension}, types interdits: %{prohibited_types}"
|
|
43
|
+
extension_whitelist_error: "Vous n'êtes pas autorisé à télécharger des fichiers %{extension}, types autorisés: %{allowed_types}"
|
|
44
|
+
redirect:
|
|
45
|
+
already_taken: '"%{path}" est déjà utilisé par un autre travail ou une autre collection.'
|
|
46
|
+
blank: Un chemin de redirection ne peut pas être vide.
|
|
47
|
+
intra_record_duplicate: '"%{path}" est listé plusieurs fois dans cet enregistrement.'
|
|
48
|
+
invalid_format: '"%{path}" n''est pas un chemin valide. Les chemins doivent commencer par "/" et ne pas contenir d''espaces, "?" ou "#".'
|
|
49
|
+
multiple_display_url: Au plus une entrée de redirection peut être marquée comme URL d'affichage.
|
|
50
|
+
reserved_prefix: '"%{path}" ne peut pas être utilisé. Le chemin est réservé par l''application et ne peut pas être utilisé comme alias.'
|
|
44
51
|
helpers:
|
|
45
52
|
action:
|
|
46
53
|
accept: Acceptez
|
|
@@ -55,6 +62,11 @@ fr:
|
|
|
55
62
|
new: Ajouter une nouvelle collection
|
|
56
63
|
delete: Effacer
|
|
57
64
|
edit: modifier
|
|
65
|
+
hyrax_metadata_profile:
|
|
66
|
+
hint: L'importation d'un nouveau profil écrasera le profil existant
|
|
67
|
+
import: Importer un profil de métadonnées
|
|
68
|
+
import_metadata_profile: Profil d'importation
|
|
69
|
+
submit: Importer
|
|
58
70
|
less: Moins
|
|
59
71
|
more: Plus
|
|
60
72
|
refresh: Rafraîchir
|
|
@@ -94,6 +106,7 @@ fr:
|
|
|
94
106
|
note: Les utilisateurs auxquels un nouveau rôle est attribué n'acquièrent un rôle que sur les œuvres déposées après l'attribution de ce rôle.
|
|
95
107
|
permission_destroy_errors:
|
|
96
108
|
admin_group: Le groupe des administrateurs du référentiel ne peut pas être supprimé
|
|
109
|
+
participants: Les droits de participant de l'ensemble d'administration n'ont pas pu être supprimés.
|
|
97
110
|
permission_update_errors:
|
|
98
111
|
error: Option de mise à jour non valide pour le modèle d'autorisation.
|
|
99
112
|
no_date: Une date est requise pour l'option de publication sélectionnée.
|
|
@@ -139,9 +152,9 @@ fr:
|
|
|
139
152
|
title: Les spectateurs
|
|
140
153
|
type: Type
|
|
141
154
|
form_participants:
|
|
142
|
-
add_group:
|
|
155
|
+
add_group: "Ajouter un groupe:"
|
|
143
156
|
add_participants: Ajouter des participants
|
|
144
|
-
add_user:
|
|
157
|
+
add_user: "Ajouter un utilisateur:"
|
|
145
158
|
current_participants: Participants actuels
|
|
146
159
|
form_visibility:
|
|
147
160
|
cancel: Annuler
|
|
@@ -154,16 +167,16 @@ fr:
|
|
|
154
167
|
varies:
|
|
155
168
|
any: Permettre au déposant de décider
|
|
156
169
|
between: Entre «maintenant» et
|
|
157
|
-
description:
|
|
170
|
+
description: "Variable - les déposants peuvent définir la date de sortie pour un travail individuel:"
|
|
158
171
|
embargo:
|
|
159
172
|
1yr: 1 an après le dépôt
|
|
160
173
|
2yrs: 2 ans après le dépôt
|
|
161
174
|
3yrs: 3 ans après le dépôt
|
|
162
175
|
6mos: 6 mois après le dépôt
|
|
163
176
|
select: Sélectionnez la période d'embargo ...
|
|
164
|
-
period:
|
|
177
|
+
period: "Le déposant peut choisir la période d'embargo jusqu'à:"
|
|
165
178
|
visibility:
|
|
166
|
-
description:
|
|
179
|
+
description: "Après sa date de sortie, les travaux de cet ensemble peuvent être découverts et téléchargés par:"
|
|
167
180
|
everyone: Tout le monde - tout fonctionne dans cet ensemble sera public
|
|
168
181
|
institution: Institution - tous les travaux seront visibles uniquement pour les utilisateurs authentifiés de cette institution
|
|
169
182
|
restricted: Restriction - tous les travaux seront visibles uniquement pour les gestionnaires de référentiel et les gestionnaires et les examinateurs de cet ensemble administratif
|
|
@@ -246,6 +259,48 @@ fr:
|
|
|
246
259
|
reset_date_range: Réinitialiser la plage de dates
|
|
247
260
|
set_date_range: Définir la plage de dates du rapport
|
|
248
261
|
start_date: Date de début
|
|
262
|
+
errors:
|
|
263
|
+
authentication:
|
|
264
|
+
documentation_url: https://samvera.atlassian.net/wiki/spaces/hyku/pages/3185147970/Google+Analytics+4+GA4+Support
|
|
265
|
+
message: Un problème est survenu lors de l'authentification avec Google Analytics. Veuillez vérifier vos identifiants.
|
|
266
|
+
title: Erreur d'authentification
|
|
267
|
+
troubleshooting_steps:
|
|
268
|
+
- Assurez-vous que votre fichier d'informations d'identification « google-analytics.json » (ou équivalent) est correctement formaté et contient des informations valides.
|
|
269
|
+
- Vérifiez que le compte de service est activé dans votre projet Google Cloud.
|
|
270
|
+
documentation_html: Pour plus d'informations, consultez la <a href='%{url}' target='_blank' rel='noopener noreferrer'>documentation</a> .
|
|
271
|
+
general:
|
|
272
|
+
documentation_url: https://samvera.atlassian.net/wiki/spaces/hyku/pages/3185147970/Google+Analytics+4+GA4+Support
|
|
273
|
+
message: Il y a un problème avec la configuration de Google Analytics qui nécessite l'attention de l'administrateur.
|
|
274
|
+
title: Problème de configuration d'analyse
|
|
275
|
+
troubleshooting_steps:
|
|
276
|
+
- Contactez votre administrateur système pour vérifier la configuration de Google Analytics
|
|
277
|
+
- Vérifiez que les informations d'identification du compte de service sont correctement configurées
|
|
278
|
+
- Assurez-vous que la propriété Google Analytics est correctement configurée
|
|
279
|
+
invalid_property:
|
|
280
|
+
documentation_url: https://samvera.atlassian.net/wiki/spaces/hyku/pages/3185147970/Google+Analytics+4+GA4+Support
|
|
281
|
+
message: L'identifiant de propriété Google Analytics n'est pas valide. Un identifiant de propriété numérique est requis pour Google Analytics 4.
|
|
282
|
+
title: ID de propriété non valide
|
|
283
|
+
troubleshooting_steps:
|
|
284
|
+
- Vérifiez vos paramètres Google Analytics 4 et assurez-vous que vous utilisez l'ID de propriété numérique, et non l'ID de mesure (qui commence par « G- »).
|
|
285
|
+
- Vérifiez que l’ID de propriété est correctement configuré dans les paramètres de votre application.
|
|
286
|
+
permission:
|
|
287
|
+
documentation_url: https://samvera.atlassian.net/wiki/spaces/hyku/pages/3185147970/Google+Analytics+4+GA4+Support
|
|
288
|
+
message: Le système ne peut pas accéder à vos données Google Analytics. Cela signifie généralement que l'adresse e-mail du compte de service doit avoir accès à votre propriété Google Analytics.
|
|
289
|
+
title: Accès aux analyses requis
|
|
290
|
+
troubleshooting_steps:
|
|
291
|
+
- Dans votre compte Google Analytics, accédez à Admin → Compte → Gestion des accès au compte
|
|
292
|
+
- Cliquez sur le bouton « + » pour ajouter un nouvel utilisateur
|
|
293
|
+
- "Saisissez l'adresse e-mail du compte de service à partir de votre fichier d'informations d'identification (elle ressemble à : votre-compte-de-service@nom-du-projet.iam.gserviceaccount.com)"
|
|
294
|
+
- Définissez le rôle sur « Spectateur » et cliquez sur « Ajouter »
|
|
295
|
+
- Attendez quelques minutes que les modifications prennent effet, puis actualisez cette page
|
|
296
|
+
quota_exceeded:
|
|
297
|
+
documentation_url: https://developers.google.com/analytics/devguides/reporting/data/v1/limits-quotas
|
|
298
|
+
message: Le taux de requêtes de l'API Google Analytics a été dépassé. Veuillez réessayer ultérieurement.
|
|
299
|
+
title: Quota dépassé
|
|
300
|
+
troubleshooting_steps:
|
|
301
|
+
- Consultez les limites de quota de l’API Google Analytics et votre utilisation.
|
|
302
|
+
- Envisagez de mettre en œuvre des stratégies de backoff pour les requêtes API si vous effectuez de nombreuses requêtes sur une courte période.
|
|
303
|
+
troubleshooting_steps: Étapes de dépannage
|
|
249
304
|
work_reports:
|
|
250
305
|
custom_range:
|
|
251
306
|
date_range_heading: Personnaliser la plage de dates
|
|
@@ -368,7 +423,7 @@ fr:
|
|
|
368
423
|
update_notice: Participants mis à jour
|
|
369
424
|
form_settings:
|
|
370
425
|
instructions: Ces paramètres déterminent comment les collections de ce type peuvent être gérées et découvertes.
|
|
371
|
-
warning:
|
|
426
|
+
warning: "Avertissement: ces paramètres ne peuvent pas être modifiés après la création d'une collection de ce type."
|
|
372
427
|
index:
|
|
373
428
|
breadcrumb: Types de collection
|
|
374
429
|
create_new_button: Créer un nouveau type de collection
|
|
@@ -386,7 +441,7 @@ fr:
|
|
|
386
441
|
actions: actes
|
|
387
442
|
name: prénom
|
|
388
443
|
multiple_membership_checker:
|
|
389
|
-
error_preamble:
|
|
444
|
+
error_preamble: "Erreur: vous avez spécifié plusieurs des mêmes types de collection de membres uniques"
|
|
390
445
|
error_type_and_collections: "(type: %{type}, collections: %{collections})"
|
|
391
446
|
new:
|
|
392
447
|
header: Créer un nouveau type de collection
|
|
@@ -410,6 +465,7 @@ fr:
|
|
|
410
465
|
content_blocks: Blocs de contenu
|
|
411
466
|
dashboard: Tableau de bord
|
|
412
467
|
delete_all: Supprimer tout
|
|
468
|
+
metadata_profiles: Profils de métadonnées
|
|
413
469
|
notifications: Notifications
|
|
414
470
|
pages: Pages
|
|
415
471
|
profile: Profil
|
|
@@ -429,7 +485,7 @@ fr:
|
|
|
429
485
|
stats:
|
|
430
486
|
deposited_form:
|
|
431
487
|
end_label: Fin [par défaut pour maintenant]
|
|
432
|
-
heading:
|
|
488
|
+
heading: "Afficher les fichiers déposés:"
|
|
433
489
|
start_label: Début
|
|
434
490
|
repository_objects:
|
|
435
491
|
series:
|
|
@@ -440,14 +496,14 @@ fr:
|
|
|
440
496
|
end_label: Terminer [par défaut pour le moment]
|
|
441
497
|
headers:
|
|
442
498
|
main: Statistiques de travail
|
|
443
|
-
total:
|
|
499
|
+
total: "Total des travaux :"
|
|
444
500
|
visibility: Totaux par visibilité
|
|
445
501
|
heading: Afficher les fichiers déposés par les utilisateurs
|
|
446
502
|
start_label: Départ
|
|
447
503
|
works:
|
|
448
504
|
headers:
|
|
449
505
|
main: Statistiques du travail
|
|
450
|
-
total:
|
|
506
|
+
total: "Total des travaux:"
|
|
451
507
|
visibility: Totaux par visibilité
|
|
452
508
|
users:
|
|
453
509
|
index:
|
|
@@ -473,9 +529,17 @@ fr:
|
|
|
473
529
|
workflows:
|
|
474
530
|
index:
|
|
475
531
|
header: Soumissions de révision
|
|
532
|
+
heading:
|
|
533
|
+
depositor: Déposant
|
|
534
|
+
status: statut
|
|
535
|
+
submission_date: Date de soumission
|
|
536
|
+
work: Travail
|
|
476
537
|
tabs:
|
|
477
538
|
published: Publié
|
|
478
539
|
under_review: À l'étude
|
|
540
|
+
works_listing: Liste des travaux
|
|
541
|
+
works_published: "<strong>%{total_count} œuvres</strong> publiées"
|
|
542
|
+
works_under_review: "<strong>%{total_count} travaux</strong> en cours d'examen"
|
|
479
543
|
api:
|
|
480
544
|
accepted:
|
|
481
545
|
default: Votre demande a été acceptée pour traitement, mais le traitement n'est pas complet. Consultez le travail pour plus d'informations.
|
|
@@ -495,7 +559,7 @@ fr:
|
|
|
495
559
|
default: Vous devez être connecté pour faire cela!
|
|
496
560
|
unprocessable_entity:
|
|
497
561
|
default: La ressource que vous avez tenté de modifier ne peut pas être modifiée selon votre demande.
|
|
498
|
-
background_attribution_html:
|
|
562
|
+
background_attribution_html: ""
|
|
499
563
|
base:
|
|
500
564
|
attributes:
|
|
501
565
|
table_attribute_name: Nom d'attribut
|
|
@@ -505,13 +569,14 @@ fr:
|
|
|
505
569
|
citations:
|
|
506
570
|
citations: Citations
|
|
507
571
|
endnote: EndNote
|
|
508
|
-
header:
|
|
572
|
+
header: "Citations:"
|
|
509
573
|
mendeley: Mendeley
|
|
510
574
|
zotero: Zotero
|
|
511
575
|
currently_shared:
|
|
512
576
|
currently_sharing: Actuellement partagé avec
|
|
513
577
|
table_title_access: Niveau d'accès
|
|
514
578
|
table_title_user: Personne / Groupe
|
|
579
|
+
table_title_action: Action
|
|
515
580
|
file_manager:
|
|
516
581
|
back_to: Revenir à
|
|
517
582
|
toolbar: Outils
|
|
@@ -590,6 +655,11 @@ fr:
|
|
|
590
655
|
help_html: Sélectionnez le fichier avec le média qui représente ce travail.
|
|
591
656
|
legend_html: Médias représentatifs
|
|
592
657
|
form_share:
|
|
658
|
+
access_options:
|
|
659
|
+
creator: Créateur
|
|
660
|
+
depositor: Déposant
|
|
661
|
+
manager: Directeur
|
|
662
|
+
viewer: Téléspectateur
|
|
593
663
|
access_type_to_grant: Type d'accès à accorder
|
|
594
664
|
account_label_without_suffix: "%{account_label} (sans la partie %{suffix})"
|
|
595
665
|
add_sharing: Ajouter un partage
|
|
@@ -604,8 +674,8 @@ fr:
|
|
|
604
674
|
help_html: Sélectionnez le fichier à utiliser comme vignette pour ce travail.
|
|
605
675
|
legend_html: La vignette
|
|
606
676
|
form_visibility_component:
|
|
677
|
+
subtitle_html: "<small>Qui devrait être en mesure d’afficher ou de télécharger ce contenu?</small>"
|
|
607
678
|
visibility: Visibilité
|
|
608
|
-
subtitle_html: <small>Qui devrait être en mesure d’afficher ou de télécharger ce contenu?</small>
|
|
609
679
|
inspect_work:
|
|
610
680
|
back_to: Retour à
|
|
611
681
|
entity_id: ID d'entité
|
|
@@ -634,7 +704,7 @@ fr:
|
|
|
634
704
|
empty: Ce %{type} ne se trouve actuellement dans aucune collection.
|
|
635
705
|
header: Des relations
|
|
636
706
|
relationships_parent_row:
|
|
637
|
-
label:
|
|
707
|
+
label: "Dans %{type}:"
|
|
638
708
|
share_with:
|
|
639
709
|
definition_heading: Définitions d'autorisation
|
|
640
710
|
definitions_html: "<strong>Afficher / Télécharger:</strong> ce fichier (contenu et métadonnées) est accessible depuis %{application_name}. <br /> <strong>Edit:</strong> ce fichier (contenu et métadonnées) peut être modifié. Vous ne pouvez accorder cette autorisation qu'aux utilisateurs et / ou groupes de %{institution_name}."
|
|
@@ -661,7 +731,7 @@ fr:
|
|
|
661
731
|
twitter: Gazouillement
|
|
662
732
|
twitter_share: Partager sur Twitter
|
|
663
733
|
unauthorized:
|
|
664
|
-
id:
|
|
734
|
+
id: "ID: %{id}"
|
|
665
735
|
is_private: Le %{type} auquel vous avez essayé d'accéder est privé
|
|
666
736
|
page_is_private: La page à laquelle vous avez essayé d'accéder est privée
|
|
667
737
|
unauthorized: Non autorisé
|
|
@@ -696,11 +766,11 @@ fr:
|
|
|
696
766
|
button_label: Supprimer la sélection
|
|
697
767
|
deleting_file_from: La suppression d'un fichier de %{application_name} est permanente. Cliquez sur OK pour supprimer ce fichier de %{application_name} ou sur Annuler pour annuler cette opération.
|
|
698
768
|
edit:
|
|
699
|
-
apply_changes_to:
|
|
769
|
+
apply_changes_to: "Les modifications seront appliquées à: (%{x_number_of} fonctionne)"
|
|
700
770
|
batch_edit_descriptions: Modifier les descriptions par lots & nbsp; & nbsp; & nbsp; <small> Cliquez sur les étiquettes ci-dessous pour modifier les descriptions de travail. </ Small>
|
|
701
771
|
clear_batch: Lot clair
|
|
702
772
|
descriptions: Descriptions
|
|
703
|
-
descriptions_title:
|
|
773
|
+
descriptions_title: "Descriptions:"
|
|
704
774
|
permissions: Les permissions
|
|
705
775
|
sharing: Partage
|
|
706
776
|
visibility: Visibilité
|
|
@@ -770,7 +840,7 @@ fr:
|
|
|
770
840
|
create: Créer une collection
|
|
771
841
|
create_new: Ajouter à la nouvelle collection
|
|
772
842
|
no_collections: Vous n'avez accès à aucune collection existante. Vous pouvez créer une nouvelle collection.
|
|
773
|
-
select_heading:
|
|
843
|
+
select_heading: "Sélectionnez la collection pour ajouter vos fichiers à:"
|
|
774
844
|
title: Ajouter à la collection
|
|
775
845
|
update: Mise à jour de la collection
|
|
776
846
|
collection_type:
|
|
@@ -799,7 +869,7 @@ fr:
|
|
|
799
869
|
works_in_collection: Fonctionne dans cette collection
|
|
800
870
|
sort_and_per_page:
|
|
801
871
|
number_of_results_to_display_per_page: Nombre de résultats à afficher par page
|
|
802
|
-
results_per_page:
|
|
872
|
+
results_per_page: "Résultats par page:"
|
|
803
873
|
sort_by_html: "<span>Trier par:</span>"
|
|
804
874
|
contact_form:
|
|
805
875
|
button_label: Envoyer
|
|
@@ -830,6 +900,9 @@ fr:
|
|
|
830
900
|
contact: Contact
|
|
831
901
|
help: Aidez-moi
|
|
832
902
|
home: Accueil
|
|
903
|
+
copy_permalink:
|
|
904
|
+
button: Copier le lien permanent
|
|
905
|
+
success: Copié !
|
|
833
906
|
dashboard:
|
|
834
907
|
additional_notifications: Voir toutes les notifications
|
|
835
908
|
admin_sets:
|
|
@@ -853,11 +926,12 @@ fr:
|
|
|
853
926
|
collections:
|
|
854
927
|
collection_title: Titre de la collection
|
|
855
928
|
edit:
|
|
856
|
-
header:
|
|
929
|
+
header: "Modifier la collection: %{title}"
|
|
857
930
|
files: Des dossiers
|
|
858
931
|
form:
|
|
859
932
|
permission_update_errors:
|
|
860
933
|
error: Option de mise à jour non valide pour le modèle d'autorisation.
|
|
934
|
+
sharing: Les options de partage de la collection n'ont pas pu être mises à jour.
|
|
861
935
|
permission_update_notices:
|
|
862
936
|
participants: Les options de partage de la collection ont été mises à jour.
|
|
863
937
|
sharing: Les options de partage de la collection ont été mises à jour.
|
|
@@ -868,7 +942,7 @@ fr:
|
|
|
868
942
|
relationships: Des relations
|
|
869
943
|
sharing: Partage
|
|
870
944
|
form_branding:
|
|
871
|
-
alt_text:
|
|
945
|
+
alt_text: "Texte alternatif:"
|
|
872
946
|
banner:
|
|
873
947
|
description: Une image à afficher en haut de la page de collection. Pour de meilleurs résultats, téléchargez une image (JPG, GIF ou PNG) d'une hauteur d'au moins 120 pixels et d'une largeur de 1200 pixels.
|
|
874
948
|
label: Bannière
|
|
@@ -976,12 +1050,12 @@ fr:
|
|
|
976
1050
|
show_document_list_menu:
|
|
977
1051
|
select: Sélectionner
|
|
978
1052
|
show_document_list_row:
|
|
979
|
-
creator:
|
|
980
|
-
depositor:
|
|
981
|
-
edit_access:
|
|
1053
|
+
creator: "Créateur:"
|
|
1054
|
+
depositor: "Déposant:"
|
|
1055
|
+
edit_access: "Modifier l'accès:"
|
|
982
1056
|
sort_and_per_page:
|
|
983
1057
|
show_par_page_html: Afficher %{select} collections par page
|
|
984
|
-
sort_by:
|
|
1058
|
+
sort_by: "Trier par:"
|
|
985
1059
|
title: Collections
|
|
986
1060
|
work_action_menu:
|
|
987
1061
|
delete_work: Supprimer le travail
|
|
@@ -998,11 +1072,13 @@ fr:
|
|
|
998
1072
|
heading_actions:
|
|
999
1073
|
close: Fermer
|
|
1000
1074
|
create_work: Créer un travail
|
|
1075
|
+
select_admin_set: Dépôt dans l'ensemble d'administration
|
|
1001
1076
|
select_type_of_work: Sélectionnez le type de travail
|
|
1002
1077
|
manage_proxies: Gérer les procurations
|
|
1003
1078
|
managed:
|
|
1004
1079
|
collections: Collections gérées
|
|
1005
1080
|
works: Travaux gérés
|
|
1081
|
+
metadata_profiles: Profils de métadonnées
|
|
1006
1082
|
my:
|
|
1007
1083
|
action:
|
|
1008
1084
|
add_to_collection: Ajouter à la collection
|
|
@@ -1042,21 +1118,21 @@ fr:
|
|
|
1042
1118
|
view_collection: Afficher la collection
|
|
1043
1119
|
work_confirmation: Supprimer un travail de %{application_name} est permanent. Cliquez sur OK pour supprimer ce travail de %{application_name} ou sur Annuler pour annuler cette opération
|
|
1044
1120
|
collection_list:
|
|
1045
|
-
description:
|
|
1046
|
-
edit_access:
|
|
1047
|
-
groups:
|
|
1121
|
+
description: "La description:"
|
|
1122
|
+
edit_access: "Modifier l'accès:"
|
|
1123
|
+
groups: "Groupes:"
|
|
1048
1124
|
managed_access:
|
|
1049
1125
|
deposit: Dépôt
|
|
1050
1126
|
manage: Gérer
|
|
1051
1127
|
view: Vue
|
|
1052
|
-
users:
|
|
1128
|
+
users: "Utilisateurs:"
|
|
1053
1129
|
collections: Vos collections
|
|
1054
1130
|
collections_report: Rapport de recouvrement
|
|
1055
1131
|
facet_label:
|
|
1056
|
-
collections:
|
|
1057
|
-
highlighted:
|
|
1058
|
-
shared:
|
|
1059
|
-
works:
|
|
1132
|
+
collections: "Collections de filtre:"
|
|
1133
|
+
highlighted: "Faits saillants du filtre:"
|
|
1134
|
+
shared: "Filtrer les actions:"
|
|
1135
|
+
works: "Le filtre fonctionne:"
|
|
1060
1136
|
heading:
|
|
1061
1137
|
access: Accès
|
|
1062
1138
|
action: Actes
|
|
@@ -1069,6 +1145,7 @@ fr:
|
|
|
1069
1145
|
highlighted: Souligné
|
|
1070
1146
|
items: Articles
|
|
1071
1147
|
last_modified: Dernière modification
|
|
1148
|
+
profile_version: Version du profil
|
|
1072
1149
|
title: Titre
|
|
1073
1150
|
type: Type
|
|
1074
1151
|
visibility: Visibilité
|
|
@@ -1145,6 +1222,7 @@ fr:
|
|
|
1145
1222
|
files: Fichiers déposés
|
|
1146
1223
|
heading: Vos statistiques
|
|
1147
1224
|
joined_on: Créé le
|
|
1225
|
+
work_views: Vue des métadonnées
|
|
1148
1226
|
works: Travaux créés
|
|
1149
1227
|
tabs:
|
|
1150
1228
|
admin_sets: Ensembles d'administrateurs
|
|
@@ -1266,6 +1344,11 @@ fr:
|
|
|
1266
1344
|
cancel: Annuler
|
|
1267
1345
|
save: sauvegarder
|
|
1268
1346
|
title: Titre
|
|
1347
|
+
valkyrie_form:
|
|
1348
|
+
attach_to: Joindre à %{parent}
|
|
1349
|
+
cancel: Annuler
|
|
1350
|
+
save: sauvegarder
|
|
1351
|
+
title: Titre
|
|
1269
1352
|
groups_description:
|
|
1270
1353
|
description_html: La liste des groupes dans le menu déroulant intitulé «Sélectionner un groupe» est une liste des groupes gérés par l'utilisateur dont vous êtes membre. Vous pouvez sélectionner un groupe spécifique et attribuer un niveau d'accès pour un fichier dans %{application_name}, de même que l'ajout de niveaux d'accès utilisateur.
|
|
1271
1354
|
permission:
|
|
@@ -1304,6 +1387,8 @@ fr:
|
|
|
1304
1387
|
file_details: Description du fichier
|
|
1305
1388
|
fixity_check: Vérification de la fixité
|
|
1306
1389
|
not_yet_characterized: Pas encore caractérisé
|
|
1390
|
+
metadata:
|
|
1391
|
+
metadata: Métadonnées
|
|
1307
1392
|
versioning:
|
|
1308
1393
|
choose_file: Choisissez un nouveau fichier de version
|
|
1309
1394
|
current: Version actuelle
|
|
@@ -1317,6 +1402,18 @@ fr:
|
|
|
1317
1402
|
save: Enregistrer la révision
|
|
1318
1403
|
save_your_note: Vous devez cliquer sur "Enregistrer la révision". pour revenir à une version précédente de ce fichier
|
|
1319
1404
|
upload: Télécharger une nouvelle version
|
|
1405
|
+
flexible_schema_validators:
|
|
1406
|
+
redirects_validator:
|
|
1407
|
+
errors:
|
|
1408
|
+
invalid_available_on: "la propriété `redirects` du profil m3 doit être disponible sur au moins une classe d'œuvre ou de collection déclarée dans ce profil"
|
|
1409
|
+
invalid_type: "la propriété `redirects` du profil m3 doit déclarer `type: hash` (reçu `%{actual_type}`)"
|
|
1410
|
+
property_required: "le profil m3 doit déclarer une propriété `redirects` lorsque la fonctionnalité de redirections est activée"
|
|
1411
|
+
warnings:
|
|
1412
|
+
config_disabled: "le profil m3 déclare une propriété `redirects` mais Hyrax.config.redirects_enabled? est false ; la propriété sera ignorée"
|
|
1413
|
+
flipflop_disabled: "le profil m3 déclare une propriété `redirects` mais l'indicateur de fonctionnalité :redirects est désactivé ; la propriété sera ignorée"
|
|
1414
|
+
sort_properties_validator:
|
|
1415
|
+
warnings:
|
|
1416
|
+
message: "%{property} doit être défini sur %{classes} pour permettre le tri sur cette propriété, à moins que vous n'ayez indexé %{property}_ssi sur un autre champ."
|
|
1320
1417
|
help:
|
|
1321
1418
|
header: Support utilisateur
|
|
1322
1419
|
override_text: Utilisez application / views / static / help.html.erb pour remplacer ce fichier.
|
|
@@ -1354,8 +1451,8 @@ fr:
|
|
|
1354
1451
|
tab_label: Chargé récemment
|
|
1355
1452
|
title: Chargé récemment
|
|
1356
1453
|
icons:
|
|
1357
|
-
collection:
|
|
1358
|
-
default:
|
|
1454
|
+
collection: fa fa-cubes
|
|
1455
|
+
default: fa fa-cube
|
|
1359
1456
|
leases:
|
|
1360
1457
|
edit:
|
|
1361
1458
|
header:
|
|
@@ -1433,7 +1530,7 @@ fr:
|
|
|
1433
1530
|
change_tab_message: Êtes-vous sûr de vouloir quitter cet onglet? Toutes les données non enregistrées seront perdues.
|
|
1434
1531
|
notifications:
|
|
1435
1532
|
batch_create_failure:
|
|
1436
|
-
message:
|
|
1533
|
+
message: "La création par lots pour %{user} a échoué: %{messages}"
|
|
1437
1534
|
subject: Lot échouant créer
|
|
1438
1535
|
batch_create_success:
|
|
1439
1536
|
message: Le lot créé pour %{user} a été transmis.
|
|
@@ -1449,7 +1546,7 @@ fr:
|
|
|
1449
1546
|
subject: Demande de changement de propriété
|
|
1450
1547
|
transfer_link_label: les demandes de transfert
|
|
1451
1548
|
transfer_on_update:
|
|
1452
|
-
comments:
|
|
1549
|
+
comments: "Commentaires: %{receiver_comment}"
|
|
1453
1550
|
message: Votre demande de transfert était %{status}.
|
|
1454
1551
|
subject: Changement de propriété %{status}
|
|
1455
1552
|
validation:
|
|
@@ -1496,6 +1593,7 @@ fr:
|
|
|
1496
1593
|
owner:
|
|
1497
1594
|
edit: Modifier l'accès
|
|
1498
1595
|
read: Voir le téléchargement
|
|
1596
|
+
read_only: Le référentiel est en mode lecture seule pour la maintenance. Aucune soumission ou modification ne peut être effectuée pour le moment.
|
|
1499
1597
|
search:
|
|
1500
1598
|
button:
|
|
1501
1599
|
html: <span class="fa fa-search"></span> Aller
|
|
@@ -1548,6 +1646,8 @@ fr:
|
|
|
1548
1646
|
link_expired_not_found: Lien à usage unique expiré ou introuvable
|
|
1549
1647
|
link_not_found: Lien à usage unique introuvable
|
|
1550
1648
|
sort_label: Trier la liste des articles
|
|
1649
|
+
sr:
|
|
1650
|
+
thumbnail: image représentative par défaut
|
|
1551
1651
|
static:
|
|
1552
1652
|
mendeley:
|
|
1553
1653
|
contact_form: Formulaire de contact
|
|
@@ -1643,9 +1743,9 @@ fr:
|
|
|
1643
1743
|
set_all_to_this_resource_type: Définir tout pour ce type de ressource
|
|
1644
1744
|
start: Début
|
|
1645
1745
|
js_templates_branding:
|
|
1646
|
-
alt_text:
|
|
1746
|
+
alt_text: "Texte alternatif:"
|
|
1647
1747
|
error: Erreur
|
|
1648
|
-
link_url:
|
|
1748
|
+
link_url: "URL du lien:"
|
|
1649
1749
|
previous: précédent
|
|
1650
1750
|
remove: Retirer
|
|
1651
1751
|
remove_new_banner: Supprimer la nouvelle bannière
|
|
@@ -1694,6 +1794,8 @@ fr:
|
|
|
1694
1794
|
search_form:
|
|
1695
1795
|
go: Aller
|
|
1696
1796
|
search_users: Rechercher des utilisateurs
|
|
1797
|
+
virus_scanner:
|
|
1798
|
+
virus_detected: Virus détecté dans %{filename}. Le fichier n'a pas été enregistré.
|
|
1697
1799
|
visibility:
|
|
1698
1800
|
authenticated:
|
|
1699
1801
|
note_html: Limiter l'accès aux utilisateurs et / ou groupes exclus de %{institution}
|
|
@@ -1713,13 +1815,15 @@ fr:
|
|
|
1713
1815
|
note_html: Seuls les utilisateurs et / ou les groupes ayant reçu un accès spécifique dans la section "Partager avec".
|
|
1714
1816
|
text: Privé
|
|
1715
1817
|
restricted_title_attr: Modifier la visibilité de cette ressource
|
|
1818
|
+
unknown:
|
|
1819
|
+
text: Inconnu
|
|
1716
1820
|
work_button_row:
|
|
1717
1821
|
attach_child: Attacher l'enfant
|
|
1718
1822
|
workflow:
|
|
1719
1823
|
default:
|
|
1720
1824
|
deposit: Dépôt
|
|
1721
1825
|
load:
|
|
1722
|
-
state_error:
|
|
1826
|
+
state_error: "Le flux de travail: %{workflow_name} n'a pas été mis à jour. Vous supprimez un état: %{state_name} avec %{entity_count} entity / s. Un état peut ne pas être supprimé s'il possède des entités actives!"
|
|
1723
1827
|
unauthorized: Le travail n'est actuellement pas disponible car il n'a pas encore terminé le processus d'approbation
|
|
1724
1828
|
unauthorized_parent: Le fichier n'est actuellement pas disponible car son travail parent n'a pas encore terminé le processus d'approbation
|
|
1725
1829
|
works:
|
|
@@ -1734,6 +1838,26 @@ fr:
|
|
|
1734
1838
|
in_collections: Collections
|
|
1735
1839
|
in_other_works: Ce travail dans d'autres ouvrages
|
|
1736
1840
|
in_this_work: Autres travaux dans ce travail
|
|
1841
|
+
redirects:
|
|
1842
|
+
add_label: Ajouter un autre alias
|
|
1843
|
+
caption: Liste des alias d'URL pour cette ressource
|
|
1844
|
+
display_url:
|
|
1845
|
+
help_html: Marquer éventuellement un alias comme <em>URL d'affichage</em>. Lorsqu'il est défini, l'URL UUID permanente de l'enregistrement redirige vers l'alias choisi. Laisser "Aucun" pour conserver l'URL UUID comme destination.
|
|
1846
|
+
none_label: Aucun (utiliser l'URL UUID de l'enregistrement)
|
|
1847
|
+
row_label: 'Utiliser "%{path}" comme URL d''affichage'
|
|
1848
|
+
errors_heading: Veuillez corriger les erreurs d'alias suivantes
|
|
1849
|
+
header:
|
|
1850
|
+
actions: Actions
|
|
1851
|
+
display_url: URL d'affichage
|
|
1852
|
+
path: Chemin
|
|
1853
|
+
heading: Alias d'URL
|
|
1854
|
+
help_html: 'Enregistrez les anciens chemins d''URL qui devraient rediriger vers cet enregistrement. Chaque chemin sera résolu depuis la racine de ce site. Les routes Hyrax réservées (par exemple, <code>/concern</code>, <code>/dashboard</code>) ne peuvent pas être utilisées.'
|
|
1855
|
+
new_path_label: Nouveau chemin d'alias
|
|
1856
|
+
path_label: Chemin d'alias
|
|
1857
|
+
placeholder:
|
|
1858
|
+
path: Entrez un ancien chemin...
|
|
1859
|
+
remove_label: Supprimer
|
|
1860
|
+
remove_with_path_label: 'Supprimer %{path}'
|
|
1737
1861
|
tab:
|
|
1738
1862
|
files: Des dossiers
|
|
1739
1863
|
metadata: Descriptions
|
|
@@ -1778,7 +1902,7 @@ fr:
|
|
|
1778
1902
|
require_membership: Une oeuvre doit appartenir à au moins une collection de ce type
|
|
1779
1903
|
sharable: Autoriser les utilisateurs à affecter des gestionnaires de collection, des déposants et des lecteurs aux collections qu'ils gèrent
|
|
1780
1904
|
share_applies_to_new_works: Lorsque de nouveaux travaux sont créés directement dans la collection, accordez aux utilisateurs et aux groupes des autorisations de partage pour le nouveau travail en fonction de leurs rôles de collection.
|
|
1781
|
-
title:
|
|
1905
|
+
title: ""
|
|
1782
1906
|
defaults:
|
|
1783
1907
|
abstract: Un bref résumé d'un article de recherche, d'une thèse, d'un compte rendu, d'une procédure de conférence ou de toute analyse approfondie d'un sujet particulier.
|
|
1784
1908
|
access_right: Contient des informations sur les personnes pouvant accéder à la ressource ou une indication de son statut de sécurité.
|