@@ -, +, @@ - no-renew-hold - Not renewable (on hold) - no-renew-too-many - Not renewable (too many renwals) - no-renew-unseen - Item must be renewed at the library - no-renew-overdue - Not allowed (overdue) - no-renew-too-late - No longer renewable - auto-renew-fines - Automatic renewal failed, you have unpaid fines - auto-renew-expired - Automatic renewal failed, your account is expired - no-renewal-before - No renewal before [date] - automatic-renewal - Automatic renewal - On hold - Too many renewals - Overdues (if OverduesBlockRenewing is on) --- .../bootstrap/en/modules/opac-user.tt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -378,17 +378,17 @@ [% END %] ) [% ELSIF ( ISSUE.on_reserve ) %] - Not renewable (on hold) + Not renewable (on hold) [% ELSIF ( ISSUE.too_many ) %] - Not renewable + Not renewable [% ELSIF ( ISSUE.too_unseen ) %] - Item must be renewed at the library. [% ISSUE.renewsleft | html %] renewals remaining + Item must be renewed at the library. [% ISSUE.renewsleft | html %] renewals remaining [% ELSIF ( ISSUE.norenew_overdue ) %] - Not allowed (overdue) + Not allowed (overdue) [% ELSIF ( ISSUE.auto_too_late ) %] - No longer renewable + No longer renewable [% ELSIF ISSUE.auto_too_much_oweing %] - Automatic renewal failed, you have unpaid fines. + Automatic renewal failed, you have unpaid fines. ( [% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining [% IF Koha.Preference('UnseenRenewals') && ISSUE.unseenallowed %] @@ -396,7 +396,7 @@ [% END %] ) [% ELSIF ISSUE.auto_account_expired %] - Automatic renewal failed, your account is expired. + Automatic renewal failed, your account is expired. ( [% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining [% IF Koha.Preference('UnseenRenewals') && ISSUE.unseenallowed %] @@ -404,7 +404,7 @@ [% END %] ) [% ELSIF ( ISSUE.too_soon ) %] - No renewal before [% ISSUE.soonestrenewdate | html %] + No renewal before [% ISSUE.soonestrenewdate | html %] ( [% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining [% IF Koha.Preference('UnseenRenewals') && ISSUE.unseenallowed %] @@ -412,7 +412,7 @@ [% END %] ) [% ELSIF ( ISSUE.auto_renew || ISSUE.auto_too_soon ) %] - Automatic renewal + Automatic renewal ( [% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining [% IF Koha.Preference('UnseenRenewals') && ISSUE.unseenallowed %] --