Lines 58-63
use Koha::SearchEngine;
Link Here
|
58 |
use Koha::SearchEngine::Search; |
58 |
use Koha::SearchEngine::Search; |
59 |
use Koha::Patron::Modifications; |
59 |
use Koha::Patron::Modifications; |
60 |
use Koha::Token; |
60 |
use Koha::Token; |
|
|
61 |
use Koha::I18N qw(__); |
61 |
|
62 |
|
62 |
use List::MoreUtils qw( uniq ); |
63 |
use List::MoreUtils qw( uniq ); |
63 |
|
64 |
|
Lines 571-578
if ( @$barcodes && $op eq 'cud-checkout' ) {
Link Here
|
571 |
my $branchcode = C4::Context->userenv->{branch}; |
572 |
my $branchcode = C4::Context->userenv->{branch}; |
572 |
|
573 |
|
573 |
if ($issueconfirmed) { |
574 |
if ($issueconfirmed) { |
574 |
$message = "Restriction overridden temporarily"; |
575 |
$message = __("Restriction overridden temporarily"); |
575 |
@message = ("Restriction overridden temporarily"); |
576 |
@message = ( __("Restriction overridden temporarily") ); |
576 |
|
577 |
|
577 |
my $infos = ( |
578 |
my $infos = ( |
578 |
{ |
579 |
{ |
579 |
- |
|
|