"OPEN_CIRCULATION_EXISTS" : "Item ${0} is already checked out to another user",
"GENERIC_CIRC_FAILURE" : "Unable to process some items. Please see staff.",
"BATCH_RENEW_SUCCESS" : "Successfully renewed ${0} items",
- "BATCH_RENEW_FAILURE" : "Failed to renew ${0} item(s). Please see staff.",
+ "BATCH_RENEW_FAILURE" : "Some items failed to renew. Please see staff.",
"LOGIN_FAILED" : "Login for ${0} failed",
"LOGIN_BARCODE_DOUBLE" : "Your PIN is needed.",
"UNKNOWN_ERROR" : "An unhandled exception occurred with error code ${0}",
var sound = 'checkout-success';
if (success_count < renew_count) {
- msg = dojo.string.substitute(
- localeStrings.BATCH_RENEW_FAILURE, [renew_count - success_count]);
+ msg = dojo.string.substitute(localeStrings.BATCH_RENEW_FAILURE);
sound = 'checkout-failure';
}