Skip to content

Commit

Permalink
LIBFCREPO-1444. Changed "Collection" to "Administrative Set" in GUI
Browse files Browse the repository at this point in the history
To better align with current terminology, relabelled "Collection" to
"Administrative Set" in the following places:

1) The "Limit your Search" facet display in the left sidebar on the
   search page - "app/controllers/catalog_controller.rb"

2) The "New Import Job" form - "config/locales/en.yml"

https://umd-dit.atlassian.net/browse/LIBFCREPO-1444
  • Loading branch information
dsteelma-umd committed Jun 13, 2024
1 parent 6dce1af commit eb83088
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/controllers/catalog_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ class CatalogController < ApplicationController # rubocop:disable Metrics/ClassL
# :index_range can be an array or range of prefixes that will be used to create the navigation
# (note: It is case sensitive when searching values)

config.add_facet_field 'collection_title_facet', label: 'Collection', limit: 10, collapse: false, sort: 'index'
# rubocop:disable Metrics/LineLength
config.add_facet_field 'collection_title_facet', label: 'Administrative Set', limit: 10, collapse: false, sort: 'index'
# rubocop:enable Metrics/LineLength
config.add_facet_field 'presentation_set_label', label: 'Presentation Set', limit: 10, collapse: false,
sort: 'index', if: :collection_facet_selected?
config.add_facet_field 'author_not_tokenized', label: 'Author', limit: 10
Expand Down
2 changes: 1 addition & 1 deletion config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ en:
true: 'Yes'
false: 'No'
cas_user: User
collection: Collection
collection: Administrative Set
id: Job ID
metadata_file: Metadata File
model: Content Model
Expand Down

0 comments on commit eb83088

Please sign in to comment.