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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc (-1 / +1 lines)
Lines 367-373 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
367
        $.each( backend.links || [], function( i, link ) {
367
        $.each( backend.links || [], function( i, link ) {
368
            $('#title').append(' <a target="_blank" href="' + link.href.replace( '{ID}', parts[1] ) + '">(' + link.title + ')</a>' );
368
            $('#title').append(' <a target="_blank" href="' + link.href.replace( '{ID}', parts[1] ) + '">(' + link.title + ')</a>' );
369
        } );
369
        } );
370
        $( 'title', document.head ).html( _("Koha &rsaquo; Cataloging &rsaquo; ") + backend.titleForRecord.replace( '{ID}', parts[1] ) );
370
        $( 'title', document.head ).html( backend.titleForRecord.replace( '{ID}', parts[1] ) + " &rsaquo; " + _("Cataloging") + " &rsaquo; " + _("Koha") );
371
        $('#save-record span').text( backends[ state.saveBackend ].saveLabel );
371
        $('#save-record span').text( backends[ state.saveBackend ].saveLabel );
372
    }
372
    }
373
373
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt (-1 / +10 lines)
Lines 2-9 Link Here
2
[% USE Asset %]
2
[% USE Asset %]
3
[% USE Koha %]
3
[% USE Koha %]
4
[% USE HtmlTags %]
4
[% USE HtmlTags %]
5
[% PROCESS 'i18n.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>[% IF ( biblionumber ) %]Editing [% title | html %] (Record number [% biblionumber | html %])[% ELSE %]Add MARC record[% END %] &rsaquo; Cataloging &rsaquo; Koha</title>
7
<title>[% FILTER collapse %]
8
    [% IF( biblionumber ) %]
9
        [% tx("Editing {title} (Record number {biblionumber})", { title = title, biblionumber = biblionumber }) | html %]
10
    [% ELSE %]
11
        [% t("Add MARC record") | html %]
12
    [% END %] &rsaquo;
13
    [% t("Cataloging") | html %] &rsaquo;
14
    [% t("Koha") | html %]
15
[% END %]</title>
7
[% INCLUDE 'doc-head-close.inc' %]
16
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'calendar.inc' %]
17
[% INCLUDE 'calendar.inc' %]
9
[% Asset.js("lib/hc-sticky.js") | $raw %]
18
[% Asset.js("lib/hc-sticky.js") | $raw %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt (-1 / +10 lines)
Lines 2-10 Link Here
2
[% USE Koha %]
2
[% USE Koha %]
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% USE TablesSettings %]
4
[% USE TablesSettings %]
5
[% PROCESS 'i18n.inc' %]
5
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Cataloging [% IF ( total || breeding_loop ) %] &rsaquo; Search results [% ELSIF ( query ) %] &rsaquo; No results found [% END %] &rsaquo; Koha</title>
8
<title>[% FILTER collapse %]
9
    [% IF ( total || breeding_loop ) %]
10
        [% t("Search results") | html %]
11
    [% ELSIF ( query ) %]
12
        [% t("No results found") | html %]
13
    [% END %] &rsaquo;
14
    [% t("Cataloging") | html %] &rsaquo;
15
    [% t("Koha") | html %]
16
[% END %]</title>
8
[% INCLUDE 'doc-head-close.inc' %]
17
[% INCLUDE 'doc-head-close.inc' %]
9
</head>
18
</head>
10
19
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt (-1 / +11 lines)
Lines 7-13 Link Here
7
[% USE TablesSettings %]
7
[% USE TablesSettings %]
8
[% PROCESS 'i18n.inc' %]
8
[% PROCESS 'i18n.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
10
<title>Items &rsaquo; [% biblio.title | html %] [% IF ( biblio.author ) %] by [% biblio.author | html %][% END %] (Record #[% biblio.biblionumber | html %]) &rsaquo; Cataloging &rsaquo; Koha</title>
10
<title>[% FILTER collapse %]
11
    [% t("Items") | html %] &rsaquo;
12
    [% IF ( biblio.author ) %]
13
        [% tx("{title} by {author}", { title = biblio.title, author = biblio.author }) | html %]
14
    [% ELSE %]
15
        [% biblio.title | html %]
16
    [% END %]
17
    [% tx("(Record #{biblionumber})", { biblionumber = biblio.biblionumber }) | html %] &rsaquo;
18
    [% t("Cataloging") | html %] &rsaquo;
19
    [% t("Koha") | html %]
20
[% END %]</title>
11
[% INCLUDE 'doc-head-close.inc' %]
21
[% INCLUDE 'doc-head-close.inc' %]
12
[% Asset.css("css/addbiblio.css") | $raw %]
22
[% Asset.css("css/addbiblio.css") | $raw %]
13
[% INCLUDE 'datatables.inc' %]
23
[% INCLUDE 'datatables.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/cataloging-home.tt (-1 / +5 lines)
Lines 1-9 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Koha %]
2
[% USE Koha %]
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>Cataloging &rsaquo; Koha</title>
7
<title>[% FILTER collapse %]
8
    [% t("Cataloging") | html %] &rsaquo;
9
    [% t("Koha") | html %]
10
[% END %]</title>
7
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
8
</head>
12
</head>
9
13
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/concerns.tt (-1 / +6 lines)
Lines 1-9 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
[% USE TablesSettings %]
5
[% USE TablesSettings %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Catalog concerns &rsaquo; Cataloging &rsaquo; Koha</title>
7
<title>[% FILTER collapse %]
8
    [% t("Catalog concerns") | html %] &rsaquo;
9
    [% t("Cataloging") | 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/cataloguing/editor.tt (-1 / +6 lines)
Lines 1-7 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% PROCESS 'i18n.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Editor &rsaquo; Cataloging &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("Editor") | html %] &rsaquo;
7
    [% t("Cataloging") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
6
[% Asset.css("css/cateditor.css") | $raw %]
11
[% Asset.css("css/cateditor.css") | $raw %]
7
[% Asset.css("lib/codemirror/codemirror.min.css") | $raw %]
12
[% Asset.css("lib/codemirror/codemirror.min.css") | $raw %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt (-1 / +6 lines)
Lines 1-7 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE HtmlTags %]
2
[% USE HtmlTags %]
3
[% PROCESS 'i18n.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Link to host record &rsaquo; Cataloging &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("Link to host record") | html %] &rsaquo;
7
    [% t("Cataloging") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
6
</head>
11
</head>
7
<body id="catalog_linkitem" class="catalog">
12
<body id="catalog_linkitem" class="catalog">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt (-2 / +6 lines)
Lines 1-10 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
[% PROCESS 'merge-record.inc' %]
5
[% PROCESS 'merge-record.inc' %]
5
6
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Merging records &rsaquo; Cataloging &rsaquo; Koha</title>
7
<title>[% FILTER collapse %]
8
    [% t("Merging records") | html %] &rsaquo;
9
    [% t("Cataloging") | html %] &rsaquo;
10
    [% t("Koha") | html %]
11
[% END %]</title>
8
[% INCLUDE 'doc-head-close.inc' %]
12
[% INCLUDE 'doc-head-close.inc' %]
9
<style>
13
<style>
10
div.record ul, div.record li { float:none; display:block; }
14
div.record ul, div.record li { float:none; display:block; }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/moveitem.tt (-1 / +6 lines)
Lines 1-7 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
2
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Attach an item to [% INCLUDE 'biblio-title-head.inc' %] &rsaquo; Cataloging &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("Attach an item to") | html %] [% INCLUDE 'biblio-title-head.inc' %] &rsaquo;
7
    [% t("Cataloging") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
6
</head>
11
</head>
7
<body id="catalog_moveitem" class="catalog">
12
<body id="catalog_moveitem" class="catalog">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/EXAMPLE.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin example") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/cn_browser.tt (-1 / +7 lines)
Lines 1-10 Link Here
1
[% USE raw %]
1
[% USE Asset %]
2
[% USE Asset %]
2
[% USE AuthorisedValues %]
3
[% USE AuthorisedValues %]
3
[% USE ItemTypes %]
4
[% USE ItemTypes %]
4
[% USE Koha %]
5
[% USE Koha %]
6
[% PROCESS 'i18n.inc' %]
5
[% SET footerjs = 1 %]
7
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Call number browser &rsaquo; Cataloging &rsaquo; Koha</title>
9
<title>[% FILTER collapse %]
10
    [% t("Call number browser") | html %] &rsaquo;
11
    [% t("Cataloging") | html %] &rsaquo;
12
    [% t("Koha") | html %]
13
[% END %]</title>
8
[% INCLUDE 'doc-head-close.inc' %]
14
[% INCLUDE 'doc-head-close.inc' %]
9
</head>
15
</head>
10
16
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_006.tt (-1 / +6 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>006 builder &rsaquo; Cataloging &rsaquo; Koha</title>
6
<title>[% FILTER collapse %]
7
    [% t("006 builder") | html %] &rsaquo;
8
    [% t("Cataloging") | html %] &rsaquo;
9
    [% t("Koha") | html %]
10
[% END %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
7
</head>
12
</head>
8
13
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_007.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>007 builder &rsaquo; Cataloging &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("007 builder") | html %] &rsaquo;
7
    [% t("Cataloging") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008.tt (-1 / +6 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>008 builder &rsaquo; Cataloging &rsaquo; Koha</title>
6
<title>[% FILTER collapse  %]
7
    [% t("008 builder") | html %] &rsaquo;
8
    [% t("Cataloging") | html %] &rsaquo;
9
    [% t("Koha") | html %]
10
[% END %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
7
</head>
12
</head>
8
13
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008_authorities.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>008 builder &rsaquo; Authorities &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("008 builder") | html %] &rsaquo;
7
    [% t("Authorities") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008_classifications.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>008 builder &rsaquo; Classifications &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("008 builder") | html %] &rsaquo;
7
    [% t("Classifications") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader.tt (-2 / +8 lines)
Lines 1-7 Link Here
1
[% SET footerjs = 1 %]
1
[% USE raw %]
2
[% USE Koha %]
2
[% USE Koha %]
3
[% PROCESS 'i18n.inc' %]
4
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
4
<title>000 - Leader builder &rsaquo; Cataloging &rsaquo; Koha</title>
6
<title>[% FILTER collapse %]
7
    [% t("000 - Leader builder") | html %] &rsaquo;
8
    [% t("Cataloging") | html %] &rsaquo;
9
    [% t("Koha") | html %]
10
[% END %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
6
</head>
12
</head>
7
13
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader_authorities.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Leader builder &rsaquo; Authorities &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("Leader builder") | html %] &rsaquo;
7
    [% t("Authorities") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_linking_section.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>plugin for links &rsaquo; Cataloguing &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("Plugin for links") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
[% IF ( fillinput ) %]
11
[% IF ( fillinput ) %]
6
        </head>
12
        </head>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_100.tt (-1 / +5 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 100 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 100 builder") | html %]
7
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
9
</head>
6
10
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_100_authorities.tt (-1 / +5 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 100 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 100 builder") | html %]
7
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
9
</head>
6
10
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_105.tt (-1 / +5 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 105 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 105 builder") | html %]
7
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
9
</head>
6
10
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_106.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 106 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 106 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_110.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 110 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 110 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_115a.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 115a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 115a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
<body id="cat_unimarc_field_115a" class="cat" style="padding:1em;">
12
<body id="cat_unimarc_field_115a" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_115b.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 115b builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 115b builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_116.tt (-1 / +7 lines)
Lines 1-7 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% PROCESS 'i18n.inc' %]
4
[% PROCESS 'i18n.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
4
<title>UNIMARC field 116 builder</title>
6
<title>[% FILTER collapse %]
7
    [% t("UNIMARC field 116 builder") | html %] &rsaquo;
8
    [% t("Cataloguing") | html %] &rsaquo;
9
    [% t("Koha") | html %]
10
[% END %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
6
</head>
12
</head>
7
13
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_117.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 117 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 117 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_120.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 120 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 120 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_121a.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 121a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 121a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_121b.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 121b builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 121b builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_122.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 122 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 122 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123a.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 123a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 123a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
<body id="cat_unimarc_field_123a" class="cat" style="padding:1em;">
12
<body id="cat_unimarc_field_123a" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123d.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 123d builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 123d builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
<body id="cat_unimarc_field_123d" class="cat" style="padding:1em;">
12
<body id="cat_unimarc_field_123d" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123e.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 123e builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 123e builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
<body id="cat_unimarc_field_123e" class="cat" style="padding:1em;">
12
<body id="cat_unimarc_field_123e" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123f.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 123f builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 123f builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
<body id="cat_unimarc_field_123f" class="cat" style="padding:1em;">
12
<body id="cat_unimarc_field_123f" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123g.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 123g builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 123g builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
<body id="cat_unimarc_field_123g" class="cat" style="padding:1em;">
12
<body id="cat_unimarc_field_123g" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123i_j.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 123i/j builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 123i/j builder") | html %]
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
<body id="cat_unimarc_field_123ij" class="cat" style="padding:1em;">
12
<body id="cat_unimarc_field_123ij" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124a.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 124a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 124a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124b.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 124b builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 124b builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124c.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 124c builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 124c builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124d.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 124d builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 124d builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124e.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 124e builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 124e builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124f.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 124f builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 124f builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124g.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 124g builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 124g builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125a.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 125a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 125a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125b.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 125b builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 125b builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126a.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 126a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 126a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126b.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 126b builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 126b builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_127.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 127 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 127 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128a.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 128a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 128a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128b.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 128b builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 128b builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128c.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 128c builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 128c builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_130.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 130 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 130 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt (-1 / +5 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 135a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 135a builder") | html %]
7
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
9
</head>
6
10
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 140 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 140 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_141.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 141 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 141 builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146a.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146a &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146a") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146b.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146b &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146b") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146c.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146c &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146c") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146d.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146d &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146d") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146e.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146e &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146e") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146f.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146e &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146e") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146h.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146h &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146h") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_146i.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin unimarc_field_146i &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("Framework plugin unimarc_field_146i") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_181-2.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 181-2 builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_181a.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 181a builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_181b.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 181b builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_181c.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 181c builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_182-2.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 182-2 builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_182a.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 182a builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_182c.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 182c builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_183-2.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 183-2 builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_183a.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 183a builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt (-1 / +6 lines)
Lines 1-8 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
2
[% PROCESS 'authorities-search-results.inc' %]
3
[% PROCESS 'authorities-search-results.inc' %]
3
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
<title>UNIMARC field 210c builder</title>
6
<title>[% FILTER collapse %]
7
    [% t("UNIMARC field 210c builder") | html %] &rsaquo;
8
    [% t("Cataloguing") | html %] &rsaquo;
9
    [% t("Koha") | html %]
10
[% END %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
7
</head>
12
</head>
8
13
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c_bis.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 210c builder &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 210c builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
<style>
11
<style>
6
    #custom-doc { width:37.85em;*width:36.93em;min-width:492px; margin:auto; text-align:left; }
12
    #custom-doc { width:37.85em;*width:36.93em;min-width:492px; margin:auto; text-align:left; }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt (-1 / +5 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
    <title>UNIMARC field 225a builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 225a builder") | html %]
7
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
9
</head>
6
10
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a_bis.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 225a builder &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 225a builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_283-2.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 283-2 builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_283a.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 283a builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_325h.tt (-3 / +7 lines)
Lines 1-8 Link Here
1
[%# ATTENTION c'est le contenu du fichier unimarc_field_181-2.tt %]
1
[%# ATTENTION c'est le contenu du fichier unimarc_field_181-2.tt %]
2
2
[% USE raw %]
3
3
[% PROCESS 'i18n.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 325h builder") | html %] &rsaquo;
7
    [% t("Cataloguing") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
7
</head>
11
</head>
8
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_325j.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 325j builder") | html %] &rsaquo;
6
    [% t("Cataloguing") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_4XX.tt (-2 / +7 lines)
Lines 1-8 Link Here
1
[% SET footerjs = 1 %]
2
[% USE raw %]
1
[% USE raw %]
3
[% USE To %]
2
[% USE To %]
3
[% PROCESS 'i18n.inc' %]
4
[% SET footerjs = 1 %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
<title>4XX plugin &rsaquo; Cataloging &rsaquo; Koha</title>
6
<title>[% FILTER collapse %]
7
    [% t("UNIMARC field 4XX builder") | html %] &rsaquo;
8
    [% t("Cataloging") | html %] &rsaquo;
9
    [% t("Koha") | html %]
10
[% END %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
7
</head>
12
</head>
8
13
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_686a.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>UNIMARC field 686a builder</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC field 686a builder") | html %]
6
    [% t("Cataloging") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_700-4.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC field 700-4 builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC field 700-4 builder") | html %]
7
    [% t("Cataloging") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tt (-1 / +7 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>UNIMARC leader builder</title>
5
<title>[% FILTER collapse %]
6
    [% t("UNIMARC leader builder") | html %]
7
    [% t("Cataloging") | html %] &rsaquo;
8
    [% t("Koha") | html %]
9
[% END %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
11
</head>
6
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader_authorities.tt (-1 / +7 lines)
Lines 1-5 Link Here
1
[% USE raw %]
2
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
<title>UNIMARC leader builder</title>
4
<title>[% FILTER collapse %]
5
    [% t("UNIMARC leader builder") | html %]
6
    [% t("Cataloging") | html %] &rsaquo;
7
    [% t("Koha") | html %]
8
[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
10
</head>
5
<body id="cat_unimarc_leader_authorities" class="cat" style="padding:1em;">
11
<body id="cat_unimarc_leader_authorities" class="cat" style="padding:1em;">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt (-4 / +8 lines)
Lines 1-12 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
[% IF ( opsearch ) %]
6
<title>[% FILTER collapse %]
6
    <title>Z39.50 authority search points &rsaquo; Koha</title>
7
    [% IF ( opsearch ) %]
7
[% ELSE %]
8
        [% t("Z39.50 authority search points") | html %] &rsaquo;
8
    <title>Z39.50 authority search results &rsaquo; Koha</title>
9
    [% ELSE %]
10
        [% t("Z39.50 authority search results") | html %] &rsaquo;
9
    [% END %]
11
    [% END %]
12
    [% t("Koha") | html %]
13
[% END %]</title>
10
[% INCLUDE 'doc-head-close.inc' %]
14
[% INCLUDE 'doc-head-close.inc' %]
11
<style>
15
<style>
12
    #marcPreview { width : 90%; top: 5%; } .modal-body { max-height: 380px; } .modal-header { padding: 0 14px; } @media (max-width: 767px) { #marcPreview { margin: 0; width : auto; } }
16
    #marcPreview { width : 90%; top: 5%; } .modal-body { max-height: 380px; } .modal-header { padding: 0 14px; } @media (max-width: 767px) { #marcPreview { margin: 0; width : auto; } }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt (-3 / +6 lines)
Lines 1-10 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% SET footerjs = 1 %]
4
[% USE Koha %]
3
[% USE Koha %]
5
[% USE TablesSettings %]
4
[% USE TablesSettings %]
5
[% PROCESS 'i18n.inc' %]
6
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Z39.50/SRU search results &rsaquo; Koha</title>
8
<title>[% FILTER collapse %]
9
    [% t("Z39.50/SRU search results") | html %] &rsaquo;
10
    [% t("Koha") | html %]
11
[% END %]</title>
8
[% INCLUDE 'doc-head-close.inc' %]
12
[% INCLUDE 'doc-head-close.inc' %]
9
<style>
13
<style>
10
    #dataPreview {
14
    #dataPreview {
11
- 

Return to bug 33912