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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/addItems.tt (-3 / +10 lines)
Lines 1-8 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% PROCESS 'i18n.inc' %]
3
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
<title>Add or remove items &rsaquo; Collection [% colTitle | html %] &rsaquo; Rotating collections &rsaquo; Tools &rsaquo; Koha</title>
6
<title>[% FILTER collapse %]
7
    [% t("Manage items") | html %] &rsaquo;
8
    [% tx("Collection '{collection_title}'", { collection_title = colTitle }) | html %] &rsaquo;
9
    [% t("Rotating collections") | html %] &rsaquo;
10
    [% t("Tools") | html %] &rsaquo;
11
    [% t("Koha") | html %]
12
[% END %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
13
[% INCLUDE 'doc-head-close.inc' %]
7
</head>
14
</head>
8
15
Lines 20-26 Link Here
20
            <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating collections</a>
27
            <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating collections</a>
21
        [% END %]
28
        [% END %]
22
        [% WRAPPER breadcrumb_item %]
29
        [% WRAPPER breadcrumb_item %]
23
            <a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% colId | uri %]">Collection <em>[% colTitle | html %]</em></a>
30
            <a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% colId | uri %]">[% tx("Collection '{collection_title}'", { collection_title = colTitle }) | html %]</a>
24
        [% END %]
31
        [% END %]
25
        [% WRAPPER breadcrumb_item bc_active= 1 %]
32
        [% WRAPPER breadcrumb_item bc_active= 1 %]
26
            <span>Manage items</span>
33
            <span>Manage items</span>
Lines 39-45 Link Here
39
                </div>
46
                </div>
40
              [% ELSE %]
47
              [% ELSE %]
41
              [% INCLUDE 'rotating-collections-toolbar.inc' %]
48
              [% INCLUDE 'rotating-collections-toolbar.inc' %]
42
              <h1>Manage items for <em>[% colTitle | html %]</em></h1>
49
              <h1>[% tx("Manage items for '{collection_title}'", { collection_title = colTitle }) | html %]</h1>
43
50
44
              [% IF ( previousActionAdd ) %]
51
              [% IF ( previousActionAdd ) %]
45
                [% IF ( addSuccess ) %]
52
                [% IF ( addSuccess ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/editCollections.tt (-8 / +15 lines)
Lines 1-14 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% PROCESS 'i18n.inc' %]
3
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
<title>
6
<title>[% FILTER collapse %]
6
    [%- IF ( action == "new" ) %]
7
    [% IF ( action == "new" ) %]
7
        Add a new collection
8
        [% t("Add a new collection") | html %]
9
    [% ELSIF ( action == "delete" ) %]
10
        [% t("Collection deleted") | html %]
8
    [% ELSE %]
11
    [% ELSE %]
9
        Edit collection [% editColTitle | html %]
12
        [% t("Edit collection") | html %] &rsaquo;
10
    [% END -%] &rsaquo; Rotating collections &rsaquo; Tools &rsaquo; Koha
13
        [% tx("Collection '{collection_title}'", { collection_title = editColTitle }) | html %]
11
</title>
14
    [% END %] &rsaquo;
15
    [% t("Rotating collections") | html %] &rsaquo;
16
    [% t("Tools") | html %] &rsaquo;
17
    [% t("Koha") | html %]
18
[% END %]</title>
12
[% INCLUDE 'doc-head-close.inc' %]
19
[% INCLUDE 'doc-head-close.inc' %]
13
</head>
20
</head>
14
<body id="rcoll_editCollections" class="tools rcoll">
21
<body id="rcoll_editCollections" class="tools rcoll">
Lines 35-44 Link Here
35
            [% END %]
42
            [% END %]
36
        [% ELSE %]
43
        [% ELSE %]
37
            [% WRAPPER breadcrumb_item %]
44
            [% WRAPPER breadcrumb_item %]
38
                <a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% editColId | uri %]">Collection <em>[% editColTitle | html %]</em></a>
45
                <a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% editColId | uri %]">[% tx("Collection '{collection_title}'", { collection_title = editColTitle }) | html %]</em></a>
39
            [% END %]
46
            [% END %]
40
            [% WRAPPER breadcrumb_item bc_active= 1 %]
47
            [% WRAPPER breadcrumb_item bc_active= 1 %]
41
                <span>Edit collection</span>
48
                [% t("Edit collection") | html %]
42
            [% END %]
49
            [% END %]
43
        [% END -%]
50
        [% END -%]
44
    [% END #/ WRAPPER breadcrumbs %]
51
    [% END #/ WRAPPER breadcrumbs %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/rotatingCollections.tt (-1 / +6 lines)
Lines 1-9 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% USE Branches %]
3
[% USE Branches %]
4
[% PROCESS 'i18n.inc' %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Rotating collections &rsaquo; Tools &rsaquo; Koha</title>
7
<title>[% FILTER collapse %]
8
    [% t("Rotating collections") | html %] &rsaquo;
9
    [% t("Tools") | html %] &rsaquo;
10
    [% t("Koha") | html %]
11
[% END %]</title>
7
[% INCLUDE 'doc-head-close.inc' %]
12
[% INCLUDE 'doc-head-close.inc' %]
8
</head>
13
</head>
9
14
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/transferCollection.tt (-4 / +10 lines)
Lines 1-9 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% USE Branches %]
3
[% USE Branches %]
4
[% PROCESS 'i18n.inc' %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Transfer collection &rsaquo; Rotating collections &rsaquo; Tools &rsaquo; Koha</title>
7
<title>[% FILTER collapse %]
8
    [% t("Transfer collection") | html %] &rsaquo;
9
    [% tx("Collection '{collection_title}'", { collection_title = colTitle }) | html %] &rsaquo;
10
    [% t("Rotating collections") | html %] &rsaquo;
11
    [% t("Tools") | html %] &rsaquo;
12
    [% t("Koha") | html %]
13
[% END %]</title>
7
[% INCLUDE 'doc-head-close.inc' %]
14
[% INCLUDE 'doc-head-close.inc' %]
8
</head>
15
</head>
9
<body id="rcoll_transferCollection" class="tools rcoll">
16
<body id="rcoll_transferCollection" class="tools rcoll">
Lines 20-26 Link Here
20
            <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating collections</a>
27
            <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating collections</a>
21
        [% END %]
28
        [% END %]
22
        [% WRAPPER breadcrumb_item %]
29
        [% WRAPPER breadcrumb_item %]
23
            <a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% colId | uri %]">Collection <em>[% colTitle | html %]</em></a>
30
            <a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% colId | uri %]">[% tx("Collection '{collection_title}'", { collection_title = colTitle }) | html %]</em></a>
24
        [% END %]
31
        [% END %]
25
        [% WRAPPER breadcrumb_item bc_active= 1 %]
32
        [% WRAPPER breadcrumb_item bc_active= 1 %]
26
            <span>Transfer collection</span>
33
            <span>Transfer collection</span>
Lines 33-39 Link Here
33
        <div class="col-sm-10 col-sm-push-2">
40
        <div class="col-sm-10 col-sm-push-2">
34
            <main>
41
            <main>
35
42
36
                <h1>Transfer collection <em>[% colTitle | html %]</em></h1>
43
                <h1>[% tx("Transfer collection '{collection_title}'", { collection_title = colTitle }) | html %]</h1>
37
44
38
                [% IF ( messages ) %]
45
                [% IF ( messages ) %]
39
                    [% FOREACH message IN messages %]
46
                    [% FOREACH message IN messages %]
40
- 

Return to bug 33924