iiif_print 1.0.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 +7 -0
- data/.coveralls.yml +2 -0
- data/.env +5 -0
- data/.fcrepo_wrapper +4 -0
- data/.github/release.yml +20 -0
- data/.github/workflows/branches.yml +24 -0
- data/.github/workflows/build-lint-test-action.yaml +33 -0
- data/.github/workflows/release_labels.yml +25 -0
- data/.gitignore +52 -0
- data/.rubocop.yml +177 -0
- data/.solr_wrapper +8 -0
- data/.travis.yml +49 -0
- data/CONTRIBUTING.md +181 -0
- data/Dockerfile +15 -0
- data/Gemfile +52 -0
- data/LICENSE +203 -0
- data/README.md +203 -0
- data/Rakefile +38 -0
- data/app/actors/iiif_print/actors/file_set_actor_decorator.rb +56 -0
- data/app/assets/config/iiif_print_manifest.js +2 -0
- data/app/assets/images/iiif_print/.keep +0 -0
- data/app/assets/javascripts/iiif_print/autocomplete_fix.js +33 -0
- data/app/assets/javascripts/iiif_print/ocr_search.js.erb +6 -0
- data/app/assets/javascripts/iiif_print.js +3 -0
- data/app/assets/stylesheets/iiif_print/_iiif_print.scss +4 -0
- data/app/assets/stylesheets/iiif_print/_issue_search.scss +13 -0
- data/app/assets/stylesheets/iiif_print/_issues_calendar.scss +18 -0
- data/app/assets/stylesheets/iiif_print/_newspapers_search.scss +38 -0
- data/app/assets/stylesheets/iiif_print/_search_results.scss +6 -0
- data/app/helpers/hyrax/iiif_helper.rb +22 -0
- data/app/helpers/iiif_print/application_helper.rb +5 -0
- data/app/helpers/iiif_print_helper.rb +64 -0
- data/app/indexers/concerns/iiif_print/child_indexer.rb +34 -0
- data/app/indexers/concerns/iiif_print/file_set_indexer.rb +29 -0
- data/app/mailers/iiif_print/application_mailer.rb +8 -0
- data/app/models/concerns/iiif_print/set_child_flag.rb +29 -0
- data/app/models/concerns/iiif_print/solr/document.rb +47 -0
- data/app/models/iiif_print/application_record.rb +6 -0
- data/app/models/iiif_print/derivative_attachment.rb +8 -0
- data/app/models/iiif_print/iiif_search_response_decorator.rb +17 -0
- data/app/models/iiif_print/ingest_file_relation.rb +14 -0
- data/app/models/iiif_print/pending_relationship.rb +7 -0
- data/app/presenters/iiif_print/iiif_manifest_presenter_behavior.rb +10 -0
- data/app/presenters/iiif_print/iiif_manifest_presenter_factory_behavior.rb +33 -0
- data/app/presenters/iiif_print/work_show_presenter_decorator.rb +29 -0
- data/app/renderers/hyrax/renderers/faceted_attribute_renderer_decorator.rb +18 -0
- data/app/search_builders/concerns/iiif_print/exclude_models.rb +17 -0
- data/app/search_builders/concerns/iiif_print/highlight_search_params.rb +14 -0
- data/app/services/iiif_print/manifest_builder_service_behavior.rb +97 -0
- data/app/services/iiif_print/pluggable_derivative_service.rb +120 -0
- data/app/views/catalog/_snippets_more.html.erb +16 -0
- data/app/views/hyrax/base/_representative_media.html.erb +9 -0
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +8 -0
- data/app/views/hyrax/file_sets/_actions.html.erb +45 -0
- data/bin/rails +13 -0
- data/config/fcrepo_wrapper_test.yml +5 -0
- data/config/initializers/assets.rb +2 -0
- data/config/locales/iiif_print.de.yml +148 -0
- data/config/locales/iiif_print.en.yml +119 -0
- data/config/locales/iiif_print.es.yml +148 -0
- data/config/locales/iiif_print.fr.yml +149 -0
- data/config/locales/iiif_print.it.yml +142 -0
- data/config/locales/iiif_print.pt-BR.yml +148 -0
- data/config/locales/iiif_print.zh.yml +142 -0
- data/config/solr_wrapper_test.yml +9 -0
- data/config/test-fixture/solr-config/_rest_managed.json +3 -0
- data/config/test-fixture/solr-config/admin-extra.html +31 -0
- data/config/test-fixture/solr-config/elevate.xml +36 -0
- data/config/test-fixture/solr-config/mapping-ISOLatin1Accent.txt +246 -0
- data/config/test-fixture/solr-config/protwords.txt +21 -0
- data/config/test-fixture/solr-config/schema.xml +366 -0
- data/config/test-fixture/solr-config/scripts.conf +24 -0
- data/config/test-fixture/solr-config/solrconfig.xml +322 -0
- data/config/test-fixture/solr-config/spellings.txt +2 -0
- data/config/test-fixture/solr-config/stopwords.txt +58 -0
- data/config/test-fixture/solr-config/stopwords_en.txt +58 -0
- data/config/test-fixture/solr-config/synonyms.txt +31 -0
- data/config/test-fixture/solr-config/xslt/example.xsl +132 -0
- data/config/test-fixture/solr-config/xslt/example_atom.xsl +67 -0
- data/config/test-fixture/solr-config/xslt/example_rss.xsl +66 -0
- data/config/test-fixture/solr-config/xslt/luke.xsl +337 -0
- data/config/vendor/fits.xml +55 -0
- data/config/vendor/imagemagick-6-policy.xml +76 -0
- data/db/migrate/20181214181358_create_iiif_print_derivative_attachments.rb +12 -0
- data/db/migrate/20190107165909_create_iiif_print_ingest_file_relations.rb +11 -0
- data/db/migrate/20230109000000_create_iiif_print_pending_relationships.rb +11 -0
- data/docker-compose.yml +129 -0
- data/iiif_print.gemspec +43 -0
- data/lib/generators/iiif_print/assets_generator.rb +29 -0
- data/lib/generators/iiif_print/catalog_controller_generator.rb +32 -0
- data/lib/generators/iiif_print/install_generator.rb +52 -0
- data/lib/generators/iiif_print/templates/config/initializers/iiif_print.rb +22 -0
- data/lib/generators/iiif_print/templates/iiif_print.scss +1 -0
- data/lib/iiif_print/base_derivative_service.rb +113 -0
- data/lib/iiif_print/blacklight_iiif_search/annotation_decorator.rb +84 -0
- data/lib/iiif_print/catalog_search_builder.rb +31 -0
- data/lib/iiif_print/configuration.rb +99 -0
- data/lib/iiif_print/data/fileset_helper.rb +25 -0
- data/lib/iiif_print/data/path_helper.rb +40 -0
- data/lib/iiif_print/data/work_derivatives.rb +323 -0
- data/lib/iiif_print/data/work_file.rb +92 -0
- data/lib/iiif_print/data/work_files.rb +199 -0
- data/lib/iiif_print/data.rb +35 -0
- data/lib/iiif_print/engine.rb +77 -0
- data/lib/iiif_print/errors.rb +9 -0
- data/lib/iiif_print/image_tool.rb +119 -0
- data/lib/iiif_print/jobs/application_job.rb +8 -0
- data/lib/iiif_print/jobs/child_works_from_pdf_job.rb +107 -0
- data/lib/iiif_print/jobs/create_relationships_job.rb +78 -0
- data/lib/iiif_print/jp2_derivative_service.rb +118 -0
- data/lib/iiif_print/jp2_image_metadata.rb +81 -0
- data/lib/iiif_print/lineage_service.rb +41 -0
- data/lib/iiif_print/metadata.rb +125 -0
- data/lib/iiif_print/pdf_derivative_service.rb +42 -0
- data/lib/iiif_print/split_pdfs/child_work_creation_from_pdf_service.rb +75 -0
- data/lib/iiif_print/split_pdfs/pages_into_images_service.rb +130 -0
- data/lib/iiif_print/split_pdfs/pdf_image_extraction_service.rb +85 -0
- data/lib/iiif_print/text_extraction/alto_reader.rb +123 -0
- data/lib/iiif_print/text_extraction/hocr_reader.rb +172 -0
- data/lib/iiif_print/text_extraction/page_ocr.rb +87 -0
- data/lib/iiif_print/text_extraction/render_alto.rb +84 -0
- data/lib/iiif_print/text_extraction/word_coords_builder.rb +38 -0
- data/lib/iiif_print/text_extraction.rb +11 -0
- data/lib/iiif_print/text_extraction_derivative_service.rb +47 -0
- data/lib/iiif_print/text_formats_from_alto_service.rb +77 -0
- data/lib/iiif_print/tiff_derivative_service.rb +50 -0
- data/lib/iiif_print/version.rb +3 -0
- data/lib/iiif_print/works_controller_behavior.rb +9 -0
- data/lib/iiif_print.rb +136 -0
- data/lib/tasks/set_child_works.rake +22 -0
- data/spec/.keep.txt +1 -0
- data/spec/factories/ability.rb +6 -0
- data/spec/factories/newspaper_issue.rb +7 -0
- data/spec/factories/newspaper_page.rb +7 -0
- data/spec/factories/newspaper_page_solr_document.rb +12 -0
- data/spec/factories/newspaper_title.rb +8 -0
- data/spec/factories/uploaded_pdf_file.rb +9 -0
- data/spec/factories/uploaded_txt_file.rb +9 -0
- data/spec/factories/user.rb +13 -0
- data/spec/fixtures/files/4.1.07.jp2 +0 -0
- data/spec/fixtures/files/4.1.07.tiff +0 -0
- data/spec/fixtures/files/README.md +7 -0
- data/spec/fixtures/files/alto-2-0.xsd +714 -0
- data/spec/fixtures/files/broken-truncated.pdf +0 -0
- data/spec/fixtures/files/credits.md +16 -0
- data/spec/fixtures/files/lowres-gray-via-ndnp-sample.tiff +0 -0
- data/spec/fixtures/files/minimal-1-page.pdf +0 -0
- data/spec/fixtures/files/minimal-2-page.pdf +0 -0
- data/spec/fixtures/files/minimal-alto.xml +31 -0
- data/spec/fixtures/files/ndnp-alto-sample.xml +24 -0
- data/spec/fixtures/files/ndnp-sample1-json.json +1 -0
- data/spec/fixtures/files/ndnp-sample1-txt.txt +1 -0
- data/spec/fixtures/files/ndnp-sample1.pdf +0 -0
- data/spec/fixtures/files/ocr_alto.xml +202 -0
- data/spec/fixtures/files/ocr_alto_scaled_4pts_per_px.xml +202 -0
- data/spec/fixtures/files/ocr_color.tiff +0 -0
- data/spec/fixtures/files/ocr_gray.jp2 +0 -0
- data/spec/fixtures/files/ocr_gray.tiff +0 -0
- data/spec/fixtures/files/ocr_mono.tiff +0 -0
- data/spec/fixtures/files/ocr_mono_text_hocr.html +78 -0
- data/spec/fixtures/files/page1.tiff +0 -0
- data/spec/fixtures/files/sample-4page-issue.pdf +0 -0
- data/spec/fixtures/files/sample-color-newsletter.pdf +0 -0
- data/spec/fixtures/files/thumbnail.jpg +0 -0
- data/spec/helpers/hyrax/iiif_helper_spec.rb +65 -0
- data/spec/helpers/iiif_print_helper_spec.rb +43 -0
- data/spec/iiif_print/base_derivative_service_spec.rb +11 -0
- data/spec/iiif_print/blacklight_iiif_search/annotation_decorator_spec.rb +51 -0
- data/spec/iiif_print/catalog_search_builder_spec.rb +60 -0
- data/spec/iiif_print/configuration_spec.rb +67 -0
- data/spec/iiif_print/data/work_derivatives_spec.rb +245 -0
- data/spec/iiif_print/data/work_file_spec.rb +99 -0
- data/spec/iiif_print/data/work_files_spec.rb +237 -0
- data/spec/iiif_print/image_tool_spec.rb +109 -0
- data/spec/iiif_print/jobs/child_works_from_pdf_job_spec.rb +30 -0
- data/spec/iiif_print/jobs/create_relationships_job_spec.rb +17 -0
- data/spec/iiif_print/jp2_image_metadata_spec.rb +37 -0
- data/spec/iiif_print/lineage_service_spec.rb +13 -0
- data/spec/iiif_print/metadata_spec.rb +115 -0
- data/spec/iiif_print/split_pdfs/pages_into_images_service_spec.rb +6 -0
- data/spec/iiif_print/text_extraction/alto_reader_spec.rb +49 -0
- data/spec/iiif_print/text_extraction/hocr_reader_spec.rb +45 -0
- data/spec/iiif_print/text_extraction/page_ocr_spec.rb +84 -0
- data/spec/iiif_print/text_extraction/render_alto_spec.rb +54 -0
- data/spec/iiif_print/text_extraction/word_coords_builder_spec.rb +44 -0
- data/spec/iiif_print_spec.rb +51 -0
- data/spec/misc_shared.rb +111 -0
- data/spec/models/iiif_print/derivative_attachment_spec.rb +37 -0
- data/spec/models/iiif_print/ingest_file_relation_spec.rb +56 -0
- data/spec/models/solr_document_spec.rb +14 -0
- data/spec/presenters/iiif_print/iiif_manifest_presenter_behavior_spec.rb +19 -0
- data/spec/presenters/iiif_print/iiif_manifest_presenter_factory_behavior_spec.rb +49 -0
- data/spec/services/iiif_print/jp2_derivative_service_spec.rb +59 -0
- data/spec/services/iiif_print/pdf_derivative_service_spec.rb +66 -0
- data/spec/services/iiif_print/pluggable_derivative_service_spec.rb +178 -0
- data/spec/services/iiif_print/text_extraction_derivative_service_spec.rb +82 -0
- data/spec/services/iiif_print/text_formats_from_alto_service_spec.rb +127 -0
- data/spec/services/iiif_print/tiff_derivative_service_spec.rb +65 -0
- data/spec/spec_helper.rb +181 -0
- data/spec/support/controller_level_helpers.rb +28 -0
- data/spec/support/iiif_print_models.rb +127 -0
- data/spec/test_app_templates/blacklight.yml +9 -0
- data/spec/test_app_templates/fedora.yml +15 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +40 -0
- data/spec/test_app_templates/redis.yml +9 -0
- data/spec/test_app_templates/solr/conf/schema.xml +362 -0
- data/spec/test_app_templates/solr/conf/solrconfig.xml +322 -0
- data/spec/test_app_templates/solr.yml +7 -0
- data/tasks/iiif_print_dev.rake +34 -0
- data/tmp/.keep +0 -0
- metadata +605 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<div class="btn-group">
|
|
2
|
+
|
|
3
|
+
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown" type="button" id="dropdownMenu_<%= file_set.id %>" aria-haspopup="true">
|
|
4
|
+
<span class="sr-only">Press to </span>
|
|
5
|
+
Select an action
|
|
6
|
+
<span class="caret" aria-hidden="true"></span>
|
|
7
|
+
</button>
|
|
8
|
+
|
|
9
|
+
<ul role="menu" class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenu_<%= file_set.id %>">
|
|
10
|
+
<% if can?(:edit, file_set.id) %>
|
|
11
|
+
<li role="menuitem" tabindex="-1">
|
|
12
|
+
<%= link_to 'Edit', edit_polymorphic_path([main_app, file_set]),
|
|
13
|
+
{ title: "Edit #{file_set}" } %>
|
|
14
|
+
</li>
|
|
15
|
+
|
|
16
|
+
<li role="menuitem" tabindex="-1">
|
|
17
|
+
<%= link_to 'Versions', edit_polymorphic_path([main_app, file_set], anchor: 'versioning_display'),
|
|
18
|
+
{ title: "Display previous versions" } %>
|
|
19
|
+
</li>
|
|
20
|
+
<% end %>
|
|
21
|
+
|
|
22
|
+
<% if can?(:destroy, file_set.id) %>
|
|
23
|
+
<li role="menuitem" tabindex="-1">
|
|
24
|
+
<%= link_to 'Delete', polymorphic_path([main_app, file_set]),
|
|
25
|
+
method: :delete, title: "Delete #{file_set}",
|
|
26
|
+
data: {confirm: "Deleting #{file_set} from #{application_name} is permanent. Click OK to delete this from #{application_name}, or Cancel to cancel this operation"} %>
|
|
27
|
+
</li>
|
|
28
|
+
<% end %>
|
|
29
|
+
|
|
30
|
+
<% if can?(:download, file_set.id) %>
|
|
31
|
+
<li role="menuitem" tabindex="-1">
|
|
32
|
+
<%= link_to 'Download', hyrax.download_path(file_set),
|
|
33
|
+
title: "Download #{file_set.to_s.inspect}", target: "_blank" %>
|
|
34
|
+
</li>
|
|
35
|
+
<% IiifPrint::Data::WorkDerivatives.new(file_set.id).keys.each do |name| %>
|
|
36
|
+
<li role="menuitem" tabindex="-1">
|
|
37
|
+
<a href="<%= "/downloads/#{file_set.id}?locale=en&file=#{name}" %>" download>
|
|
38
|
+
Download <em>(as <%= name %>)</em>
|
|
39
|
+
</a>
|
|
40
|
+
</li>
|
|
41
|
+
<% end %>
|
|
42
|
+
<% end %>
|
|
43
|
+
|
|
44
|
+
</ul>
|
|
45
|
+
</div>
|
data/bin/rails
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails gems
|
|
3
|
+
# installed from the root of your application.
|
|
4
|
+
|
|
5
|
+
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
|
6
|
+
ENGINE_PATH = File.expand_path('../../lib/iiif_print/engine', __FILE__)
|
|
7
|
+
|
|
8
|
+
# Set up gems listed in the Gemfile.
|
|
9
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
|
10
|
+
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
11
|
+
|
|
12
|
+
require 'rails/all'
|
|
13
|
+
require 'rails/engine/commands'
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
---
|
|
2
|
+
de:
|
|
3
|
+
iiif_print:
|
|
4
|
+
attributes:
|
|
5
|
+
held_by:
|
|
6
|
+
label: 'Halteort'
|
|
7
|
+
identifier:
|
|
8
|
+
label: 'Kennung (lokal)'
|
|
9
|
+
issn:
|
|
10
|
+
label: 'ISSN'
|
|
11
|
+
lccn:
|
|
12
|
+
label: 'LCCN'
|
|
13
|
+
oclcnum:
|
|
14
|
+
label: 'OCLC #'
|
|
15
|
+
publication_date_end:
|
|
16
|
+
label: 'Erscheinungsdatum (Ende)'
|
|
17
|
+
publication_date_start:
|
|
18
|
+
label: 'Erscheinungsdatum (Beginn)'
|
|
19
|
+
publication_date:
|
|
20
|
+
label: 'Erscheinungsdatum'
|
|
21
|
+
alternative_title:
|
|
22
|
+
label: 'Zusätzlicher Titel'
|
|
23
|
+
edition_name:
|
|
24
|
+
label: 'Name der Ausgabe'
|
|
25
|
+
edition_number:
|
|
26
|
+
label: 'Nummer der Ausgabe'
|
|
27
|
+
volume:
|
|
28
|
+
label: 'Volumen'
|
|
29
|
+
issue_number:
|
|
30
|
+
label: 'Ausgabe Nummer'
|
|
31
|
+
page_number:
|
|
32
|
+
label: 'Seitennummer'
|
|
33
|
+
section:
|
|
34
|
+
label: 'Abschnitt'
|
|
35
|
+
extent:
|
|
36
|
+
label: 'Physikalischen Eigenschaften'
|
|
37
|
+
frequency:
|
|
38
|
+
label: 'Häufigkeit'
|
|
39
|
+
preceded_by:
|
|
40
|
+
label: 'Vorhergehender Titel'
|
|
41
|
+
succeeded_by:
|
|
42
|
+
label: 'Nachfolgender Titel'
|
|
43
|
+
genre:
|
|
44
|
+
label: 'Genre'
|
|
45
|
+
geographic_coverage:
|
|
46
|
+
label: 'Orte beschrieben'
|
|
47
|
+
author:
|
|
48
|
+
label: 'Autor'
|
|
49
|
+
photographer:
|
|
50
|
+
label: 'Fotograf'
|
|
51
|
+
height:
|
|
52
|
+
label: 'Höhe'
|
|
53
|
+
width:
|
|
54
|
+
label: 'Breite'
|
|
55
|
+
text_direction:
|
|
56
|
+
label: 'Richtung der Text'
|
|
57
|
+
place_of_publication:
|
|
58
|
+
label: 'Ort der veröffentlichung'
|
|
59
|
+
publication_title:
|
|
60
|
+
label: 'Zeitung'
|
|
61
|
+
newspapers_search:
|
|
62
|
+
title: 'Suche nach Zeitungen'
|
|
63
|
+
text: 'Verwenden Sie dieses Formular für die Suche nach Zeitungsinhalten im Volltext.'
|
|
64
|
+
help:
|
|
65
|
+
title: 'Suchtipps für Zeitungen:'
|
|
66
|
+
tips:
|
|
67
|
+
open_date_range: 'Lassen Sie für ein unbefristetes Datumsbereichslimit (z. B. vor 1850, nach 1900 usw.) entweder das Feld "Start" oder "Ende" im Abschnitt "Datumsbereich" leer.'
|
|
68
|
+
undated_items: 'Wenn ein Datumsbereich in das Formular im Abschnitt "Datumsbereich" eingegeben wird, werden undatierte Elemente nicht in die Suchergebnisse aufgenommen.'
|
|
69
|
+
limiters: 'Wenn im Feldbegrenzungsbereich keine Kontrollkästchen aktiviert sind, werden alle Werte eingeschlossen.'
|
|
70
|
+
quotation_marks: 'Verwenden Sie Anführungszeichen, um nach einem Ausdruck zu suchen.'
|
|
71
|
+
boolean: 'Verwenden Sie "OR", "AND" und "NOT" im Schlüsselwortfeld, um eine komplexe boolesche Logik zu erstellen. Sie können auch Klammern verwenden.'
|
|
72
|
+
plus: 'Verwenden Sie "+" vor einem Begriff, um ihn erforderlich zu machen.'
|
|
73
|
+
minus: 'Verwenden Sie "-" vor einem Wort oder einer Phrase, um es auszuschließen.'
|
|
74
|
+
fields:
|
|
75
|
+
date_end: 'Ende des Jahres'
|
|
76
|
+
date_range: 'Datumsbereich'
|
|
77
|
+
date_start: 'Beginnen Sie das Jahr'
|
|
78
|
+
front_pages: 'Suche auf Titelseiten beschränken'
|
|
79
|
+
keyword: 'Schlüsselwörter'
|
|
80
|
+
|
|
81
|
+
title_search_form:
|
|
82
|
+
label: 'Suche in dieser Zeitung'
|
|
83
|
+
placeholder: 'Suche in dieser Zeitung...'
|
|
84
|
+
front_pages_link: 'Alle Titelseiten anzeigen'
|
|
85
|
+
|
|
86
|
+
simple_form:
|
|
87
|
+
hints:
|
|
88
|
+
defaults:
|
|
89
|
+
held_by: 'Der Name der Bibliothek oder Organisation, in der sich das Originalelement befindet.'
|
|
90
|
+
place_of_publication: 'Der Ort, an dem der Artikel veröffentlicht wurde.'
|
|
91
|
+
alternative_title: 'Ein zusätzlicher Titel oder Untertitel für den Artikel.'
|
|
92
|
+
edition_name: 'Der Name der Ausgabe des Artikels.'
|
|
93
|
+
edition_number: "Die Nummer der Ausgabe des Artikels."
|
|
94
|
+
extent: 'Eine Beschreibung der physikalischen Eigenschaften des Artikels.'
|
|
95
|
+
frequency: 'Häufigkeit der Veröffentlichung.'
|
|
96
|
+
preceded_by: 'Der Titel vor dieser Veröffentlichung.'
|
|
97
|
+
succeeded_by: 'Der Titel, der auf diese Veröffentlichung folgte.'
|
|
98
|
+
publication_date: 'Veröffentlichungsdatum (YYYY-MM-DD).'
|
|
99
|
+
publication_date_start: 'Erscheinungsdatum Beginn (YYYY-MM-DD).'
|
|
100
|
+
publication_date_end: 'Erscheinungsdatum Ende (YYYY-MM-DD).'
|
|
101
|
+
genre: 'Art des Zeitungsartikels.'
|
|
102
|
+
geographic_coverage: 'Der in diesem Artikel beschriebene Speicherort.'
|
|
103
|
+
page_number: 'Die Paginierungsinformationen, wie auf der Seite geschrieben.'
|
|
104
|
+
text_direction: 'Die Richtung, in die der Text gelesen wird.'
|
|
105
|
+
section: 'Der Abschnitt der Zeitung, in dem der Artikel erscheint.'
|
|
106
|
+
labels:
|
|
107
|
+
defaults:
|
|
108
|
+
held_by: 'Halteort'
|
|
109
|
+
identifier: 'Kennung (lokal)'
|
|
110
|
+
issn: 'ISSN'
|
|
111
|
+
lccn: 'LCCN'
|
|
112
|
+
oclcnum: 'OCLC #'
|
|
113
|
+
publication_date_end: 'Erscheinungsdatum (Ende)'
|
|
114
|
+
publication_date_start: 'Erscheinungsdatum (Beginn)'
|
|
115
|
+
publication_date: 'Erscheinungsdatum'
|
|
116
|
+
place_of_publication: 'Ort der Veröffentlichung'
|
|
117
|
+
alternative_title: 'Zusätzlicher Titel'
|
|
118
|
+
edition_name: "Name der Ausgabe"
|
|
119
|
+
edition_number: "Nummer der Ausgabe"
|
|
120
|
+
volume: 'Volumen'
|
|
121
|
+
issue_number: 'Ausgabe Nummer'
|
|
122
|
+
page_number: 'Seitennummer'
|
|
123
|
+
section: 'Abschnitt'
|
|
124
|
+
extent: "Physikalischen Eigenschaften"
|
|
125
|
+
frequency: 'Häufigkeit'
|
|
126
|
+
preceded_by: 'Vorhergehender Titel'
|
|
127
|
+
succeeded_by: 'Nachfolgender Titel'
|
|
128
|
+
genre: "Genre"
|
|
129
|
+
geographic_coverage: "Orte beschrieben"
|
|
130
|
+
author: 'Autor'
|
|
131
|
+
photographer: 'Fotograf'
|
|
132
|
+
height: 'Höhe'
|
|
133
|
+
width: 'Breite'
|
|
134
|
+
text_direction: 'Richtung der Text'
|
|
135
|
+
|
|
136
|
+
blacklight:
|
|
137
|
+
search:
|
|
138
|
+
fields:
|
|
139
|
+
all_text_tsimv: 'Keyword-Übereinstimmungen'
|
|
140
|
+
place_of_publication_label_tesim: 'Ort der Veröffentlichung'
|
|
141
|
+
publication_title_ssi: 'Zeitung'
|
|
142
|
+
publication_date_dtsi: 'Erscheinungsdatum'
|
|
143
|
+
publication_date_start_dtsi: 'Erscheinungsdatum (Beginn)'
|
|
144
|
+
publication_date_end_dtsi: 'Erscheinungsdatum (Ende)'
|
|
145
|
+
results:
|
|
146
|
+
snippets:
|
|
147
|
+
less: '<< weniger'
|
|
148
|
+
more: 'mehr >>'
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
---
|
|
2
|
+
en:
|
|
3
|
+
iiif_print:
|
|
4
|
+
attributes:
|
|
5
|
+
alternative_title:
|
|
6
|
+
label: 'Alternative title'
|
|
7
|
+
genre:
|
|
8
|
+
label: 'Article type'
|
|
9
|
+
held_by:
|
|
10
|
+
label: 'Held by'
|
|
11
|
+
text_direction:
|
|
12
|
+
label: 'Text direction'
|
|
13
|
+
page_number:
|
|
14
|
+
label: 'Page'
|
|
15
|
+
section:
|
|
16
|
+
label: 'Section'
|
|
17
|
+
author:
|
|
18
|
+
label: 'Author'
|
|
19
|
+
photographer:
|
|
20
|
+
label: 'Photographer'
|
|
21
|
+
volume:
|
|
22
|
+
label: 'Volume'
|
|
23
|
+
issue_number:
|
|
24
|
+
label: 'Issue'
|
|
25
|
+
edition_name:
|
|
26
|
+
label: 'Edition'
|
|
27
|
+
edition_number:
|
|
28
|
+
label: 'Edition #'
|
|
29
|
+
geographic_coverage:
|
|
30
|
+
label: 'Coverage'
|
|
31
|
+
extent:
|
|
32
|
+
label: 'Extent'
|
|
33
|
+
publication_date:
|
|
34
|
+
label: 'Publication date'
|
|
35
|
+
publication_date_start:
|
|
36
|
+
label: 'Publication date (start)'
|
|
37
|
+
publication_date_end:
|
|
38
|
+
label: 'Publication date (end)'
|
|
39
|
+
frequency:
|
|
40
|
+
label: 'Frequency of publication'
|
|
41
|
+
preceded_by:
|
|
42
|
+
label: 'Preceded by'
|
|
43
|
+
succeeded_by:
|
|
44
|
+
label: 'Succeeded by'
|
|
45
|
+
issn:
|
|
46
|
+
label: 'ISSN'
|
|
47
|
+
lccn:
|
|
48
|
+
label: 'LCCN'
|
|
49
|
+
oclcnum:
|
|
50
|
+
label: 'OCLC #'
|
|
51
|
+
place_of_publication:
|
|
52
|
+
label: 'Place of publication'
|
|
53
|
+
publication_title:
|
|
54
|
+
label: 'Publication'
|
|
55
|
+
newspapers_search:
|
|
56
|
+
title: 'Search Newspapers'
|
|
57
|
+
text: 'Use this form to search for full-text newspaper content.'
|
|
58
|
+
help:
|
|
59
|
+
title: 'Newspapers search tips:'
|
|
60
|
+
tips:
|
|
61
|
+
open_date_range: 'For an open-ended date range limit (e.g. before 1850, after 1900, etc.) leave either the "Start" or "End" field blank in the "Date Range" section.'
|
|
62
|
+
undated_items: 'If a date range is entered in the form in the "Date Range" section, undated items will not be included in the search results.'
|
|
63
|
+
limiters: 'If no boxes are checked in the field limit section, all values will be included.'
|
|
64
|
+
quotation_marks: 'Use quotation marks to search as a phrase.'
|
|
65
|
+
boolean: 'Use "OR", "AND", and "NOT" within the keyword field to create complex boolean logic. You can also use parentheses.'
|
|
66
|
+
plus: 'Use "+" before a term to make it required.'
|
|
67
|
+
minus: 'Use "-" before a word or phrase to exclude it.'
|
|
68
|
+
fields:
|
|
69
|
+
date_end: 'End year'
|
|
70
|
+
date_range: 'Date range'
|
|
71
|
+
date_start: 'Start year'
|
|
72
|
+
front_pages: 'Limit search to front pages'
|
|
73
|
+
keyword: 'Keywords'
|
|
74
|
+
|
|
75
|
+
title_search_form:
|
|
76
|
+
label: 'Search within this newspaper'
|
|
77
|
+
placeholder: 'Search within this newspaper...'
|
|
78
|
+
front_pages_link: 'View all front pages'
|
|
79
|
+
|
|
80
|
+
simple_form:
|
|
81
|
+
hints:
|
|
82
|
+
defaults:
|
|
83
|
+
held_by: 'The name of the library or organization that holds the original item.'
|
|
84
|
+
place_of_publication: 'The location where the item was published.'
|
|
85
|
+
alternative_title: 'An additional title or subtitle for the item.'
|
|
86
|
+
edition_name: 'The name of the edition of the item (Evening, Sunday, etc.).'
|
|
87
|
+
edition_number: "The number of the edition of the item (should be numeric, use '1' as default)."
|
|
88
|
+
extent: 'A description of the physical extent of the item (number of pages, size, materials, etc.).'
|
|
89
|
+
frequency: 'The frequency of publication (Daily, Weekly, etc.).'
|
|
90
|
+
preceded_by: 'The title that preceded this publication.'
|
|
91
|
+
succeeded_by: 'The title that followed this publication.'
|
|
92
|
+
publication_date: 'The date of publication (use YYYY-MM-DD format).'
|
|
93
|
+
publication_date_start: 'The initial date of publication (use YYYY-MM-DD format).'
|
|
94
|
+
publication_date_end: 'The final date of publication (use YYYY-MM-DD format).'
|
|
95
|
+
genre: 'Pre-defined categories to describe the article type. More than one may be selected.'
|
|
96
|
+
author: 'The name of the author of the article.'
|
|
97
|
+
photographer: 'The name of the photographer for photos accompanying the article.'
|
|
98
|
+
geographic_coverage: 'The location(s) described in the article.'
|
|
99
|
+
page_number: 'The pagination information, as written on the page.'
|
|
100
|
+
text_direction: 'The reading direction of the text. Enter as "ltr" (left-to-right) or "rtl (right-to-left)"'
|
|
101
|
+
section: 'The section of the newspaper the item appears in (Business, Sports, etc.)'
|
|
102
|
+
labels:
|
|
103
|
+
defaults:
|
|
104
|
+
held_by: 'Holding location'
|
|
105
|
+
identifier: 'Identifier (local)'
|
|
106
|
+
issn: 'ISSN'
|
|
107
|
+
lccn: 'LCCN'
|
|
108
|
+
oclcnum: 'OCLC #'
|
|
109
|
+
publication_date_end: 'Publication date (end)'
|
|
110
|
+
publication_date_start: 'Publication date (start)'
|
|
111
|
+
|
|
112
|
+
blacklight:
|
|
113
|
+
search:
|
|
114
|
+
fields:
|
|
115
|
+
all_text_tsimv: 'Keyword matches'
|
|
116
|
+
results:
|
|
117
|
+
snippets:
|
|
118
|
+
less: '<< less'
|
|
119
|
+
more: 'more >>'
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
---
|
|
2
|
+
es:
|
|
3
|
+
iiif_print:
|
|
4
|
+
attributes:
|
|
5
|
+
held_by:
|
|
6
|
+
label: 'Ubicación de retención'
|
|
7
|
+
identifier:
|
|
8
|
+
label: 'Identificador (local)'
|
|
9
|
+
issn:
|
|
10
|
+
label: 'ISSN'
|
|
11
|
+
lccn:
|
|
12
|
+
label: 'LCCN'
|
|
13
|
+
oclcnum:
|
|
14
|
+
label: 'OCLC #'
|
|
15
|
+
publication_date_end:
|
|
16
|
+
label: 'Fecha de publicación (final)'
|
|
17
|
+
publication_date_start:
|
|
18
|
+
label: 'Fecha de publicación (inicio)'
|
|
19
|
+
publication_date:
|
|
20
|
+
label: 'Fecha de publicación'
|
|
21
|
+
alternative_title:
|
|
22
|
+
label: 'Título adicional'
|
|
23
|
+
edition_name:
|
|
24
|
+
label: 'Nombre de la edición'
|
|
25
|
+
edition_number:
|
|
26
|
+
label: 'Número de la edición'
|
|
27
|
+
volume:
|
|
28
|
+
label: 'Volumen'
|
|
29
|
+
issue_number:
|
|
30
|
+
label: 'Número de emisión'
|
|
31
|
+
page_number:
|
|
32
|
+
label: 'Paginación'
|
|
33
|
+
section:
|
|
34
|
+
label: 'Sección'
|
|
35
|
+
extent:
|
|
36
|
+
label: 'Características físicas'
|
|
37
|
+
frequency:
|
|
38
|
+
label: 'Frecuencia'
|
|
39
|
+
preceded_by:
|
|
40
|
+
label: 'Título anterior'
|
|
41
|
+
succeeded_by:
|
|
42
|
+
label: 'Título sucesivo'
|
|
43
|
+
genre:
|
|
44
|
+
label: 'Género'
|
|
45
|
+
geographic_coverage:
|
|
46
|
+
label: 'Lugares descritos'
|
|
47
|
+
author:
|
|
48
|
+
label: 'Autor'
|
|
49
|
+
photographer:
|
|
50
|
+
label: 'Fotógrafo'
|
|
51
|
+
height:
|
|
52
|
+
label: 'Altura'
|
|
53
|
+
width:
|
|
54
|
+
label: 'Anchura'
|
|
55
|
+
text_direction:
|
|
56
|
+
label: 'Dirección texto'
|
|
57
|
+
place_of_publication:
|
|
58
|
+
label: 'Lugar de publicacion'
|
|
59
|
+
publication_title:
|
|
60
|
+
label: 'Publicacion'
|
|
61
|
+
newspapers_search:
|
|
62
|
+
title: 'Búsqueda de periódicos'
|
|
63
|
+
text: 'Utilice este formulario para buscar contenido de periódico de texto completo.'
|
|
64
|
+
help:
|
|
65
|
+
title: 'Consejos de búsqueda de periódicos:'
|
|
66
|
+
tips:
|
|
67
|
+
open_date_range: 'Para un límite de rango de fecha abierto (por ejemplo, antes de 1850, después de 1900, etc.) deje el campo "Inicio" o "Fin" en blanco en la sección "Rango de fechas".'
|
|
68
|
+
undated_items: 'Si se ingresa un rango de fechas en el formulario en la sección "Rango de fechas", los elementos sin fecha no se incluirán en los resultados de la búsqueda.'
|
|
69
|
+
limiters: 'Si no se marca ninguna casilla en la sección de límite de campo, se incluirán todos los valores.'
|
|
70
|
+
quotation_marks: 'Utilice comillas para buscar como una frase.'
|
|
71
|
+
boolean: 'Utilice "OR", "AND" y "NOT" dentro del campo de palabra clave para crear una lógica booleana compleja. También puedes usar paréntesis.'
|
|
72
|
+
plus: 'Use "+" antes de un término para hacerlo requerido.'
|
|
73
|
+
minus: 'Use "-" antes de una palabra o frase para excluirla.'
|
|
74
|
+
fields:
|
|
75
|
+
date_end: 'Año final'
|
|
76
|
+
date_range: 'Rango de fechas'
|
|
77
|
+
date_start: 'Año de inicio'
|
|
78
|
+
front_pages: 'Limitar la búsqueda a portadas'
|
|
79
|
+
keyword: 'Palabras clave'
|
|
80
|
+
|
|
81
|
+
title_search_form:
|
|
82
|
+
label: 'Buscar dentro de este periódico'
|
|
83
|
+
placeholder: 'Buscar dentro de este periódico...'
|
|
84
|
+
front_pages_link: 'Ver todas las portadas'
|
|
85
|
+
|
|
86
|
+
simple_form:
|
|
87
|
+
hints:
|
|
88
|
+
defaults:
|
|
89
|
+
held_by: 'El nombre de la biblioteca u organización que contiene el elemento original.'
|
|
90
|
+
place_of_publication: 'La ubicación donde se publicó el artículo.'
|
|
91
|
+
alternative_title: 'Un título o subtítulo adicional para el artículo.'
|
|
92
|
+
edition_name: 'El nombre de la edición del artículo.'
|
|
93
|
+
edition_number: "El número de la edición del artículo."
|
|
94
|
+
extent: 'Una descripción de las características físicas del artículo.'
|
|
95
|
+
frequency: 'Frecuencia de publicación.'
|
|
96
|
+
preceded_by: 'El título que precedió a esta publicación.'
|
|
97
|
+
succeeded_by: 'El título que siguió a esta publicación.'
|
|
98
|
+
publication_date: 'Fecha de publicación (YYYY-MM-DD).'
|
|
99
|
+
publication_date_start: 'Fecha inicio de publicación (YYYY-MM-DD).'
|
|
100
|
+
publication_date_end: 'Fecha final de publicación (use YYYY-MM-DD format).'
|
|
101
|
+
genre: 'Tipo de artículo periodístico.'
|
|
102
|
+
geographic_coverage: 'La ubicación descrita en este artículo.'
|
|
103
|
+
page_number: 'La información de paginación, tal como está escrita en la página.'
|
|
104
|
+
text_direction: 'La dirección en la que se lee el texto.'
|
|
105
|
+
section: 'La sección del periódico en la que aparece el artículo.'
|
|
106
|
+
labels:
|
|
107
|
+
defaults:
|
|
108
|
+
held_by: 'Ubicación de retención'
|
|
109
|
+
identifier: 'Identificador (local)'
|
|
110
|
+
issn: 'ISSN'
|
|
111
|
+
lccn: 'LCCN'
|
|
112
|
+
oclcnum: 'OCLC #'
|
|
113
|
+
publication_date_end: 'Fecha de publicación (final)'
|
|
114
|
+
publication_date_start: 'Fecha de publicación (inicio)'
|
|
115
|
+
publication_date: 'Fecha de publicación'
|
|
116
|
+
place_of_publication: 'Ubicación de publicación'
|
|
117
|
+
alternative_title: 'Título adicional'
|
|
118
|
+
edition_name: "Nombre de la edición"
|
|
119
|
+
edition_number: "Número de la edición"
|
|
120
|
+
volume: 'Volumen'
|
|
121
|
+
issue_number: 'Número de emisión'
|
|
122
|
+
page_number: 'Paginación'
|
|
123
|
+
section: 'Sección'
|
|
124
|
+
extent: "Características físicas"
|
|
125
|
+
frequency: 'Frecuencia'
|
|
126
|
+
preceded_by: 'Título anterior'
|
|
127
|
+
succeeded_by: 'Título sucesivo'
|
|
128
|
+
genre: "Género"
|
|
129
|
+
geographic_coverage: "Lugares descritos"
|
|
130
|
+
author: 'Autor'
|
|
131
|
+
photographer: 'Fotógrafo'
|
|
132
|
+
height: 'Altura'
|
|
133
|
+
width: 'Anchura'
|
|
134
|
+
text_direction: 'Dirección texto'
|
|
135
|
+
|
|
136
|
+
blacklight:
|
|
137
|
+
search:
|
|
138
|
+
fields:
|
|
139
|
+
all_text_tsimv: 'Coincidencias de palabras clave'
|
|
140
|
+
place_of_publication_label_tesim: 'Ubicación de publicació'
|
|
141
|
+
publication_title_ssi: 'Título de periódico'
|
|
142
|
+
publication_date_dtsi: 'Fecha de publicación'
|
|
143
|
+
publication_date_start_dtsi: 'Fecha de publicación (inicio)'
|
|
144
|
+
publication_date_end_dtsi: 'Fecha de publicación (final)'
|
|
145
|
+
results:
|
|
146
|
+
snippets:
|
|
147
|
+
less: '<< menos'
|
|
148
|
+
more: 'más >>'
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
---
|
|
2
|
+
fr:
|
|
3
|
+
iiif_print:
|
|
4
|
+
attributes:
|
|
5
|
+
held_by:
|
|
6
|
+
label: 'Lieu de détention'
|
|
7
|
+
identifier:
|
|
8
|
+
label: 'Identifiant (local)'
|
|
9
|
+
issn:
|
|
10
|
+
label: 'ISSN'
|
|
11
|
+
lccn:
|
|
12
|
+
label: 'LCCN'
|
|
13
|
+
oclcnum:
|
|
14
|
+
label: 'OCLC #'
|
|
15
|
+
publication_date_end:
|
|
16
|
+
label: 'Date de publication (fin)'
|
|
17
|
+
publication_date_start:
|
|
18
|
+
label: 'Date de publication (début)'
|
|
19
|
+
publication_date:
|
|
20
|
+
label: 'Date de publication'
|
|
21
|
+
alternative_title:
|
|
22
|
+
label: 'Titre supplémentaire'
|
|
23
|
+
edition_name:
|
|
24
|
+
label: "Nom de l'édition"
|
|
25
|
+
edition_number:
|
|
26
|
+
label: "Numéro de l'édition"
|
|
27
|
+
volume:
|
|
28
|
+
label: 'Volume'
|
|
29
|
+
issue_number:
|
|
30
|
+
label: 'Numéro de série'
|
|
31
|
+
page_number:
|
|
32
|
+
label: 'Pagination'
|
|
33
|
+
section:
|
|
34
|
+
label: 'Section'
|
|
35
|
+
extent:
|
|
36
|
+
label: 'Caractéristiques physiques'
|
|
37
|
+
frequency:
|
|
38
|
+
label: 'Fréquence'
|
|
39
|
+
preceded_by:
|
|
40
|
+
label: 'Titre précédent'
|
|
41
|
+
succeeded_by:
|
|
42
|
+
label: 'Titre suivant'
|
|
43
|
+
genre:
|
|
44
|
+
label: 'Genre'
|
|
45
|
+
geographic_coverage:
|
|
46
|
+
label: 'Lieux décrits'
|
|
47
|
+
author:
|
|
48
|
+
label: 'Auteur'
|
|
49
|
+
photographer:
|
|
50
|
+
label: 'Photographe'
|
|
51
|
+
height:
|
|
52
|
+
label: 'Taille'
|
|
53
|
+
width:
|
|
54
|
+
label: 'Largeur'
|
|
55
|
+
text_direction:
|
|
56
|
+
label: 'Direction du texte'
|
|
57
|
+
place_of_publication:
|
|
58
|
+
label: 'Place de publication'
|
|
59
|
+
publication_title:
|
|
60
|
+
label: 'Publication'
|
|
61
|
+
newspapers_search:
|
|
62
|
+
title: 'Rechercher dans les journaux'
|
|
63
|
+
text: 'Utilisez ce formulaire pour rechercher un contenu de journal en texte intégral.'
|
|
64
|
+
help:
|
|
65
|
+
title: 'Conseils de recherche dans les journaux:'
|
|
66
|
+
tips:
|
|
67
|
+
open_date_range: 'Pour une plage de dates ouverte (par exemple, avant 1850, après 1900, etc.), laissez le champ "Début" ou "Fin" vide dans la section "Période".'
|
|
68
|
+
undated_items: 'Si une plage de dates est entrée dans le formulaire dans la section "Plage de dates", les éléments non datés ne seront pas inclus dans les résultats de la recherche.'
|
|
69
|
+
limiters: "Si aucune case n'est cochée dans la section Limite de champs, toutes les valeurs seront incluses."
|
|
70
|
+
quotation_marks: 'Utilisez des guillemets pour rechercher une phrase.'
|
|
71
|
+
boolean: 'Utilisez "OU", "AND" et "NOT" dans le champ du mot clé pour créer une logique booléenne complexe. Vous pouvez également utiliser des parenthèses.'
|
|
72
|
+
plus: "Utilisez \"+\" avant un terme pour le rendre obligatoire."
|
|
73
|
+
minus: "Utilisez \"-\" avant un mot ou une phrase pour l'exclure."
|
|
74
|
+
fields:
|
|
75
|
+
date_end: "Fin d'année"
|
|
76
|
+
date_range: 'Plage de dates'
|
|
77
|
+
date_start: 'Année de début'
|
|
78
|
+
front_pages: 'Limiter la recherche aux premières pages'
|
|
79
|
+
keyword: 'Mots clés'
|
|
80
|
+
|
|
81
|
+
title_search_form:
|
|
82
|
+
label: 'Rechercher dans ce journal'
|
|
83
|
+
placeholder: 'Rechercher dans ce journal...'
|
|
84
|
+
front_pages_link: 'Voir toutes les premières pages'
|
|
85
|
+
|
|
86
|
+
simple_form:
|
|
87
|
+
hints:
|
|
88
|
+
defaults:
|
|
89
|
+
held_by: "Nom de la bibliothèque ou de l'organisation qui contient l'élément d'origine."
|
|
90
|
+
place_of_publication: "L'emplacement où l'élément a été publié."
|
|
91
|
+
alternative_title: "Un titre ou un sous-titre supplémentaire pour l'élément."
|
|
92
|
+
edition_name: "Le nom de l'édition de l'élément."
|
|
93
|
+
edition_number: "Le numéro de l'édition de l'élément."
|
|
94
|
+
extent: "Une description des caractéristiques physiques de l'article."
|
|
95
|
+
frequency: 'Fréquence de publication.'
|
|
96
|
+
preceded_by: 'Le titre qui a précédé cette publication.'
|
|
97
|
+
succeeded_by: 'Le titre qui a suivi cette publication.'
|
|
98
|
+
publication_date: 'Date de publication (YYYY-MM-DD).'
|
|
99
|
+
publication_date_start: 'Date début de publication (YYYY-MM-DD).'
|
|
100
|
+
publication_date_end: 'Date fin de publication (YYYY-MM-DD).'
|
|
101
|
+
genre: "Type d'article de journal."
|
|
102
|
+
geographic_coverage: "L'emplacement décrit dans cet article."
|
|
103
|
+
page_number: "Les informations de pagination, telles qu'elles sont écrites sur la page."
|
|
104
|
+
text_direction: 'La direction dans laquelle le texte est lu.'
|
|
105
|
+
section: 'La section du journal dans laquelle l’article apparaît.'
|
|
106
|
+
labels:
|
|
107
|
+
defaults:
|
|
108
|
+
held_by: 'Lieu de détention'
|
|
109
|
+
identifier: 'Identifiant (local)'
|
|
110
|
+
issn: 'ISSN'
|
|
111
|
+
lccn: 'LCCN'
|
|
112
|
+
oclcnum: 'OCLC #'
|
|
113
|
+
publication_date_end: 'Date de publication (fin)'
|
|
114
|
+
publication_date_start: 'Date de publication (début)'
|
|
115
|
+
publication_date: 'Date de publication'
|
|
116
|
+
place_of_publication: 'Emplacement de publication'
|
|
117
|
+
alternative_title: 'Titre supplémentaire'
|
|
118
|
+
edition_name: "Nom de l'édition"
|
|
119
|
+
edition_number: "Numéro de l'édition"
|
|
120
|
+
volume: 'Volume'
|
|
121
|
+
issue_number: 'Numéro de série'
|
|
122
|
+
page_number: 'Pagination'
|
|
123
|
+
section: 'Section'
|
|
124
|
+
extent: "Caractéristiques physiques"
|
|
125
|
+
frequency: 'Fréquence'
|
|
126
|
+
preceded_by: 'Titre précédent'
|
|
127
|
+
succeeded_by: 'Titre suivant'
|
|
128
|
+
genre: "Genre"
|
|
129
|
+
geographic_coverage: "Lieux décrits"
|
|
130
|
+
author: 'Auteur'
|
|
131
|
+
photographer: 'Photographe'
|
|
132
|
+
height: 'Taille'
|
|
133
|
+
width: 'Largeur'
|
|
134
|
+
text_direction: 'Direction du texte'
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
blacklight:
|
|
138
|
+
search:
|
|
139
|
+
fields:
|
|
140
|
+
all_text_tsimv: 'Correspondances de mots clés'
|
|
141
|
+
place_of_publication_label_tesim: 'Emplacement de publication'
|
|
142
|
+
publication_title_ssi: 'Journal'
|
|
143
|
+
publication_date_dtsi: 'Date de publication'
|
|
144
|
+
publication_date_start_dtsi: 'Date de publication (début)'
|
|
145
|
+
publication_date_end_dtsi: 'Date de publication (fin)'
|
|
146
|
+
results:
|
|
147
|
+
snippets:
|
|
148
|
+
less: '<< moins'
|
|
149
|
+
more: 'plus >>'
|