Koha/koha-tmpl/intranet-tmpl/prog/en/includes/renew_strings.inc
Jonathan Druart e08629b68b Bug 29602: Surround strings with span tag
To be nicer with translators.

Update the PO files for whichever languages will show how this is
useful.

Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Rebased-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-04-19 21:25:51 -10:00

32 lines
1.3 KiB
HTML

[% SWITCH error %]
[% CASE 'no_item' %]
<span>No matching item could be found</span>
[% CASE 'no_checkout' %]
<span>Item is not checked out</span>
[% CASE 'too_soon' %]
<span>Cannot be renewed yet</span>
[% CASE 'too_many' %]
<span>Renewed the maximum number of times</span>
[% CASE 'auto_too_soon' %]
<span>Scheduled for automatic renewal and cannot be renewed yet</span>
[% CASE 'auto_too_late' %]
<span>Scheduled for automatic renewal and cannot be renewed any more</span>
[% CASE 'auto_account_expired' %]
<span>Scheduled for automatic renewal and cannot be renewed because the patron's account has expired</span>
[% CASE 'auto_renew' %]
<span>Scheduled for automatic renewal</span>
[% CASE 'auto_too_much_oweing' %]
<span>Scheduled for automatic renewal and cannot be renewed because the patron has too many outstanding charges</span>
[% CASE 'on_reserve' %]
<span>On hold for another patron</span>
[% CASE 'patron_restricted' %]
<span>Patron is currently restricted</span>
[% CASE 'item_denied_renewal' %]
<span>Item is not allowed renewal</span>
[% CASE 'onsite_checkout' %]
<span>Item is an onsite checkout</span>
[% CASE 'has_fine' %]
<span>Item has an outstanding fine</span>
[% CASE %]
<span>Unknown error</span>
[% END %]