View | Details | Raw Unified | Return to bug 22616
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/blocking_errors.inc (-6 / +6 lines)
Lines 1-16 Link Here
1
[% IF blocking_error %]
1
[% IF blocking_error %]
2
    [% SWITCH blocking_error %]
2
    [% SWITCH blocking_error %]
3
    [% CASE 'unknown_patron' %]
3
    [% CASE 'unknown_patron' %]
4
        <div class="dialog message">This patron does not exist. <a href="/cgi-bin/koha/members/members-home.pl">Find another patron?</a></div>
4
        <div class="dialog message">Patron not found. <a href="/cgi-bin/koha/members/members-home.pl">Return to search</a></div>
5
    [% CASE 'cannot_see_patron_infos' %]You are not allowed to see the information of this patron.
5
    [% CASE 'cannot_see_patron_infos' %]This account cannot view requested patron information.
6
    [% CASE 'unknown_biblio' %]
6
    [% CASE 'unknown_biblio' %]
7
        <div class="dialog message">This bibliographic record does not exist.</div>
7
        <div class="dialog message">Bibliographic record not found.</div>
8
    [% CASE 'unknown_item' %]
8
    [% CASE 'unknown_item' %]
9
        <div class="dialog message">This item does not exist.</div>
9
        <div class="dialog message">Item not found.</div>
10
    [% CASE 'unknown_subscription' %]
10
    [% CASE 'unknown_subscription' %]
11
        <div class="dialog message">This subscription does not exist.</div>
11
        <div class="dialog message">Subscription not found.</div>
12
    [% CASE 'unknown_basket' %]
12
    [% CASE 'unknown_basket' %]
13
        <div class="dialog message">This basket does not exist.</div>
13
        <div class="dialog message">Basket not found.</div>
14
    [% CASE 'wrong_csrf_token' %]
14
    [% CASE 'wrong_csrf_token' %]
15
        <div class="dialog message">The form submission failed (Wrong CSRF token). Try to come back, refresh the page, then try again.</div>
15
        <div class="dialog message">The form submission failed (Wrong CSRF token). Try to come back, refresh the page, then try again.</div>
16
    [% CASE %][% blocking_error | html %]
16
    [% CASE %][% blocking_error | html %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +1 lines)
Lines 939-945 No patron matched <span class="ex">[% message | html %]</span> Link Here
939
[% END %]
939
[% END %]
940
940
941
[% ELSIF borrowernumber %]
941
[% ELSIF borrowernumber %]
942
    <div class="dialog message">This patron does not exist. <a href="/cgi-bin/koha/members/members-home.pl">Find another patron?</a></div>
942
    <div class="dialog message">Patron not found. <a href="/cgi-bin/koha/members/members-home.pl">Return to search</a></div>
943
[% END %]
943
[% END %]
944
</div></div>
944
</div></div>
945
[% END %]
945
[% END %]
946
- 

Return to bug 22616