blacklight-spotlight 3.0.0.rc1 → 3.0.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +1 -1
  3. data/app/assets/stylesheets/spotlight/_catalog.scss +6 -6
  4. data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +179 -84
  5. data/app/assets/stylesheets/spotlight/_item_text_block.scss +1 -1
  6. data/app/assets/stylesheets/spotlight/_pages.scss +9 -4
  7. data/app/assets/stylesheets/spotlight/_translations.scss +6 -0
  8. data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
  9. data/app/views/spotlight/about_pages/_empty.html.erb +5 -5
  10. data/app/views/spotlight/contacts/_form.html.erb +1 -1
  11. data/app/views/spotlight/feature_pages/_empty.html.erb +5 -5
  12. data/app/views/spotlight/featured_images/_form.html.erb +1 -1
  13. data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
  14. data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
  15. data/app/views/spotlight/translations/_import.html.erb +5 -5
  16. data/config/locales/spotlight.en.yml +78 -78
  17. data/lib/spotlight/version.rb +1 -1
  18. data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
  19. data/spec/controllers/spotlight/catalog_controller_spec.rb +1 -1
  20. data/spec/controllers/spotlight/contacts_controller_spec.rb +2 -2
  21. data/spec/controllers/spotlight/home_pages_controller_spec.rb +1 -1
  22. data/spec/examples.txt +136 -1410
  23. data/spec/factories/searches.rb +1 -1
  24. data/spec/features/browse_category_admin_spec.rb +1 -1
  25. data/spec/features/catalog_spec.rb +2 -2
  26. data/spec/features/dashboard_spec.rb +2 -2
  27. data/spec/features/edit_search_fields_spec.rb +2 -2
  28. data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
  29. data/spec/features/exhibits/translation_editing_spec.rb +6 -6
  30. data/spec/features/home_page_spec.rb +1 -1
  31. data/spec/features/item_admin_spec.rb +4 -4
  32. data/spec/features/javascript/edit_in_place_spec.rb +1 -1
  33. data/spec/features/javascript/search_config_admin_spec.rb +1 -1
  34. data/spec/features/report_a_problem_spec.rb +1 -1
  35. data/spec/models/spotlight/exhibit_spec.rb +1 -1
  36. data/spec/models/spotlight/main_navigation_spec.rb +1 -1
  37. data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
  38. data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
  39. data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +6 -6
  40. data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
  41. metadata +8 -2
@@ -9,7 +9,7 @@
9
9
  <%= f.fields_for :avatar, (@contact.avatar || @contact.build_avatar) do |af| %>
10
10
  <div data-cropper="<%= af.object.model_name.singular_route_key %>" data-form-prefix="<%= form_prefix(af) %>">
11
11
  <%= field_set_tag(t(:'.avatar.header')) do %>
12
- <p class="instructions"><%= t(:'featured_images.form.crop_area.help', scope: [:spotlight], thing: 'contact photo') %></p>
12
+ <p class="instructions"><%= t(:'featured_images.form.crop_area.help_html', scope: [:spotlight], thing: 'contact photo') %></p>
13
13
 
14
14
  <div>
15
15
  <%= af.radio_button(:source, :remote, label: t(:'.source.remote.label')) %>
@@ -4,23 +4,23 @@
4
4
 
5
5
  <ol>
6
6
  <li>
7
- To add content to this page, click the Edit button above to enter Edit mode.
7
+ To add content to this page, select the Edit button above to enter edit mode.
8
8
  </li>
9
9
  <li>
10
- In Edit mode, click the plus sign icon to display the widget selection panel. This panel displays a range of widgets, each of which adds a different type of content to the page.
10
+ In edit mode, select the plus sign icon to display the widget selection panel. This panel displays a range of widgets, each of which adds a different type of content to the page.
11
11
  </li>
12
12
  <li>
13
- Select a widget to configure. Click <strong>Save changes</strong> when you're ready to add it to the page.
13
+ Select a widget to configure. Select <b>Save changes</b> when you're ready to add it to the page.
14
14
  </li>
15
15
  <li>
16
16
  Repeat the steps above to continue adding widgets to build out the page. To work more efficiently, you can configure multiple widgets before saving the page. Use the icons in the lower right of the widget configuration panel to preview, reorder, or delete widgets.
17
17
  </li>
18
18
  <li>
19
- Note the <strong>Options</strong> and <strong>Thumbnail</strong> tabs at the top of the page in Edit mode. Options in these tabs enable you to publish or unpublish the page, turn on or off the page sidebar, and create a thumbnail image to represent the page.
19
+ Note the <b>Options</b> and <b>Thumbnail</b> tabs at the top of the page in edit mode. Options in these tabs enable you to publish or unpublish the page, turn on or off the page sidebar, and create a thumbnail image to represent the page.
20
20
  </li>
21
21
  <li>
22
22
  Visit the Spotlight <%= link_to 'documentation pages', 'https://github.com/projectblacklight/spotlight/wiki' %> to learn more about creating exhibit pages.
23
23
  </li>
24
24
  </ol>
25
25
  </div>
26
- <% end %>
26
+ <% end %>
@@ -30,7 +30,7 @@
30
30
  </div>
31
31
  <% end %>
32
32
  <%= field_set_tag(t(:'.source.remote.header')) do %>
33
- <p class="instructions"><%= t(:'.crop_area.help', thing: crop_type) %></p>
33
+ <p class="instructions"><%= t(:'.crop_area.help_html', thing: crop_type) %></p>
34
34
  <%= iiif_cropper_tags f, initial_crop_selection: initial_crop_selection %>
35
35
  <% end %>
36
36
  </div>
@@ -12,7 +12,7 @@
12
12
  </div>
13
13
  <% end %>
14
14
  <%= field_set_tag(t(:'.source.remote.header')) do %>
15
- <p class="instructions"><%= t(:'.crop_area.help', thing: crop_type) %></p>
15
+ <p class="instructions"><%= t(:'.crop_area.help_html', thing: crop_type) %></p>
16
16
  <%= iiif_cropper_tags f, initial_crop_selection: initial_crop_selection %>
17
17
  <% end %>
18
18
  </div>
@@ -20,14 +20,14 @@
20
20
  <% end %>
21
21
 
22
22
  <% if Spotlight::Engine.config.resource_partials.any? %>
23
- <li>Add items to the exhibit. Go to the <%= link_to "Curation > Items", admin_exhibit_catalog_path(current_exhibit) %> page and click <strong>Add items</strong>. You can add items individually or in bulk via a CSV file.</li>
23
+ <li>Add items to the exhibit. Go to the <%= link_to "Curation > Items", admin_exhibit_catalog_path(current_exhibit) %> page and select <b>Add items</b>. You can add items individually or in bulk via a CSV file.</li>
24
24
  <% end %>
25
25
 
26
26
  <% if can? :update, current_exhibit.blacklight_configuration %>
27
- <li>Use the other Curation pages, such as <%= link_to "Curation > Metadata", edit_exhibit_metadata_configuration_path(current_exhibit) %> and <%= link_to "Curation > Search", edit_exhibit_search_configuration_path(current_exhibit) %>, to customize the way various features are presented to exhibit visitors.</li>
27
+ <li>Use the other curation pages, such as <%= link_to "Curation > Metadata", edit_exhibit_metadata_configuration_path(current_exhibit) %> and <%= link_to "Curation > Search", edit_exhibit_search_configuration_path(current_exhibit) %>, to customize the way various features are presented to exhibit visitors.</li>
28
28
  <% end %>
29
29
 
30
30
  <li>Visit the Spotlight <%= link_to "documentation pages", "https://github.com/projectblacklight/spotlight/wiki" %> to learn how to add and edit feature pages, about pages, custom browse categories, and more.</li>
31
31
  </ol>
32
32
  <% end %>
33
- </div>
33
+ </div>
@@ -1,10 +1,10 @@
1
1
  <% if can? :import_translations, Spotlight::Exhibit %>
2
- <div class="row col-md-12 mb-4">
2
+ <div class="row col-md-12 mb-5">
3
3
  <h2><%= t(:'.header') %></h2>
4
4
  <p class="instructions"><%= t(:'.description') %></p>
5
5
 
6
- <%= bootstrap_form_for current_exhibit, url: spotlight.import_exhibit_translations_path(current_exhibit), html: { class: 'row col-md-12 clearfix mb-3', multipart: true } do |f| %>
7
- <%= f.label :value, t(".import_label"), class: 'col-form-label col-12 col-sm-3 text-right' %>
6
+ <%= bootstrap_form_for current_exhibit, url: spotlight.import_exhibit_translations_path(current_exhibit), html: { class: 'row col-md-12 align-items-center clearfix mb-3', multipart: true } do |f| %>
7
+ <%= f.label :value, t(".import_label"), class: 'col-form-label col-12 col-sm-3 pl-0 translation-import-export-label' %>
8
8
 
9
9
  <div class="input-group col px-0">
10
10
  <%= file_field_tag :file, class: 'form-control' %>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </div>
16
16
  <% end %>
17
- <div class="row col-md-12">
18
- <%= content_tag :span, t(".export_label"), class: 'col-form-label col-12 col-sm-3 text-right' %>
17
+ <div class="row col-md-12 align-items-center">
18
+ <%= content_tag :span, t(".export_label"), class: 'col-form-label col-12 col-sm-3 pl-0 translation-import-export-label' %>
19
19
 
20
20
  <%= link_to t(:'.export_current_locale', language: t(:"locales.#{@language}")), spotlight.exhibit_translations_path(current_exhibit, format: "yaml", locale: @language), class: 'btn btn-primary mr-3' %>
21
21
  <%= link_to t(:'.export_default_locale', language: t(:"locales.#{I18n.default_locale}")), spotlight.exhibit_translations_path(current_exhibit, format: "yaml", locale: I18n.default_locale), class: 'btn btn-primary' %>
@@ -158,9 +158,9 @@ en:
158
158
  reindexing_log:
159
159
  status:
160
160
  failed: Failed
161
- in_progress: In Progress
161
+ in_progress: In progress
162
162
  succeeded: Successful
163
- unstarted: Not Yet Started
163
+ unstarted: Not yet started
164
164
  shared:
165
165
  site_sidebar:
166
166
  documentation: Curator documentation
@@ -171,7 +171,7 @@ en:
171
171
  header: Contacts
172
172
  contacts_form:
173
173
  header: Contacts
174
- instructions: Enter details for each librarian, curator or other contact person for this exhibit. Select the contacts you want to be show in the sidebar of the About Pages. Drag and drop contacts to specify the order in which they are shown in the sidebar.
174
+ instructions: Enter details for each librarian, curator or other contact person for this exhibit. Select the contacts you want to be show in the sidebar of the about pages. Drag and drop contacts to specify the order in which they are shown in the sidebar.
175
175
  page_options:
176
176
  published: Publish
177
177
  admin_users:
@@ -196,7 +196,7 @@ en:
196
196
  edit:
197
197
  header: Appearance
198
198
  main_navigation:
199
- help: Select the menu items you want to be displayed in the main navigation menu (menu items are only displayed when published pages exist for that item). Click a menu item to change its display label. Drag and drop a menu item to change their order in the menu.
199
+ help: Select the menu items you want to be displayed in the main navigation menu (menu items are only displayed when published pages exist for that item). Select a menu item to change its display label. Drag and drop a menu item to change their order in the menu.
200
200
  menu: Main menu
201
201
  site_masthead:
202
202
  heading: Exhibit masthead
@@ -230,20 +230,20 @@ en:
230
230
  catalog:
231
231
  admin:
232
232
  header: Items
233
- title: Curation - Items
233
+ title: Curation - items
234
234
  admin_header:
235
235
  new_resource: Add items
236
236
  reindex: Reindex items
237
237
  breadcrumb:
238
- index: Search Results
238
+ index: Search results
239
239
  document_visibility_control:
240
240
  inprogress:
241
241
  label: ''
242
242
  make_private:
243
- button: Make Private
243
+ button: Make private
244
244
  label: ''
245
245
  make_public:
246
- button: Make Public
246
+ button: Make public
247
247
  label: ''
248
248
  edit_default:
249
249
  url-field:
@@ -252,10 +252,10 @@ en:
252
252
  blank_field_warning_html: This field is currently hidden on all pages. You can make it visible on the Curation &gt; %{link} page.
253
253
  facets:
254
254
  exhibit_visibility:
255
- label: Item Visibility
255
+ label: Item visibility
256
256
  private: Private
257
257
  fields:
258
- date_added: Date Added
258
+ date_added: Date added
259
259
  title: Title
260
260
  visibility: Public
261
261
  reindex_progress_panel:
@@ -281,7 +281,7 @@ en:
281
281
  subject: "%{application_name} exhibit feedback"
282
282
  contacts:
283
283
  edit:
284
- header: Edit Contact
284
+ header: Edit contact
285
285
  form:
286
286
  avatar:
287
287
  header: Avatar
@@ -300,7 +300,7 @@ en:
300
300
  title:
301
301
  placeholder: Job title most relevant to this exhibit
302
302
  new:
303
- header: Add Exhibit Contact
303
+ header: Add exhibit contact
304
304
  curation:
305
305
  header: Curation
306
306
  nav:
@@ -317,7 +317,7 @@ en:
317
317
  translations: Translations
318
318
  custom_fields:
319
319
  edit:
320
- header: Edit Exhibit-Specific Field
320
+ header: Edit exhibit-specific field
321
321
  form:
322
322
  field_type:
323
323
  label: Type
@@ -326,19 +326,19 @@ en:
326
326
  is_multiple:
327
327
  label: Multi-valued?
328
328
  new:
329
- header: Add Exhibit-Specific Field
329
+ header: Add exhibit-specific field
330
330
  custom_search_fields:
331
331
  edit:
332
- header: Edit Exhibit-Specific Field
332
+ header: Edit exhibit-specific field
333
333
  form:
334
334
  field:
335
335
  help: Specify fields to be searched and their boost values (e.g., full_title_tesim^100 personal_name_tesim^50).
336
336
  new:
337
- header: Add Exhibit-Specific Field
337
+ header: Add exhibit-specific field
338
338
  dashboards:
339
339
  analytics:
340
340
  header: Analytics
341
- monthly_header: User Activity Over the Past Month
341
+ monthly_header: User activity over the past month
342
342
  pages:
343
343
  header: Most popular pages
344
344
  pagetitle: page title
@@ -349,21 +349,21 @@ en:
349
349
  field:
350
350
  last_edited_by: User
351
351
  title: Title
352
- updated_at: Last Edited
353
- header: Recent Site Building Activity
352
+ updated_at: Last edited
353
+ header: Recent site building activity
354
354
  reindexing_activity:
355
355
  field:
356
356
  date: Date
357
- duration: Elapsed Time
358
- items_reindexed_count: Items Indexed
357
+ duration: Elapsed time
358
+ items_reindexed_count: Items indexed
359
359
  job_status: Status
360
- user: Requested By
361
- header: Recent Item Indexing Activity
360
+ user: Requested by
361
+ header: Recent item indexing activity
362
362
  no_reindexing_activity: There has been no reindexing activity
363
363
  show:
364
364
  header: Dashboard
365
365
  solr_document_activity:
366
- header: Recently Updated Items
366
+ header: Recently updated items
367
367
  no_documents: There are no documents in this exhibit
368
368
  exhibitnavbar:
369
369
  label: Exhibit navigation
@@ -412,7 +412,7 @@ en:
412
412
  unpublished: Unpublished exhibits
413
413
  user: Your exhibits
414
414
  languages:
415
- current_header: Current Languages
415
+ current_header: Current languages
416
416
  current_instructions: Each language listed below is available for translations on the Curation > Translations page. To enable exhibit visitors to change the language of the exhibit, enable the Public checkbox. To hide translations from an available language from the exhibit, disable the Public checkbox.
417
417
  heading: Languages
418
418
  modal:
@@ -440,7 +440,7 @@ en:
440
440
  exhibits_admin_invitation_mailer:
441
441
  invitation_instructions:
442
442
  accept: Accept invitation
443
- accept_invitation: " You can accept this invitation by clicking the link below."
443
+ accept_invitation: You can accept this invitation by selecting the link below.
444
444
  hello: Hello!
445
445
  ignore: If you don't want to accept the invitation, please ignore this email. Your exhibits administrator account won't be created until you access the link above.
446
446
  someone_invited_you: The Exhibits Administrator has invited you to help manage exhibits.
@@ -451,7 +451,7 @@ en:
451
451
  featured_images:
452
452
  form:
453
453
  crop_area:
454
- help: Adjust the image so that the rectangle contains the area you want to use as the %{thing}. Click "Save changes" to save the cropped area.
454
+ help_html: Adjust the image so that the rectangle contains the area you want to use as the %{thing}. Select <b>Save changes</b> to save the cropped area.
455
455
  non_iiif_alert_html: The image source must be a IIIF image. Contact your exhibits adminstrator or see the <a href="http://iiif.io">IIIF website</a> for more information about IIIF.
456
456
  source:
457
457
  exhibit:
@@ -464,7 +464,7 @@ en:
464
464
  label: Upload an image
465
465
  upload_form:
466
466
  crop_area:
467
- help: Adjust the image so that the rectangle contains the area you want to use as the %{thing}. Click "Save changes" to save the cropped area.
467
+ help_html: Adjust the image so that the rectangle contains the area you want to use as the %{thing}. Select <b>Save changes</b> to save the cropped area.
468
468
  non_iiif_alert_html: The image source must be a IIIF image. Contact your exhibits adminstrator or see the <a href="http://iiif.io">IIIF website</a> for more information about IIIF.
469
469
  source:
470
470
  exhibit:
@@ -494,7 +494,7 @@ en:
494
494
  title: Your CSV file has just finished being processed.
495
495
  invitation_mailer:
496
496
  invitation_instructions:
497
- accept_invitation: You can accept this invitation by clicking the link below.
497
+ accept_invitation: You can accept this invitation by selecting the link below.
498
498
  hello: Hello!
499
499
  ignore: If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above.
500
500
  someone_invited_you: The Exhibits Administrator has invited you to help work on the "%{exhibit_name}" exhibit.
@@ -503,21 +503,21 @@ en:
503
503
  main_navigation:
504
504
  about: About
505
505
  browse: Browse
506
- curated_features: Curated Features
506
+ curated_features: Curated features
507
507
  metadata_configurations:
508
508
  edit:
509
509
  deselect_all: Deselect all
510
510
  exhibit_specific:
511
- header: Exhibit-Specific Fields
511
+ header: Exhibit-specific fields
512
512
  instructions: You can add metadata fields to supplement the metadata fields that are part of the repository item record.
513
513
  field:
514
514
  label: Field name
515
515
  header: Metadata
516
- instructions: Select metadata fields to display on each type of page. Click a field name to edit its display label. Drag and drop fields to specify the order in which they are displayed.
517
- order_header: Display and Order Metadata Fields
516
+ instructions: Select metadata fields to display on each type of page. Select a field name to edit its display label. Drag and drop fields to specify the order in which they are displayed.
517
+ order_header: Display and order metadata fields
518
518
  select_all: Select all
519
519
  view:
520
- show: Item Details
520
+ show: Item details
521
521
  pages:
522
522
  edit:
523
523
  header: Edit page
@@ -527,30 +527,30 @@ en:
527
527
  page_options: Options
528
528
  page_thumbnail: Thumbnail
529
529
  thumbnail:
530
- help: You can select and crop an image to visually represent this page. It will be used as the thumbnail image if you include this page using the 'Highlight Featured Pages' widget.
530
+ help: You can select and crop an image to visually represent this page. It will be used as the thumbnail image if you include this page in the Pages widget.
531
531
  title_placeholder: Title
532
532
  index:
533
533
  about_pages:
534
- header: About Pages
534
+ header: About pages
535
535
  feature_pages:
536
- header: Feature Pages
536
+ header: Feature pages
537
537
  home_pages_header: Homepage
538
538
  home_pages:
539
- header: Exhibit Home
540
- title: Exhibit Home
539
+ header: Exhibit home
540
+ title: Exhibit home
541
541
  new:
542
542
  header: New page
543
543
  order_pages:
544
544
  cancel: Cancel
545
545
  instructions: Add new pages below. Drag and drop pages to change the order in which they are displayed in the sidebar.
546
546
  new_page: Add new page
547
- pages_header: Custom Pages
547
+ pages_header: Custom pages
548
548
  save: Save
549
549
  resources:
550
550
  csv_upload:
551
551
  form:
552
552
  add_item: Add item
553
- file_label: CSV File
553
+ file_label: CSV file
554
554
  help_html: "%{link}"
555
555
  template: Download template
556
556
  title: Upload multiple items
@@ -568,7 +568,7 @@ en:
568
568
  json_upload:
569
569
  form:
570
570
  add_item: Add item
571
- file_label: JSON File
571
+ file_label: JSON file
572
572
  title: Upload raw documents
573
573
  new:
574
574
  header: Add items
@@ -593,11 +593,11 @@ en:
593
593
  help: Enter a valid email address
594
594
  index:
595
595
  actions: Actions
596
- email: Email Address
596
+ email: Email address
597
597
  header: Users
598
598
  invite_pending: pending
599
599
  role: Role
600
- title: Site Configuration - Users
600
+ title: Site configuration - users
601
601
  saved_search:
602
602
  id: Select a title to update a previously saved search
603
603
  label: Save this search
@@ -605,41 +605,41 @@ en:
605
605
  search:
606
606
  fields:
607
607
  abstract_tesim: Abstract
608
- corporate_name_ssm: Corporate Names
608
+ corporate_name_ssm: Corporate names
609
609
  facet:
610
- corporate_name_ssm: Corporate Names
611
- exhibit_tags: Exhibit Tags
610
+ corporate_name_ssm: Corporate names
611
+ exhibit_tags: Exhibit tags
612
612
  genre_ssim: Genre
613
613
  language_ssim: Language
614
- personal_name_ssm: Personal Names
614
+ personal_name_ssm: Personal names
615
615
  subject_geographic_ssim: Geographic
616
616
  subject_temporal_ssim: Era
617
617
  full_title_tesim: Title
618
618
  language_ssm: Language
619
619
  note_desc_note_tesim: Note
620
620
  note_mapuse_tesim: Type
621
- note_page_num_tesim: Page Number
621
+ note_page_num_tesim: Page number
622
622
  note_phys_desc_tesim: Note
623
623
  note_provenance_tesim: Provenance
624
624
  note_references_tesim: References
625
625
  note_source_tesim: Source
626
- personal_name_ssm: Personal Names
626
+ personal_name_ssm: Personal names
627
627
  search:
628
628
  all_fields: Everything
629
629
  author: Author
630
630
  title: Title
631
631
  sort:
632
- date: Date (new to old)
633
- identifier: Identifier
634
- relevance: Relevance
635
- source: Source
636
- title: Title
637
- type: Type
632
+ date: date (new to old)
633
+ identifier: identifier
634
+ relevance: relevance
635
+ source: source
636
+ title: title
637
+ type: type
638
638
  spotlight_upload_attribution_tesim: Attribution
639
639
  spotlight_upload_date_tesim: Date
640
640
  spotlight_upload_description_tesim: Description
641
- subject_geographic_tesim: Geographic Subject
642
- subject_temporal_tesim: Temporal Subject
641
+ subject_geographic_tesim: Geographic subject
642
+ subject_temporal_tesim: Temporal subject
643
643
  search_configurations:
644
644
  default_per_page:
645
645
  label: Default per page
@@ -660,7 +660,7 @@ en:
660
660
  one: "%{count} unique value"
661
661
  other: "%{count} unique values"
662
662
  facets:
663
- help: If the sidebar is visible, users can use the facets shown in the sidebar to limit a search. You can select the facets that are available for searching below. Click a facet field name to edit its display label. Drag and drop facets to specify the order they are displayed in the sidebar.
663
+ help: If the sidebar is visible, users can use the facets shown in the sidebar to limit a search. You can select the facets that are available for searching below. Select a facet field name to edit its display label. Drag and drop facets to specify the order they are displayed in the sidebar.
664
664
  sort_by:
665
665
  count: Frequency
666
666
  index: Value
@@ -672,10 +672,10 @@ en:
672
672
  instructions: You can add custom search fields to supplement the search fields that are part of the default configuration.
673
673
  header: Field-based search
674
674
  help: If the search box is displayed, you can also enable field-based search. Field-based search adds a dropdown menu to your exhibit site's search box that provides the user with an option to restrict a search query to a single metadata field.
675
- instructions: If enabled, you can select below the metadata fields that are available for searching. Click a field name to edit its display label. Drag and drop fields to specify the order they are displayed in the search box dropdown menu.
675
+ instructions: If enabled, you can select below the metadata fields that are available for searching. Select a field name to edit its display label. Drag and drop fields to specify the order they are displayed in the search box dropdown menu.
676
676
  sort:
677
677
  header: Sort fields
678
- help: Select the fields you want to be available to users for sorting results. Click a field title to change its display label. Drag and drop fields to change their order in the sort dropdown menu. The field listed first is the default sort field.
678
+ help: Select the fields you want to be available to users for sorting results. Select a field title to change its display label. Drag and drop fields to change their order in the sort dropdown menu. The field listed first is the default sort field.
679
679
  keys:
680
680
  asc: ascending
681
681
  desc: descending
@@ -687,8 +687,8 @@ en:
687
687
  sort_type_ssi: type
688
688
  searches:
689
689
  edit:
690
- header: Edit Browse Category
691
- title: Curation - Browse
690
+ header: Edit browse category
691
+ title: Curation - browse
692
692
  form:
693
693
  default_index_view_type: Default view
694
694
  masthead:
@@ -705,12 +705,12 @@ en:
705
705
  thumbnail:
706
706
  help: You can select and crop an image to visually represent this search.
707
707
  index:
708
- categories_header: Browse Categories
708
+ categories_header: Browse categories
709
709
  header: Browse
710
710
  instructions: Use the Save search button on a search results page to create a new browse category. Select the categories you want to be displayed on the browse landing page. Drag and drop categories to change the order in which they appear on that page.
711
711
  no_saved_searches: You can save search results while in curation mode to create browse categories, which will be displayed here.
712
712
  not_searchable_html: This exhibit is not currently searchable. To perform searches that can be saved as additional browse categories, temporarily turn on the Display search box option in the Options section of the Configuration > %{href} page.
713
- title: Curation - Browse
713
+ title: Curation - browse
714
714
  search:
715
715
  item_count:
716
716
  one: "%{count} item"
@@ -724,7 +724,7 @@ en:
724
724
  report_a_problem:
725
725
  honeypot_field_explanation: Ignore this text box. It is used to detect spammers. If you enter anything into this text box, your message will not be sent.
726
726
  reporting_from: 'Reporting from: %{url}'
727
- title: Contact Us
727
+ title: Contact us
728
728
  sir_trevor:
729
729
  blocks:
730
730
  browse_block:
@@ -757,7 +757,7 @@ en:
757
757
  actions: Actions
758
758
  header: Tags
759
759
  name: Tag name
760
- no_tags: No items in this exhibit have been tagged. You can add tags to an item on the Item Details page while in curation mode.
760
+ no_tags: No items in this exhibit have been tagged. You can add tags to an item on the item details page while in curation mode.
761
761
  taggings:
762
762
  count: Items tagged
763
763
  topbar:
@@ -774,16 +774,16 @@ en:
774
774
  general:
775
775
  basic_settings:
776
776
  description: Description
777
- label: Basic Settings
777
+ label: Basic settings
778
778
  subtitle: Subtitle
779
779
  title: Title
780
780
  label: General
781
781
  main_menu:
782
782
  about: About
783
783
  browse: Browse
784
- curated_features: Curated Features
784
+ curated_features: Curated features
785
785
  home: Home
786
- label: Main Menu
786
+ label: Main menu
787
787
  import:
788
788
  description: You can import and export Rails-based YAML files containing the translated label values for the currently selected language for use in internationalization tools such as Transifex and i18n-tools. This feature does not include importing or exporting translations for Pages.
789
789
  export_current_locale: Export %{language}
@@ -794,7 +794,7 @@ en:
794
794
  import_submit: Import translations
795
795
  metadata:
796
796
  exhibit_specific_fields:
797
- label: Exhibit-Specific Fields
797
+ label: Exhibit-specific fields
798
798
  label: Metadata field labels
799
799
  page:
800
800
  destroy: Delete
@@ -806,12 +806,12 @@ en:
806
806
  recreate_are_you_sure: Are you sure you want to recreate this page? If you recreate this page all content, including any existing translations you have made, will be replaced with the content of the English version of the page.
807
807
  pages:
808
808
  about_pages:
809
- label: About Pages
809
+ label: About pages
810
810
  feature_pages:
811
- label: Feature Pages
812
- help_html: Before exhibit visitors can view translated pages you must create, edit, and publish each page translation. When you create a translated page, a copy of the default language version of the page is made to serve as the initial translated page. You can then edit that translated page to replace the page title and any text fields with translated text. A translated page will not be visible to exhibit visitors until you publish it. To replace a translated page with a current copy of the default language version of the page, use the <i>Recreate</i> action.
811
+ label: Feature pages
812
+ help_html: Before exhibit visitors can view translated pages you must create, edit, and publish each page translation. When you create a translated page, a copy of the default language version of the page is made to serve as the initial translated page. You can then edit that translated page to replace the page title and any text fields with translated text. A translated page will not be visible to exhibit visitors until you publish it. To replace a translated page with a current copy of the default language version of the page, use the <b>Recreate</b> action.
813
813
  home_page:
814
- label: Home Page
814
+ label: Home page
815
815
  label: Pages
816
816
  pages_table:
817
817
  header:
@@ -821,12 +821,12 @@ en:
821
821
  last_updated: "%{language} title / Last update"
822
822
  search_fields:
823
823
  facet_fields:
824
- label: Facet Fields
824
+ label: Facet fields
825
825
  field_based_search_fields:
826
- label: Field-Based Search Fields
826
+ label: Field-based search fields
827
827
  label: Search field labels
828
828
  sort_fields:
829
- label: Sort Fields
829
+ label: Sort fields
830
830
  versions:
831
831
  redo: Redo changes
832
832
  undo: Undo changes