|
Lines 14440-14446
if( CheckVersion( $DBversion ) ) {
Link Here
|
| 14440 |
[% IF checkout.auto_renew_error %] |
14440 |
[% IF checkout.auto_renew_error %] |
| 14441 |
The following item, [% biblio.title %], has not been renewed because: |
14441 |
The following item, [% biblio.title %], has not been renewed because: |
| 14442 |
[% IF checkout.auto_renew_error == 'too_many' %] |
14442 |
[% IF checkout.auto_renew_error == 'too_many' %] |
| 14443 |
You have reached the maximum number of checkouts possible. |
14443 |
You have reached the maximum number of renewals possible. |
| 14444 |
[% ELSIF checkout.auto_renew_error == 'on_reserve' %] |
14444 |
[% ELSIF checkout.auto_renew_error == 'on_reserve' %] |
| 14445 |
This item is on hold for another patron. |
14445 |
This item is on hold for another patron. |
| 14446 |
[% ELSIF checkout.auto_renew_error == 'restriction' %] |
14446 |
[% ELSIF checkout.auto_renew_error == 'restriction' %] |
|
Lines 22108-22114
if( CheckVersion( $DBversion ) ) {
Link Here
|
| 22108 |
UPDATE letter SET |
22108 |
UPDATE letter SET |
| 22109 |
name = REPLACE(name, "notification on auto renewing", "Notification of automatic renewal"), |
22109 |
name = REPLACE(name, "notification on auto renewing", "Notification of automatic renewal"), |
| 22110 |
title = REPLACE(title, "Auto renewals", "Automatic renewal notice"), |
22110 |
title = REPLACE(title, "Auto renewals", "Automatic renewal notice"), |
| 22111 |
content = REPLACE(content, "You have reach the maximum of checkouts possible.", "You have reached the maximum number of checkouts possible.") |
22111 |
content = REPLACE(content, "You have reach the maximum of checkouts possible.", "You have reached the maximum number of renewals possible.") |
| 22112 |
WHERE code = 'AUTO_RENEWALS'; |
22112 |
WHERE code = 'AUTO_RENEWALS'; |
| 22113 |
}); |
22113 |
}); |
| 22114 |
$dbh->do(q{ |
22114 |
$dbh->do(q{ |
|
Lines 23698-23704
if( CheckVersion( $DBversion ) ) {
Link Here
|
| 23698 |
[% IF !checkout.auto_renew_error %] |
23698 |
[% IF !checkout.auto_renew_error %] |
| 23699 |
was renewed until [% checkout.date_due | $KohaDates as_due_date => 1%] |
23699 |
was renewed until [% checkout.date_due | $KohaDates as_due_date => 1%] |
| 23700 |
[% ELSIF checkout.auto_renew_error == 'too_many' %] |
23700 |
[% ELSIF checkout.auto_renew_error == 'too_many' %] |
| 23701 |
You have reached the maximum number of checkouts possible. |
23701 |
You have reached the maximum number of renewals possible. |
| 23702 |
[% ELSIF checkout.auto_renew_error == 'on_reserve' %] |
23702 |
[% ELSIF checkout.auto_renew_error == 'on_reserve' %] |
| 23703 |
This item is on hold for another patron. |
23703 |
This item is on hold for another patron. |
| 23704 |
[% ELSIF checkout.auto_renew_error == 'restriction' %] |
23704 |
[% ELSIF checkout.auto_renew_error == 'restriction' %] |
| 23705 |
- |
|
|