blacklight-spotlight 3.0.0.alpha.8 → 3.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/app/assets/images/blacklight/arrow-alt-circle-left.svg +1 -0
- data/app/assets/images/blacklight/arrow-alt-circle-right.svg +1 -0
- data/app/assets/javascripts/spotlight/admin/{add_new_page_button.js → add_new_button.js} +7 -0
- data/app/assets/javascripts/spotlight/admin/block_mixins/autocompleteable.js +4 -4
- data/app/assets/javascripts/spotlight/admin/blocks/browse_block.js +55 -1
- data/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
- data/app/assets/javascripts/spotlight/admin/blocks/pages_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/solr_documents_base_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +7 -2
- data/app/assets/javascripts/spotlight/admin/crop.es6 +11 -0
- data/app/assets/javascripts/spotlight/admin/croppable.js +1 -1
- data/app/assets/javascripts/spotlight/admin/index.js +0 -2
- data/app/assets/javascripts/spotlight/admin/search_typeahead.js +2 -2
- data/app/assets/javascripts/spotlight/admin/sir-trevor/block_controls.js +21 -12
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +11 -3
- data/app/assets/javascripts/spotlight/user/browse_group_categories.js +59 -0
- data/app/assets/javascripts/spotlight/user/index.js +1 -0
- data/app/assets/stylesheets/spotlight/_accessibility.scss +1 -1
- data/app/assets/stylesheets/spotlight/_breadcrumbs.scss +8 -0
- data/app/assets/stylesheets/spotlight/_browse.scss +16 -0
- data/app/assets/stylesheets/spotlight/_catalog.scss +6 -6
- data/app/assets/stylesheets/spotlight/_curation.scss +6 -0
- data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +214 -83
- data/app/assets/stylesheets/spotlight/_header.scss +1 -1
- data/app/assets/stylesheets/spotlight/_item_text_block.scss +6 -0
- data/app/assets/stylesheets/spotlight/_pages.scss +10 -5
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +5 -2
- data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
- data/app/assets/stylesheets/spotlight/_translations.scss +7 -0
- data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +69 -0
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +1 -2
- data/app/controllers/concerns/spotlight/search_helper.rb +2 -8
- data/app/controllers/spotlight/appearances_controller.rb +0 -12
- data/app/controllers/spotlight/browse_controller.rb +7 -3
- data/app/controllers/spotlight/catalog_controller.rb +1 -1
- data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
- data/app/controllers/spotlight/exhibits_controller.rb +2 -3
- data/app/controllers/spotlight/featured_images_controller.rb +1 -1
- data/app/controllers/spotlight/groups_controller.rb +80 -0
- data/app/controllers/spotlight/pages_controller.rb +6 -9
- data/app/controllers/spotlight/resources/csv_upload_controller.rb +1 -1
- data/app/controllers/spotlight/searches_controller.rb +7 -19
- data/app/controllers/spotlight/translations_controller.rb +46 -0
- data/app/helpers/spotlight/application_helper.rb +1 -1
- data/app/helpers/spotlight/crop_helper.rb +4 -1
- data/app/helpers/spotlight/crud_link_helpers.rb +1 -1
- data/app/helpers/spotlight/main_app_helpers.rb +1 -1
- data/app/jobs/spotlight/add_uploads_from_csv.rb +30 -5
- data/app/mailers/spotlight/indexing_complete_mailer.rb +3 -2
- data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
- data/app/models/concerns/spotlight/translatables.rb +17 -1
- data/app/models/sir_trevor_rails/blocks/browse_group_categories_block.rb +25 -0
- data/app/models/spotlight/ability.rb +2 -0
- data/app/models/spotlight/about_page.rb +3 -1
- data/app/models/spotlight/blacklight_configuration.rb +2 -1
- data/app/models/spotlight/contact.rb +1 -1
- data/app/models/spotlight/custom_field.rb +3 -3
- data/app/models/spotlight/exhibit.rb +18 -4
- data/app/models/spotlight/feature_page.rb +3 -1
- data/app/models/spotlight/featured_image.rb +29 -12
- data/app/models/spotlight/group.rb +22 -0
- data/app/models/spotlight/group_member.rb +11 -0
- data/app/models/spotlight/home_page.rb +3 -1
- data/app/models/spotlight/main_navigation.rb +2 -2
- data/app/models/spotlight/masthead.rb +1 -1
- data/app/models/spotlight/page.rb +5 -1
- data/app/models/spotlight/page_configurations.rb +6 -0
- data/app/models/spotlight/page_content.rb +2 -0
- data/app/models/spotlight/resources/csv_upload.rb +2 -1
- data/app/models/spotlight/resources/iiif_manifest.rb +8 -6
- data/app/models/spotlight/resources/upload.rb +1 -1
- data/app/models/spotlight/search.rb +10 -1
- data/app/models/spotlight/solr_document_sidecar.rb +7 -5
- data/app/models/spotlight/temporary_image.rb +8 -0
- data/app/services/spotlight/exhibit_import_export_service.rb +482 -0
- data/app/services/spotlight/solr_document_builder.rb +1 -0
- data/app/values/custom_field_name.rb +1 -0
- data/app/views/catalog/_save_search.html.erb +1 -1
- data/app/views/spotlight/about_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/browse/_search.html.erb +5 -3
- data/app/views/spotlight/browse/_search_title.html.erb +2 -1
- data/app/views/spotlight/browse/index.html.erb +13 -0
- data/app/views/spotlight/catalog/_document.html.erb +2 -4
- data/app/views/spotlight/catalog/index.iiif_json.jbuilder +22 -0
- data/app/views/spotlight/contacts/_form.html.erb +1 -1
- data/app/views/spotlight/feature_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/featured_images/_form.html.erb +1 -1
- data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
- data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
- data/app/views/spotlight/indexing_complete_mailer/documents_indexed.html.erb +9 -0
- data/app/views/spotlight/pages/_form.html.erb +2 -2
- data/app/views/spotlight/searches/_form.html.erb +13 -0
- data/app/views/spotlight/searches/_group.html.erb +27 -0
- data/app/views/spotlight/searches/_search.html.erb +1 -0
- data/app/views/spotlight/searches/index.html.erb +58 -17
- data/app/views/spotlight/shared/_honeypot_field.html.erb +4 -0
- data/app/views/spotlight/shared/_report_a_problem.html.erb +7 -10
- data/app/views/spotlight/sir_trevor/blocks/_browse_block.html.erb +1 -0
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +44 -0
- data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +7 -1
- data/app/views/spotlight/translations/_browse_categories.html.erb +29 -3
- data/app/views/spotlight/translations/_general.html.erb +7 -7
- data/app/views/spotlight/translations/_groups.html.erb +34 -0
- data/app/views/spotlight/translations/_import.html.erb +24 -0
- data/app/views/spotlight/translations/_metadata.html.erb +1 -1
- data/app/views/spotlight/translations/_page.html.erb +5 -5
- data/app/views/spotlight/translations/_pages.html.erb +4 -4
- data/app/views/spotlight/translations/_pages_table.html.erb +5 -5
- data/app/views/spotlight/translations/_search_fields.html.erb +3 -3
- data/app/views/spotlight/translations/edit.html.erb +14 -6
- data/app/views/spotlight/translations/show.yaml.yamlbuilder +81 -0
- data/config/i18n-tasks.yml +7 -0
- data/config/locales/spotlight.ar.yml +47 -24
- data/config/locales/spotlight.en.yml +182 -127
- data/config/routes.rb +16 -1
- data/db/migrate/20200403161512_add_subtitle_to_searches.rb +7 -0
- data/db/migrate/20210113092223_create_spotlight_groups.rb +23 -0
- data/lib/generators/spotlight/install_generator.rb +23 -2
- data/lib/generators/spotlight/templates/config/initializers/sir_trevor_rails.rb +10 -0
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +3 -1
- data/lib/spotlight/engine.rb +27 -3
- data/lib/spotlight/upload_field_config.rb +1 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/browse_controller_spec.rb +24 -1
- data/spec/controllers/spotlight/catalog_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/contacts_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +11 -0
- data/spec/controllers/spotlight/groups_controller_spec.rb +103 -0
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/resources/csv_upload_controller_spec.rb +4 -4
- data/spec/controllers/spotlight/resources/upload_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/searches_controller_spec.rb +10 -3
- data/spec/controllers/spotlight/translations_controller_spec.rb +53 -2
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +1 -1
- data/spec/examples.txt +1437 -1389
- data/spec/factories/featured_images.rb +4 -0
- data/spec/factories/group.rb +17 -0
- data/spec/factories/searches.rb +11 -1
- data/spec/features/add_contacts_spec.rb +1 -1
- data/spec/features/browse_category_admin_spec.rb +39 -7
- data/spec/features/browse_category_navigation_spec.rb +44 -0
- data/spec/features/browse_category_spec.rb +2 -2
- data/spec/features/catalog_spec.rb +2 -2
- data/spec/features/create_exhibit_spec.rb +5 -4
- data/spec/features/dashboard_spec.rb +7 -7
- data/spec/features/edit_search_fields_spec.rb +2 -2
- data/spec/features/exhibits/administration_spec.rb +3 -3
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
- data/spec/features/exhibits/language_create_edit_spec.rb +3 -3
- data/spec/features/exhibits/translation_editing_spec.rb +57 -8
- data/spec/features/home_page_spec.rb +13 -4
- data/spec/features/item_admin_spec.rb +4 -4
- data/spec/features/javascript/about_page_admin_spec.rb +1 -1
- data/spec/features/javascript/block_controls_spec.rb +3 -1
- data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
- data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +4 -1
- data/spec/features/javascript/browse_group_admin_spec.rb +45 -0
- data/spec/features/javascript/edit_in_place_spec.rb +3 -3
- data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
- data/spec/features/javascript/search_config_admin_spec.rb +1 -1
- data/spec/features/report_a_problem_spec.rb +6 -5
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
- data/spec/helpers/spotlight/pages_helper_spec.rb +2 -2
- data/spec/i18n_spec.rb +0 -2
- data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +13 -1
- data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +11 -1
- data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
- data/spec/models/solr_document_spec.rb +2 -3
- data/spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb +1 -0
- data/spec/models/spotlight/exhibit_spec.rb +18 -2
- data/spec/models/spotlight/featured_image_spec.rb +27 -0
- data/spec/models/spotlight/group_spec.rb +19 -0
- data/spec/models/spotlight/main_navigation_spec.rb +1 -1
- data/spec/models/spotlight/page_spec.rb +6 -1
- data/spec/models/spotlight/resources/upload_spec.rb +43 -79
- data/spec/models/spotlight/role_spec.rb +3 -3
- data/spec/models/spotlight/search_spec.rb +30 -3
- data/spec/{serializers/spotlight/exhibit_export_serializer_spec.rb → services/spotlight/exhibit_import_export_service_spec.rb} +168 -23
- data/spec/services/spotlight/iiif_resource_resolver_spec.rb +1 -1
- data/spec/services/spotlight/solr_document_builder_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/features/test_features_helpers.rb +15 -0
- data/spec/test_app_templates/Gemfile.extra +1 -3
- data/spec/test_app_templates/catalog_controller.rb +6 -3
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +3 -3
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
- data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/translations/_import.html.erb_spec.rb +24 -0
- data/vendor/assets/javascripts/leaflet-iiif.js +46 -21
- data/vendor/assets/javascripts/tiny-slider.js +3218 -0
- data/vendor/assets/stylesheets/tiny-slider.css +1 -0
- metadata +399 -284
- data/app/serializers/spotlight/exhibit_export_serializer.rb +0 -205
- data/app/serializers/spotlight/featured_image_representer.rb +0 -29
- data/app/serializers/spotlight/main_navigation_representer.rb +0 -13
- data/app/serializers/spotlight/page_representer.rb +0 -33
- data/vendor/assets/javascripts/handlebars-v1.3.0.js +0 -2746
data/config/i18n-tasks.yml
CHANGED
@@ -34,10 +34,13 @@ ignore_unused:
|
|
34
34
|
- activerecord.attributes.spotlight/page.{display_sidebar\?,display_title} # app/views/spotlight/home_pages/_page_options.html.erb
|
35
35
|
- activerecord.attributes.spotlight/language.locale # app/views/spotlight/exhibits/_languages.html.erb
|
36
36
|
- activerecord.attributes.spotlight/contact.avatar # app/views/spotlight/contacts/_form.html.erb
|
37
|
+
- activerecord.attributes.spotlight/exhibit.contact_emails # app/views/spotlight/exhibits/_form.html.erb
|
37
38
|
- activerecord.attributes.spotlight/exhibit.published # app/views/spotlight/sites/_exhibit.html.erb
|
38
39
|
- activerecord.attributes.spotlight/masthead.display # app/views/spotlight/appearances/edit.html.erb
|
39
40
|
- activerecord.attributes.spotlight/custom_field.is_multiple # app/views/spotlight/custom_fields/_form.html.erb
|
40
41
|
- activerecord.attributes.spotlight/custom_search_field.field # app/views/spotlight/custom_search_fields/_form.html.erb
|
42
|
+
- activerecord.models.spotlight/group # Used in flash messages around the app to rename Group to Browse group
|
43
|
+
- activerecord.models.spotlight/search # Used in flash messages around the app to rename Search to Browse category
|
41
44
|
- helpers.label.spotlight/filter.{field,value} # app/views/spotlight/filters/_form.html.erb
|
42
45
|
- spotlight.catalog.admin.{title,header} # app/helpers/spotlight/title_helper.rb
|
43
46
|
- spotlight.{contacts,pages,searches}.edit.{title,header} # app/helpers/spotlight/title_helper.rb
|
@@ -48,14 +51,17 @@ ignore_unused:
|
|
48
51
|
- spotlight.featured_images.upload_form.{non_iiif_alert_html,source.exhibit.help,source.exhibit.label} # app/views/spotlight/featured_images/_form.html.erb
|
49
52
|
- spotlight.feature_pages.page_options.published # app/views/spotlight/feature_pages/_page_options.html.erb
|
50
53
|
- spotlight.{exhibits,custom_fields,custom_search_fields}.{new,edit}.header # configuration_page_title
|
54
|
+
- spotlight.{searches}.{group}.{view}
|
51
55
|
- helpers.submit.custom_field.{batch_error,batch_updated,create,submit,update} # Generic repeated template
|
52
56
|
- helpers.submit.custom_search_field.{batch_error,batch_updated,create,submit,update} # Generic repeated template
|
53
57
|
- helpers.submit.exhibit.{batch_error,batch_updated,create,submit,update} # Generic repeated template
|
58
|
+
- helpers.submit.group.{destroyed,updated} # Generic helper that is used
|
54
59
|
- helpers.submit.search.{create,submit,update} # Generic repeated template
|
55
60
|
- helpers.submit.site.{batch_error,batch_updated,create,created,destroyed,submit,update} # Generic repeated template
|
56
61
|
- helpers.submit.filter.{batch_error,batch_updated,create,created,destroyed,submit,update} # Generic repeated template
|
57
62
|
- helpers.action.destroy_are_you_sure # app/helpers/spotlight/crud_link_helpers.rb
|
58
63
|
- helpers.action.spotlight/role.{create,destroy} # app/views/spotlight/roles/index.html.erb
|
64
|
+
- helpers.action.spotlight/group.destroy # app/views/spotlight/searches/_group.html.erb
|
59
65
|
- helpers.action.{edit,edit_long,new,view} # app/helpers/spotlight/crud_link_helpers.rb
|
60
66
|
- helpers.action.spotlight/search.edit_long # app/views/spotlight/searches/_search.html.erb
|
61
67
|
- spotlight.about_pages.page_options.published # app/views/spotlight/about_pages/_page_options.html.erb
|
@@ -66,6 +72,7 @@ ignore_unused:
|
|
66
72
|
- helpers.submit.{submit,update} # Generically used set defaults
|
67
73
|
- helpers.submit.contact.create # app/views/spotlight/contacts/_form.html.erb
|
68
74
|
- helpers.action.exhibit.contact.submit # helpers.action.exhibit.contact.submit
|
75
|
+
- helpers.label.contact_form.{email,name} # app/views/spotlight/shared/_report_a_problem.html.erb
|
69
76
|
|
70
77
|
# TODO Look into these as its unclear
|
71
78
|
- activerecord.models.spotlight.page
|
@@ -1,40 +1,63 @@
|
|
1
|
+
---
|
1
2
|
ar:
|
2
|
-
activemodel:
|
3
|
-
attributes:
|
4
|
-
spotlight/contact_form:
|
5
|
-
email: البريد الإلكتروني
|
6
|
-
message: الرسالة
|
7
|
-
name: الاسم
|
8
3
|
helpers:
|
9
4
|
action:
|
10
5
|
cancel: إلغاء
|
11
6
|
submit:
|
12
7
|
contact_form:
|
13
|
-
create:
|
14
|
-
created:
|
8
|
+
create: ارسل
|
9
|
+
created: شكراً. لقد تم إرسال ملاحظاتك واقتراحاتك.
|
15
10
|
spotlight:
|
16
11
|
about_pages:
|
17
12
|
contacts:
|
18
|
-
header:
|
19
|
-
|
20
|
-
|
21
|
-
shared:
|
22
|
-
report_a_problem:
|
23
|
-
honeypot_field_explanation: .تجاهل هذا المربع النصي، فهو يُستخدم فقط لكشف المحتالين. إذا كتبت أي شيء في هذا المربع النصي، فلن يتم إرسال رسالتك
|
24
|
-
title: عنوان
|
13
|
+
header: جهات الاتصال
|
14
|
+
breadcrumb:
|
15
|
+
label: مسار التنقل
|
25
16
|
browse:
|
26
17
|
search:
|
27
18
|
item_count:
|
28
|
-
|
29
|
-
|
19
|
+
zero: "%{count} عنصر"
|
20
|
+
one: "%{count} عنصر"
|
21
|
+
two: "%{count} عنصرين"
|
22
|
+
few: "%{count} عناصر"
|
23
|
+
many: "%{count} عنصراً"
|
24
|
+
other: "%{count} عنصراً"
|
25
|
+
|
30
26
|
search_box:
|
31
|
-
label:
|
32
|
-
placeholder:
|
27
|
+
label: ابحث في فئة التصفح الحالية
|
28
|
+
placeholder: بحث...
|
33
29
|
reset: مسح استعلام البحث
|
34
|
-
submit:
|
30
|
+
submit: ابحث في فئة التصفح
|
35
31
|
success:
|
36
|
-
expand_html: يمكنك <a href
|
37
|
-
result_number_html: طابق استعلام البحث <strong> %{search_size} من %{parent_search_count}
|
32
|
+
expand_html: "يمكنك ايضاً <a href=\"%{expand_search_url}\">البحث في كل مواد المعرض عن \"%{browse_query}\"</a>."
|
33
|
+
result_number_html: "طابق استعلام البحث <strong> %{search_size} من %{parent_search_count} عنصر</strong> في هذه الفئة."
|
38
34
|
zero_results:
|
39
|
-
expand_html: <a href
|
40
|
-
result_number:
|
35
|
+
expand_html: "تستطيع أن <a href=\"%{clear_search_url}\"> تمسح استعلام البحث </a> أو محاولة <a href=\"%{expand_search_url}\"> البحث في كل المواد المعروضة لاستعلام البحث ل\"%{browse_query}\"</a>"
|
36
|
+
result_number: لم يتطابق بحثك مع أي عنصر في هذه الفئة.
|
37
|
+
header_links:
|
38
|
+
contact: ملاحظات واقتراحات
|
39
|
+
login: تسجيل الدخول
|
40
|
+
logout: تسجيل الخروج
|
41
|
+
shared:
|
42
|
+
report_a_problem:
|
43
|
+
honeypot_field_explanation: تجاهل هذا المربع النصي، فهو يُستخدم فقط لكشف المحتالين. إذا كتبت أي شيء في هذا المربع النصي، فلن يتم إرسال رسالتك.
|
44
|
+
title: تواصل معنا
|
45
|
+
sir_trevor:
|
46
|
+
blocks:
|
47
|
+
browse_block:
|
48
|
+
items:
|
49
|
+
zero: "%{count} عنصر"
|
50
|
+
one: "%{count} عنصر"
|
51
|
+
two: "%{count} عنصرين"
|
52
|
+
few: "%{count} عناصر"
|
53
|
+
many: "%{count} عنصراً"
|
54
|
+
other: "%{count} عنصراً"
|
55
|
+
|
56
|
+
link_to_search_block:
|
57
|
+
items:
|
58
|
+
zero: "%{count} عنصر"
|
59
|
+
one: "%{count} عنصر"
|
60
|
+
two: "%{count} عنصرين"
|
61
|
+
few: "%{count} عناصر"
|
62
|
+
many: "%{count} عنصراً"
|
63
|
+
other: "%{count} عنصراً"
|
@@ -9,6 +9,7 @@ en:
|
|
9
9
|
spotlight/custom_search_field:
|
10
10
|
field: Solr specification
|
11
11
|
spotlight/exhibit:
|
12
|
+
contact_emails: Feedback recipients
|
12
13
|
published: Published?
|
13
14
|
spotlight/language:
|
14
15
|
locale: Language
|
@@ -23,6 +24,8 @@ en:
|
|
23
24
|
models:
|
24
25
|
spotlight:
|
25
26
|
page: Page
|
27
|
+
spotlight/group: Browse group
|
28
|
+
spotlight/search: Browse category
|
26
29
|
cancel: Cancel
|
27
30
|
drag: Drag
|
28
31
|
helpers:
|
@@ -43,6 +46,8 @@ en:
|
|
43
46
|
create: Add new field
|
44
47
|
spotlight/custom_search_field:
|
45
48
|
create: Add new field
|
49
|
+
spotlight/group:
|
50
|
+
destroy: Delete group
|
46
51
|
spotlight/role:
|
47
52
|
create: Add a new user
|
48
53
|
destroy: Remove from site
|
@@ -52,6 +57,9 @@ en:
|
|
52
57
|
update_all: Save changes
|
53
58
|
view: View
|
54
59
|
label:
|
60
|
+
contact_form:
|
61
|
+
email: Your email
|
62
|
+
name: Your name
|
55
63
|
solr_document:
|
56
64
|
exhibit_tag_list: Tags
|
57
65
|
spotlight/filter:
|
@@ -97,6 +105,12 @@ en:
|
|
97
105
|
created: The %{model} was created.
|
98
106
|
destroyed: The %{model} was deleted.
|
99
107
|
updated: The %{model} was successfully updated.
|
108
|
+
group:
|
109
|
+
batch_error: There was an error updating the requested %{model}.
|
110
|
+
batch_updated: "%{model} were successfully updated."
|
111
|
+
created: The %{model} was created.
|
112
|
+
destroyed: The %{model} was deleted.
|
113
|
+
updated: The %{model} was successfully updated.
|
100
114
|
language:
|
101
115
|
create: Add language
|
102
116
|
created: The %{model} was created.
|
@@ -154,9 +168,9 @@ en:
|
|
154
168
|
reindexing_log:
|
155
169
|
status:
|
156
170
|
failed: Failed
|
157
|
-
in_progress: In
|
171
|
+
in_progress: In progress
|
158
172
|
succeeded: Successful
|
159
|
-
unstarted: Not
|
173
|
+
unstarted: Not yet started
|
160
174
|
shared:
|
161
175
|
site_sidebar:
|
162
176
|
documentation: Curator documentation
|
@@ -167,7 +181,7 @@ en:
|
|
167
181
|
header: Contacts
|
168
182
|
contacts_form:
|
169
183
|
header: Contacts
|
170
|
-
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
|
184
|
+
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.
|
171
185
|
page_options:
|
172
186
|
published: Publish
|
173
187
|
admin_users:
|
@@ -192,7 +206,7 @@ en:
|
|
192
206
|
edit:
|
193
207
|
header: Appearance
|
194
208
|
main_navigation:
|
195
|
-
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).
|
209
|
+
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.
|
196
210
|
menu: Main menu
|
197
211
|
site_masthead:
|
198
212
|
heading: Exhibit masthead
|
@@ -226,20 +240,20 @@ en:
|
|
226
240
|
catalog:
|
227
241
|
admin:
|
228
242
|
header: Items
|
229
|
-
title: Curation -
|
243
|
+
title: Curation - items
|
230
244
|
admin_header:
|
231
245
|
new_resource: Add items
|
232
246
|
reindex: Reindex items
|
233
247
|
breadcrumb:
|
234
|
-
index: Search
|
248
|
+
index: Search results
|
235
249
|
document_visibility_control:
|
236
250
|
inprogress:
|
237
251
|
label: ''
|
238
252
|
make_private:
|
239
|
-
button: Make
|
253
|
+
button: Make private
|
240
254
|
label: ''
|
241
255
|
make_public:
|
242
|
-
button: Make
|
256
|
+
button: Make public
|
243
257
|
label: ''
|
244
258
|
edit_default:
|
245
259
|
url-field:
|
@@ -248,10 +262,10 @@ en:
|
|
248
262
|
blank_field_warning_html: This field is currently hidden on all pages. You can make it visible on the Curation > %{link} page.
|
249
263
|
facets:
|
250
264
|
exhibit_visibility:
|
251
|
-
label: Item
|
265
|
+
label: Item visibility
|
252
266
|
private: Private
|
253
267
|
fields:
|
254
|
-
date_added: Date
|
268
|
+
date_added: Date added
|
255
269
|
title: Title
|
256
270
|
visibility: Public
|
257
271
|
reindex_progress_panel:
|
@@ -277,7 +291,7 @@ en:
|
|
277
291
|
subject: "%{application_name} exhibit feedback"
|
278
292
|
contacts:
|
279
293
|
edit:
|
280
|
-
header: Edit
|
294
|
+
header: Edit contact
|
281
295
|
form:
|
282
296
|
avatar:
|
283
297
|
header: Avatar
|
@@ -296,7 +310,7 @@ en:
|
|
296
310
|
title:
|
297
311
|
placeholder: Job title most relevant to this exhibit
|
298
312
|
new:
|
299
|
-
header: Add
|
313
|
+
header: Add exhibit contact
|
300
314
|
curation:
|
301
315
|
header: Curation
|
302
316
|
nav:
|
@@ -313,7 +327,7 @@ en:
|
|
313
327
|
translations: Translations
|
314
328
|
custom_fields:
|
315
329
|
edit:
|
316
|
-
header: Edit
|
330
|
+
header: Edit exhibit-specific field
|
317
331
|
form:
|
318
332
|
field_type:
|
319
333
|
label: Type
|
@@ -322,19 +336,19 @@ en:
|
|
322
336
|
is_multiple:
|
323
337
|
label: Multi-valued?
|
324
338
|
new:
|
325
|
-
header: Add
|
339
|
+
header: Add exhibit-specific field
|
326
340
|
custom_search_fields:
|
327
341
|
edit:
|
328
|
-
header: Edit
|
342
|
+
header: Edit exhibit-specific field
|
329
343
|
form:
|
330
344
|
field:
|
331
345
|
help: Specify fields to be searched and their boost values (e.g., full_title_tesim^100 personal_name_tesim^50).
|
332
346
|
new:
|
333
|
-
header: Add
|
347
|
+
header: Add exhibit-specific field
|
334
348
|
dashboards:
|
335
349
|
analytics:
|
336
350
|
header: Analytics
|
337
|
-
monthly_header: User
|
351
|
+
monthly_header: User activity over the past month
|
338
352
|
pages:
|
339
353
|
header: Most popular pages
|
340
354
|
pagetitle: page title
|
@@ -345,21 +359,21 @@ en:
|
|
345
359
|
field:
|
346
360
|
last_edited_by: User
|
347
361
|
title: Title
|
348
|
-
updated_at: Last
|
349
|
-
header: Recent
|
362
|
+
updated_at: Last edited
|
363
|
+
header: Recent site building activity
|
350
364
|
reindexing_activity:
|
351
365
|
field:
|
352
366
|
date: Date
|
353
|
-
duration: Elapsed
|
354
|
-
items_reindexed_count: Items
|
367
|
+
duration: Elapsed time
|
368
|
+
items_reindexed_count: Items indexed
|
355
369
|
job_status: Status
|
356
|
-
user: Requested
|
357
|
-
header: Recent
|
370
|
+
user: Requested by
|
371
|
+
header: Recent item indexing activity
|
358
372
|
no_reindexing_activity: There has been no reindexing activity
|
359
373
|
show:
|
360
374
|
header: Dashboard
|
361
375
|
solr_document_activity:
|
362
|
-
header: Recently
|
376
|
+
header: Recently updated items
|
363
377
|
no_documents: There are no documents in this exhibit
|
364
378
|
exhibitnavbar:
|
365
379
|
label: Exhibit navigation
|
@@ -371,10 +385,10 @@ en:
|
|
371
385
|
not_validated: Not validated.
|
372
386
|
resend: Resend confirmation?
|
373
387
|
contact:
|
374
|
-
email_delete_button: Delete
|
375
|
-
email_delete_confirmation: Delete
|
376
|
-
email_delete_error: 'Problem deleting
|
377
|
-
email_input_aria_label:
|
388
|
+
email_delete_button: Delete recipient
|
389
|
+
email_delete_confirmation: Delete recipient email address?
|
390
|
+
email_delete_error: 'Problem deleting recipient:'
|
391
|
+
email_input_aria_label: Recipient email %{index}
|
378
392
|
delete:
|
379
393
|
heading: Delete exhibit
|
380
394
|
warning_html: This action is irreversible. Be sure to back up the exhibit settings and content using the %{export_link} feature before proceeding.
|
@@ -392,13 +406,15 @@ en:
|
|
392
406
|
heading: Filter items
|
393
407
|
instructions: You can limit the items included in this exhibit by applying a filter to your Solr index. When you apply a filter, only items with values that match the filter will be included in your exhibit. To apply a filter, enter both a field and a value that match the names used in your Solr index.
|
394
408
|
form:
|
395
|
-
add_contact_email_button: Add new
|
409
|
+
add_contact_email_button: Add new recipient
|
396
410
|
fields:
|
397
411
|
contact_emails:
|
398
|
-
help_block: Each
|
412
|
+
help_block: Each recipient will receive submissions made through the feedback form
|
399
413
|
published:
|
400
414
|
help_block: ''
|
401
415
|
uneditable_non_default_language: This field is not editable in the current language. Switch to the default language to edit it.
|
416
|
+
groups:
|
417
|
+
all: All
|
402
418
|
import:
|
403
419
|
button: Import data
|
404
420
|
heading: Import data
|
@@ -408,7 +424,7 @@ en:
|
|
408
424
|
unpublished: Unpublished exhibits
|
409
425
|
user: Your exhibits
|
410
426
|
languages:
|
411
|
-
current_header: Current
|
427
|
+
current_header: Current languages
|
412
428
|
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.
|
413
429
|
heading: Languages
|
414
430
|
modal:
|
@@ -433,63 +449,10 @@ en:
|
|
433
449
|
label: Title
|
434
450
|
tags:
|
435
451
|
all: All
|
436
|
-
translations:
|
437
|
-
browse_categories:
|
438
|
-
default_language_column_label: English language title
|
439
|
-
description_label: Description
|
440
|
-
label: Browse categories
|
441
|
-
translation_column_label: "%{language} translation"
|
442
|
-
general:
|
443
|
-
basic_settings:
|
444
|
-
description: Description
|
445
|
-
label: Basic Settings
|
446
|
-
subtitle: Subtitle
|
447
|
-
title: Title
|
448
|
-
label: General
|
449
|
-
main_menu:
|
450
|
-
about: About
|
451
|
-
browse: Browse
|
452
|
-
curated_features: Curated Features
|
453
|
-
home: Home
|
454
|
-
label: Main Menu
|
455
|
-
metadata:
|
456
|
-
exhibit_specific_fields:
|
457
|
-
label: Exhibit-Specific Fields
|
458
|
-
label: Metadata field labels
|
459
|
-
pages:
|
460
|
-
about_pages:
|
461
|
-
label: About Pages
|
462
|
-
destroy: Delete
|
463
|
-
destroy_are_you_sure: Are you sure you want to delete this page? If you delete this page all content, including any existing translations you have made in it, will be lost.
|
464
|
-
edit: Edit
|
465
|
-
feature_pages:
|
466
|
-
label: Feature Pages
|
467
|
-
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.
|
468
|
-
home_page:
|
469
|
-
label: Home Page
|
470
|
-
label: Pages
|
471
|
-
new: Create one now.
|
472
|
-
no_translated_page: No translated page.
|
473
|
-
recreate: Recreate
|
474
|
-
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.
|
475
|
-
table_header:
|
476
|
-
actions: Actions
|
477
|
-
default_published: Published
|
478
|
-
language_published: Published
|
479
|
-
last_updated: "%{language} title / Last update"
|
480
|
-
search_fields:
|
481
|
-
facet_fields:
|
482
|
-
label: Facet Fields
|
483
|
-
field_based_search_fields:
|
484
|
-
label: Field-Based Search Fields
|
485
|
-
label: Search field labels
|
486
|
-
sort_fields:
|
487
|
-
label: Sort Fields
|
488
|
-
title: Translations
|
489
452
|
exhibits_admin_invitation_mailer:
|
490
453
|
invitation_instructions:
|
491
454
|
accept: Accept invitation
|
492
|
-
accept_invitation:
|
455
|
+
accept_invitation: You can accept this invitation by selecting the link below.
|
493
456
|
hello: Hello!
|
494
457
|
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.
|
495
458
|
someone_invited_you: The Exhibits Administrator has invited you to help manage exhibits.
|
@@ -500,7 +463,7 @@ en:
|
|
500
463
|
featured_images:
|
501
464
|
form:
|
502
465
|
crop_area:
|
503
|
-
|
466
|
+
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.
|
504
467
|
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.
|
505
468
|
source:
|
506
469
|
exhibit:
|
@@ -513,7 +476,7 @@ en:
|
|
513
476
|
label: Upload an image
|
514
477
|
upload_form:
|
515
478
|
crop_area:
|
516
|
-
|
479
|
+
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.
|
517
480
|
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.
|
518
481
|
source:
|
519
482
|
exhibit:
|
@@ -538,10 +501,12 @@ en:
|
|
538
501
|
body:
|
539
502
|
one: "%{count} document has been indexed from the CSV file and added to the exhibit %{title}."
|
540
503
|
other: "%{count} documents have been indexed from the CSV file and added to the exhibit %{title}."
|
504
|
+
error: 'Row %{index}: %{message}'
|
505
|
+
errors: Errors
|
541
506
|
title: Your CSV file has just finished being processed.
|
542
507
|
invitation_mailer:
|
543
508
|
invitation_instructions:
|
544
|
-
accept_invitation: You can accept this invitation by
|
509
|
+
accept_invitation: You can accept this invitation by selecting the link below.
|
545
510
|
hello: Hello!
|
546
511
|
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.
|
547
512
|
someone_invited_you: The Exhibits Administrator has invited you to help work on the "%{exhibit_name}" exhibit.
|
@@ -550,21 +515,21 @@ en:
|
|
550
515
|
main_navigation:
|
551
516
|
about: About
|
552
517
|
browse: Browse
|
553
|
-
curated_features: Curated
|
518
|
+
curated_features: Curated features
|
554
519
|
metadata_configurations:
|
555
520
|
edit:
|
556
521
|
deselect_all: Deselect all
|
557
522
|
exhibit_specific:
|
558
|
-
header: Exhibit-
|
523
|
+
header: Exhibit-specific fields
|
559
524
|
instructions: You can add metadata fields to supplement the metadata fields that are part of the repository item record.
|
560
525
|
field:
|
561
526
|
label: Field name
|
562
527
|
header: Metadata
|
563
|
-
instructions: Select metadata fields to display on each type of page.
|
564
|
-
order_header: Display and
|
528
|
+
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.
|
529
|
+
order_header: Display and order metadata fields
|
565
530
|
select_all: Select all
|
566
531
|
view:
|
567
|
-
show: Item
|
532
|
+
show: Item details
|
568
533
|
pages:
|
569
534
|
edit:
|
570
535
|
header: Edit page
|
@@ -574,30 +539,30 @@ en:
|
|
574
539
|
page_options: Options
|
575
540
|
page_thumbnail: Thumbnail
|
576
541
|
thumbnail:
|
577
|
-
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
|
542
|
+
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.
|
578
543
|
title_placeholder: Title
|
579
544
|
index:
|
580
545
|
about_pages:
|
581
|
-
header: About
|
546
|
+
header: About pages
|
582
547
|
feature_pages:
|
583
|
-
header: Feature
|
548
|
+
header: Feature pages
|
584
549
|
home_pages_header: Homepage
|
585
550
|
home_pages:
|
586
|
-
header: Exhibit
|
587
|
-
title: Exhibit
|
551
|
+
header: Exhibit home
|
552
|
+
title: Exhibit home
|
588
553
|
new:
|
589
554
|
header: New page
|
590
555
|
order_pages:
|
591
556
|
cancel: Cancel
|
592
557
|
instructions: Add new pages below. Drag and drop pages to change the order in which they are displayed in the sidebar.
|
593
558
|
new_page: Add new page
|
594
|
-
pages_header: Custom
|
559
|
+
pages_header: Custom pages
|
595
560
|
save: Save
|
596
561
|
resources:
|
597
562
|
csv_upload:
|
598
563
|
form:
|
599
564
|
add_item: Add item
|
600
|
-
file_label: CSV
|
565
|
+
file_label: CSV file
|
601
566
|
help_html: "%{link}"
|
602
567
|
template: Download template
|
603
568
|
title: Upload multiple items
|
@@ -615,7 +580,7 @@ en:
|
|
615
580
|
json_upload:
|
616
581
|
form:
|
617
582
|
add_item: Add item
|
618
|
-
file_label: JSON
|
583
|
+
file_label: JSON file
|
619
584
|
title: Upload raw documents
|
620
585
|
new:
|
621
586
|
header: Add items
|
@@ -640,11 +605,11 @@ en:
|
|
640
605
|
help: Enter a valid email address
|
641
606
|
index:
|
642
607
|
actions: Actions
|
643
|
-
email: Email
|
608
|
+
email: Email address
|
644
609
|
header: Users
|
645
610
|
invite_pending: pending
|
646
611
|
role: Role
|
647
|
-
title: Site
|
612
|
+
title: Site configuration - users
|
648
613
|
saved_search:
|
649
614
|
id: Select a title to update a previously saved search
|
650
615
|
label: Save this search
|
@@ -652,41 +617,41 @@ en:
|
|
652
617
|
search:
|
653
618
|
fields:
|
654
619
|
abstract_tesim: Abstract
|
655
|
-
corporate_name_ssm: Corporate
|
620
|
+
corporate_name_ssm: Corporate names
|
656
621
|
facet:
|
657
|
-
corporate_name_ssm: Corporate
|
658
|
-
exhibit_tags: Exhibit
|
622
|
+
corporate_name_ssm: Corporate names
|
623
|
+
exhibit_tags: Exhibit tags
|
659
624
|
genre_ssim: Genre
|
660
625
|
language_ssim: Language
|
661
|
-
personal_name_ssm: Personal
|
626
|
+
personal_name_ssm: Personal names
|
662
627
|
subject_geographic_ssim: Geographic
|
663
628
|
subject_temporal_ssim: Era
|
664
629
|
full_title_tesim: Title
|
665
630
|
language_ssm: Language
|
666
631
|
note_desc_note_tesim: Note
|
667
632
|
note_mapuse_tesim: Type
|
668
|
-
note_page_num_tesim: Page
|
633
|
+
note_page_num_tesim: Page number
|
669
634
|
note_phys_desc_tesim: Note
|
670
635
|
note_provenance_tesim: Provenance
|
671
636
|
note_references_tesim: References
|
672
637
|
note_source_tesim: Source
|
673
|
-
personal_name_ssm: Personal
|
638
|
+
personal_name_ssm: Personal names
|
674
639
|
search:
|
675
640
|
all_fields: Everything
|
676
641
|
author: Author
|
677
642
|
title: Title
|
678
643
|
sort:
|
679
|
-
date:
|
680
|
-
identifier:
|
681
|
-
relevance:
|
682
|
-
source:
|
683
|
-
title:
|
684
|
-
type:
|
644
|
+
date: date (new to old)
|
645
|
+
identifier: identifier
|
646
|
+
relevance: relevance
|
647
|
+
source: source
|
648
|
+
title: title
|
649
|
+
type: type
|
685
650
|
spotlight_upload_attribution_tesim: Attribution
|
686
651
|
spotlight_upload_date_tesim: Date
|
687
652
|
spotlight_upload_description_tesim: Description
|
688
|
-
subject_geographic_tesim: Geographic
|
689
|
-
subject_temporal_tesim: Temporal
|
653
|
+
subject_geographic_tesim: Geographic subject
|
654
|
+
subject_temporal_tesim: Temporal subject
|
690
655
|
search_configurations:
|
691
656
|
default_per_page:
|
692
657
|
label: Default per page
|
@@ -707,7 +672,7 @@ en:
|
|
707
672
|
one: "%{count} unique value"
|
708
673
|
other: "%{count} unique values"
|
709
674
|
facets:
|
710
|
-
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.
|
675
|
+
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.
|
711
676
|
sort_by:
|
712
677
|
count: Frequency
|
713
678
|
index: Value
|
@@ -719,10 +684,10 @@ en:
|
|
719
684
|
instructions: You can add custom search fields to supplement the search fields that are part of the default configuration.
|
720
685
|
header: Field-based search
|
721
686
|
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.
|
722
|
-
instructions: If enabled, you can select below the metadata fields that are available for searching.
|
687
|
+
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.
|
723
688
|
sort:
|
724
689
|
header: Sort fields
|
725
|
-
help: Select the fields you want to be available to users for sorting results.
|
690
|
+
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.
|
726
691
|
keys:
|
727
692
|
asc: ascending
|
728
693
|
desc: descending
|
@@ -734,10 +699,13 @@ en:
|
|
734
699
|
sort_type_ssi: type
|
735
700
|
searches:
|
736
701
|
edit:
|
737
|
-
header: Edit
|
738
|
-
title: Curation -
|
702
|
+
header: Edit browse category
|
703
|
+
title: Curation - browse
|
739
704
|
form:
|
740
705
|
default_index_view_type: Default view
|
706
|
+
group:
|
707
|
+
help: You can add this browse category to any number of browse groups. When you add a browse category to a group it will be displayed when an exhibit visitor selects that browse group’s filter button on the Browse landing page.
|
708
|
+
help_no_groups: You cannot add this browse category to a browse group because no browse groups have been created. To create a browse group, use the Browse groups tab on the Curation > Browse page.
|
741
709
|
masthead:
|
742
710
|
help: You can select and crop an image to use as a browse category-specific masthead, instead of the default site masthead, for this browse category's detail page.
|
743
711
|
help_secondary: To create a browse category-specific masthead, you should use an image that is at least 120 pixels tall and 1200 pixels wide. For best results use an image at least 1800 pixels wide. You can crop larger images using the cropping tool below.
|
@@ -747,17 +715,32 @@ en:
|
|
747
715
|
help_block: Displays a search box that enables users to search within the browse category results
|
748
716
|
label: Search box
|
749
717
|
search_description: Description
|
718
|
+
search_group: Group
|
750
719
|
search_masthead: Masthead
|
751
720
|
search_thumbnail: Thumbnail
|
752
721
|
thumbnail:
|
753
722
|
help: You can select and crop an image to visually represent this search.
|
723
|
+
group:
|
724
|
+
category_count:
|
725
|
+
one: "%{count} category"
|
726
|
+
other: "%{count} categories"
|
727
|
+
unpublished_count:
|
728
|
+
one: "(%{count} unpublished)"
|
729
|
+
other: "(%{count} unpublished)"
|
730
|
+
zero: ''
|
731
|
+
view: View
|
754
732
|
index:
|
755
|
-
|
733
|
+
add_new_group: Add new group
|
734
|
+
cancel: Cancel
|
735
|
+
categories_header: Browse categories
|
736
|
+
categories_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.
|
737
|
+
groups_header: Browse groups
|
738
|
+
groups_instructions_html: "<p>Optionally, you can create groups to organize your exhibits’ browse categories and enable exhibit visitors to filter browse categories by group. Drag and drop browse groups to change the order in which their filter buttons are displayed.</p><p>To add a browse category to a browse group, edit the browse category from the Browse categories tab.</p>"
|
756
739
|
header: Browse
|
757
|
-
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.
|
758
740
|
no_saved_searches: You can save search results while in curation mode to create browse categories, which will be displayed here.
|
759
741
|
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.
|
760
|
-
|
742
|
+
save: Save
|
743
|
+
title: Curation - browse
|
761
744
|
search:
|
762
745
|
item_count:
|
763
746
|
one: "%{count} item"
|
@@ -770,13 +753,18 @@ en:
|
|
770
753
|
header: Administration menu
|
771
754
|
report_a_problem:
|
772
755
|
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.
|
773
|
-
|
756
|
+
reporting_from: 'Reporting from: %{url}'
|
757
|
+
title: Contact us
|
774
758
|
sir_trevor:
|
775
759
|
blocks:
|
776
760
|
browse_block:
|
777
761
|
items:
|
778
762
|
one: "%{count} item"
|
779
763
|
other: "%{count} items"
|
764
|
+
browse_group_categories_block:
|
765
|
+
items:
|
766
|
+
one: "%{count} item"
|
767
|
+
other: "%{count} items"
|
780
768
|
link_to_search_block:
|
781
769
|
items:
|
782
770
|
one: "%{count} item"
|
@@ -803,11 +791,78 @@ en:
|
|
803
791
|
actions: Actions
|
804
792
|
header: Tags
|
805
793
|
name: Tag name
|
806
|
-
no_tags: No items in this exhibit have been tagged. You can add tags to an item on the
|
794
|
+
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.
|
807
795
|
taggings:
|
808
796
|
count: Items tagged
|
809
797
|
topbar:
|
810
798
|
label: Utilities
|
799
|
+
translations:
|
800
|
+
browse_categories:
|
801
|
+
default_language_column_label: English language title
|
802
|
+
description_label: Description
|
803
|
+
label: Browse categories
|
804
|
+
subtitle_label: Subtitle
|
805
|
+
translation_column_label: "%{language} translation"
|
806
|
+
edit:
|
807
|
+
title: Translations
|
808
|
+
general:
|
809
|
+
basic_settings:
|
810
|
+
description: Description
|
811
|
+
label: Basic settings
|
812
|
+
subtitle: Subtitle
|
813
|
+
title: Title
|
814
|
+
label: General
|
815
|
+
main_menu:
|
816
|
+
about: About
|
817
|
+
browse: Browse
|
818
|
+
curated_features: Curated features
|
819
|
+
home: Home
|
820
|
+
label: Main menu
|
821
|
+
groups:
|
822
|
+
label: Browse groups
|
823
|
+
import:
|
824
|
+
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.
|
825
|
+
export_current_locale: Export %{language}
|
826
|
+
export_default_locale: Export %{language}
|
827
|
+
export_label: Export a YAML file
|
828
|
+
header: Import and export translations
|
829
|
+
import_label: Import a YAML file
|
830
|
+
import_submit: Import translations
|
831
|
+
metadata:
|
832
|
+
exhibit_specific_fields:
|
833
|
+
label: Exhibit-specific fields
|
834
|
+
label: Metadata field labels
|
835
|
+
page:
|
836
|
+
destroy: Delete
|
837
|
+
destroy_are_you_sure: Are you sure you want to delete this page? If you delete this page all content, including any existing translations you have made in it, will be lost.
|
838
|
+
edit: Edit
|
839
|
+
new: Create one now.
|
840
|
+
no_translated_page: No translated page.
|
841
|
+
recreate: Recreate
|
842
|
+
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.
|
843
|
+
pages:
|
844
|
+
about_pages:
|
845
|
+
label: About pages
|
846
|
+
feature_pages:
|
847
|
+
label: Feature pages
|
848
|
+
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.
|
849
|
+
home_page:
|
850
|
+
label: Home page
|
851
|
+
label: Pages
|
852
|
+
pages_table:
|
853
|
+
header:
|
854
|
+
actions: Actions
|
855
|
+
default_published: Published
|
856
|
+
language_published: Published
|
857
|
+
last_updated: "%{language} title / Last update"
|
858
|
+
search_fields:
|
859
|
+
facet_fields:
|
860
|
+
label: Facet fields
|
861
|
+
field_based_search_fields:
|
862
|
+
label: Field-based search fields
|
863
|
+
label: Search field labels
|
864
|
+
sort_fields:
|
865
|
+
label: Sort fields
|
811
866
|
versions:
|
812
867
|
redo: Redo changes
|
813
868
|
undo: Undo changes
|