|
Lines 26-32
$(document).ready(function() {
Link Here
|
| 26 |
} else if (code == 'ISSUED_TO_ANOTHER') { |
26 |
} else if (code == 'ISSUED_TO_ANOTHER') { |
| 27 |
result += _("This item appears to be checked out to another patron, please return it to the desk"); |
27 |
result += _("This item appears to be checked out to another patron, please return it to the desk"); |
| 28 |
} else if (code == 'RESERVED' || code == 'RESERVED_WAITING') { |
28 |
} else if (code == 'RESERVED' || code == 'RESERVED_WAITING') { |
| 29 |
result += _("This item appears to be reserved for another patron, please return it to the desk"); |
29 |
result += _("This item appears to be on hold for another patron, please return it to the desk"); |
| 30 |
} else if (code == 'TOO_MANY') { |
30 |
} else if (code == 'TOO_MANY') { |
| 31 |
result += _("You have reached the maximum number of checkouts allowed on your account"); |
31 |
result += _("You have reached the maximum number of checkouts allowed on your account"); |
| 32 |
} else if (code == 'AGE_RESTRICTION') { |
32 |
} else if (code == 'AGE_RESTRICTION') { |
| 33 |
- |
|
|