Skip to content

Commit

Permalink
Allow translation of fulfillment method display names
Browse files Browse the repository at this point in the history
  • Loading branch information
maccabeelevine committed Oct 1, 2024
1 parent 2242720 commit 74375c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions languages/en.ini
Original file line number Diff line number Diff line change
Expand Up @@ -1221,6 +1221,8 @@ renew_success = "Renewal Successful"
renew_success_summary = "Successfully renewed {count, plural, =1 {1 item} other {# items}}."
Renewed = "Renewed"
Request full text = "Request full text"
request_group_fulfillment_method_hold_shelf = "Pick up at the library"
request_group_fulfillment_method_delivery = "Delivery to your location"
request_in_transit = "In Transit to Pickup Location"
request_place_text = "Place a Request"
request_submit_text = "Submit Request"
Expand Down
4 changes: 2 additions & 2 deletions module/VuFind/src/VuFind/ILS/Driver/Folio.php
Original file line number Diff line number Diff line change
Expand Up @@ -1526,11 +1526,11 @@ public function getRequestGroups(
return [
[
'id' => 'Hold Shelf',
'name' => 'Hold Shelf',
'name' => 'fulfillment_method_hold_shelf',
],
[
'id' => 'Delivery',
'name' => 'Delivery',
'name' => 'fulfillment_method_delivery',
],
];
}
Expand Down

0 comments on commit 74375c6

Please sign in to comment.