diff --git a/app/controllers/catalog_controller.rb b/app/controllers/catalog_controller.rb
index 553da3cb..16144509 100644
--- a/app/controllers/catalog_controller.rb
+++ b/app/controllers/catalog_controller.rb
@@ -74,6 +74,7 @@ def self.modified_field
config.add_facet_field 'contributor_sim', label: 'Contributor', limit: 5
config.add_facet_field 'keyword_sim', limit: 5, label: 'Keyword'
config.add_facet_field 'subject_sim', limit: 5, label: 'Subject'
+ config.add_facet_field 'location_sim', limit: 5, label: 'Location'
config.add_facet_field 'language_sim', limit: 5, label: 'Language'
config.add_facet_field 'publisher_sim', limit: 5, label: 'Publisher'
config.add_facet_field 'date_created_sim', limit: 5, label: 'Date Created'
@@ -88,7 +89,7 @@ def self.modified_field
config.add_facet_field 'event_title_sim', limit: 5, label: 'Event Title'
config.add_facet_field 'event_date_sim', limit: 5, label: 'Event Date'
config.add_facet_field 'institution_sim', limit: 5, label: 'Host Institution'
- config.add_facet_field 'location_sim', limit: 5, label: 'Location'
+
# config.add_facet_field 'based_near_label_sim', limit: 5
# Have BL send all facet field names to Solr, which has been the default
diff --git a/app/forms/hyrax/etd_form.rb b/app/forms/hyrax/etd_form.rb
index ef7d9f29..1072134e 100644
--- a/app/forms/hyrax/etd_form.rb
+++ b/app/forms/hyrax/etd_form.rb
@@ -34,7 +34,7 @@ class EtdForm < Hyrax::Forms::WorkForm
types
]
- self.terms = %i[title alternative_title creator contributor description abstract
+ self.terms = %i[title location alternative_title creator contributor description abstract
keyword subject rights_statement publisher advisor
committee_member department date_created year resource_type
institution degree discipline degree_granting_institution types
@@ -45,7 +45,7 @@ class EtdForm < Hyrax::Forms::WorkForm
visibility_during_embargo embargo_release_date visibility_after_embargo
visibility_during_lease lease_expiration_date visibility_after_lease
visibility ordered_member_ids source in_works_ids
- member_of_collection_ids admin_set_id location]
+ member_of_collection_ids admin_set_id]
self.terms -= %i[
based_near
diff --git a/app/forms/hyrax/generic_work_form.rb b/app/forms/hyrax/generic_work_form.rb
index 15206362..239cc6b4 100644
--- a/app/forms/hyrax/generic_work_form.rb
+++ b/app/forms/hyrax/generic_work_form.rb
@@ -18,8 +18,8 @@ class GenericWorkForm < Hyrax::Forms::WorkForm
additional_rights_info
]
- self.terms = %i[title alternative_title creator contributor description abstract
- keyword subject rights_statement publisher date_created
+ self.terms = %i[title alternative_title creator date_created contributor description
+ abstract subject keyword location rights_statement publisher
resource_type institution types license language format
identifier based_near access_right rights_notes related_url
video_embed bibliographic_citation additional_rights_info
@@ -28,13 +28,12 @@ class GenericWorkForm < Hyrax::Forms::WorkForm
visibility_after_embargo
visibility_during_lease lease_expiration_date visibility_after_lease
visibility ordered_member_ids source in_works_ids
- member_of_collection_ids admin_set_id location]
+ member_of_collection_ids admin_set_id]
self.required_fields += %i[
title
creator
rights_statement
- date_created
resource_type
institution
types
diff --git a/app/forms/hyrax/image_form.rb b/app/forms/hyrax/image_form.rb
index ec794c21..f63c2ad2 100644
--- a/app/forms/hyrax/image_form.rb
+++ b/app/forms/hyrax/image_form.rb
@@ -16,10 +16,24 @@ class ImageForm < Hyrax::Forms::WorkForm
format
video_embed
location]
+ self.terms = %i[title alternative_title creator date_created contributor
+ description abstract subject keyword location extent rights_statement
+ publisher resource_type institution types license language format
+ identifier based_near access_right rights_notes related_url
+ video_embed bibliographic_citation additional_rights_info
+ representative_id thumbnail_id rendering_ids files
+ visibility_during_embargo embargo_release_date
+ visibility_after_embargo
+ visibility_during_lease lease_expiration_date visibility_after_lease
+ visibility ordered_member_ids source in_works_ids
+ member_of_collection_ids admin_set_id]
+
self.required_fields += %i[institution
- date_created
resource_type
types]
self.terms -= %i[based_near]
+ def primary_terms
+ super - %i[video_embed] + %i[license]
+ end
end
end
diff --git a/app/forms/hyrax/paper_or_report_form.rb b/app/forms/hyrax/paper_or_report_form.rb
index 0edfd21b..7f70d5a1 100644
--- a/app/forms/hyrax/paper_or_report_form.rb
+++ b/app/forms/hyrax/paper_or_report_form.rb
@@ -34,7 +34,7 @@ class PaperOrReportForm < Hyrax::Forms::WorkForm
types
]
- self.terms = %i[title alternative_title creator contributor description abstract
+ self.terms = %i[title location alternative_title creator contributor description abstract
keyword subject license rights_statement publisher date_created
resource_type institution types language format rights_holder
creator_orcid creator_institutional_relationship
@@ -48,7 +48,7 @@ class PaperOrReportForm < Hyrax::Forms::WorkForm
visibility_during_embargo embargo_release_date visibility_after_embargo
visibility_during_lease lease_expiration_date visibility_after_lease
visibility ordered_member_ids source in_works_ids
- member_of_collection_ids admin_set_id location]
+ member_of_collection_ids admin_set_id]
self.terms -= %i[
description
diff --git a/app/views/hyrax/base/_attribute_rows.html.erb b/app/views/hyrax/base/_attribute_rows.html.erb
index 76f92756..002f5fd9 100644
--- a/app/views/hyrax/base/_attribute_rows.html.erb
+++ b/app/views/hyrax/base/_attribute_rows.html.erb
@@ -11,6 +11,8 @@
<%= presenter.attribute_to_html(:date_created, render_as: :linked, html_dl: true, search_field: 'all_fields') %>
<%= presenter.attribute_to_html(:year, render_as: :linked, search_field: 'all_fields', html_dl: true) %>
<%= presenter.attribute_to_html(:subject, render_as: :faceted, html_dl: true) %>
+<%= presenter.attribute_to_html(:location, render_as: :faceted, html_dl: true) %>
+<%= presenter.attribute_to_html(:extent, html_dl: true) %>
<%= presenter.attribute_to_html(:language, render_as: :faceted, html_dl: true) %>
<%= presenter.attribute_to_html(:identifier, render_as: :linked, html_dl: true, search_field: 'all_fields') %>
<%= presenter.attribute_to_html(:related_url, render_as: :external_link, html_dl: true) %>
@@ -42,5 +44,3 @@
<%= presenter.attribute_to_html(:institution, render_as: :faceted, html_dl: true) %>
<%= presenter.attribute_to_html(:date_modified, label: t('hyrax.base.show.last_modified'), html_dl: true) %>
<%= presenter.attribute_to_html(:based_near_label, html_dl: true) %>
-<%= presenter.attribute_to_html(:extent, html_dl: true) %>
-<%= presenter.attribute_to_html(:location, render_as: :faceted, html_dl: true) %>
diff --git a/config/initializers/bulkrax.rb b/config/initializers/bulkrax.rb
index dc038542..3eaaa0b5 100644
--- a/config/initializers/bulkrax.rb
+++ b/config/initializers/bulkrax.rb
@@ -50,55 +50,56 @@
# config.field_mappings["Bulkrax::OaiDcParser"]["date"] = { from: ["date"], excluded: true }
default_field_mapping = {
- 'abstract' => { from: ['abstract'], split: ';' },
- 'access_right' => { from: ['access_rights'], split: ';' },
- 'additional_rights_info' => { from: ['additional_rights_info'], split: ';' },
- 'advisor' => { from: ['advisor'], split: ';' },
- 'alternative_title' => { from: ['alternative_title'], split: ';' },
- 'bibliographic_citation' => { from: ['bibliographic_citation'], split: ';' },
+ 'abstract' => { from: ['abstract'], split: /\s*[|]\s*/ },
+ 'access_right' => { from: ['access_rights'], split: /\s*[;|]\s*/ },
+ 'additional_rights_info' => { from: ['additional_rights_info'], split: /\s*[;|]\s*/ },
+ 'advisor' => { from: ['advisor'], split: /\s*[;|]\s*/ },
+ 'alternative_title' => { from: ['alternative_title'], split: /\s*[;|]\s*/ },
+ 'bibliographic_citation' => { from: ['bibliographic_citation'], split: /\s*[;|]\s*/ },
'children' => { from: ['children'], related_children_field_mapping: true },
- 'committee_member' => { from: ['committee_member'], split: ';' },
+ 'committee_member' => { from: ['committee_member'], split: /\s*[;|]\s*/ },
'contributor_institutional_relationship' => { from: ['contributor_institutional_relationship'] },
'contributor_orcid' => { from: ['contributor_orcid'] },
- 'contributor_role' => { from: ['contributor_role'], split: ';' },
+ 'contributor_role' => { from: ['contributor_role'], split: /\s*[;|]\s*/ },
'contributor' => { from: ['contributor'], split: ';' },
- 'creator_institutional_relationship' => { from: ['creator_institutional_relationship'], split: ';' },
+ 'creator_institutional_relationship' => { from: ['creator_institutional_relationship'], split: /\s*[;|]\s*/ },
'creator_orcid' => { from: ['creator_orcid'] },
- 'creator' => { from: ['creator'], split: ';' },
+ 'creator' => { from: ['creator'], split: /\s*[;|]\s*/ },
'date_created' => { from: ['date_created'] },
- 'degree_granting_institution' => { from: ['degree_granting_institution'], split: ';' },
- 'degree' => { from: ['degree'], split: ';' },
- 'department' => { from: ['department'], split: ';' },
- 'description' => { from: ['description'], split: ';' },
- 'discipline' => { from: ['discipline'], split: ';' },
- 'event_date' => { from: ['event_date'], split: ';' },
- 'event_location' => { from: ['event_location'], split: ';' },
- 'event_title' => { from: ['event_title'], split: ';' },
+ 'degree_granting_institution' => { from: ['degree_granting_institution'], split: /\s*[;|]\s*/ },
+ 'degree' => { from: ['degree'], split: /\s*[;|]\s*/ },
+ 'department' => { from: ['department'], split: /\s*[;|]\s*/ },
+ 'description' => { from: ['description'], split: /\s*[|]\s*/ },
+ 'discipline' => { from: ['discipline'], split: /\s*[;|]\s*/ },
+ 'event_date' => { from: ['event_date'], split: /\s*[;|]\s*/ },
+ 'event_location' => { from: ['event_location'], split: /\s*[;|]\s*/ },
+ 'event_title' => { from: ['event_title'], split: /\s*[;|]\s*/ },
'extent' => { from: ['extent'] },
- 'format' => { from: ['format'], split: ';' },
- 'funder_awards' => { from: ['funder_awards'], split: ';' },
- 'funder_name' => { from: ['funder_name'], split: ';' },
+ 'format' => { from: ['format'], split: /\s*[;|]\s*/ },
+ 'funder_awards' => { from: ['funder_awards'], split: /\s*[;|]\s*/ },
+ 'funder_name' => { from: ['funder_name'], split: /\s*[;|]\s*/ },
'identifier' => { from: ['identifier'] },
'institution' => { from: ['institution'] },
- 'keyword' => { from: ['keyword'], split: ';' },
+ 'keyword' => { from: ['keyword'], split: /\s*[;|]\s*/ },
'label' => { from: ['label'] },
- 'language' => { from: ['language'], split: ';' },
+ 'language' => { from: ['language'], split: /\s*[;|]\s*/ },
# 'level' => { from: ['level'] },
'license' => { from: ['license'] },
- 'official_link' => { from: ['official_link'], split: ';' },
+ 'location' => { from: ['location'], split: /\s*[;|]\s*/ },
+ 'official_link' => { from: ['official_link'], split: /\s*[;|]\s*/ },
'parents' => { from: ['parents'], related_parents_field_mapping: true },
- 'project_name' => { from: ['project_name'], split: ';' },
- 'publisher' => { from: ['publisher'], split: ';' },
- 'related_url' => { from: ['related_url'], split: ';' },
+ 'project_name' => { from: ['project_name'], split: /\s*[;|]\s*/ },
+ 'publisher' => { from: ['publisher'], split: /\s*[;|]\s*/ },
+ 'related_url' => { from: ['related_url'], split: /\s*[;|]\s*/ },
'resource_type' => { from: ['resource_type'] },
- 'rights_holder' => { from: ['rights_holder'], split: ';' },
- 'rights_notes' => { from: ['rights_notes'], split: ';' },
+ 'rights_holder' => { from: ['rights_holder'], split: /\s*[;|]\s*/ },
+ 'rights_notes' => { from: ['rights_notes'], split: /\s*[;|]\s*/ },
'rights_statement' => { from: ['rights_statement'] },
'source_identifier' => { from: ['source_identifier'], source_identifier: true },
- 'source' => { from: ['source'], split: ';' },
- 'subject' => { from: ['subject'], split: ';' },
+ 'source' => { from: ['source'], split: /\s*[;|]\s*/ },
+ 'subject' => { from: ['subject'], split: /\s*[;|]\s*/ },
'title' => { from: ['title'] },
- 'types' => { from: ['types'], split: ';' },
+ 'types' => { from: ['types'], split: /\s*[;|]\s*/ },
'video_embed' => { from: ['video_embed'] },
'work_url' => { from: ['work_url'] },
'year' => { from: ['year'] }
diff --git a/config/locales/hyrax.de.yml b/config/locales/hyrax.de.yml
index 075739cd..4b3a2291 100644
--- a/config/locales/hyrax.de.yml
+++ b/config/locales/hyrax.de.yml
@@ -1168,26 +1168,25 @@ de:
based_near: Ein Ortsname, der sich auf das Werk bezieht, z. B. der Veröffentlichungsort oder die Stadt, das Bundesland oder das Land, um das es in dem Arbeitsinhalt geht. Ruft den GeoNames-Webdienst auf.
contributor: Eine Person oder Gruppe, die Sie als eine Rolle bei der Erstellung der Arbeit erkennen möchten, jedoch nicht die primäre Rolle. Personennamen sollten mit dem Nachnamen zuerst eingegeben werden, z.B. „Smith, John“. Geben Sie keine Abschluss- oder anderen beruflichen oder schulischen Qualifikationen, Spitznamen, Abkürzungen oder Titel an.
creator: Die Person oder Gruppe, die für die Arbeit verantwortlich ist. Normalerweise ist dies der Autor des Inhalts. Persönliche Namen sollten mit dem Nachnamen zuerst eingegeben werden, z. "Smith, John". Geben Sie keine Abschluss- oder anderen beruflichen oder schulischen Qualifikationen, Spitznamen, Abkürzungen oder Titel an.
- date_created: Das Datum, an dem die Arbeit erstellt wurde.
+ date_created: Das Datum, an dem die Arbeit erstellt wurde. Deve seguir o formato YYYY, YYYY-MM, or YYYY-MM-DD para ser filtrado e classificado.
description: Ein Freitextkonto der Ressource.
extent: Das Ausmaß (Größe, Dauer, Anzahl, etc.) der Arbeit.
format: Das Dateiformat der digitalen Ressource.
identifier: Ein einzigartiger Griff, der die Arbeit identifiziert. Ein Beispiel wäre ein DOI für einen Zeitschriftenartikel oder eine ISBN- oder OCLC-Nummer für ein Buch.
institution: Wählen Sie den Namen der Institution, die das Repository hostet, auf das Sie diese Arbeit hochladen.
keyword: Wörter oder Sätze, die Sie auswählen, um zu beschreiben, worum es in der Arbeit geht. Dies muss kein kontrolliertes Vokabular sein.
- language: Die Sprache des Arbeitsinhalts.
- license: Lizenz- und Vertriebsinformationen für den Zugang zum Werk. Wählen Sie aus der bereitgestellten Dropdown-Liste.
+ language: Die Sprache des Inhalts des Werks. Buchstabieren Sie die Sprache und schreiben Sie den ersten Buchstaben groß.
+ license: Lizenz- und Vertriebsinformationen, die den Zugang zum Werk regeln. Wählen Sie aus der bereitgestellten Dropdown-Liste aus. Weitere Informationen zu Creative Commons-Lizenzen finden Sie unter https://creativecommons.org/licenses/.
+ location: Das für das ursprüngliche Element relevante geografische Thema. FAST-geografische Begriffe oder ein anderes kontrolliertes Vokabular werden empfohlen.
publisher: Die Person oder Gruppe, die für die Bereitstellung der ursprünglichen Ressource verantwortlich ist.
related_url: Ein Link zu einer Website oder einem anderen spezifischen Inhalt (Audio, Video, PDF-Dokument), der sich auf die Arbeit bezieht. Ein Beispiel ist die URL eines Forschungsprojekts, von dem die Arbeit abgeleitet wurde.
resource_type: Vordefinierte Kategorien zur Beschreibung der Art oder des Genres der Ressource, z. B. B. „Artikel“. oder „Datensatz“. Es kann mehr als ein Typ ausgewählt werden.
rights_notes: Hier können zusätzliche Erläuterungen zu Rechten oder Lizenzen eingefügt werden.
- rights_statement: Wählen Sie die entsprechende Rechteerklärung aus der Dropdown-Liste aus. Weitere Informationen finden Sie unter https://rightsstatements.org.
- subject: Überschriften oder Indexbegriffe, die beschreiben, worum es in der Arbeit geht Verwenden Sie ein kontrolliertes Vokabular.
- title: Ein Name, der bei der Identifizierung eines Werks hilft.
+ rights_statement: Wählen Sie die entsprechende Rechteerklärung aus der Dropdown-Liste aus. Weitere Informationen finden Sie unter https://rightsstatements.org.
+ subject: Betreffzeilen, die beschreiben, worum es in der Arbeit geht. Bitte verwenden Sie ausschließlich FAST-Betreffüberschriften oder ein anderes kontrolliertes Vokabular.
+ title: Ein Name, der der Ressource gegeben wird.
types: Vordefinierte Kategorien zur Beschreibung der Art des hochgeladenen Inhalts. Es können mehrere Typen ausgewählt werden.
video_embed: Youtube- oder Vimeo-Iframe-Einbettungscode zum Anzeigen des in die Arbeitsseite eingebetteten Videos. Wenn Sie einen Einbettungslink für ein Video eingeben, muss es sich um eine ordnungsgemäß formatierte URL handeln, die mit „http://“ oder „https://“ beginnt. Es muss außerdem einen gültigen Link zu einem gehosteten Video enthalten, das in einem Iframe angezeigt werden kann.
Beispiele:
https://player.vimeo.com/video/467264493?h=b089de0eab
https://www.youtube.com/embed/ Znf73dsFdC8
- generic_work:
- subject: Überschriften oder Indexbegriffe, die beschreiben, worum es in der Arbeit geht. Verwenden Sie einen kontrollierten Wortschatz.
labels:
extent: Umfang
labels:
diff --git a/config/locales/hyrax.en.yml b/config/locales/hyrax.en.yml
index ddc3a9b8..b6c3ea47 100644
--- a/config/locales/hyrax.en.yml
+++ b/config/locales/hyrax.en.yml
@@ -1172,10 +1172,11 @@ en:
defaults:
additional_rights_info: 'If rights are subject to a contractual or gift agreement or otherwise defined by a binding agreement that is in addition to or in place of intellectual property laws or open licensing, please detail here.'
access_right: If access is restricted to a certain group of users or if the content is subject to embargo, include that information here.
+ alternative_title: Alternative name or subtitle for the resource.
based_near: A place name related to the work, such as its site of publication, or the city, state, or country the work contents are about. Calls upon the GeoNames web service.
contributor: A person or group you want to recognize for playing a role in the creation of the work, but not the primary role. Personal names should be entered with the last name first, e.g. "Smith, John". Do not include degree or other job or educational qualifiers, nicknames, abbreviations, or titles.
creator: The person or group responsible for the work. Usually this is the author of the content. Personal names should be entered with the last name first, e.g. "Smith, John". Do not include degree or other job or educational qualifiers, nicknames, abbreviations, or titles.
- date_created: The date on which the work was created.
+ date_created: The date on which the work was created. Must adhere to either the format YYYY, YYYY-MM, or YYYY-MM-DD in order to be filtered and sorted.
description: A free text account of the resource.
extent: The extent (size, duration, number, etc.) of the work.
format: The file format of the digital resource.
@@ -1183,26 +1184,17 @@ en:
institution: Choose the name of the institution hosting the repository you are uploading this work to.
keyword: Words or phrases you select to describe what the work is about. These do not need to be a controlled vocabulary.
language: The language of the work's content. Spell out the language and capitalize the first letter.
- license: Licensing and distribution information governing access to the work. Select from the provided drop-down list. For more about Creative Commons licenses visit https://creativecommons.org/licenses/
- location: Spatial characteristics of the resource. Geographic location relevant to the original item.
+ license: Licensing and distribution information governing access to the work. Select from the provided drop-down list. For more about Creative Commons licenses visit https://creativecommons.org/licenses/.
+ location: The geographic topic relevant to the original item. FAST geographic terms or another controlled vocabulary are recommended.
publisher: The person or group responsible for making the original resource available.
related_url: A link to a website or other specific content (audio, video, PDF document) related to the work. An example is the URL of a research project from which the work was derived.
resource_type: Pre-defined categories to describe the nature or genre of the resource, such as "article" or "photograph." More than one resource type may be selected.
rights_notes: Any additional explanation of rights or licensing may be included here.
rights_statement: Select the appropriate rights statement from the dropdown list. See https://rightsstatements.org for more information.
- title: A name to aid in identifying a work.
+ subject: Subject headings describing what the work is about. Please use FAST subject headings or another controlled vocabulary only.
+ title: A name given to the resource.
types: 'Pre-defined categories to broadly describe the type of content being uploaded. More than one type may be selected.'
video_embed: "Youtube or Vimeo iframe embed code to show video embedded in the work page. If you enter an embed link for a video, it must be a properly formatted url beginning with 'http://' or 'https://'. It also needs to contain a valid link to a hosted video that can appear in an iframe.
Examples:
https://player.vimeo.com/video/467264493?h=b089de0eab
https://www.youtube.com/embed/Znf73dsFdC8"
- generic_work:
- subject: Headings or index terms describing what the work is about. Please use FAST subject headings or another controlled vocabulary only.
- image:
- alternative_title: Alternative title for the resource.
- date_created: The date on which the work was created. Must adhere to either the format YYYY, YYYY-MM, or YYYY-MM-DD in order to be filtered and sorted.
- institution: Participating institution to which the work is being uploaded to.
- license: Licensing and distribution information governing access to the work. Select from the provided drop-down list.
- resource_type: Pre-defined categories to describe the type of content being uploaded, such as "article" or "photograph." More than one resource type may be selected.
- subject: Headings or index terms describing what the work is about. Use a controlled vocabulary.
- types: Pre-defined categories to describe the nature or genre of the resource. More than one type may be selected.
labels:
collection:
size: Size
diff --git a/config/locales/hyrax.es.yml b/config/locales/hyrax.es.yml
index 71031f2c..2f4fb4b3 100644
--- a/config/locales/hyrax.es.yml
+++ b/config/locales/hyrax.es.yml
@@ -1169,22 +1169,23 @@ es:
based_near: Un nombre de lugar relacionado con el trabajo, como su sitio de publicación, o la ciudad, el estado o el país del que trata el contenido del trabajo. Llama al servicio web GeoNames .
contributor: Una persona o grupo que desea reconocer por desempeñar un papel en la creación del trabajo, pero no el papel principal. Los nombres personales deben ingresarse con el apellido primero, p.e. "Herrero, Juan". No incluya títulos u otros requisitos laborales o educativos, apodos, abreviaturas o títulos.
creator: La persona o grupo responsable del trabajo. Por lo general, este es el autor del contenido. Los nombres personales deben ingresarse primero con el apellido, p. "Smith, John". No incluya títulos u otros requisitos laborales o educativos, apodos, abreviaturas o títulos.
- date_created: La fecha en que se creó el trabajo.
+ date_created: La fecha en que se creó el trabajo. Must adhere to either the format YYYY, YYYY-MM, or YYYY-MM-DD para ser filtrado y clasificado.
description: Una cuenta de texto libre del recurso.
extent: La extensión (tamaño, duración, número, etc.) de la obra.
format: El formato de archivo del recurso digital.
identifier: Un identificador único que identifica el trabajo. Un ejemplo sería un DOI para un artículo de revista, o un número ISBN o OCLC para un libro.
institution: Elija el nombre de la institución que aloja el repositorio al que está cargando este trabajo.
keyword: Palabras o frases que seleccionas para describir de qué trata el trabajo. No es necesario que sean un vocabulario controlado.
- language: El lenguaje del contenido del trabajo.
- license: Información sobre licencias y distribución que rige el acceso a la obra. Seleccione de la lista desplegable proporcionada.
+ language: El idioma del contenido de la obra. Deletrea el idioma y escribe en mayúscula la primera letra.
+ license: Información sobre licencias y distribución que rige el acceso a la obra. Seleccione de la lista desplegable proporcionada. Para más información sobre las licencias Creative Commons visite https://creativecommons.org/licenses/.
+ location: El tema geográfico relevante para el artículo original. FAST términos geográficos u otro vocabulario controlado.
publisher: La persona o grupo responsable de poner a disposición el recurso original.
related_url: Un enlace a un sitio web u otro contenido específico (audio, video, documento PDF) relacionado con el trabajo. Un ejemplo es la URL de un proyecto de investigación del que se derivó el trabajo.
resource_type: Categorías predefinidas para describir la naturaleza o el género del recurso, como "artículo" o "fotografía". Se puede seleccionar más de un tipo de recurso.
rights_notes: Cualquier explicación adicional de derechos o licencias puede incluirse aquí.
rights_statement: Seleccione la declaración de derechos adecuada de la lista desplegable. Consulte https://rightsstatements.org para obtener más información.
- subject: Encabezados o términos de índice que describen de qué trata el trabajo Use un vocabulario controlado.
- title: Un nombre para ayudar a identificar una obra.
+ subject: Encabezados de materia que describen de qué trata el trabajo. Utilice únicamente FAST encabezamientos de materia u otro vocabulario controlado.
+ title: Un nombre dado al recurso.
types: Categorías predefinidas para describir ampliamente el tipo de contenido que se carga. Se puede seleccionar más de un tipo.
video_embed: Código de incrustación iframe de Youtube o Vimeo para mostrar el video incrustado en la página de trabajo. Si ingresa un enlace de inserción para un video, debe ser una URL con el formato correcto que comience con 'http://' o 'https://'. También debe contener un enlace válido a un video alojado que pueda aparecer en un iframe.
Ejemplos:
https://player.vimeo.com/video/467264493?h=b089de0eab
https://www.youtube.com/embed/ Znf73dsFdC8
generic_work:
diff --git a/config/locales/hyrax.fr.yml b/config/locales/hyrax.fr.yml
index f3908c28..f3028acb 100644
--- a/config/locales/hyrax.fr.yml
+++ b/config/locales/hyrax.fr.yml
@@ -1167,26 +1167,25 @@ fr:
based_near: Un nom de lieu lié à l'œuvre, tel que son site de publication, ou la ville, l'état ou le pays sur lequel porte le contenu de l'œuvre. Appelle le service Web GeoNames .
contributor: Une personne ou un groupe que vous souhaitez reconnaître pour avoir joué un rôle dans la création de l'œuvre, mais pas le rôle principal. Les noms de personnes doivent être saisis en commençant par le nom de famille, par ex. "Smith, John". N'incluez pas de diplôme ou d'autres qualifications professionnelles ou éducatives, de surnoms, d'abréviations ou de titres.
creator: La personne ou le groupe responsable du travail. Il s'agit généralement de l'auteur du contenu. Les noms personnels doivent être entrés en premier avec le nom de famille, par ex. ``Smith, John''. N'incluez pas de diplôme ou d'autres qualifications professionnelles ou éducatives, de surnoms, d'abréviations ou de titres.
- date_created: Date à laquelle l'œuvre a été créée.
+ date_created: Date à laquelle l'œuvre a été créée. Debe adherirse al formato YYYY, YYYY-MM, or YYYY-MM-DD à filtrer et trier.
description: Un compte rendu en texte libre de la ressource.
extent: L'étendue (taille, durée, nombre, etc.) du travail.
format: Format de fichier de la ressource numérique.
identifier: Une poignée unique identifiant l'œuvre. Un exemple serait un DOI pour un article de journal, ou un numéro ISBN ou OCLC pour un livre.
institution: Choisissez le nom de l'institution hébergeant le référentiel dans lequel vous téléchargez ce travail.
keyword: Mots ou expressions que vous sélectionnez pour décrire le sujet de l'œuvre. Il n'est pas nécessaire qu'ils fassent partie d'un vocabulaire contrôlé.
- language: La langue du contenu de l'œuvre.
- license: Informations sur les licences et la distribution régissant l'accès à l'œuvre. Sélectionnez dans la liste déroulante fournie.
+ language: La langue du contenu de l'œuvre. Épelez la langue et mettez la première lettre en majuscule.
+ license: Informations sur les licences et la distribution régissant l'accès à l'œuvre. Sélectionnez dans la liste déroulante fournie. Pour en savoir plus sur les licences Creative Commons, visitez https://creativecommons.org/licenses/.
+ location: Sujet géographique pertinent pour l'élément d'origine. Des des termes géographiques FAST ou un autre vocabulaire contrôlé sont recommandés.
publisher: La personne ou le groupe responsable de la mise à disposition de la ressource originale.
related_url: Un lien vers un site Web ou tout autre contenu spécifique (audio, vidéo, document PDF) lié à l'œuvre. Un exemple est l'URL d'un projet de recherche dont le travail a été dérivé.
- resource_type: Catégories prédéfinies pour décrire la nature ou le genre de la ressource,, par exemple "article" ou "photo". Plusieurs types de ressources peuvent être sélectionnés.
+ resource_type: Catégories prédéfinies pour décrire la nature ou le genre de la ressource, par exemple "article" ou "photo". Plusieurs types de ressources peuvent être sélectionnés.
rights_notes: Toute explication supplémentaire des droits ou des licences peut être incluse ici.
rights_statement: Sélectionnez la déclaration de droits appropriée dans la liste déroulante. Consultez https://rightsstatements.org pour plus d'informations.
- subject: Titres ou termes d'index décrivant le sujet de l'ouvrage. Utilisez un vocabulaire contrôlé.
- title: Un nom pour aider à identifier une œuvre.
+ subject: Vedettes-matière décrivant le sujet du travail. Veuillez utiliser uniquement les titres-matières FAST ou un autre vocabulaire contrôlé.
+ title: Un nom donné à la ressource.
types: Catégories prédéfinies pour décrire globalement le type de contenu téléchargé. Plusieurs types peuvent être sélectionnés.
video_embed: Code d'intégration Youtube ou Vimeo iframe pour afficher la vidéo intégrée dans la page de travail. Si vous saisissez un lien d'intégration pour une vidéo, il doit s'agir d'une URL correctement formatée commençant par « http:// » ou « https:// ». Il doit également contenir un lien valide vers une vidéo hébergée pouvant apparaître dans une iframe.
Exemples :
https://player.vimeo.com/video/467264493?h=b089de0eab
https://www.youtube.com/embed/ Znf73dsFdC8
- generic_work:
- subject: Titres ou termes d'index décrivant le sujet de l'œuvre. Utilisez un vocabulaire contrôlé.
labels:
extent: Ampleur
labels:
diff --git a/config/locales/hyrax.it.yml b/config/locales/hyrax.it.yml
index 59cabcd9..a505d112 100644
--- a/config/locales/hyrax.it.yml
+++ b/config/locales/hyrax.it.yml
@@ -1169,26 +1169,25 @@ it:
based_near: Un nome di luogo correlato all'opera, ad esempio il suo sito di pubblicazione, o la città, lo stato o il paese di cui si tratta. Invita il servizio web GeoNames .
contributor: Una persona o un gruppo che vuoi riconoscere per avere un ruolo nella creazione dell'opera, ma non il ruolo principale. I nomi personali devono essere inseriti iniziando dal cognome, ad es. "Smith, Giovanni". Non includere titoli di studio o altre qualificazioni lavorative o formative, soprannomi, abbreviazioni o titoli.
creator: La persona o il gruppo responsabile del lavoro. Di solito questo è l'autore del contenuto. I nomi personali devono essere inseriti prima con il cognome, ad es. "Smith, John". Non includere titoli di studio o altre qualificazioni lavorative o formative, soprannomi, abbreviazioni o titoli.
- date_created: La data di creazione dell'opera.
+ date_created: La data in cui è stata creata l'opera. Deve rispettare il formato YYYY, YYYY-MM, or YYYY-MM-DD per poter essere filtrato e ordinato.
description: un resoconto a testo libero della risorsa.
- extent: La dimensione (dimensione, durata, numero, ecc.) Del lavoro.
+ extent: La dimensione (dimensione, durata, numero, ecc.) del lavoro.
format: il formato del file della risorsa digitale.
identifier: Una maniglia unica che identifica il lavoro. Un esempio potrebbe essere un DOI per un articolo di giornale o un codice ISBN o OCLC per un libro.
institution: Scegli il nome dell'istituzione che ospita il repository in cui stai caricando questo lavoro.
keyword: Parole o frasi selezionate per descrivere l'argomento del lavoro. Non è necessario che siano un vocabolario controllato.
- language: La lingua del contenuto dell'opera.
- license: Informazioni su licenze e distribuzione che regolano l'accesso all'opera. Selezionare dall'elenco a discesa fornito.
+ language: La lingua del contenuto dell'opera. Scrivi la lingua e scrivi in maiuscolo la prima lettera.
+ license: Informazioni sulla licenza e sulla distribuzione che regolano l'accesso all'opera. Selezionare dall'elenco a discesa fornito. Per ulteriori informazioni sulle licenze Creative Commons, visita https://creativecommons.org/licenses/.
+ location: L'argomento geografico pertinente all'articolo originale. Si consigliano termini geografici FAST o un altro vocabolario controllato.
publisher: La persona o il gruppo responsabile della messa a disposizione della risorsa originale.
related_url: Un collegamento a un sito Web o ad altri contenuti specifici (audio, video, documento PDF) relativi all'opera. Un esempio è l'URL di un progetto di ricerca da cui deriva il lavoro.
resource_type: Categorie predefinite per descrivere la natura o il genere della risorsa, ad esempio "articolo" o "fotografia". È possibile selezionare più di un tipo di risorsa.
rights_notes: Qualsiasi spiegazione aggiuntiva sui diritti o sulla licenza può essere inclusa qui.
rights_statement: Seleziona la dichiarazione dei diritti appropriata dall'elenco a discesa. Per ulteriori informazioni, consulta https://rightsstatements.org.
- subject: Intestazioni o termini di indice che descrivono l'argomento dell'opera. Utilizzare un vocabolario controllato.
- title: Un nome per aiutare a identificare un'opera.
+ subject: Intestazioni dell'oggetto che descrivono di cosa tratta il lavoro. Si prega di utilizzare intestazioni degli argomenti FAST o solo un altro vocabolario controllato.
+ title: Un nome assegnato alla risorsa.
types: Categorie predefinite per descrivere ampiamente il tipo di contenuto caricato. È possibile selezionare più di un tipo.
video_embed: Codice di incorporamento iframe Youtube o Vimeo per mostrare il video incorporato nella pagina di lavoro. Se inserisci un link di incorporamento per un video, deve essere un URL formattato correttamente che inizia con "http://" o "https://". Deve inoltre contenere un collegamento valido a un video ospitato che può essere visualizzato in un iframe.
Esempi:
https://player.vimeo.com/video/467264493?h=b089de0eab
https://www.youtube.com/embed/ Znf73dsFdC8
- generic_work:
- subject: Intestazioni o termini di indice che descrivono l'argomento del lavoro. Usa un vocabolario controllato.
labels:
extent: Estensione
labels:
diff --git a/config/locales/hyrax.pt-.yml b/config/locales/hyrax.pt-.yml
index 9de6f553..e03aa7b3 100644
--- a/config/locales/hyrax.pt-.yml
+++ b/config/locales/hyrax.pt-.yml
@@ -1157,7 +1157,7 @@ pt-:
based_near: Um nome de local relacionado à obra, como seu site de publicação ou a cidade, estado ou país sobre o qual o conteúdo da obra se refere. Solicita o serviço web GeoNames.
contributor: Uma pessoa ou grupo que você deseja reconhecer por desempenhar um papel na criação do trabalho, mas não o papel principal. Os nomes pessoais devem ser inseridos com o sobrenome primeiro, por ex. "Smith, João". Não inclua diplomas ou outras qualificações profissionais ou educacionais, apelidos, abreviações ou títulos.
creator: A pessoa ou grupo responsável pelo trabalho. Geralmente este é o autor do conteúdo. Nomes pessoais devem ser inseridos com o sobrenome primeiro, por exemplo "Smith, John". Não inclua diplomas ou outras qualificações profissionais ou educacionais, apelidos, abreviações ou títulos.
- date_created: A data em que a obra foi criada.
+ date_created: A data em que a obra foi criada. Deve seguir o formato YYY, YYYY-MM, or YYYY-MM-DD para ser filtrado e classificado.
description: Uma conta de texto livre do recurso.
extent: A extensão (tamanho, duração, número, etc.) da obra.
format: O formato de arquivo do recurso digital.
@@ -1165,17 +1165,16 @@ pt-:
institution: Escolha o nome da instituição que hospeda o repositório para o qual você está enviando este trabalho.
keyword: Palavras ou frases que você seleciona para descrever sobre o que é o trabalho. Estes não precisam ser um vocabulário controlado.
language: A linguagem do conteúdo da obra. Soletre o idioma e coloque a primeira letra em maiúscula.
- license: Informações sobre licenciamento e distribuição que regem o acesso à obra. Selecione na lista suspensa fornecida.
+ license: Informações sobre licenciamento e distribuição que regem o acesso à obra. Selecione na lista suspensa fornecida. Para mais informações sobre licenças Creative Commons, visite https://rightsstatements.org para obter mais informações.
- title: Um nome para ajudar na identificação de uma obra.
+ title: Um nome dado ao recurso.
types: Categorias predefinidas para descrever amplamente o tipo de conteúdo que está sendo carregado. Mais de um tipo pode ser selecionado.
video_embed: Código de incorporação do iframe do Youtube ou Vimeo para mostrar o vídeo incorporado na página de trabalho. Se você inserir um link de incorporação para um vídeo, ele deve ser um URL formatado corretamente começando com 'http://' ou 'https://'. Ele também precisa conter um link válido para um vídeo hospedado que pode aparecer em um iframe.
Exemplos:
https://player.vimeo.com/video/467264493?h=b089de0eab
https://www.youtube.com/embed/ Znf73dsFdC8
- generic_work:
- subject: Títulos ou termos de índice que descrevem o assunto do trabalho. Use um vocabulário controlado.
labels:
collection:
size: Tamanho
diff --git a/config/locales/hyrax.pt-BR.yml b/config/locales/hyrax.pt-BR.yml
index a312cb4b..cab37f99 100644
--- a/config/locales/hyrax.pt-BR.yml
+++ b/config/locales/hyrax.pt-BR.yml
@@ -1166,29 +1166,27 @@ pt-BR:
defaults:
access_right: Se o acesso for restrito a um determinado grupo de usuários ou se o conteúdo estiver sujeito a embargo, inclua essa informação aqui.
additional_rights_info: Se os direitos estiverem sujeitos a um acordo contratual ou de doação ou de outra forma definido por um acordo vinculativo que seja um complemento ou um substituto das leis de propriedade intelectual ou licenciamento aberto, detalhe aqui.
- based_near: Um nome de local relacionado ao trabalho, como o site da publicação ou a cidade, estado ou país em que o conteúdo do trabalho se refere. Solicita o serviço da web GeoNames .
+ based_near: Um nome de local relacionado à obra, como seu site de publicação ou a cidade, estado ou país sobre o qual o conteúdo da obra se refere. Solicita o serviço web GeoNames.
contributor: Uma pessoa ou grupo que você deseja reconhecer por desempenhar um papel na criação do trabalho, mas não o papel principal. Os nomes pessoais devem ser inseridos com o sobrenome primeiro, por ex. "Smith, João". Não inclua diplomas ou outras qualificações profissionais ou educacionais, apelidos, abreviações ou títulos.
- creator: A pessoa ou grupo responsável pelo trabalho. Normalmente, este é o autor do conteúdo. Os nomes pessoais devem ser inseridos com o sobrenome primeiro, p. "Smith, John". Não inclua diplomas ou outras qualificações profissionais ou educacionais, apelidos, abreviações ou títulos.
- date_created: A data em que o trabalho foi criado.
+ creator: A pessoa ou grupo responsável pelo trabalho. Geralmente este é o autor do conteúdo. Nomes pessoais devem ser inseridos com o sobrenome primeiro, por exemplo "Smith, John". Não inclua diplomas ou outras qualificações profissionais ou educacionais, apelidos, abreviações ou títulos.
+ date_created: A data em que a obra foi criada. Deve seguir o formato YYY, YYYY-MM, or YYYY-MM-DD para ser filtrado e classificado.
description: Uma conta de texto livre do recurso.
- extent: A extensão (tamanho, duração, número, etc.) do trabalho.
+ extent: A extensão (tamanho, duração, número, etc.) da obra.
format: O formato de arquivo do recurso digital.
- identifier: Um identificador exclusivo para identificar o trabalho. Um exemplo seria um DOI para um artigo de jornal ou um número de ISBN ou OCLC para um livro.
- institution: Instituição participante para a qual o trabalho está sendo carregado.
- keyword: Palavras ou frases que você seleciona para descrever o assunto do trabalho. Estes não precisam ser um vocabulário controlado.
- language: A linguagem do conteúdo da obra.
- license: Informações de licenciamento e distribuição que regem o acesso à obra. Selecione na lista suspensa fornecida.
+ identifier: Um identificador exclusivo identificando o trabalho. Um exemplo seria um DOI para um artigo de periódico ou um número ISBN ou OCLC para um livro.
+ institution: Escolha o nome da instituição que hospeda o repositório para o qual você está enviando este trabalho.
+ keyword: Palavras ou frases que você seleciona para descrever sobre o que é o trabalho. Estes não precisam ser um vocabulário controlado.
+ language: A linguagem do conteúdo da obra. Soletre o idioma e coloque a primeira letra em maiúscula.
+ license: Informações sobre licenciamento e distribuição que regem o acesso à obra. Selecione na lista suspensa fornecida. Para mais informações sobre licenças Creative Commons, visite https://rightsstatements.org para obter mais informações.
+ title: Um nome dado ao recurso.
types: Categorias predefinidas para descrever amplamente o tipo de conteúdo que está sendo carregado. Mais de um tipo pode ser selecionado.
video_embed: Código de incorporação do iframe do Youtube ou Vimeo para mostrar o vídeo incorporado na página de trabalho. Se você inserir um link de incorporação para um vídeo, ele deve ser um URL formatado corretamente começando com 'http://' ou 'https://'. Ele também precisa conter um link válido para um vídeo hospedado que pode aparecer em um iframe.
Exemplos:
https://player.vimeo.com/video/467264493?h=b089de0eab
https://www.youtube.com/embed/ Znf73dsFdC8
- generic_work:
- subject: Títulos ou termos de índice que descrevem o assunto do trabalho. Use um vocabulário controlado.
labels:
extent: Extensão
labels: