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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +2 lines)
Lines 16-22 Link Here
16
[% SET destination = "circ" %]
16
[% SET destination = "circ" %]
17
<title>[% FILTER collapse %]
17
<title>[% FILTER collapse %]
18
    [% IF patron %]
18
    [% IF patron %]
19
        [% t("Checking out to") | html %] [% INCLUDE 'patron-title.inc' invert_name = 1 no_html = 1 %] &rsaquo;
19
        [% patron_in_title = INCLUDE 'patron-title.inc' invert_name = 1 no_html = 1 %]
20
        [% tx("Checking out to {patron}", { patron = patron_in_title }) | html %]  &rsaquo;
20
    [% END %]
21
    [% END %]
21
    [% t("Circulation") | html %] &rsaquo;
22
    [% t("Circulation") | html %] &rsaquo;
22
    [% t("Koha") | html %]
23
    [% t("Koha") | html %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-3 / +2 lines)
Lines 11-19 Link Here
11
[% SET destination = "circ" %]
11
[% SET destination = "circ" %]
12
<title>[% FILTER collapse %]
12
<title>[% FILTER collapse %]
13
    [% IF patron %]
13
    [% IF patron %]
14
        [% t("Batch check out to") | html %] [% INCLUDE 'patron-title.inc' invert_name = 1 no_html = 1 %] &rsaquo;
14
        [% patron_in_title = INCLUDE 'patron-title.inc' invert_name = 1 no_html = 1 %]
15
        [% tx("Batch check out to {patron}", { patron = patron_in_title }) | html %] &rsaquo;
15
    [% END %]
16
    [% END %]
16
17
    [% t("Circulation") | html %] &rsaquo;
17
    [% t("Circulation") | html %] &rsaquo;
18
    [% t("Koha") | html %]
18
    [% t("Koha") | html %]
19
[% END %]</title>
19
[% END %]</title>
Lines 31-37 Link Here
31
        [% WRAPPER breadcrumb_item %]
31
        [% WRAPPER breadcrumb_item %]
32
            <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
32
            <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
33
        [% END %]
33
        [% END %]
34
35
        [% IF patron %]
34
        [% IF patron %]
36
            [% WRAPPER breadcrumb_item %]
35
            [% WRAPPER breadcrumb_item %]
37
                <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrowernumber | uri %]">Check out to [% INCLUDE 'patron-title.inc' %]</a>
36
                <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrowernumber | uri %]">Check out to [% INCLUDE 'patron-title.inc' %]</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-1 / +2 lines)
Lines 13-19 Link Here
13
[% INCLUDE 'doc-head-open.inc' %]
13
[% INCLUDE 'doc-head-open.inc' %]
14
[% PROCESS 'modal-claims.inc' %]
14
[% PROCESS 'modal-claims.inc' %]
15
<title>[% FILTER collapse %]
15
<title>[% FILTER collapse %]
16
    [% t("Items overdue as of") | html %] [% todaysdate | $KohaDates %] &rsaquo;
16
    [% date_in_title = todaysdate | $KohaDates %]
17
    [% tx("Items overdue as of {date}", { date = date_in_title }) | html %] &rsaquo;
17
    [% t("Circulation") | html %] &rsaquo;
18
    [% t("Circulation") | html %] &rsaquo;
18
    [% t("Koha") | html %]
19
    [% t("Koha") | html %]
19
[% END %]</title>
20
[% END %]</title>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-2 / +2 lines)
Lines 20-26 Link Here
20
[% PROCESS "patron-search.inc" %]
20
[% PROCESS "patron-search.inc" %]
21
<title>[% FILTER collapse %]
21
<title>[% FILTER collapse %]
22
    [% UNLESS ( multi_hold ) %]
22
    [% UNLESS ( multi_hold ) %]
23
        [% t("Place a hold on") | html %] [% INCLUDE 'biblio-title-head.inc' %] &rsaquo;
23
        [% title_in_title = INCLUDE 'biblio-title-head.inc' %]
24
        [% tx("Place a hold on {title}", { title = title_in_title }) | html %] &rsaquo;
24
    [% ELSE %]
25
    [% ELSE %]
25
        [% t("Confirm holds") | html %] &rsaquo;
26
        [% t("Confirm holds") | html %] &rsaquo;
26
    [% END %]
27
    [% END %]
27
- 

Return to bug 33913