Lines 684-691
$(document).ready(function () {
Link Here
|
684 |
return toggle_suspend(this, inputs); |
684 |
return toggle_suspend(this, inputs); |
685 |
}); |
685 |
}); |
686 |
|
686 |
|
687 |
var MSG_SUSPEND_SELECTED = _("Suspend selected (%s)"); |
687 |
var MSG_SUSPEND_SELECTED = __("Suspend selected (%s)"); |
688 |
var MSG_SUSPEND_SELECTED_HOLDS = _("selected holds"); |
688 |
var MSG_SUSPEND_SELECTED_HOLDS = __("selected holds"); |
689 |
$(".suspend_selected_holds").html( |
689 |
$(".suspend_selected_holds").html( |
690 |
MSG_SUSPEND_SELECTED.format( |
690 |
MSG_SUSPEND_SELECTED.format( |
691 |
$(".holds_table .select_hold:checked").length |
691 |
$(".holds_table .select_hold:checked").length |
Lines 714-721
$(document).ready(function () {
Link Here
|
714 |
return toggle_suspend(this, inputs); |
714 |
return toggle_suspend(this, inputs); |
715 |
}); |
715 |
}); |
716 |
|
716 |
|
717 |
var MSG_CANCEL_SELECTED = _("Cancel selected (%s)"); |
717 |
var MSG_CANCEL_SELECTED = __("Cancel selected (%s)"); |
718 |
var MSG_CANCEL_ALERT = _( |
718 |
var MSG_CANCEL_ALERT = __( |
719 |
"This action will cancel <span class='badge bg-danger'>%s</span> hold(s)." |
719 |
"This action will cancel <span class='badge bg-danger'>%s</span> hold(s)." |
720 |
); |
720 |
); |
721 |
|
721 |
|
722 |
- |
|
|