@@ -, +, @@ --- api/v1/swagger/definitions/hold.yaml | 2 +- installer/data/mysql/atomicupdate/bug_24860.perl | 2 +- installer/data/mysql/mandatory/sysprefs.sql | 2 +- koha-tmpl/intranet-tmpl/prog/js/holds.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) --- a/api/v1/swagger/definitions/hold.yaml +++ a/api/v1/swagger/definitions/hold.yaml @@ -20,7 +20,7 @@ properties: type: - string - "null" - description: Internal item_group identifier + description: Internal item group identifier pickup_library_id: type: - string --- a/installer/data/mysql/atomicupdate/bug_24860.perl +++ a/installer/data/mysql/atomicupdate/bug_24860.perl @@ -18,7 +18,7 @@ if ( CheckVersion( $DBversion ) ) { $dbh->do(q{ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo') + ('EnableItemGroupHolds','0','','Enable item group holds feature','YesNo') }); SetVersion( $DBversion ); --- a/installer/data/mysql/mandatory/sysprefs.sql +++ a/installer/data/mysql/mandatory/sysprefs.sql @@ -217,7 +217,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'), ('EnableSearchHistory','0','','Enable or disable search history','YesNo'), ('EnableItemGroups','0','','Enable the item groups feature','YesNo'), -('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo'), +('EnableItemGroupHolds','0','','Enable item groups holds feature','YesNo'), ('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'), ('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'), ('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'), --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -279,7 +279,7 @@ $(document).ready(function() { } if ( oObj.item_group_id ) { - data += _("Next available item group %s item").format( oObj.item_group_description ); + data += __("Next available item group %s item").format( oObj.item_group_description ); } if ( oObj.barcode ) { --