blacklight 8.11.0 → 9.0.0.beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.env +3 -3
- data/.github/matrix.json +11 -42
- data/.github/pull_request_template.md +7 -0
- data/.github/workflows/main.yml +0 -2
- data/.github/workflows/release_7_x_scheduled.yml +39 -0
- data/.github/workflows/release_8_x_scheduled.yml +39 -0
- data/.github/workflows/test.yml +0 -5
- data/.rubocop.yml +71 -3
- data/.rubocop_todo.yml +43 -76
- data/.solr_wrapper.yml +2 -0
- data/README.md +30 -8
- data/VERSION +1 -1
- data/app/assets/builds/blacklight.css +452 -0
- data/app/assets/javascripts/blacklight/blacklight.esm.js +6 -76
- data/app/assets/javascripts/blacklight/blacklight.esm.js.map +1 -1
- data/app/assets/javascripts/blacklight/blacklight.js +6 -76
- data/app/assets/javascripts/blacklight/blacklight.js.map +1 -1
- data/app/assets/stylesheets/blacklight/_balanced_list.scss +1 -4
- data/app/assets/stylesheets/blacklight/_blacklight_base.scss +1 -3
- data/app/assets/stylesheets/blacklight/_bookmark.scss +44 -41
- data/app/assets/stylesheets/blacklight/_bootstrap_overrides.scss +0 -25
- data/app/assets/stylesheets/blacklight/_constraints.scss +15 -24
- data/app/assets/stylesheets/blacklight/_controls.scss +2 -18
- data/app/assets/stylesheets/blacklight/_facets.scss +17 -84
- data/app/assets/stylesheets/blacklight/_group.scss +2 -5
- data/app/assets/stylesheets/blacklight/_header.scss +8 -11
- data/app/assets/stylesheets/blacklight/_icons.scss +0 -8
- data/app/assets/stylesheets/blacklight/_modal.scss +1 -1
- data/app/assets/stylesheets/blacklight/_pagination.scss +0 -4
- data/app/assets/stylesheets/blacklight/_search_form.scss +0 -1
- data/app/assets/stylesheets/blacklight/_search_history.scss +0 -8
- data/app/assets/stylesheets/blacklight/_search_results.scss +1 -15
- data/app/assets/stylesheets/blacklight/blacklight_defaults.scss +9 -14
- data/app/assets/stylesheets/blacklight/build.scss +4 -0
- data/app/components/blacklight/advanced_search_form_component.rb +3 -3
- data/app/components/blacklight/constraint_component.rb +1 -1
- data/app/components/blacklight/constraint_layout_component.html.erb +2 -2
- data/app/components/blacklight/constraints_component.html.erb +2 -2
- data/app/components/blacklight/constraints_component.rb +3 -3
- data/app/components/blacklight/document/bookmark_component.html.erb +3 -3
- data/app/components/blacklight/document/bookmark_component.rb +2 -2
- data/app/components/blacklight/document/group_component.html.erb +1 -1
- data/app/components/blacklight/document/more_like_this_component.rb +2 -2
- data/app/components/blacklight/document/page_header_component.rb +1 -1
- data/app/components/blacklight/document/sidebar_component.rb +5 -5
- data/app/components/blacklight/document/thumbnail_component.html.erb +3 -7
- data/app/components/blacklight/document/thumbnail_component.rb +7 -6
- data/app/components/blacklight/document_component.rb +12 -16
- data/app/components/blacklight/document_title_component.rb +5 -11
- data/app/components/blacklight/facet_field_checkboxes_component.rb +2 -20
- data/app/components/blacklight/facet_field_component.rb +2 -17
- data/app/components/blacklight/facet_field_filter_component.rb +2 -21
- data/app/components/blacklight/facet_field_inclusive_constraint_component.rb +4 -25
- data/app/components/blacklight/facet_field_list_component.rb +2 -50
- data/app/components/blacklight/facet_field_no_layout_component.rb +2 -10
- data/app/components/blacklight/facet_item_component.rb +2 -74
- data/app/components/blacklight/facet_item_pivot_component.rb +3 -3
- data/app/components/blacklight/facets/checkboxes_component.rb +26 -0
- data/app/components/blacklight/facets/count_component.rb +23 -0
- data/app/components/blacklight/{facet_field_component.html.erb → facets/field_component.html.erb} +4 -4
- data/app/components/blacklight/facets/field_component.rb +23 -0
- data/app/components/blacklight/facets/filters_component.html.erb +4 -0
- data/app/components/blacklight/facets/filters_component.rb +27 -0
- data/app/components/blacklight/{facet_field_inclusive_constraint_component.html.erb → facets/inclusive_constraint_component.html.erb} +1 -1
- data/app/components/blacklight/facets/inclusive_constraint_component.rb +31 -0
- data/app/components/blacklight/{facet_field_filter_component.html.erb → facets/index_navigation_component.html.erb} +1 -1
- data/app/components/blacklight/facets/index_navigation_component.rb +32 -0
- data/app/components/blacklight/facets/item_component.rb +73 -0
- data/app/components/blacklight/facets/list_component.html.erb +11 -0
- data/app/components/blacklight/facets/list_component.rb +38 -0
- data/app/components/blacklight/facets/no_layout_component.rb +16 -0
- data/app/components/blacklight/facets/selected_value_component.rb +29 -0
- data/app/components/blacklight/facets/suggest_component.html.erb +12 -0
- data/app/components/blacklight/facets/suggest_component.rb +22 -0
- data/app/components/blacklight/metadata_field_plain_text_layout_component.rb +2 -2
- data/app/components/blacklight/response/facet_group_component.html.erb +3 -18
- data/app/components/blacklight/response/facet_group_component.rb +11 -23
- data/app/components/blacklight/response/facet_toggle_button_component.html.erb +16 -0
- data/app/components/blacklight/response/facet_toggle_button_component.rb +14 -0
- data/app/components/blacklight/response/pagination_component.html.erb +1 -1
- data/app/components/blacklight/response/pagination_component.rb +2 -1
- data/app/components/blacklight/response/sort_component.rb +1 -0
- data/app/components/blacklight/response/view_type_button_component.html.erb +1 -1
- data/app/components/blacklight/response/view_type_component.html.erb +1 -1
- data/app/components/blacklight/search/per_page_component.html.erb +1 -1
- data/app/components/blacklight/search/per_page_component.rb +1 -0
- data/app/components/blacklight/search/sidebar_component.html.erb +1 -1
- data/app/components/blacklight/search/sidebar_component.rb +1 -1
- data/app/components/blacklight/search_bar_component.html.erb +3 -3
- data/app/components/blacklight/search_bar_component.rb +2 -2
- data/app/components/blacklight/search_button_component.rb +2 -2
- data/app/components/blacklight/search_context/server_applied_params_component.html.erb +2 -2
- data/app/components/blacklight/search_context/server_applied_params_component.rb +9 -0
- data/app/components/blacklight/skip_link_component.html.erb +1 -1
- data/app/components/blacklight/skip_link_component.rb +2 -1
- data/app/components/blacklight/top_navbar_component.html.erb +2 -2
- data/app/controllers/concerns/blacklight/bookmarks.rb +3 -3
- data/app/controllers/concerns/blacklight/catalog.rb +9 -23
- data/app/controllers/concerns/blacklight/controller.rb +1 -1
- data/app/controllers/concerns/blacklight/facetable.rb +34 -0
- data/app/controllers/concerns/blacklight/search_context.rb +0 -12
- data/app/controllers/concerns/blacklight/searchable.rb +1 -1
- data/app/helpers/blacklight/blacklight_helper_behavior.rb +0 -6
- data/app/helpers/blacklight/catalog_helper_behavior.rb +0 -10
- data/app/helpers/blacklight/configuration_helper_behavior.rb +2 -14
- data/app/helpers/blacklight/document_helper_behavior.rb +3 -27
- data/app/helpers/blacklight/facets_helper_behavior.rb +9 -0
- data/app/helpers/blacklight/icon_helper_behavior.rb +3 -11
- data/app/helpers/blacklight/layout_helper_behavior.rb +2 -2
- data/app/helpers/blacklight/render_partials_helper_behavior.rb +0 -14
- data/app/helpers/blacklight/url_helper_behavior.rb +1 -1
- data/app/javascript/{blacklight → blacklight-frontend}/bookmark_toggle.js +1 -1
- data/app/javascript/{blacklight → blacklight-frontend}/checkbox_submit.js +3 -0
- data/app/javascript/{blacklight → blacklight-frontend}/core.js +2 -10
- data/app/javascript/{blacklight → blacklight-frontend}/facet_suggest.js +1 -3
- data/app/javascript/blacklight-frontend/index.js +16 -0
- data/app/javascript/{blacklight → blacklight-frontend}/modal.js +1 -5
- data/app/models/concerns/blacklight/document.rb +0 -11
- data/app/models/concerns/blacklight/user.rb +1 -1
- data/app/models/facet_search_builder.rb +5 -0
- data/app/presenters/blacklight/facet_field_presenter.rb +3 -3
- data/app/presenters/blacklight/rendering/helper_method.rb +4 -4
- data/app/presenters/blacklight/rendering/join.rb +2 -2
- data/app/services/blacklight/facet_search_service.rb +44 -0
- data/app/services/blacklight/field_retriever.rb +1 -1
- data/app/services/blacklight/search_params_yaml_coder.rb +0 -2
- data/app/services/blacklight/search_service.rb +6 -6
- data/app/values/blacklight/types.rb +2 -2
- data/app/views/bookmarks/_clear_bookmarks_widget.html.erb +0 -2
- data/app/views/bookmarks/index.html.erb +1 -1
- data/app/views/catalog/_facet_pivot.html.erb +1 -1
- data/app/views/catalog/_home_text.html.erb +2 -2
- data/app/views/catalog/_results_pagination.html.erb +2 -5
- data/app/views/catalog/_search_results.html.erb +3 -3
- data/app/views/catalog/_search_results_header.html.erb +1 -1
- data/app/views/catalog/_sort_and_per_page.html.erb +1 -1
- data/app/views/catalog/_sort_widget.html.erb +1 -0
- data/app/views/catalog/facet.html.erb +4 -6
- data/app/views/catalog/show.html.erb +2 -3
- data/app/views/kaminari/blacklight/_paginator.html.erb +1 -2
- data/app/views/layouts/blacklight/base.html.erb +3 -7
- data/app/views/search_history/index.html.erb +0 -2
- data/blacklight.gemspec +4 -4
- data/config/importmap.rb +1 -1
- data/config/locales/blacklight.ar.yml +2 -2
- data/config/locales/blacklight.ca.yml +124 -124
- data/config/locales/blacklight.de.yml +2 -2
- data/config/locales/blacklight.en.yml +14 -14
- data/config/locales/blacklight.es.yml +2 -2
- data/config/locales/blacklight.fr.yml +2 -2
- data/config/locales/blacklight.hu.yml +2 -2
- data/config/locales/blacklight.it.yml +1 -1
- data/config/locales/blacklight.nl.yml +2 -2
- data/config/locales/blacklight.pt-BR.yml +1 -1
- data/config/locales/blacklight.sq.yml +2 -2
- data/config/locales/blacklight.zh.yml +2 -2
- data/lib/blacklight/abstract_repository.rb +2 -2
- data/lib/blacklight/abstract_search_builder.rb +154 -0
- data/lib/blacklight/configuration/context.rb +3 -3
- data/lib/blacklight/configuration/display_field.rb +1 -1
- data/lib/blacklight/configuration/facet_field.rb +6 -6
- data/lib/blacklight/configuration/field.rb +4 -4
- data/lib/blacklight/configuration/fields.rb +3 -4
- data/lib/blacklight/configuration/search_field.rb +1 -1
- data/lib/blacklight/configuration/view_config.rb +2 -4
- data/lib/blacklight/configuration.rb +11 -18
- data/lib/blacklight/engine.rb +0 -6
- data/lib/blacklight/facet_search_builder.rb +18 -0
- data/lib/blacklight/nested_open_struct_with_hash_access.rb +1 -1
- data/lib/blacklight/open_struct_with_hash_access.rb +5 -5
- data/lib/blacklight/search_builder.rb +1 -159
- data/lib/blacklight/search_state/filter_field.rb +2 -2
- data/lib/blacklight/search_state/pivot_filter_field.rb +4 -4
- data/lib/blacklight/solr/abstract_filter_query_builder.rb +77 -0
- data/lib/blacklight/solr/default_filter_query_builder.rb +20 -0
- data/lib/blacklight/solr/facet_search_builder_behavior.rb +62 -0
- data/lib/blacklight/solr/repository.rb +8 -9
- data/lib/blacklight/solr/request.rb +1 -7
- data/lib/blacklight/solr/response/facets.rb +2 -2
- data/lib/blacklight/solr/response/group_response.rb +2 -2
- data/lib/blacklight/solr/response/params.rb +0 -4
- data/lib/blacklight/solr/response.rb +5 -1
- data/lib/blacklight/solr/search_builder_behavior.rb +17 -132
- data/lib/blacklight.rb +2 -2
- data/lib/generators/blacklight/assets/importmap_generator.rb +6 -24
- data/lib/generators/blacklight/assets/propshaft_generator.rb +1 -1
- data/lib/generators/blacklight/assets_generator.rb +3 -3
- data/lib/generators/blacklight/controller_generator.rb +3 -3
- data/lib/generators/blacklight/search_builder_generator.rb +1 -1
- data/lib/generators/blacklight/templates/.solr_wrapper.yml +2 -0
- data/lib/generators/blacklight/templates/catalog_controller.rb +3 -1
- data/lib/generators/blacklight/templates/solr/conf/solrconfig.xml +0 -4
- data/lib/generators/blacklight/user_generator.rb +9 -10
- data/package.json +15 -5
- data/rollup.config.js +1 -1
- data/spec/components/blacklight/advanced_search_form_component_spec.rb +18 -22
- data/spec/components/blacklight/constraint_layout_component_spec.rb +8 -8
- data/spec/components/blacklight/constraints_component_spec.rb +11 -11
- data/spec/components/blacklight/document/action_component_spec.rb +21 -17
- data/spec/components/blacklight/document/group_component_spec.rb +10 -15
- data/spec/components/blacklight/document/page_header_component_spec.rb +35 -28
- data/spec/components/blacklight/document/sidebar_component_spec.rb +9 -30
- data/spec/components/blacklight/document_component_spec.rb +98 -65
- data/spec/components/blacklight/facet_component_spec.rb +12 -8
- data/spec/components/blacklight/facet_item_pivot_component_spec.rb +12 -12
- data/spec/components/blacklight/{facet_field_checkboxes_component_spec.rb → facets/checkboxes_component_spec.rb} +14 -14
- data/spec/components/blacklight/facets/filters_component_spec.rb +36 -0
- data/spec/components/blacklight/facets/index_navigation_component_spec.rb +40 -0
- data/spec/components/blacklight/{facet_item_component_spec.rb → facets/item_component_spec.rb} +10 -10
- data/spec/components/blacklight/{facet_field_list_component_spec.rb → facets/list_component_spec.rb} +24 -24
- data/spec/components/blacklight/facets/suggest_component_spec.rb +68 -0
- data/spec/components/blacklight/header_component_spec.rb +2 -4
- data/spec/components/blacklight/hidden_search_state_component_spec.rb +7 -7
- data/spec/components/blacklight/metadata_field_component_spec.rb +17 -15
- data/spec/components/blacklight/response/facet_group_component_spec.rb +37 -0
- data/spec/components/blacklight/response/pagination_component_spec.rb +1 -1
- data/spec/components/blacklight/response/spellcheck_component_spec.rb +1 -1
- data/spec/components/blacklight/search_bar_component_spec.rb +5 -5
- data/spec/components/blacklight/search_context/server_applied_params_component_spec.rb +2 -2
- data/spec/components/blacklight/search_context/server_item_pagination_component_spec.rb +3 -5
- data/spec/components/blacklight/skip_link_component_spec.rb +8 -11
- data/spec/components/blacklight/start_over_button_component_spec.rb +4 -4
- data/spec/components/blacklight/system/flash_message_component_spec.rb +7 -11
- data/spec/controllers/catalog_controller_spec.rb +11 -19
- data/spec/features/axe_spec.rb +6 -11
- data/spec/features/bookmarks_spec.rb +48 -11
- data/spec/features/facets_spec.rb +58 -63
- data/spec/features/search_context_spec.rb +1 -2
- data/spec/features/search_filters_spec.rb +6 -6
- data/spec/helpers/blacklight/configuration_helper_behavior_spec.rb +0 -9
- data/spec/helpers/blacklight/facets_helper_behavior_spec.rb +10 -0
- data/spec/helpers/blacklight/render_partials_helper_behavior_spec.rb +1 -1
- data/spec/lib/blacklight/configuration/facet_field_spec.rb +2 -2
- data/spec/models/blacklight/configuration_spec.rb +32 -28
- data/spec/models/blacklight/facet_search_builder_spec.rb +19 -0
- data/spec/models/blacklight/search_builder_spec.rb +1 -11
- data/spec/models/blacklight/solr/default_filter_query_builder_spec.rb +72 -0
- data/spec/models/blacklight/solr/document_spec.rb +0 -4
- data/spec/models/blacklight/solr/facet_search_builder_behavior_spec.rb +929 -0
- data/spec/models/blacklight/solr/repository_spec.rb +31 -29
- data/spec/models/blacklight/solr/request_spec.rb +7 -0
- data/spec/models/blacklight/solr/response/facets_spec.rb +86 -40
- data/spec/models/blacklight/solr/response/group_response_spec.rb +8 -5
- data/spec/models/blacklight/solr/response/group_spec.rb +9 -5
- data/spec/models/blacklight/solr/response_spec.rb +96 -64
- data/spec/models/blacklight/solr/search_builder_behavior_spec.rb +2 -227
- data/spec/models/solr_document_spec.rb +5 -1
- data/spec/services/blacklight/search_service_spec.rb +5 -26
- data/spec/spec_helper.rb +0 -1
- data/spec/support/view_component_test_helpers.rb +0 -18
- data/spec/views/catalog/facet.html.erb_spec.rb +10 -11
- data/spec/views/catalog/index.atom.builder_spec.rb +6 -3
- data/spec/views/catalog/index.html.erb_spec.rb +8 -3
- data/spec/views/catalog/show.html.erb_spec.rb +1 -0
- data/tasks/blacklight.rake +8 -5
- metadata +76 -81
- data/app/assets/stylesheets/blacklight/_autocomplete.scss +0 -25
- data/app/assets/stylesheets/blacklight/_mixins.scss +0 -20
- data/app/components/blacklight/facet_field_list_component.html.erb +0 -19
- data/app/components/blacklight/icons/legacy_icon_component.rb +0 -30
- data/app/components/blacklight/search/facet_suggest_input.html.erb +0 -12
- data/app/components/blacklight/search/facet_suggest_input.rb +0 -20
- data/app/javascript/blacklight/index.js +0 -18
- data/app/javascript/blacklight/modalForm.js +0 -60
- data/app/views/catalog/_constraints.html.erb +0 -1
- data/app/views/catalog/_facet_index_navigation.html.erb +0 -1
- data/app/views/catalog/_facet_layout.html.erb +0 -8
- data/app/views/catalog/_facet_pagination.html.erb +0 -1
- data/app/views/catalog/_facets.html.erb +0 -5
- data/app/views/catalog/_search_form.html.erb +0 -7
- data/app/views/catalog/_search_header.html.erb +0 -1
- data/app/views/catalog/_show_sidebar.html.erb +0 -3
- data/app/views/catalog/_show_tools.html.erb +0 -2
- data/app/views/catalog/_start_over.html.erb +0 -1
- data/app/views/shared/_header_navbar.html.erb +0 -1
- data/lib/generators/blacklight/assets/sprockets_generator.rb +0 -68
- data/spec/components/blacklight/document_metadata_component_spec.rb +0 -0
- data/spec/components/blacklight/search/facet_suggest_input_spec.rb +0 -57
- data/spec/views/catalog/_facet_index_navigation.html.erb_spec.rb +0 -43
- data/spec/views/catalog/_facet_layout.html.erb_spec.rb +0 -41
- data/spec/views/catalog/_search_header.erb_spec.rb +0 -14
- data/spec/views/catalog/_show_sidebar.erb_spec.rb +0 -24
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +0 -37
- /data/app/components/blacklight/{facet_field_checkboxes_component.html.erb → facets/checkboxes_component.html.erb} +0 -0
- /data/app/javascript/{blacklight → blacklight-frontend}/button_focus.js +0 -0
- /data/app/javascript/{blacklight → blacklight-frontend}/debounce.js +0 -0
- /data/app/javascript/{blacklight → blacklight-frontend}/search_context.js +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
<div id="sortAndPerPage" class="sort-pagination d-md-flex justify-content-between" role="navigation" aria-label="<%= t('blacklight.search.per_page.aria_label')%>">
|
1
|
+
<div id="sortAndPerPage" class="sort-pagination pb-3 mb-3 d-md-flex justify-content-between" role="navigation" aria-label="<%= t('blacklight.search.per_page.aria_label')%>">
|
2
2
|
<%= render partial: "paginate_compact", object: @response if show_pagination? %>
|
3
3
|
<%= render_results_collection_tools wrapping_class: "search-widgets" %>
|
4
4
|
</div>
|
@@ -1,6 +1,7 @@
|
|
1
1
|
<% if show_sort_and_per_page? %>
|
2
2
|
<%= render(Blacklight::Response::SortComponent.new(
|
3
3
|
choices: active_sort_fields.map { |key, config| [sort_field_label(config.key), key] },
|
4
|
+
classes: ['mx-1'],
|
4
5
|
search_state: search_state,
|
5
6
|
selected: current_sort_field&.key)) %>
|
6
7
|
<% end %>
|
@@ -1,13 +1,11 @@
|
|
1
1
|
<%= render Blacklight::System::ModalComponent.new do |component| %>
|
2
2
|
<% component.with_title { facet_field_label(@facet.key) } %>
|
3
|
+
<% view_config = blacklight_config.view_config(document_index_view_type) %>
|
3
4
|
|
4
|
-
|
5
|
-
<%= render Blacklight::Search::FacetSuggestInput.new(facet: @facet, presenter: @presenter) %>
|
6
|
-
<%= render partial: 'facet_index_navigation' if @facet.index_range && @display_facet.index? %>
|
7
|
-
</div>
|
5
|
+
<%= render Blacklight::Facets::FiltersComponent.new(presenter: @presenter) %>
|
8
6
|
|
9
7
|
<div class="facet-pagination top d-flex flex-wrap w-100 justify-content-between border-bottom pb-3 mb-3">
|
10
|
-
<%= render :
|
8
|
+
<%= render view_config.facet_pagination_component.new(facet_field: @presenter) %>
|
11
9
|
</div>
|
12
10
|
|
13
11
|
<div class="facet-extended-list">
|
@@ -18,7 +16,7 @@
|
|
18
16
|
|
19
17
|
<% component.with_footer do %>
|
20
18
|
<div class="facet-pagination bottom d-flex flex-wrap w-100 justify-content-between">
|
21
|
-
<%= render :
|
19
|
+
<%= render view_config.facet_pagination_component.new(facet_field: @presenter) %>
|
22
20
|
</div>
|
23
21
|
<% end %>
|
24
22
|
<% end %>
|
@@ -1,7 +1,6 @@
|
|
1
1
|
<%= render 'show_main_content' %>
|
2
2
|
|
3
3
|
<% content_for(:sidebar) do %>
|
4
|
-
<%
|
5
|
-
|
6
|
-
<% end %>
|
4
|
+
<% presenter = document_presenter(@document) %>
|
5
|
+
<%= render presenter.view_config.sidebar_component.new(presenter: presenter) %>
|
7
6
|
<% end %>
|
@@ -11,7 +11,6 @@
|
|
11
11
|
<%= paginator.render do -%>
|
12
12
|
<ul class="pagination">
|
13
13
|
<%= prev_page_tag %>
|
14
|
-
<%= next_page_tag if Blacklight::Engine.config.blacklight.paginator[:next_button_position] == :before %>
|
15
14
|
<% each_relevant_page do |page| -%>
|
16
15
|
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
|
17
16
|
<%= page_tag page %>
|
@@ -19,6 +18,6 @@
|
|
19
18
|
<%= gap_tag %>
|
20
19
|
<% end -%>
|
21
20
|
<% end -%>
|
22
|
-
<%= next_page_tag
|
21
|
+
<%= next_page_tag %>
|
23
22
|
</ul>
|
24
23
|
<% end -%>
|
@@ -12,15 +12,11 @@
|
|
12
12
|
<%= opensearch_description_tag application_name, opensearch_catalog_url(format: 'xml') %>
|
13
13
|
<%= favicon_link_tag %>
|
14
14
|
<%= stylesheet_link_tag "application", media: "all", "data-turbo-track": "reload" %>
|
15
|
+
|
15
16
|
<% if defined? Importmap %>
|
16
17
|
<%= javascript_importmap_tags %>
|
17
|
-
<% elsif defined? Propshaft %>
|
18
|
-
<%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>
|
19
18
|
<% else %>
|
20
19
|
<%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>
|
21
|
-
<script type="module">
|
22
|
-
import githubAutoCompleteElement from 'https://cdn.skypack.dev/@github/auto-complete-element';
|
23
|
-
</script>
|
24
20
|
<% end %>
|
25
21
|
|
26
22
|
<%= csrf_meta_tags %>
|
@@ -31,9 +27,9 @@
|
|
31
27
|
<%= content_for(:skip_links) %>
|
32
28
|
<% end %>
|
33
29
|
|
34
|
-
<%= render
|
30
|
+
<%= render blacklight_config.header_component.new(blacklight_config: blacklight_config) %>
|
35
31
|
|
36
|
-
<main id="main-container" class="<%= container_classes %>"
|
32
|
+
<main id="main-container" class="<%= container_classes %>" aria-label="<%= t('blacklight.main.aria.main_container') %>">
|
37
33
|
<%= content_for(:container_header) %>
|
38
34
|
|
39
35
|
<%= render partial: 'shared/flash_msg', layout: 'shared/flash_messages' %>
|
@@ -7,9 +7,7 @@
|
|
7
7
|
<% else %>
|
8
8
|
<%= link_to t('blacklight.search_history.clear.action_title'),
|
9
9
|
blacklight.clear_search_history_path,
|
10
|
-
method: :delete, # for rails-ujs
|
11
10
|
data: {
|
12
|
-
confirm: t('blacklight.search_history.clear.action_confirm'), # for rails-ujs
|
13
11
|
turbo_confirm: t('blacklight.search_history.clear.action_confirm'),
|
14
12
|
turbo_method: :delete
|
15
13
|
},
|
data/blacklight.gemspec
CHANGED
@@ -23,19 +23,19 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
s.require_paths = ["lib"]
|
25
25
|
|
26
|
-
s.required_ruby_version = '>=
|
26
|
+
s.required_ruby_version = '>= 3.1'
|
27
27
|
|
28
|
-
s.add_dependency "rails", '>=
|
28
|
+
s.add_dependency "rails", '>= 7.0', '< 9'
|
29
29
|
s.add_dependency "globalid"
|
30
30
|
s.add_dependency "jbuilder", '~> 2.7'
|
31
31
|
s.add_dependency "kaminari", ">= 0.15" # the pagination (page 1,2,3, etc..) of our search results
|
32
32
|
s.add_dependency "i18n", '>= 1.7.0' # added named parameters
|
33
33
|
s.add_dependency "ostruct", '>= 0.3.2'
|
34
|
-
s.add_dependency "view_component", '
|
34
|
+
s.add_dependency "view_component", '~> 3.9'
|
35
35
|
s.add_dependency "zeitwerk"
|
36
36
|
|
37
37
|
s.add_development_dependency "rsolr", ">= 1.0.6", "< 3" # Library for interacting with rSolr.
|
38
|
-
s.add_development_dependency "rspec-rails", "
|
38
|
+
s.add_development_dependency "rspec-rails", "~> 7.0"
|
39
39
|
s.add_development_dependency "rspec-collection_matchers", ">= 1.0"
|
40
40
|
s.add_development_dependency 'axe-core-rspec'
|
41
41
|
s.add_development_dependency "capybara", '~> 3'
|
data/config/importmap.rb
CHANGED
@@ -102,7 +102,7 @@ ar:
|
|
102
102
|
close: إخفاء الأوجه
|
103
103
|
open: عرض الأوجه
|
104
104
|
missing: "[غير موجود]"
|
105
|
-
more_html: المزيد <span class="
|
105
|
+
more_html: المزيد <span class="visually-hidden">%{field_name}</span> »
|
106
106
|
pivot:
|
107
107
|
hide: إغلاق
|
108
108
|
show: فتح
|
@@ -155,7 +155,7 @@ ar:
|
|
155
155
|
aria_label: تصفح النتائج
|
156
156
|
button_label: "%{count} لكل صفحة"
|
157
157
|
button_label_html: '%{count}<span class="d-none d-sm-inline"> لكل صفحة</span>'
|
158
|
-
label: '%{count}<span class="
|
158
|
+
label: '%{count}<span class="visually-hidden"> لكل صفحة</span>'
|
159
159
|
submit: تحديث
|
160
160
|
title: عدد النتائج المعروضة في الصفحة
|
161
161
|
rss_feed: خلاصات RSS للنتائج
|
@@ -1,40 +1,40 @@
|
|
1
1
|
ca:
|
2
2
|
views:
|
3
3
|
pagination:
|
4
|
-
first:
|
5
|
-
last:
|
6
|
-
previous:
|
7
|
-
next:
|
8
|
-
truncate:
|
4
|
+
first: "« Primera"
|
5
|
+
last: "Darrera »"
|
6
|
+
previous: "« Anterior"
|
7
|
+
next: "Següent »"
|
8
|
+
truncate: "…"
|
9
9
|
aria:
|
10
|
-
container_label:
|
11
|
-
current_page:
|
12
|
-
go_to_page:
|
13
|
-
go_to_previous_page:
|
14
|
-
go_to_next_page:
|
15
|
-
go_to_first_page:
|
16
|
-
go_to_last_page:
|
10
|
+
container_label: "enllaços de paginació"
|
11
|
+
current_page: "Pàgina actual, pàgina %{page}"
|
12
|
+
go_to_page: "Anar a la pàgina %{page}"
|
13
|
+
go_to_previous_page: "Anar a la pàgina anterior"
|
14
|
+
go_to_next_page: "Anar a la pàgina següent"
|
15
|
+
go_to_first_page: "Anar a la primera pàgina"
|
16
|
+
go_to_last_page: "Anar a la darrera pàgina"
|
17
17
|
|
18
18
|
pagination_compact:
|
19
|
-
previous:
|
20
|
-
next:
|
19
|
+
previous: "« Anterior"
|
20
|
+
next: "Següent »"
|
21
21
|
|
22
22
|
blacklight:
|
23
|
-
application_name:
|
23
|
+
application_name: "Blacklight"
|
24
24
|
skip_links:
|
25
|
-
label:
|
26
|
-
main_content:
|
27
|
-
search_field:
|
28
|
-
first_result:
|
25
|
+
label: "Saltar els enllaços"
|
26
|
+
main_content: "Anar al contingut principal"
|
27
|
+
search_field: "Anar a la cerca"
|
28
|
+
first_result: "Anar al primer resultat"
|
29
29
|
header_links:
|
30
|
-
login:
|
31
|
-
logout:
|
30
|
+
login: "Identificació"
|
31
|
+
logout: "Sortir"
|
32
32
|
bookmarks: "Adreces d'interès"
|
33
|
-
search_history:
|
33
|
+
search_history: "Històric"
|
34
34
|
|
35
|
-
welcome:
|
36
|
-
and:
|
37
|
-
or:
|
35
|
+
welcome: "Benvinguts!"
|
36
|
+
and: "i"
|
37
|
+
or: "o"
|
38
38
|
|
39
39
|
modal:
|
40
40
|
close: "Tancar"
|
@@ -44,63 +44,63 @@ ca:
|
|
44
44
|
page_title: "Adreces d'interès - %{application_name}"
|
45
45
|
no_bookmarks: "No teniu adreces d'interès"
|
46
46
|
add:
|
47
|
-
button:
|
47
|
+
button: "Desar"
|
48
48
|
success:
|
49
|
-
one:
|
50
|
-
other:
|
51
|
-
failure:
|
49
|
+
one: "Adreça desada."
|
50
|
+
other: "Adreçes desades."
|
51
|
+
failure: "Hi ha hagut un problema desant les adreces."
|
52
52
|
remove:
|
53
53
|
button: "Eliminar-la."
|
54
|
-
success:
|
54
|
+
success: "Adreça eliminada."
|
55
55
|
failure: "Hi ha hagut un problema eliminant l'adreça"
|
56
|
-
action_confirm:
|
56
|
+
action_confirm: "Eliminar aquesta adreça?"
|
57
57
|
clear:
|
58
|
-
action_title:
|
59
|
-
action_confirm:
|
60
|
-
success:
|
58
|
+
action_title: "Esborrar les adreces"
|
59
|
+
action_confirm: "Esborrar les vostres adreces?"
|
60
|
+
success: "Adreces esborrades."
|
61
61
|
failure: "Hi ha hagut un problema esborrant les adreces."
|
62
62
|
need_login: "Us heu d'identificar per gestionar i veure les vostres adreces d'interès."
|
63
63
|
list_title: "Les vostres adreces d'interès."
|
64
|
-
delete:
|
64
|
+
delete: "Suprimir"
|
65
65
|
|
66
66
|
search_history:
|
67
67
|
clear:
|
68
68
|
action_title: "Esborrar l'històric de cerques"
|
69
|
-
action_confirm:
|
70
|
-
success:
|
69
|
+
action_confirm: "Voleu esborrar el vostre històric de cerques?"
|
70
|
+
success: "Històric de cerques esborrat."
|
71
71
|
failure: "Hi ha hagut un problema esborrant l'històric de cerques."
|
72
|
-
title:
|
73
|
-
page_title:
|
74
|
-
no_history:
|
75
|
-
recent:
|
76
|
-
forget:
|
77
|
-
save:
|
72
|
+
title: "Històric de cerques"
|
73
|
+
page_title: "Històric de cerques - %{application_name}"
|
74
|
+
no_history: "No teniu històric de cerques"
|
75
|
+
recent: "Les vostres cerques recents"
|
76
|
+
forget: "oblida-ho"
|
77
|
+
save: "desa-ho"
|
78
78
|
|
79
79
|
tools:
|
80
|
-
title:
|
81
|
-
citation:
|
82
|
-
email:
|
83
|
-
sms:
|
84
|
-
clear:
|
80
|
+
title: "Eines"
|
81
|
+
citation: "Citació"
|
82
|
+
email: "Correu"
|
83
|
+
sms: "Enviar-ho per SMS"
|
84
|
+
clear: "Esborrar"
|
85
85
|
|
86
86
|
citation:
|
87
|
-
mla:
|
88
|
-
apa:
|
89
|
-
chicago:
|
87
|
+
mla: "MLA"
|
88
|
+
apa: "APA"
|
89
|
+
chicago: "Chicago"
|
90
90
|
|
91
91
|
email:
|
92
92
|
form:
|
93
|
-
title:
|
94
|
-
to:
|
95
|
-
message:
|
96
|
-
submit:
|
93
|
+
title: "Enviar-ho per correu"
|
94
|
+
to: "Email:"
|
95
|
+
message: "Missage:"
|
96
|
+
submit: "Enviar-ho"
|
97
97
|
text:
|
98
|
-
default_title:
|
98
|
+
default_title: "N/A"
|
99
99
|
subject:
|
100
|
-
one:
|
101
|
-
other:
|
102
|
-
url:
|
103
|
-
message:
|
100
|
+
one: "Registre: %{title}"
|
101
|
+
other: "Registres"
|
102
|
+
url: "URL: %{url}"
|
103
|
+
message: "Missage: %{message}"
|
104
104
|
|
105
105
|
success: "Correu enviat"
|
106
106
|
|
@@ -110,123 +110,123 @@ ca:
|
|
110
110
|
blank: "Heu d'entrar un destinatari per poder enviar aquest missatge"
|
111
111
|
sms:
|
112
112
|
form:
|
113
|
-
title:
|
114
|
-
to:
|
115
|
-
carrier:
|
116
|
-
carrier_prompt:
|
117
|
-
submit:
|
113
|
+
title: "Enviar-ho per SMS"
|
114
|
+
to: "Número de mòbil:"
|
115
|
+
carrier: "Operador"
|
116
|
+
carrier_prompt: "Heu de seleccionar un operador"
|
117
|
+
submit: "Enviar"
|
118
118
|
text:
|
119
|
-
url:
|
119
|
+
url: "URL: %{url}"
|
120
120
|
success: "SMS enviat"
|
121
121
|
errors:
|
122
122
|
to:
|
123
123
|
invalid: "Heu d'entrar un número de mòbil correcte, de 10 xifres"
|
124
124
|
blank: "Heu d'entrar un número de mòbil per poder enviar aquest missatge"
|
125
125
|
carrier:
|
126
|
-
blank:
|
127
|
-
invalid:
|
126
|
+
blank: "Heu de seleccionar un operador"
|
127
|
+
invalid: "Heu de seleccionar-ne un de correcte"
|
128
128
|
|
129
|
-
back_to_search:
|
129
|
+
back_to_search: "Tornar als resultats"
|
130
130
|
back_to_bookmarks: "Tornar a les adreces d'interès"
|
131
131
|
|
132
132
|
search:
|
133
133
|
page_title:
|
134
|
-
title:
|
135
|
-
constraint:
|
136
|
-
many_constraint_values:
|
137
|
-
header:
|
138
|
-
search_constraints_header:
|
139
|
-
search_results:
|
134
|
+
title: "%{constraints} - %{application_name} Resultats de la cerca"
|
135
|
+
constraint: "%{label}: %{value}"
|
136
|
+
many_constraint_values: "%{values} seleccionat"
|
137
|
+
header: "Cerca"
|
138
|
+
search_constraints_header: "Filtres de la cerca"
|
139
|
+
search_results: "Resultats de la cerca"
|
140
140
|
errors:
|
141
141
|
invalid_solr_id: "El registre que heu sol·licitat no existeix."
|
142
142
|
per_page:
|
143
|
-
label: '%{count}<span class="
|
144
|
-
button_label:
|
143
|
+
label: '%{count}<span class="visually-hidden"> per pàgina</span>'
|
144
|
+
button_label: "%{count} per pàgina" # TODO: Remove during major release
|
145
145
|
button_label_html: '%{count}<span class="d-none d-sm-inline"> per pàgina</span>'
|
146
|
-
title:
|
147
|
-
submit:
|
148
|
-
aria_label:
|
146
|
+
title: "Nombre de resultats a mostrar per pàgina"
|
147
|
+
submit: "Actualitzar"
|
148
|
+
aria_label: "Navegació pels resultats"
|
149
149
|
sort:
|
150
|
-
label:
|
150
|
+
label: "Ordenar per %{field}" # TODO: Remove during major release
|
151
151
|
label_html: 'Ordenar<span class="d-none d-sm-inline"> per %{field}</span>'
|
152
|
-
submit:
|
152
|
+
submit: "ordenar el resultat"
|
153
153
|
form:
|
154
154
|
search_field:
|
155
|
-
label:
|
156
|
-
title:
|
157
|
-
post_label:
|
155
|
+
label: "Cercar per"
|
156
|
+
title: "Opcions de cerca"
|
157
|
+
post_label: "per"
|
158
158
|
search:
|
159
|
-
label:
|
160
|
-
placeholder:
|
161
|
-
submit:
|
159
|
+
label: "cercar per"
|
160
|
+
placeholder: "Cercar..."
|
161
|
+
submit: "Cerca"
|
162
162
|
pagination:
|
163
|
-
title:
|
163
|
+
title: "Navegació pels resultats"
|
164
164
|
pagination_info:
|
165
165
|
no_items_found: "No s'ha trobat cap %{entry_name}"
|
166
166
|
single_item_found: "S'ha trobat <strong>1</strong> %{entry_name}"
|
167
167
|
pages:
|
168
|
-
one:
|
169
|
-
other:
|
168
|
+
one: "<strong>%{start_num}</strong> - <strong>%{end_num}</strong> de <strong>%{total_num}</strong>"
|
169
|
+
other: "<strong>%{start_num}</strong> - <strong>%{end_num}</strong> de <strong>%{total_num}</strong>"
|
170
170
|
entry_pagination_info:
|
171
|
-
one:
|
172
|
-
other:
|
171
|
+
one: "<strong>1 de 1</strong>"
|
172
|
+
other: "<strong>%{current}</strong> de <strong>%{total}</strong>"
|
173
173
|
documents:
|
174
174
|
aria:
|
175
|
-
search_results:
|
176
|
-
limit_search:
|
177
|
-
counter:
|
175
|
+
search_results: "resultats de la cerca"
|
176
|
+
limit_search: "limiteu la vostra cerca"
|
177
|
+
counter: "%{counter}. "
|
178
178
|
facets:
|
179
|
-
title:
|
180
|
-
clear:
|
179
|
+
title: "Limiteu la vostra cerca"
|
180
|
+
clear: "Eliminar el filtre"
|
181
181
|
sort:
|
182
|
-
count:
|
183
|
-
index:
|
184
|
-
count:
|
185
|
-
more_html: 'més <span class="
|
182
|
+
count: "Numèricament"
|
183
|
+
index: "Alfabèticament"
|
184
|
+
count: "%{number}"
|
185
|
+
more_html: 'més <span class="visually-hidden">%{field_name}</span> »'
|
186
186
|
selected:
|
187
|
-
remove:
|
187
|
+
remove: "[eliminar]"
|
188
188
|
missing: "[Desaparegut]"
|
189
189
|
all: Tots
|
190
190
|
pivot:
|
191
191
|
show: Mostrar
|
192
192
|
hide: Amagar
|
193
193
|
group:
|
194
|
-
more:
|
194
|
+
more: "més »"
|
195
195
|
filters:
|
196
|
-
title:
|
197
|
-
label:
|
196
|
+
title: "Heu cercat per:"
|
197
|
+
label: "%{label}:"
|
198
198
|
remove:
|
199
|
-
value:
|
200
|
-
label_value:
|
199
|
+
value: "Eliminar el filtre %{value}"
|
200
|
+
label_value: "Eliminar el filtre %{label}: %{value}"
|
201
201
|
start_over: "Tornar a l'inici"
|
202
202
|
index:
|
203
|
-
label:
|
203
|
+
label: "%{label}:"
|
204
204
|
show:
|
205
|
-
title:
|
206
|
-
label:
|
207
|
-
rss_feed:
|
208
|
-
atom_feed:
|
205
|
+
title: "%{document_title} - %{application_name}"
|
206
|
+
label: "%{label}:"
|
207
|
+
rss_feed: "RSS pels resultats"
|
208
|
+
atom_feed: "Atom pels resultats"
|
209
209
|
bookmarks:
|
210
210
|
present: "A les adreces d'interès"
|
211
|
-
absent:
|
212
|
-
inprogress:
|
211
|
+
absent: "Desar"
|
212
|
+
inprogress: "Desant..."
|
213
213
|
zero_results:
|
214
|
-
title:
|
215
|
-
modify_search:
|
214
|
+
title: "La vostra cerca no ha trobat cap resultat"
|
215
|
+
modify_search: "Proveu de modificar la vostra cerca"
|
216
216
|
use_fewer_keywords: "Comenceu amb menys paraules, i després acoteu-la amb els enllaços de l'esquerra"
|
217
|
-
search_fields:
|
218
|
-
search_everything:
|
219
|
-
view_title:
|
217
|
+
search_fields: "heu cercat per %{search_fields}"
|
218
|
+
search_everything: "proveu cercant-ho arreu"
|
219
|
+
view_title: "Visualitzar els resultats com a: "
|
220
220
|
view:
|
221
221
|
list: "Llista"
|
222
222
|
|
223
223
|
entry_name:
|
224
|
-
default:
|
224
|
+
default: "registre"
|
225
225
|
grouped:
|
226
|
-
default:
|
226
|
+
default: "resultat agrupat"
|
227
227
|
|
228
|
-
did_you_mean:
|
228
|
+
did_you_mean: "Potser volieu dir: %{options}?"
|
229
229
|
|
230
230
|
main:
|
231
231
|
aria:
|
232
|
-
main_container:
|
232
|
+
main_container: "Contingut principal"
|
@@ -93,7 +93,7 @@ de:
|
|
93
93
|
open: Facetten zeigen
|
94
94
|
missing:
|
95
95
|
- fehlt
|
96
|
-
more_html: mehr <span class="
|
96
|
+
more_html: mehr <span class="visually-hidden">%{field_name}</span> »
|
97
97
|
pivot:
|
98
98
|
hide: Schließen
|
99
99
|
show: Öffnen
|
@@ -142,7 +142,7 @@ de:
|
|
142
142
|
aria_label: Ergebnisnavigation
|
143
143
|
button_label: "%{count} pro Seite"
|
144
144
|
button_label_html: '%{count}<span class="d-none d-sm-inline"> pro Seite</span>'
|
145
|
-
label: '%{count}<span class="
|
145
|
+
label: '%{count}<span class="visually-hidden"> pro Seite</span>'
|
146
146
|
submit: Aktualisieren
|
147
147
|
title: Anzahl der Ergebnisse, die pro Seite angezeigt werden
|
148
148
|
rss_feed: RSS für Ergebnisse
|
@@ -2,7 +2,7 @@
|
|
2
2
|
en:
|
3
3
|
blacklight:
|
4
4
|
advanced_search:
|
5
|
-
any_of:
|
5
|
+
any_of: "Any of:"
|
6
6
|
form:
|
7
7
|
limit_criteria_heading_html: "<strong>AND</strong> have these attributes"
|
8
8
|
query_criteria_heading_html: Match %{select_menu} of the fields below
|
@@ -49,25 +49,25 @@ en:
|
|
49
49
|
apa: APA
|
50
50
|
chicago: Chicago
|
51
51
|
mla: MLA
|
52
|
-
did_you_mean:
|
52
|
+
did_you_mean: "Did you mean to type: %{options}?"
|
53
53
|
email:
|
54
54
|
errors:
|
55
55
|
to:
|
56
56
|
blank: You must enter a recipient in order to send this message
|
57
57
|
invalid: You must enter a valid email address
|
58
58
|
form:
|
59
|
-
message:
|
59
|
+
message: "Message:"
|
60
60
|
submit: Send
|
61
61
|
title: Email This
|
62
|
-
to:
|
62
|
+
to: "Email:"
|
63
63
|
success: Email Sent
|
64
64
|
text:
|
65
65
|
default_title: N/A
|
66
|
-
message:
|
66
|
+
message: "Message: %{message}"
|
67
67
|
subject:
|
68
|
-
one:
|
68
|
+
one: "Item Record: %{title}"
|
69
69
|
other: Item records
|
70
|
-
url:
|
70
|
+
url: "URL: %{url}"
|
71
71
|
entry_name:
|
72
72
|
default:
|
73
73
|
one: entry
|
@@ -111,7 +111,7 @@ en:
|
|
111
111
|
close: Hide facets
|
112
112
|
open: Show facets
|
113
113
|
missing: "[Missing]"
|
114
|
-
more_html: more <span class="
|
114
|
+
more_html: more <span class="visually-hidden">%{field_name}</span> »
|
115
115
|
pivot:
|
116
116
|
hide: Hide
|
117
117
|
show: Show
|
@@ -127,9 +127,9 @@ en:
|
|
127
127
|
filters:
|
128
128
|
label: "%{label}:"
|
129
129
|
remove:
|
130
|
-
label_value:
|
130
|
+
label_value: "Remove constraint %{label}: %{value}"
|
131
131
|
value: Remove constraint %{value}
|
132
|
-
title:
|
132
|
+
title: "You searched for:"
|
133
133
|
form:
|
134
134
|
search:
|
135
135
|
label: search for
|
@@ -160,7 +160,7 @@ en:
|
|
160
160
|
aria_label: Results navigation
|
161
161
|
button_label: "%{count} per page"
|
162
162
|
button_label_html: '%{count}<span class="d-none d-sm-inline"> per page</span>'
|
163
|
-
label: '%{count}<span class="
|
163
|
+
label: '%{count}<span class="visually-hidden"> per page</span>'
|
164
164
|
submit: Update
|
165
165
|
title: Number of results to display per page
|
166
166
|
rss_feed: RSS for results
|
@@ -176,7 +176,7 @@ en:
|
|
176
176
|
start_over: Start Over
|
177
177
|
view:
|
178
178
|
list: List
|
179
|
-
view_title:
|
179
|
+
view_title: "View results as: "
|
180
180
|
zero_results:
|
181
181
|
modify_search: Try modifying your search
|
182
182
|
search_everything: try searching everything
|
@@ -213,10 +213,10 @@ en:
|
|
213
213
|
carrier_prompt: Please select your carrier
|
214
214
|
submit: Send
|
215
215
|
title: SMS This
|
216
|
-
to:
|
216
|
+
to: "Phone Number:"
|
217
217
|
success: SMS Sent
|
218
218
|
text:
|
219
|
-
url:
|
219
|
+
url: "Link: %{url}"
|
220
220
|
tools:
|
221
221
|
citation: Cite
|
222
222
|
clear: Clear
|