379fd6d838
Improve wording and grammar for automatic renewal error messages. Test plan: 1. Review the error message changes and make sure they make sense. The new message make sense to me. Signed-off-by: Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
[% SWITCH error %]
|
|
[% CASE 'no_item' %]
|
|
No matching item could be found
|
|
[% CASE 'no_checkout' %]
|
|
Item is not checked out
|
|
[% CASE 'too_soon' %]
|
|
Cannot be renewed yet
|
|
[% CASE 'too_many' %]
|
|
Renewed the maximum number of times
|
|
[% CASE 'auto_too_soon' %]
|
|
Scheduled for automatic renewal and cannot be renewed yet
|
|
[% CASE 'auto_too_late' %]
|
|
Scheduled for automatic renewal and cannot be renewed any more
|
|
[% CASE 'auto_account_expired' %]
|
|
Scheduled for automatic renewal and cannot be renewed because the patron's account has expired
|
|
[% CASE 'auto_renew' %]
|
|
Scheduled for automatic renewal
|
|
[% CASE 'auto_too_much_oweing' %]
|
|
Scheduled for automatic renewal and cannot be renewed because the patron has too many outstanding charges
|
|
[% CASE 'on_reserve' %]
|
|
On hold for another patron
|
|
[% CASE 'patron_restricted' %]
|
|
Patron is currently restricted
|
|
[% CASE 'item_denied_renewal' %]
|
|
Item is not allowed renewal
|
|
[% CASE 'onsite_checkout' %]
|
|
Item is an onsite checkout
|
|
[% CASE 'has_fine' %]
|
|
Item has an outstanding fine
|
|
[% CASE %]
|
|
Unknown error
|
|
[% END %]
|