|
Lines 25-31
$(document).ready(function() {
Link Here
|
| 25 |
result += _("Your account is currently in debt by '%s'").format(data); |
25 |
result += _("Your account is currently in debt by '%s'").format(data); |
| 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 == 'RESERVE_WAITING') { |
| 29 |
result += _("This item appears to be on hold 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 |
- |
|
|