Lines 1581-1586
Link Here
|
1581 |
switch (override_items[itemnumber].holdallowed) { |
1581 |
switch (override_items[itemnumber].holdallowed) { |
1582 |
case "not_allowed": msg = _("This item normally cannot be put on hold."); break; |
1582 |
case "not_allowed": msg = _("This item normally cannot be put on hold."); break; |
1583 |
case "from_home_library": msg = _("This item normally cannot be put on hold except for patrons from %s.").format(override_items[itemnumber].homebranch); break; |
1583 |
case "from_home_library": msg = _("This item normally cannot be put on hold except for patrons from %s.").format(override_items[itemnumber].homebranch); break; |
|
|
1584 |
case "from_local_hold_group": msg = _("This item normally cannot be put on hold out its' local hold group."); break; |
1584 |
} |
1585 |
} |
1585 |
|
1586 |
|
1586 |
msg += "\n\n" + _("Place hold on this item?"); |
1587 |
msg += "\n\n" + _("Place hold on this item?"); |
1587 |
- |
|
|