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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/EXAMPLE.tt (-9 / +10 lines)
Lines 1-21 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Cataloguing &rsaquo; Framework plugin example</title>
3
<title>[% t('Koha › Cataloguing › Framework plugin example') %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
5
</head>
5
6
6
<body id="EXAMPLE" class="cat" style="padding:1em;">
7
<body id="EXAMPLE" class="cat" style="padding:1em;">
7
<form name="f_pop" onsubmit="report()" action="">
8
<form name="f_pop" onsubmit="report()" action="">
8
9
9
<h1>EXAMPLE plugin</h1>
10
<h1>[% t('EXAMPLE plugin') %]</h1>
10
<p>Hi, you are looking at the result of launching the EXAMPLE plugin.</p>
11
<p>[% t('Hi, you are looking at the result of launching the EXAMPLE plugin.') %]</p>
11
<p>I received this from you:</p>
12
<p>[% t('I received this from you:') %]</p>
12
<input type="text" id="received" value="[% result %]" disabled />
13
<input type="text" id="received" value="[% result %]" disabled="" />
13
<p/>
14
<p />
14
<p>I will pass back what you type here, if you press OK.</p>
15
<p>[% t('I will pass back what you type here, if you press OK.') %]</p>
15
<input type="text" id="return" value="[% result %]" />
16
<input type="text" id="return" value="[% result %]" />
16
<p>
17
<p>
17
    <input type="button" value="OK"  onclick="submitMyForm();" />
18
    <input type="button" value="OK" onclick="submitMyForm();" />
18
    <a href="#" class="cancel close">Cancel</a>
19
    <a href="#" class="cancel close">[% t('Cancel') %]</a>
19
</p>
20
</p>
20
</form>
21
</form>
21
22
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/cn_browser.tt (-7 / +8 lines)
Lines 1-6 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% USE Asset %]
2
[% USE Asset %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Tools</title>
4
<title>[% t('Koha › Tools') %]</title>
4
[% Asset.css("css/datatables.css") %]
5
[% Asset.css("css/datatables.css") %]
5
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'datatables.inc' %]
7
[% INCLUDE 'datatables.inc' %]
Lines 24-34 $(document).ready(function() Link Here
24
);
25
);
25
</script>
26
</script>
26
27
27
<h1 style="text-align:center">Call numbers browser</h1>
28
<h1 style="text-align:center">[% t('Call numbers browser') %]</h1>
28
29
29
<div style="margin:auto;text-align:center;">
30
<div style="margin:auto;text-align:center;">
30
    <form method="get" action="cn_browser.pl">
31
    <form method="get" action="cn_browser.pl">
31
    <label for="searchcn">Search call number:</label>
32
    <label for="searchcn">[% t('Search call number:') %]</label>
32
    <input type="text" id="cn_browser_input" name="q" value="[% q %]" />
33
    <input type="text" id="cn_browser_input" name="q" value="[% q %]" />
33
    <input id="cn_browser_submit" type="submit" value="Search" />
34
    <input id="cn_browser_submit" type="submit" value="Search" />
34
    </form>
35
    </form>
Lines 37-45 $(document).ready(function() Link Here
37
38
38
<table id="cn_browser_table">
39
<table id="cn_browser_table">
39
    <thead><tr>
40
    <thead><tr>
40
        <th>Call Number</th>
41
        <th>[% t('Call Number') %]</th>
41
        <th>Title</th>
42
        <th>[% t('Title') %]</th>
42
        <th>Branch</th>
43
        <th>[% t('Branch') %]</th>
43
    </tr></thead>
44
    </tr></thead>
44
    <tbody>
45
    <tbody>
45
[% FOREACH cn_loo IN cn_loop %]
46
[% FOREACH cn_loo IN cn_loop %]
Lines 49-55 $(document).ready(function() Link Here
49
        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% cn_loo.biblionumber %]">
50
        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% cn_loo.biblionumber %]">
50
            [% cn_loo.title %] [% cn_loo.subtitle %] [% cn_loo.subtitle2 %]
51
            [% cn_loo.title %] [% cn_loo.subtitle %] [% cn_loo.subtitle2 %]
51
            [% IF ( cn_loo.author ) %]
52
            [% IF ( cn_loo.author ) %]
52
                <span>by</span> [% cn_loo.author %]
53
                <span>[% t('by') %]</span> [% cn_loo.author %]
53
            [% END %]
54
            [% END %]
54
        </a>
55
        </a>
55
    </td>
56
    </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/macles.tt (-11 / +12 lines)
Lines 1-8 Link Here
1
[% PROCESS 'i18n.inc' %]
1
<!DOCTYPE html PUBLIC "-//W3C//DTD Xhtml 1.0 Transitional//EN"
2
<!DOCTYPE html PUBLIC "-//W3C//DTD Xhtml 1.0 Transitional//EN"
2
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
<html xmlns="http://www.w3.org/1999/xhtml">
4
<head>
5
<head>
5
<title>Gestion des index MACLES</title>
6
<title>[% t('Gestion des index MACLES') %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
7
[% INCLUDE 'doc-head-close.inc' %]
7
<script type="text/javascript">
8
<script type="text/javascript">
8
//<![CDATA[
9
//<![CDATA[
Lines 14-22 Link Here
14
</script>
15
</script>
15
</head>
16
</head>
16
17
17
<body id="cat_macles" class="cat" onload="Activate(0);load_macles();" >
18
<body id="cat_macles" class="cat" onload="Activate(0);load_macles();">
18
19
19
<h1>Gestion des index MACLES</h1>
20
<h1>[% t('Gestion des index MACLES') %]</h1>
20
<form name="f_pop" action="">
21
<form name="f_pop" action="">
21
22
22
<div id="macles" class="toptabs numbered">
23
<div id="macles" class="toptabs numbered">
Lines 33-47 Link Here
33
        <div id="tab[% BIGLOO.number %]XX">
34
        <div id="tab[% BIGLOO.number %]XX">
34
    [% END %]
35
    [% END %]
35
            <h2> [% BIGLOO.hdr_tab %]</h2>
36
            <h2> [% BIGLOO.hdr_tab %]</h2>
36
            <a href="#" class="button" onclick="add_macles('630');">Envoyer</a>
37
            <a href="#" class="button" onclick="add_macles('630');">[% t('Envoyer') %]</a>
37
            <!-- <input type="submit" class="button" value="Envoyer" /> -->
38
            <!-- <input type="submit" class="button" value="Envoyer" /> -->
38
            <a class="button" href="" onclick="load_macles(630);">R&eacute;initialiser</a>
39
            <a class="button" href="" onclick="load_macles(630);">[% t('Réinitialiser') %]</a>
39
            <a class="button" href="javascript:uncheck_tab([% BIGLOO.number %])">d&eacute;selectionner onglet</a>
40
            <a class="button" href="javascript:uncheck_tab([% BIGLOO.number %])">[% t('déselectionner onglet') %]</a>
40
            <input type="reset" class="button" value="déselectionner tout" />
41
            <input type="reset" class="button" value="déselectionner tout" />
41
            [% IF ( BIGLOO.Table ) %]
42
            [% IF ( BIGLOO.Table ) %]
42
            <table>
43
            <table>
43
                <tr>
44
                <tr>
44
                <th>Espace\Temps</th>
45
                <th>[% t('Espace\Temps') %]</th>
45
                [% FOREACH col_hd IN BIGLOO.col_hdr %]
46
                [% FOREACH col_hd IN BIGLOO.col_hdr %]
46
                    <th scope="col" id="[% col_hd.colvalue %]">  [% col_hd.collib |html %] <br /><input type="checkbox" name="[% col_hd.colvalue %]" onclick="check_col('[% col_hd.colvalue %]')" />
47
                    <th scope="col" id="[% col_hd.colvalue %]">  [% col_hd.collib |html %] <br /><input type="checkbox" name="[% col_hd.colvalue %]" onclick="check_col('[% col_hd.colvalue %]')" />
47
                    </th>
48
                    </th>
Lines 64-70 Link Here
64
            </table>
65
            </table>
65
            [% END %]
66
            [% END %]
66
            [% IF ( BIGLOO.Lists ) %]
67
            [% IF ( BIGLOO.Lists ) %]
67
            <h2>s&eacute;lection au moyen d'une liste de descripteurs</h2>
68
            <h2>[% t('sélection au moyen d\'une liste de descripteurs') %]</h2>
68
            [% FOREACH List IN BIGLOO.Lists %]
69
            [% FOREACH List IN BIGLOO.Lists %]
69
                <h3>[% List.lib %]</h3>
70
                <h3>[% List.lib %]</h3>
70
                [% FOREACH liblis IN List.liblist %]
71
                [% FOREACH liblis IN List.liblist %]
Lines 75-84 Link Here
75
            [% UNLESS ( BIGLOO.Table ) %]
76
            [% UNLESS ( BIGLOO.Table ) %]
76
            <!-- Listes simples :Onglets 0 et 9-->
77
            <!-- Listes simples :Onglets 0 et 9-->
77
            [% FOREACH line IN BIGLOO.lines %]
78
            [% FOREACH line IN BIGLOO.lines %]
78
                <h3>[% line.rowvalue |html %]&nbsp;-&nbsp;[% line.rowlib |html %]&nbsp;<input type="checkbox" name="[% line.rowvalue %]" onclick="check_row('[% line.rowvalue %]')" /></h3>
79
                <h3>[% line.rowvalue |html %] - [% line.rowlib |html %] <input type="checkbox" name="[% line.rowvalue %]" onclick="check_row('[% line.rowvalue %]')" /></h3>
79
                [% FOREACH cell IN line.cells %]
80
                [% FOREACH cell IN line.cells %]
80
                <p>[% cell.celvalue |html %]&nbsp;-&nbsp;[% FOREACH lib IN cell.libs %]
81
                <p>[% cell.celvalue |html %] - [% FOREACH lib IN cell.libs %]
81
                        [% lib.lib |html %] &nbsp;
82
                        [% lib.lib |html %]  
82
                    [% END %]
83
                    [% END %]
83
                    <input type="checkbox" name="[% cell.celvalue %]" value="[% cell.celvalue %]" />
84
                    <input type="checkbox" name="[% cell.celvalue %]" value="[% cell.celvalue %]" />
84
                </p>
85
                </p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_006.tt (-7 / +8 lines)
Lines 1-18 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% USE Asset %]
2
[% USE Asset %]
2
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Cataloging &rsaquo; 006 builder</title>
5
<title>[% t('Koha › Cataloging › 006 builder') %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
6
</head>
7
</head>
7
8
8
<body id="cat_marc21_field_006" class="cat" style="padding:1em;" onload="loadXmlValues()">
9
<body id="cat_marc21_field_006" class="cat" style="padding:1em;" onload="loadXmlValues()">
9
<h3>006 Fixed-length data elements--Additional material characteristics--General information</h3>
10
<h3>[% t('006 Fixed-length data elements--Additional material characteristics--General information') %]</h3>
10
11
11
<table>
12
<table>
12
    <tr id="tr_result">
13
    <tr id="tr_result">
13
    </tr>
14
    </tr>
14
</table>
15
</table>
15
<h4 id="h4_result">&quot;[% result %]&quot;</h4>
16
<h4 id="h4_result">"[% result %]"</h4>
16
17
17
<form name="f_pop" id="f_pop" onsubmit="report()" action="">
18
<form name="f_pop" id="f_pop" onsubmit="report()" action="">
18
<input type="hidden" name="plugin_name" value="marc21_field_006.pl" />
19
<input type="hidden" name="plugin_name" value="marc21_field_006.pl" />
Lines 20-34 Link Here
20
<input type="hidden" id="result" name="result" value="[% result %]" />
21
<input type="hidden" id="result" name="result" value="[% result %]" />
21
<table id="table_material_types">
22
<table id="table_material_types">
22
    <tr id="tr_material_types">
23
    <tr id="tr_material_types">
23
        <td><label for="material_type" title="Select a type of material to specify the variable values">Type of material</label></td>
24
        <td><label for="material_type" title="[% t('Select a type of material to specify the variable values') %]">[% t('Type of material') %]</label></td>
24
        <td>
25
        <td>
25
            <select name="material_type" id="material_type" title="Select a type of material to specify the variable values" onchange="changeTypeofMaterial(this.form)">
26
            <select name="material_type" id="material_type" title="[% t('Select a type of material to specify the variable values') %]" onchange="changeTypeofMaterial(this.form)">
26
                <option value="">Select a type of material</option>
27
                <option value="">[% t('Select a type of material') %]</option>
27
            </select>
28
            </select>
28
        </td>
29
        </td>
29
    </tr>
30
    </tr>
30
</table>
31
</table>
31
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
32
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Cancel') %]</a></fieldset>
32
</form>
33
</form>
33
34
34
[% MACRO jsinclude BLOCK %]
35
[% MACRO jsinclude BLOCK %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_007.tt (-34 / +35 lines)
Lines 1-96 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Cataloging &rsaquo; 007 builder</title>
4
<title>[% t('Koha › Cataloging › 007 builder') %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
6
</head>
6
7
7
<body id="cat_marc21_field_007" class="cat" style="padding:1em;" onload="RedrawChoices('[% f0 %]');">
8
<body id="cat_marc21_field_007" class="cat" style="padding:1em;" onload="RedrawChoices('[% f0 %]');">
8
<h3>007 Physical description fixed field--General information</h3>
9
<h3>[% t('007 Physical description fixed field--General information') %]</h3>
9
<form id="f_pop" onsubmit="report()" action="">
10
<form id="f_pop" onsubmit="report()" action="">
10
<input type="hidden" name="plugin_name" value="marc21_field_007.pl" />
11
<input type="hidden" name="plugin_name" value="marc21_field_007.pl" />
11
<p><label for="MatTypeList">Material type: </label>
12
<p><label for="MatTypeList">[% t('Material type:') %] </label>
12
      <select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
13
      <select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
13
        [% IF ( f0a ) %]
14
        [% IF ( f0a ) %]
14
	  <option value="a" selected="selected">Map</option>
15
	  <option value="a" selected="selected">[% t('Map') %]</option>
15
        [% ELSE %]
16
        [% ELSE %]
16
	  <option value="a">Map</option>
17
	  <option value="a">[% t('Map') %]</option>
17
        [% END %]
18
        [% END %]
18
        [% IF ( f0c ) %]
19
        [% IF ( f0c ) %]
19
          <option value="c" selected="selected">Electronic resource</option>
20
          <option value="c" selected="selected">[% t('Electronic resource') %]</option>
20
        [% ELSE %]
21
        [% ELSE %]
21
          <option value="c">Electronic resource</option>
22
          <option value="c">[% t('Electronic resource') %]</option>
22
        [% END %]
23
        [% END %]
23
        [% IF ( f0d ) %]
24
        [% IF ( f0d ) %]
24
          <option value="d" selected="selected">Globe</option>
25
          <option value="d" selected="selected">[% t('Globe') %]</option>
25
        [% ELSE %]
26
        [% ELSE %]
26
          <option value="d">Globe</option>
27
          <option value="d">[% t('Globe') %]</option>
27
        [% END %]
28
        [% END %]
28
        [% IF ( f0f ) %]
29
        [% IF ( f0f ) %]
29
          <option value="f" selected="selected">Tactile material</option>
30
          <option value="f" selected="selected">[% t('Tactile material') %]</option>
30
        [% ELSE %]
31
        [% ELSE %]
31
          <option value="f">Tactile material</option>
32
          <option value="f">[% t('Tactile material') %]</option>
32
        [% END %]
33
        [% END %]
33
        [% IF ( f0g ) %]
34
        [% IF ( f0g ) %]
34
          <option value="g" selected="selected">Projected graphic</option>
35
          <option value="g" selected="selected">[% t('Projected graphic') %]</option>
35
        [% ELSE %]
36
        [% ELSE %]
36
          <option value="g">Projected graphic</option>
37
          <option value="g">[% t('Projected graphic') %]</option>
37
        [% END %]
38
        [% END %]
38
        [% IF ( f0h ) %]
39
        [% IF ( f0h ) %]
39
          <option value="h" selected="selected">Microform</option>
40
          <option value="h" selected="selected">[% t('Microform') %]</option>
40
        [% ELSE %]
41
        [% ELSE %]
41
          <option value="h">Microform</option>
42
          <option value="h">[% t('Microform') %]</option>
42
        [% END %]
43
        [% END %]
43
        [% IF ( f0k ) %]
44
        [% IF ( f0k ) %]
44
          <option value="k" selected="selected">Nonprojected graphic</option>
45
          <option value="k" selected="selected">[% t('Nonprojected graphic') %]</option>
45
        [% ELSE %]
46
        [% ELSE %]
46
          <option value="k">Nonprojected graphic</option>
47
          <option value="k">[% t('Nonprojected graphic') %]</option>
47
        [% END %]
48
        [% END %]
48
        [% IF ( f0m ) %]
49
        [% IF ( f0m ) %]
49
          <option value="m" selected="selected">Motion picture</option>
50
          <option value="m" selected="selected">[% t('Motion picture') %]</option>
50
        [% ELSE %]
51
        [% ELSE %]
51
          <option value="m">Motion picture</option>
52
          <option value="m">[% t('Motion picture') %]</option>
52
        [% END %]
53
        [% END %]
53
        [% IF ( f0o ) %]
54
        [% IF ( f0o ) %]
54
          <option value="o" selected="selected">Kit</option>
55
          <option value="o" selected="selected">[% t('Kit') %]</option>
55
        [% ELSE %]
56
        [% ELSE %]
56
          <option value="o">Kit</option>
57
          <option value="o">[% t('Kit') %]</option>
57
        [% END %]
58
        [% END %]
58
        [% IF ( f0q ) %]
59
        [% IF ( f0q ) %]
59
          <option value="q" selected="selected">Notated music</option>
60
          <option value="q" selected="selected">[% t('Notated music') %]</option>
60
        [% ELSE %]
61
        [% ELSE %]
61
          <option value="q">Notated music</option>
62
          <option value="q">[% t('Notated music') %]</option>
62
        [% END %]
63
        [% END %]
63
        [% IF ( f0r ) %]
64
        [% IF ( f0r ) %]
64
          <option value="r" selected="selected">Remote-sensing image</option>
65
          <option value="r" selected="selected">[% t('Remote-sensing image') %]</option>
65
        [% ELSE %]
66
        [% ELSE %]
66
          <option value="r">Remote-sensing image</option>
67
          <option value="r">[% t('Remote-sensing image') %]</option>
67
        [% END %]
68
        [% END %]
68
        [% IF ( f0s ) %]
69
        [% IF ( f0s ) %]
69
          <option value="s" selected="selected">Sound recording</option>
70
          <option value="s" selected="selected">[% t('Sound recording') %]</option>
70
        [% ELSE %]
71
        [% ELSE %]
71
          <option value="s">Sound recording</option>
72
          <option value="s">[% t('Sound recording') %]</option>
72
        [% END %]
73
        [% END %]
73
        [% IF ( f0t ) %]
74
        [% IF ( f0t ) %]
74
          <option value="t" selected="selected">Text</option>
75
          <option value="t" selected="selected">[% t('Text') %]</option>
75
        [% ELSE %]
76
        [% ELSE %]
76
          <option value="t">Text</option>
77
          <option value="t">[% t('Text') %]</option>
77
        [% END %]
78
        [% END %]
78
        [% IF ( f0v ) %]
79
        [% IF ( f0v ) %]
79
          <option value="v" selected="selected">Videorecording</option>
80
          <option value="v" selected="selected">[% t('Videorecording') %]</option>
80
        [% ELSE %]
81
        [% ELSE %]
81
          <option value="v">Videorecording</option>
82
          <option value="v">[% t('Videorecording') %]</option>
82
        [% END %]
83
        [% END %]
83
        [% IF ( f0z ) %]
84
        [% IF ( f0z ) %]
84
          <option value="z" selected="selected">Unspecified</option>
85
          <option value="z" selected="selected">[% t('Unspecified') %]</option>
85
        [% ELSE %]
86
        [% ELSE %]
86
          <option value="z">Unspecified</option>
87
          <option value="z">[% t('Unspecified') %]</option>
87
        [% END %]
88
        [% END %]
88
      </select></p>
89
      </select></p>
89
90
90
<div id="choices">
91
<div id="choices">
91
</div>
92
</div>
92
93
93
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
94
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Cancel') %]</a></fieldset>
94
</form>
95
</form>
95
96
96
[% MACRO jsinclude BLOCK %]
97
[% MACRO jsinclude BLOCK %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008.tt (-8 / +9 lines)
Lines 1-26 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% USE Asset %]
2
[% USE Asset %]
2
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Cataloging &rsaquo; 008 builder</title>
5
<title>[% t('Koha › Cataloging › 008 builder') %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
6
</head>
7
</head>
7
8
8
<body id="cat_marc21_field_008" class="cat" style="padding:1em;" onload="loadXmlValues()">
9
<body id="cat_marc21_field_008" class="cat" style="padding:1em;" onload="loadXmlValues()">
9
<h3> 008 Fixed-length data elements--Additional material characteristics--General information</h3>
10
<h3> [% t('008 Fixed-length data elements--Additional material characteristics--General information') %]</h3>
10
11
11
<table>
12
<table>
12
    <tr id="tr_result">
13
    <tr id="tr_result">
13
    </tr>
14
    </tr>
14
</table>
15
</table>
15
<h4 id="h4_result">&quot;[% result %]&quot;</h4>
16
<h4 id="h4_result">"[% result %]"</h4>
16
17
17
<form name="f_pop" id="f_pop" onsubmit="report()" action="">
18
<form name="f_pop" id="f_pop" onsubmit="report()" action="">
18
    <div id="toolbar">
19
    <div id="toolbar">
19
        <div class="btn-group">
20
        <div class="btn-group">
20
            <button type="submit" class="btn btn-default btn-sm"><i class="fa fa-save"></i> Save</button>
21
            <button type="submit" class="btn btn-default btn-sm"><i class="fa fa-save"></i> [% t('Save') %]</button>
21
        </div>
22
        </div>
22
        <div class="btn-group">
23
        <div class="btn-group">
23
            <button type="button" class="btn btn-default btn-sm close_window"><i class="fa fa-remove"></i> Cancel</button>
24
            <button type="button" class="btn btn-default btn-sm close_window"><i class="fa fa-remove"></i> [% t('Cancel') %]</button>
24
        </div>
25
        </div>
25
    </div>
26
    </div>
26
27
Lines 29-38 Link Here
29
<input type="hidden" name="result" id="result" value="[% result %]" />
30
<input type="hidden" name="result" id="result" value="[% result %]" />
30
<table id="table_material_types">
31
<table id="table_material_types">
31
    <tr id="tr_material_types">
32
    <tr id="tr_material_types">
32
        <td><label for="material_type" title="Select a type of material to specify the variable values">Type of Material</label></td>
33
        <td><label for="material_type" title="[% t('Select a type of material to specify the variable values') %]">[% t('Type of Material') %]</label></td>
33
        <td>
34
        <td>
34
            <select name="material_type" id="material_type" title="Select a type of material to specify the variable values" onchange="changeTypeofMaterial(this.form)">
35
            <select name="material_type" id="material_type" title="[% t('Select a type of material to specify the variable values') %]" onchange="changeTypeofMaterial(this.form)">
35
                <option value="">Select a type of material</option>
36
                <option value="">[% t('Select a type of material') %]</option>
36
            </select>
37
            </select>
37
        </td>
38
        </td>
38
    </tr>
39
    </tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008_authorities.tt (-244 / +245 lines)
Lines 1-718 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Authorities &rsaquo; 008 builder</title>
4
<title>[% t('Koha › Authorities › 008 builder') %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
6
</head>
6
7
7
<body id="cat_marc21_field_008_authorities" class="cat" style="padding:1em;">
8
<body id="cat_marc21_field_008_authorities" class="cat" style="padding:1em;">
8
<h3> 008 Fixed-length data elements</h3>
9
<h3> [% t('008 Fixed-length data elements') %]</h3>
9
<form name="f_pop" onsubmit="report()" action="">
10
<form name="f_pop" onsubmit="report()" action="">
10
<input type="hidden" name="plugin_name" value="marc21_field_008_authorities.pl" />
11
<input type="hidden" name="plugin_name" value="marc21_field_008_authorities.pl" />
11
<input name="f1" value="[% f1 %]" type="hidden" />
12
<input name="f1" value="[% f1 %]" type="hidden" />
12
<table>
13
<table>
13
	<tr>
14
	<tr>
14
		<td>00-05- Date entered on file</td>
15
		<td>[% t('00-05- Date entered on file') %]</td>
15
		<td>[% f1 %]</td>
16
		<td>[% f1 %]</td>
16
	</tr>
17
	</tr>
17
	<tr>
18
	<tr>
18
		<td><label for="f6">06- Direct or indirect geographic subdivision</label></td>
19
		<td><label for="f6">[% t('06- Direct or indirect geographic subdivision') %]</label></td>
19
		<td>
20
		<td>
20
			<select name="f6" id="f6" size="1">
21
			<select name="f6" id="f6" size="1">
21
            [% IF ( f6 ) %]
22
            [% IF ( f6 ) %]
22
                <option value=" " selected="selected">#- Not subdivided geographically</option>
23
                <option value=" " selected="selected">[% t('#- Not subdivided geographically') %]</option>
23
            [% ELSE %]
24
            [% ELSE %]
24
                <option value=" ">#- Not subdivided geographically</option>
25
                <option value=" ">[% t('#- Not subdivided geographically') %]</option>
25
            [% END %]
26
            [% END %]
26
            [% IF ( f6d ) %]
27
            [% IF ( f6d ) %]
27
                <option value="d" selected="selected">d- Subdivided geographically&mdash;direct</option>
28
                <option value="d" selected="selected">[% t('d- Subdivided geographically—direct') %]</option>
28
            [% ELSE %]
29
            [% ELSE %]
29
                <option value="d">d- Subdivided geographically&mdash;direct</option>
30
                <option value="d">[% t('d- Subdivided geographically—direct') %]</option>
30
            [% END %]
31
            [% END %]
31
            [% IF ( f6i ) %]
32
            [% IF ( f6i ) %]
32
                <option value="i" selected="selected">i- Subdivided geographically&mdash;indirect</option>
33
                <option value="i" selected="selected">[% t('i- Subdivided geographically—indirect') %]</option>
33
            [% ELSE %]
34
            [% ELSE %]
34
                <option value="i">i- Subdivided geographically&mdash;indirect</option>
35
                <option value="i">[% t('i- Subdivided geographically—indirect') %]</option>
35
            [% END %]
36
            [% END %]
36
            [% IF ( f6n ) %]
37
            [% IF ( f6n ) %]
37
                <option value="n" selected="selected">n- Not applicable</option>
38
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
38
            [% ELSE %]
39
            [% ELSE %]
39
                <option value="n">n- Not applicable</option>
40
                <option value="n">[% t('n- Not applicable') %]</option>
40
            [% END %]
41
            [% END %]
41
            [% IF ( f6pipe ) %]
42
            [% IF ( f6pipe ) %]
42
                <option value="|" selected="selected">|- No attempt to code</option>
43
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
43
            [% ELSE %]
44
            [% ELSE %]
44
                <option value="|">|- No attempt to code</option>
45
                <option value="|">[% t('|- No attempt to code') %]</option>
45
            [% END %]
46
            [% END %]
46
			</select>
47
			</select>
47
		</td>
48
		</td>
48
	</tr>
49
	</tr>
49
50
50
    <tr>
51
    <tr>
51
        <td><label for="f7">07- Romanization scheme</label></td>
52
        <td><label for="f7">[% t('07- Romanization scheme') %]</label></td>
52
        <td>
53
        <td>
53
            <select name="f7" id="f7" size="1">
54
            <select name="f7" id="f7" size="1">
54
            [% IF ( f7a ) %]
55
            [% IF ( f7a ) %]
55
                <option value="a" selected="selected">a- International standard</option>
56
                <option value="a" selected="selected">[% t('a- International standard') %]</option>
56
            [% ELSE %]
57
            [% ELSE %]
57
                <option value="a">a- International standard</option>
58
                <option value="a">[% t('a- International standard') %]</option>
58
            [% END %]
59
            [% END %]
59
            [% IF ( f7b ) %]
60
            [% IF ( f7b ) %]
60
                <option value="b" selected="selected">b- National standard</option>
61
                <option value="b" selected="selected">[% t('b- National standard') %]</option>
61
            [% ELSE %]
62
            [% ELSE %]
62
                <option value="b">b- National standard</option>
63
                <option value="b">[% t('b- National standard') %]</option>
63
            [% END %]
64
            [% END %]
64
            [% IF ( f7c ) %]
65
            [% IF ( f7c ) %]
65
                <option value="c" selected="selected">c- National library association standard</option>
66
                <option value="c" selected="selected">[% t('c- National library association standard') %]</option>
66
            [% ELSE %]
67
            [% ELSE %]
67
                <option value="c">c- National library association standard</option>
68
                <option value="c">[% t('c- National library association standard') %]</option>
68
            [% END %]
69
            [% END %]
69
            [% IF ( f7d ) %]
70
            [% IF ( f7d ) %]
70
                <option value="d" selected="selected">d- National library or bibliographic agency standard</option>
71
                <option value="d" selected="selected">[% t('d- National library or bibliographic agency standard') %]</option>
71
            [% ELSE %]
72
            [% ELSE %]
72
                <option value="d">d- National library or bibliographic agency standard</option>
73
                <option value="d">[% t('d- National library or bibliographic agency standard') %]</option>
73
            [% END %]
74
            [% END %]
74
            [% IF ( f7e ) %]
75
            [% IF ( f7e ) %]
75
                <option value="e" selected="selected">e- Local standard</option>
76
                <option value="e" selected="selected">[% t('e- Local standard') %]</option>
76
            [% ELSE %]
77
            [% ELSE %]
77
                <option value="e">e- Local standard</option>
78
                <option value="e">[% t('e- Local standard') %]</option>
78
            [% END %]
79
            [% END %]
79
            [% IF ( f7f ) %]
80
            [% IF ( f7f ) %]
80
                <option value="f" selected="selected">f- Standard of unknown origin</option>
81
                <option value="f" selected="selected">[% t('f- Standard of unknown origin') %]</option>
81
            [% ELSE %]
82
            [% ELSE %]
82
                <option value="f">f- Standard of unknown origin</option>
83
                <option value="f">[% t('f- Standard of unknown origin') %]</option>
83
            [% END %]
84
            [% END %]
84
            [% IF ( f7g ) %]
85
            [% IF ( f7g ) %]
85
                <option value="g" selected="selected">g- Conventional romanization or conventional form of name in language of cataloging agency</option>
86
                <option value="g" selected="selected">[% t('g- Conventional romanization or conventional form of name in language of cataloging agency') %]</option>
86
            [% ELSE %]
87
            [% ELSE %]
87
                <option value="g">g- Conventional romanization or conventional form of name in language of cataloging agency</option>
88
                <option value="g">[% t('g- Conventional romanization or conventional form of name in language of cataloging agency') %]</option>
88
            [% END %]
89
            [% END %]
89
            [% IF ( f7n ) %]
90
            [% IF ( f7n ) %]
90
                <option value="n" selected="selected">n- Not applicable</option>
91
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
91
            [% ELSE %]
92
            [% ELSE %]
92
                <option value="n">n- Not applicable</option>
93
                <option value="n">[% t('n- Not applicable') %]</option>
93
            [% END %]
94
            [% END %]
94
            [% IF ( f7pipe ) %]
95
            [% IF ( f7pipe ) %]
95
                <option value="|" selected="selected">|- No attempt to code</option>
96
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
96
            [% ELSE %]
97
            [% ELSE %]
97
                <option value="|">|- No attempt to code</option>
98
                <option value="|">[% t('|- No attempt to code') %]</option>
98
            [% END %]
99
            [% END %]
99
            </select>
100
            </select>
100
        </td>
101
        </td>
101
    </tr>
102
    </tr>
102
    <tr>
103
    <tr>
103
        <td><label for="f8">08- Language of catalog</label></td>
104
        <td><label for="f8">[% t('08- Language of catalog') %]</label></td>
104
        <td>
105
        <td>
105
            <select name="f8" id="f8" size="1">
106
            <select name="f8" id="f8" size="1">
106
            [% IF ( f8 ) %]
107
            [% IF ( f8 ) %]
107
                <option value=" " selected="selected">#- No information provided</option>
108
                <option value=" " selected="selected">[% t('#- No information provided') %]</option>
108
            [% ELSE %]
109
            [% ELSE %]
109
                <option value=" ">#- No information provided</option>
110
                <option value=" ">[% t('#- No information provided') %]</option>
110
            [% END %]
111
            [% END %]
111
            [% IF ( f8b ) %]
112
            [% IF ( f8b ) %]
112
                <option value="b" selected="selected">b- English and French</option>
113
                <option value="b" selected="selected">[% t('b- English and French') %]</option>
113
            [% ELSE %]
114
            [% ELSE %]
114
                <option value="b">b- English and French</option>
115
                <option value="b">[% t('b- English and French') %]</option>
115
            [% END %]
116
            [% END %]
116
            [% IF ( f8e ) %]
117
            [% IF ( f8e ) %]
117
                <option value="e" selected="selected">e- English only</option>
118
                <option value="e" selected="selected">[% t('e- English only') %]</option>
118
            [% ELSE %]
119
            [% ELSE %]
119
                <option value="e">e- English only</option>
120
                <option value="e">[% t('e- English only') %]</option>
120
            [% END %]
121
            [% END %]
121
            [% IF ( f8f ) %]
122
            [% IF ( f8f ) %]
122
                <option value="f" selected="selected">f- French only</option>
123
                <option value="f" selected="selected">[% t('f- French only') %]</option>
123
            [% ELSE %]
124
            [% ELSE %]
124
                <option value="f">f- French only</option>
125
                <option value="f">[% t('f- French only') %]</option>
125
            [% END %]
126
            [% END %]
126
            [% IF ( f8pipe ) %]
127
            [% IF ( f8pipe ) %]
127
                <option value="|" selected="selected">|- No attempt to code</option>
128
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
128
            [% ELSE %]
129
            [% ELSE %]
129
                <option value="|">|- No attempt to code</option>
130
                <option value="|">[% t('|- No attempt to code') %]</option>
130
            [% END %]
131
            [% END %]
131
            </select>
132
            </select>
132
        </td>
133
        </td>
133
    </tr>
134
    </tr>
134
    <tr>
135
    <tr>
135
        <td><label for="f9">09- Kind of record</label></td>
136
        <td><label for="f9">[% t('09- Kind of record') %]</label></td>
136
        <td>
137
        <td>
137
            <select name="f9" id="f9" size="1">
138
            <select name="f9" id="f9" size="1">
138
            [% IF ( f9a ) %]
139
            [% IF ( f9a ) %]
139
                <option value="a" selected="selected">a- Established heading</option>
140
                <option value="a" selected="selected">[% t('a- Established heading') %]</option>
140
            [% ELSE %]
141
            [% ELSE %]
141
                <option value="a">a- Established heading</option>
142
                <option value="a">[% t('a- Established heading') %]</option>
142
            [% END %]
143
            [% END %]
143
            [% IF ( f9b ) %]
144
            [% IF ( f9b ) %]
144
                <option value="b" selected="selected">b- Untraced reference</option>
145
                <option value="b" selected="selected">[% t('b- Untraced reference') %]</option>
145
            [% ELSE %]
146
            [% ELSE %]
146
                <option value="b">b- Untraced reference</option>
147
                <option value="b">[% t('b- Untraced reference') %]</option>
147
            [% END %]
148
            [% END %]
148
            [% IF ( f9c ) %]
149
            [% IF ( f9c ) %]
149
                <option value="c" selected="selected">c- Traced reference</option>
150
                <option value="c" selected="selected">[% t('c- Traced reference') %]</option>
150
            [% ELSE %]
151
            [% ELSE %]
151
                <option value="c">c- Traced reference</option>
152
                <option value="c">[% t('c- Traced reference') %]</option>
152
            [% END %]
153
            [% END %]
153
            [% IF ( f9d ) %]
154
            [% IF ( f9d ) %]
154
                <option value="d" selected="selected">d- Subdivision</option>
155
                <option value="d" selected="selected">[% t('d- Subdivision') %]</option>
155
            [% ELSE %]
156
            [% ELSE %]
156
                <option value="d">d- Subdivision</option>
157
                <option value="d">[% t('d- Subdivision') %]</option>
157
            [% END %]
158
            [% END %]
158
            [% IF ( f9e ) %]
159
            [% IF ( f9e ) %]
159
                <option value="e" selected="selected">e- Node label</option>
160
                <option value="e" selected="selected">[% t('e- Node label') %]</option>
160
            [% ELSE %]
161
            [% ELSE %]
161
                <option value="e">e- Node label</option>
162
                <option value="e">[% t('e- Node label') %]</option>
162
            [% END %]
163
            [% END %]
163
            [% IF ( f9f ) %]
164
            [% IF ( f9f ) %]
164
                <option value="f" selected="selected">f- Established heading and subdivision</option>
165
                <option value="f" selected="selected">[% t('f- Established heading and subdivision') %]</option>
165
            [% ELSE %]
166
            [% ELSE %]
166
                <option value="f">f- Established heading and subdivision</option>
167
                <option value="f">[% t('f- Established heading and subdivision') %]</option>
167
            [% END %]
168
            [% END %]
168
            [% IF ( f9g ) %]
169
            [% IF ( f9g ) %]
169
                <option value="g" selected="selected">g- Reference and subdivision</option>
170
                <option value="g" selected="selected">[% t('g- Reference and subdivision') %]</option>
170
            [% ELSE %]
171
            [% ELSE %]
171
                <option value="g">g- Reference and subdivision</option>
172
                <option value="g">[% t('g- Reference and subdivision') %]</option>
172
            [% END %]
173
            [% END %]
173
            </select>
174
            </select>
174
        </td>
175
        </td>
175
    </tr>
176
    </tr>
176
    <tr>
177
    <tr>
177
        <td><label for="f10">10- Descriptive cataloging rules</label></td>
178
        <td><label for="f10">[% t('10- Descriptive cataloging rules') %]</label></td>
178
        <td>
179
        <td>
179
            <select name="f10" id="f10" size="1">
180
            <select name="f10" id="f10" size="1">
180
            [% IF ( f10a ) %]
181
            [% IF ( f10a ) %]
181
                <option value="a" selected="selected">a- Earlier rules</option>
182
                <option value="a" selected="selected">[% t('a- Earlier rules') %]</option>
182
            [% ELSE %]
183
            [% ELSE %]
183
                <option value="a">a- Earlier rules</option>
184
                <option value="a">[% t('a- Earlier rules') %]</option>
184
            [% END %]
185
            [% END %]
185
            [% IF ( f10b ) %]
186
            [% IF ( f10b ) %]
186
                <option value="b" selected="selected">b- AACR 1</option>
187
                <option value="b" selected="selected">[% t('b- AACR 1') %]</option>
187
            [% ELSE %]
188
            [% ELSE %]
188
                <option value="b">b- AACR 1</option>
189
                <option value="b">[% t('b- AACR 1') %]</option>
189
            [% END %]
190
            [% END %]
190
            [% IF ( f10c ) %]
191
            [% IF ( f10c ) %]
191
                <option value="c" selected="selected">c- AACR 2</option>
192
                <option value="c" selected="selected">[% t('c- AACR 2') %]</option>
192
            [% ELSE %]
193
            [% ELSE %]
193
                <option value="c">c- AACR 2</option>
194
                <option value="c">[% t('c- AACR 2') %]</option>
194
            [% END %]
195
            [% END %]
195
            [% IF ( f10d ) %]
196
            [% IF ( f10d ) %]
196
                <option value="d" selected="selected">d- AACR 2 compatible heading</option>
197
                <option value="d" selected="selected">[% t('d- AACR 2 compatible heading') %]</option>
197
            [% ELSE %]
198
            [% ELSE %]
198
                <option value="d">d- AACR 2 compatible heading</option>
199
                <option value="d">[% t('d- AACR 2 compatible heading') %]</option>
199
            [% END %]
200
            [% END %]
200
            [% IF ( f10n ) %]
201
            [% IF ( f10n ) %]
201
                <option value="n" selected="selected">n- Not applicable</option>
202
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
202
            [% ELSE %]
203
            [% ELSE %]
203
                <option value="n">n- Not applicable</option>
204
                <option value="n">[% t('n- Not applicable') %]</option>
204
            [% END %]
205
            [% END %]
205
            [% IF ( f10z ) %]
206
            [% IF ( f10z ) %]
206
                <option value="z" selected="selected">z- Other</option>
207
                <option value="z" selected="selected">[% t('z- Other') %]</option>
207
            [% ELSE %]
208
            [% ELSE %]
208
                <option value="z">z- Other</option>
209
                <option value="z">[% t('z- Other') %]</option>
209
            [% END %]
210
            [% END %]
210
            [% IF ( f10pipe ) %]
211
            [% IF ( f10pipe ) %]
211
                <option value="|" selected="selected">|- No attempt to code</option>
212
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
212
            [% ELSE %]
213
            [% ELSE %]
213
                <option value="|">|- No attempt to code</option>
214
                <option value="|">[% t('|- No attempt to code') %]</option>
214
            [% END %]
215
            [% END %]
215
            </select>
216
            </select>
216
        </td>
217
        </td>
217
    </tr>
218
    </tr>
218
    <tr>
219
    <tr>
219
        <td><label for="f11">11- Subject heading system/thesaurus</label></td>
220
        <td><label for="f11">[% t('11- Subject heading system/thesaurus') %]</label></td>
220
        <td>
221
        <td>
221
            <select name="f11" id="f11" size="1">
222
            <select name="f11" id="f11" size="1">
222
            [% IF ( f11a ) %]
223
            [% IF ( f11a ) %]
223
                <option value="a" selected="selected">a- Library of Congress subject headings</option>
224
                <option value="a" selected="selected">[% t('a- Library of Congress subject headings') %]</option>
224
            [% ELSE %]
225
            [% ELSE %]
225
                <option value="a">a- Library of Congress Subject Headings</option>
226
                <option value="a">[% t('a- Library of Congress Subject Headings') %]</option>
226
            [% END %]
227
            [% END %]
227
            [% IF ( f11b ) %]
228
            [% IF ( f11b ) %]
228
                <option value="b" selected="selected">b- LC subject headings for children's literature</option>
229
                <option value="b" selected="selected">[% t('b- LC subject headings for children\'s literature') %]</option>
229
            [% ELSE %]
230
            [% ELSE %]
230
                <option value="b">b- LC subject headings for children's literature</option>
231
                <option value="b">[% t('b- LC subject headings for children\'s literature') %]</option>
231
            [% END %]
232
            [% END %]
232
            [% IF ( f11c ) %]
233
            [% IF ( f11c ) %]
233
                <option value="c" selected="selected">c- Medical subject headings</option>
234
                <option value="c" selected="selected">[% t('c- Medical subject headings') %]</option>
234
            [% ELSE %]
235
            [% ELSE %]
235
                <option value="c">c- Medical subject headings</option>
236
                <option value="c">[% t('c- Medical subject headings') %]</option>
236
            [% END %]
237
            [% END %]
237
            [% IF ( f11d ) %]
238
            [% IF ( f11d ) %]
238
                <option value="d" selected="selected">d- National Agricultural Library subject authority file</option>
239
                <option value="d" selected="selected">[% t('d- National Agricultural Library subject authority file') %]</option>
239
            [% ELSE %]
240
            [% ELSE %]
240
                <option value="d">d- National Agricultural Library subject authority file</option>
241
                <option value="d">[% t('d- National Agricultural Library subject authority file') %]</option>
241
            [% END %]
242
            [% END %]
242
            [% IF ( f11k ) %]
243
            [% IF ( f11k ) %]
243
                <option value="k" selected="selected">k- Canadian subject headings</option>
244
                <option value="k" selected="selected">[% t('k- Canadian subject headings') %]</option>
244
            [% ELSE %]
245
            [% ELSE %]
245
                <option value="k">k- Canadian subject headings</option>
246
                <option value="k">[% t('k- Canadian subject headings') %]</option>
246
            [% END %]
247
            [% END %]
247
            [% IF ( f11n ) %]
248
            [% IF ( f11n ) %]
248
                <option value="n" selected="selected">n- Not applicable</option>
249
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
249
            [% ELSE %]
250
            [% ELSE %]
250
                <option value="n">n- Not applicable</option>
251
                <option value="n">[% t('n- Not applicable') %]</option>
251
            [% END %]
252
            [% END %]
252
            [% IF ( f11r ) %]
253
            [% IF ( f11r ) %]
253
                <option value="r" selected="selected">r- Art and architecture thesaurus</option>
254
                <option value="r" selected="selected">[% t('r- Art and architecture thesaurus') %]</option>
254
            [% ELSE %]
255
            [% ELSE %]
255
                <option value="r">r- Art and architecture thesaurus</option>
256
                <option value="r">[% t('r- Art and architecture thesaurus') %]</option>
256
            [% END %]
257
            [% END %]
257
            [% IF ( f11s ) %]
258
            [% IF ( f11s ) %]
258
                <option value="s" selected="selected">s- Sears list of subject headings</option>
259
                <option value="s" selected="selected">[% t('s- Sears list of subject headings') %]</option>
259
            [% ELSE %]
260
            [% ELSE %]
260
                <option value="s">s- Sears List of Subject Headings</option>
261
                <option value="s">[% t('s- Sears List of Subject Headings') %]</option>
261
            [% END %]
262
            [% END %]
262
            [% IF ( f11v ) %]
263
            [% IF ( f11v ) %]
263
                <option value="v" selected="selected">v- Repertoire de vedettes-matiere</option>
264
                <option value="v" selected="selected">[% t('v- Repertoire de vedettes-matiere') %]</option>
264
            [% ELSE %]
265
            [% ELSE %]
265
                <option value="v">v- Repertoire de vedettes-matiere</option>
266
                <option value="v">[% t('v- Repertoire de vedettes-matiere') %]</option>
266
            [% END %]
267
            [% END %]
267
            [% IF ( f11z ) %]
268
            [% IF ( f11z ) %]
268
                <option value="z" selected="selected">z- Other</option>
269
                <option value="z" selected="selected">[% t('z- Other') %]</option>
269
            [% ELSE %]
270
            [% ELSE %]
270
                <option value="z">z- Other</option>
271
                <option value="z">[% t('z- Other') %]</option>
271
            [% END %]
272
            [% END %]
272
            [% IF ( f11pipe ) %]
273
            [% IF ( f11pipe ) %]
273
                <option value="|" selected="selected">|- No attempt to code</option>
274
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
274
            [% ELSE %]
275
            [% ELSE %]
275
                <option value="|">|- No attempt to code</option>
276
                <option value="|">[% t('|- No attempt to code') %]</option>
276
            [% END %]
277
            [% END %]
277
            </select>
278
            </select>
278
        </td>
279
        </td>
279
    </tr>
280
    </tr>
280
    <tr>
281
    <tr>
281
        <td><label for="f12">12- Type of series</label></td>
282
        <td><label for="f12">[% t('12- Type of series') %]</label></td>
282
        <td>
283
        <td>
283
            <select name="f12" id="f12" size="1">
284
            <select name="f12" id="f12" size="1">
284
            [% IF ( f12a ) %]
285
            [% IF ( f12a ) %]
285
                <option value="a" selected="selected">a- Monographic series</option>
286
                <option value="a" selected="selected">[% t('a- Monographic series') %]</option>
286
            [% ELSE %]
287
            [% ELSE %]
287
                <option value="a">a- Monographic series</option>
288
                <option value="a">[% t('a- Monographic series') %]</option>
288
            [% END %]
289
            [% END %]
289
            [% IF ( f12b ) %]
290
            [% IF ( f12b ) %]
290
                <option value="b" selected="selected">b- Multipart item</option>
291
                <option value="b" selected="selected">[% t('b- Multipart item') %]</option>
291
            [% ELSE %]
292
            [% ELSE %]
292
                <option value="b">b- Multipart item</option>
293
                <option value="b">[% t('b- Multipart item') %]</option>
293
            [% END %]
294
            [% END %]
294
            [% IF ( f12c ) %]
295
            [% IF ( f12c ) %]
295
                <option value="c" selected="selected">c- Series-like phrase</option>
296
                <option value="c" selected="selected">[% t('c- Series-like phrase') %]</option>
296
            [% ELSE %]
297
            [% ELSE %]
297
                <option value="c">c- Series-like phrase</option>
298
                <option value="c">[% t('c- Series-like phrase') %]</option>
298
            [% END %]
299
            [% END %]
299
            [% IF ( f12n ) %]
300
            [% IF ( f12n ) %]
300
                <option value="n" selected="selected">n- Not applicable</option>
301
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
301
            [% ELSE %]
302
            [% ELSE %]
302
                <option value="n">n- Not applicable</option>
303
                <option value="n">[% t('n- Not applicable') %]</option>
303
            [% END %]
304
            [% END %]
304
            [% IF ( f12z ) %]
305
            [% IF ( f12z ) %]
305
                <option value="z" selected="selected">z- Other</option>
306
                <option value="z" selected="selected">[% t('z- Other') %]</option>
306
            [% ELSE %]
307
            [% ELSE %]
307
                <option value="z">z- Other</option>
308
                <option value="z">[% t('z- Other') %]</option>
308
            [% END %]
309
            [% END %]
309
            [% IF ( f12pipe ) %]
310
            [% IF ( f12pipe ) %]
310
                <option value="|" selected="selected">|- No attempt to code</option>
311
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
311
            [% ELSE %]
312
            [% ELSE %]
312
                <option value="|">|- No attempt to code</option>
313
                <option value="|">[% t('|- No attempt to code') %]</option>
313
            [% END %]
314
            [% END %]
314
            </select>
315
            </select>
315
        </td>
316
        </td>
316
    </tr>
317
    </tr>
317
    <tr>
318
    <tr>
318
        <td><label for="f13">13- Numbered or unnumbered series</label></td>
319
        <td><label for="f13">[% t('13- Numbered or unnumbered series') %]</label></td>
319
        <td>
320
        <td>
320
            <select name="f13" id="f13" size="1">
321
            <select name="f13" id="f13" size="1">
321
            [% IF ( f13a ) %]
322
            [% IF ( f13a ) %]
322
                <option value="a" selected="selected">a- Numbered</option>
323
                <option value="a" selected="selected">[% t('a- Numbered') %]</option>
323
            [% ELSE %]
324
            [% ELSE %]
324
                <option value="a">a- Numbered</option>
325
                <option value="a">[% t('a- Numbered') %]</option>
325
            [% END %]
326
            [% END %]
326
            [% IF ( f13b ) %]
327
            [% IF ( f13b ) %]
327
                <option value="b" selected="selected">b- Unnumbered</option>
328
                <option value="b" selected="selected">[% t('b- Unnumbered') %]</option>
328
            [% ELSE %]
329
            [% ELSE %]
329
                <option value="b">b- Unnumbered</option>
330
                <option value="b">[% t('b- Unnumbered') %]</option>
330
            [% END %]
331
            [% END %]
331
            [% IF ( f13c ) %]
332
            [% IF ( f13c ) %]
332
                <option value="c" selected="selected">c- Numbering varies</option>
333
                <option value="c" selected="selected">[% t('c- Numbering varies') %]</option>
333
            [% ELSE %]
334
            [% ELSE %]
334
                <option value="c">c- Numbering varies</option>
335
                <option value="c">[% t('c- Numbering varies') %]</option>
335
            [% END %]
336
            [% END %]
336
            [% IF ( f13n ) %]
337
            [% IF ( f13n ) %]
337
                <option value="n" selected="selected">n- Not applicable</option>
338
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
338
            [% ELSE %]
339
            [% ELSE %]
339
                <option value="n">n- Not applicable</option>
340
                <option value="n">[% t('n- Not applicable') %]</option>
340
            [% END %]
341
            [% END %]
341
            [% IF ( f13pipe ) %]
342
            [% IF ( f13pipe ) %]
342
                <option value="|" selected="selected">|- No attempt to code</option>
343
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
343
            [% ELSE %]
344
            [% ELSE %]
344
                <option value="|">|- No attempt to code</option>
345
                <option value="|">[% t('|- No attempt to code') %]</option>
345
            [% END %]
346
            [% END %]
346
            </select>
347
            </select>
347
        </td>
348
        </td>
348
    </tr>
349
    </tr>
349
    <tr>
350
    <tr>
350
        <td><label for="f14">14- Heading use--main or added entry</label></td>
351
        <td><label for="f14">[% t('14- Heading use--main or added entry') %]</label></td>
351
        <td>
352
        <td>
352
            <select name="f14" id="f14" size="1">
353
            <select name="f14" id="f14" size="1">
353
            [% IF ( f14a ) %]
354
            [% IF ( f14a ) %]
354
                <option value="a" selected="selected">a- Appropriate</option>
355
                <option value="a" selected="selected">[% t('a- Appropriate') %]</option>
355
            [% ELSE %]
356
            [% ELSE %]
356
                <option value="a">a- Appropriate</option>
357
                <option value="a">[% t('a- Appropriate') %]</option>
357
            [% END %]
358
            [% END %]
358
            [% IF ( f14b ) %]
359
            [% IF ( f14b ) %]
359
                <option value="b" selected="selected">b- Not appropriate</option>
360
                <option value="b" selected="selected">[% t('b- Not appropriate') %]</option>
360
            [% ELSE %]
361
            [% ELSE %]
361
                <option value="b">b- Not appropriate</option>
362
                <option value="b">[% t('b- Not appropriate') %]</option>
362
            [% END %]
363
            [% END %]
363
            [% IF ( f14pipe ) %]
364
            [% IF ( f14pipe ) %]
364
                <option value="|" selected="selected">|- No attempt to code</option>
365
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
365
            [% ELSE %]
366
            [% ELSE %]
366
                <option value="|">|- No attempt to code</option>
367
                <option value="|">[% t('|- No attempt to code') %]</option>
367
            [% END %]
368
            [% END %]
368
            </select>
369
            </select>
369
        </td>
370
        </td>
370
    </tr>
371
    </tr>
371
    <tr>
372
    <tr>
372
        <td><label for="f15">15- Heading use--subject added entry</label></td>
373
        <td><label for="f15">[% t('15- Heading use--subject added entry') %]</label></td>
373
        <td>
374
        <td>
374
            <select name="f15" id="f15" size="1">
375
            <select name="f15" id="f15" size="1">
375
            [% IF ( f15a ) %]
376
            [% IF ( f15a ) %]
376
                <option value="a" selected="selected">a- Appropriate</option>
377
                <option value="a" selected="selected">[% t('a- Appropriate') %]</option>
377
            [% ELSE %]
378
            [% ELSE %]
378
                <option value="a">a- Appropriate</option>
379
                <option value="a">[% t('a- Appropriate') %]</option>
379
            [% END %]
380
            [% END %]
380
            [% IF ( f15b ) %]
381
            [% IF ( f15b ) %]
381
                <option value="b" selected="selected">b- Not appropriate</option>
382
                <option value="b" selected="selected">[% t('b- Not appropriate') %]</option>
382
            [% ELSE %]
383
            [% ELSE %]
383
                <option value="b">b- Not appropriate</option>
384
                <option value="b">[% t('b- Not appropriate') %]</option>
384
            [% END %]
385
            [% END %]
385
            [% IF ( f15pipe ) %]
386
            [% IF ( f15pipe ) %]
386
                <option value="|" selected="selected">|- No attempt to code</option>
387
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
387
            [% ELSE %]
388
            [% ELSE %]
388
                <option value="|">|- No attempt to code</option>
389
                <option value="|">[% t('|- No attempt to code') %]</option>
389
            [% END %]
390
            [% END %]
390
            </select>
391
            </select>
391
        </td>
392
        </td>
392
    </tr>
393
    </tr>
393
    <tr>
394
    <tr>
394
        <td><label for="f16">16- Heading use--series added entry</label></td>
395
        <td><label for="f16">[% t('16- Heading use--series added entry') %]</label></td>
395
        <td>
396
        <td>
396
            <select name="f16" id="f16" size="1">
397
            <select name="f16" id="f16" size="1">
397
            [% IF ( f16a ) %]
398
            [% IF ( f16a ) %]
398
                <option value="a" selected="selected">a- Appropriate</option>
399
                <option value="a" selected="selected">[% t('a- Appropriate') %]</option>
399
            [% ELSE %]
400
            [% ELSE %]
400
                <option value="a">a- Appropriate</option>
401
                <option value="a">[% t('a- Appropriate') %]</option>
401
            [% END %]
402
            [% END %]
402
            [% IF ( f16b ) %]
403
            [% IF ( f16b ) %]
403
                <option value="b" selected="selected">b- Not appropriate</option>
404
                <option value="b" selected="selected">[% t('b- Not appropriate') %]</option>
404
            [% ELSE %]
405
            [% ELSE %]
405
                <option value="b">b- Not appropriate</option>
406
                <option value="b">[% t('b- Not appropriate') %]</option>
406
            [% END %]
407
            [% END %]
407
            [% IF ( f16pipe ) %]
408
            [% IF ( f16pipe ) %]
408
                <option value="|" selected="selected">|- No attempt to code</option>
409
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
409
            [% ELSE %]
410
            [% ELSE %]
410
                <option value="|">|- No attempt to code</option>
411
                <option value="|">[% t('|- No attempt to code') %]</option>
411
            [% END %]
412
            [% END %]
412
            </select>
413
            </select>
413
        </td>
414
        </td>
414
    </tr>
415
    </tr>
415
    <tr>
416
    <tr>
416
        <td><label for="f17">17- Type of subject subdivision</label></td>
417
        <td><label for="f17">[% t('17- Type of subject subdivision') %]</label></td>
417
        <td>
418
        <td>
418
            <select name="f17" id="f17" size="1">
419
            <select name="f17" id="f17" size="1">
419
            [% IF ( f17a ) %]
420
            [% IF ( f17a ) %]
420
                <option value="a" selected="selected">a- Topical</option>
421
                <option value="a" selected="selected">[% t('a- Topical') %]</option>
421
            [% ELSE %]
422
            [% ELSE %]
422
                <option value="a">a- Topical</option>
423
                <option value="a">[% t('a- Topical') %]</option>
423
            [% END %]
424
            [% END %]
424
            [% IF ( f17b ) %]
425
            [% IF ( f17b ) %]
425
                <option value="b" selected="selected">b- Form</option>
426
                <option value="b" selected="selected">[% t('b- Form') %]</option>
426
            [% ELSE %]
427
            [% ELSE %]
427
                <option value="b">b- Form</option>
428
                <option value="b">[% t('b- Form') %]</option>
428
            [% END %]
429
            [% END %]
429
            [% IF ( f17c ) %]
430
            [% IF ( f17c ) %]
430
                <option value="c" selected="selected">c- Chronological</option>
431
                <option value="c" selected="selected">[% t('c- Chronological') %]</option>
431
            [% ELSE %]
432
            [% ELSE %]
432
                <option value="c">c- Chronological</option>
433
                <option value="c">[% t('c- Chronological') %]</option>
433
            [% END %]
434
            [% END %]
434
            [% IF ( f17d ) %]
435
            [% IF ( f17d ) %]
435
                <option value="d" selected="selected">d- Geographic</option>
436
                <option value="d" selected="selected">[% t('d- Geographic') %]</option>
436
            [% ELSE %]
437
            [% ELSE %]
437
                <option value="d">d- Geographic</option>
438
                <option value="d">[% t('d- Geographic') %]</option>
438
            [% END %]
439
            [% END %]
439
            [% IF ( f17e ) %]
440
            [% IF ( f17e ) %]
440
                <option value="e" selected="selected">e- Language</option>
441
                <option value="e" selected="selected">[% t('e- Language') %]</option>
441
            [% ELSE %]
442
            [% ELSE %]
442
                <option value="e">e- Language</option>
443
                <option value="e">[% t('e- Language') %]</option>
443
            [% END %]
444
            [% END %]
444
            [% IF ( f17n ) %]
445
            [% IF ( f17n ) %]
445
                <option value="n" selected="selected">n- Not applicable</option>
446
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
446
            [% ELSE %]
447
            [% ELSE %]
447
                <option value="n">n- Not applicable</option>
448
                <option value="n">[% t('n- Not applicable') %]</option>
448
            [% END %]
449
            [% END %]
449
            [% IF ( f17pipe ) %]
450
            [% IF ( f17pipe ) %]
450
                <option value="|" selected="selected">|- No attempt to code</option>
451
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
451
            [% ELSE %]
452
            [% ELSE %]
452
                <option value="|">|- No attempt to code</option>
453
                <option value="|">[% t('|- No attempt to code') %]</option>
453
            [% END %]
454
            [% END %]
454
            </select>
455
            </select>
455
        </td>
456
        </td>
456
    </tr>
457
    </tr>
457
458
458
    <tr>
459
    <tr>
459
        <td>18-27 Undefined character positions</td>
460
        <td>[% t('18-27 Undefined character positions') %]</td>
460
        <td></td>
461
        <td></td>
461
    </tr>
462
    </tr>
462
463
463
    <tr>
464
    <tr>
464
        <td><label for="f28">28- Type of government agency</label></td>
465
        <td><label for="f28">[% t('28- Type of government agency') %]</label></td>
465
        <td>
466
        <td>
466
            <select name="f28" id="f28" size="1">
467
            <select name="f28" id="f28" size="1">
467
            [% IF ( f28 ) %]
468
            [% IF ( f28 ) %]
468
                <option value=" " selected="selected">#- Not a government agency</option>
469
                <option value=" " selected="selected">[% t('#- Not a government agency') %]</option>
469
            [% ELSE %]
470
            [% ELSE %]
470
                <option value=" ">#- Not a government agency</option>
471
                <option value=" ">[% t('#- Not a government agency') %]</option>
471
            [% END %]
472
            [% END %]
472
            [% IF ( f28a ) %]
473
            [% IF ( f28a ) %]
473
                <option value="a" selected="selected">a- Autonomous or semi-autonomous component</option>
474
                <option value="a" selected="selected">[% t('a- Autonomous or semi-autonomous component') %]</option>
474
            [% ELSE %]
475
            [% ELSE %]
475
                <option value="a">a- Autonomous or semi-autonomous component</option>
476
                <option value="a">[% t('a- Autonomous or semi-autonomous component') %]</option>
476
            [% END %]
477
            [% END %]
477
            [% IF ( f28c ) %]
478
            [% IF ( f28c ) %]
478
                <option value="c" selected="selected">c- Multilocal</option>
479
                <option value="c" selected="selected">[% t('c- Multilocal') %]</option>
479
            [% ELSE %]
480
            [% ELSE %]
480
                <option value="c">c- Multilocal</option>
481
                <option value="c">[% t('c- Multilocal') %]</option>
481
            [% END %]
482
            [% END %]
482
            [% IF ( f28f ) %]
483
            [% IF ( f28f ) %]
483
                <option value="f" selected="selected">f- Federal/national</option>
484
                <option value="f" selected="selected">[% t('f- Federal/national') %]</option>
484
            [% ELSE %]
485
            [% ELSE %]
485
                <option value="f">f- Federal/national</option>
486
                <option value="f">[% t('f- Federal/national') %]</option>
486
            [% END %]
487
            [% END %]
487
            [% IF ( f28i ) %]
488
            [% IF ( f28i ) %]
488
                <option value="i" selected="selected">i- International intergovernmental</option>
489
                <option value="i" selected="selected">[% t('i- International intergovernmental') %]</option>
489
            [% ELSE %]
490
            [% ELSE %]
490
                <option value="i">i- International intergovernmental</option>
491
                <option value="i">[% t('i- International intergovernmental') %]</option>
491
            [% END %]
492
            [% END %]
492
            [% IF ( f28l ) %]
493
            [% IF ( f28l ) %]
493
                <option value="l" selected="selected">l- Local</option>
494
                <option value="l" selected="selected">[% t('l- Local') %]</option>
494
            [% ELSE %]
495
            [% ELSE %]
495
                <option value="l">l- Local</option>
496
                <option value="l">[% t('l- Local') %]</option>
496
            [% END %]
497
            [% END %]
497
            [% IF ( f28m ) %]
498
            [% IF ( f28m ) %]
498
                <option value="m" selected="selected">m- Multistate</option>
499
                <option value="m" selected="selected">[% t('m- Multistate') %]</option>
499
            [% ELSE %]
500
            [% ELSE %]
500
                <option value="m">m- Multistate</option>
501
                <option value="m">[% t('m- Multistate') %]</option>
501
            [% END %]
502
            [% END %]
502
            [% IF ( f28o ) %]
503
            [% IF ( f28o ) %]
503
                <option value="o" selected="selected">o- Government agency&mdash;type undetermined</option>
504
                <option value="o" selected="selected">[% t('o- Government agency—type undetermined') %]</option>
504
            [% ELSE %]
505
            [% ELSE %]
505
                <option value="o">o- Government agency&mdash;type undetermined</option>
506
                <option value="o">[% t('o- Government agency—type undetermined') %]</option>
506
            [% END %]
507
            [% END %]
507
            [% IF ( f28s ) %]
508
            [% IF ( f28s ) %]
508
                <option value="s" selected="selected">s- State, provincial, territorial, dependent, etc.</option>
509
                <option value="s" selected="selected">[% t('s- State, provincial, territorial, dependent, etc.') %]</option>
509
            [% ELSE %]
510
            [% ELSE %]
510
                <option value="s">s- State, provincial, territorial, dependent, etc.</option>
511
                <option value="s">[% t('s- State, provincial, territorial, dependent, etc.') %]</option>
511
            [% END %]
512
            [% END %]
512
            [% IF ( f28u ) %]
513
            [% IF ( f28u ) %]
513
                <option value="u" selected="selected">u- Unknown if heading is government agency</option>
514
                <option value="u" selected="selected">[% t('u- Unknown if heading is government agency') %]</option>
514
            [% ELSE %]
515
            [% ELSE %]
515
                <option value="u">u- Unknown if heading is government agency</option>
516
                <option value="u">[% t('u- Unknown if heading is government agency') %]</option>
516
            [% END %]
517
            [% END %]
517
            [% IF ( f28z ) %]
518
            [% IF ( f28z ) %]
518
                <option value="z" selected="selected">z- Other</option>
519
                <option value="z" selected="selected">[% t('z- Other') %]</option>
519
            [% ELSE %]
520
            [% ELSE %]
520
                <option value="z">z- Other</option>
521
                <option value="z">[% t('z- Other') %]</option>
521
            [% END %]
522
            [% END %]
522
            [% IF ( f28pipe ) %]
523
            [% IF ( f28pipe ) %]
523
                <option value="|" selected="selected">|- No attempt to code</option>
524
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
524
            [% ELSE %]
525
            [% ELSE %]
525
                <option value="|">|- No attempt to code</option>
526
                <option value="|">[% t('|- No attempt to code') %]</option>
526
            [% END %]
527
            [% END %]
527
            </select>
528
            </select>
528
        </td>
529
        </td>
529
    </tr>
530
    </tr>
530
    <tr>
531
    <tr>
531
        <td><label for="f29">29- Reference evaluation</label></td>
532
        <td><label for="f29">[% t('29- Reference evaluation') %]</label></td>
532
        <td>
533
        <td>
533
            <select name="f29" id="f29" size="1">
534
            <select name="f29" id="f29" size="1">
534
            [% IF ( f29a ) %]
535
            [% IF ( f29a ) %]
535
                <option value="a" selected="selected">a- Tracings are consistent with the heading</option>
536
                <option value="a" selected="selected">[% t('a- Tracings are consistent with the heading') %]</option>
536
            [% ELSE %]
537
            [% ELSE %]
537
                <option value="a">a- Tracings are consistent with the heading</option>
538
                <option value="a">[% t('a- Tracings are consistent with the heading') %]</option>
538
            [% END %]
539
            [% END %]
539
            [% IF ( f29b ) %]
540
            [% IF ( f29b ) %]
540
                <option value="b" selected="selected">b- Tracings are not necessarily consistent with the heading</option>
541
                <option value="b" selected="selected">[% t('b- Tracings are not necessarily consistent with the heading') %]</option>
541
            [% ELSE %]
542
            [% ELSE %]
542
                <option value="b">b- Tracings are not necessarily consistent with the heading</option>
543
                <option value="b">[% t('b- Tracings are not necessarily consistent with the heading') %]</option>
543
            [% END %]
544
            [% END %]
544
            [% IF ( f29n ) %]
545
            [% IF ( f29n ) %]
545
                <option value="n" selected="selected">n- Not applicable</option>
546
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
546
            [% ELSE %]
547
            [% ELSE %]
547
                <option value="n">n- Not applicable</option>
548
                <option value="n">[% t('n- Not applicable') %]</option>
548
            [% END %]
549
            [% END %]
549
            [% IF ( f29pipe ) %]
550
            [% IF ( f29pipe ) %]
550
                <option value="|" selected="selected">|- No attempt to code</option>
551
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
551
            [% ELSE %]
552
            [% ELSE %]
552
                <option value="|">|- No attempt to code</option>
553
                <option value="|">[% t('|- No attempt to code') %]</option>
553
            [% END %]
554
            [% END %]
554
            </select>
555
            </select>
555
        </td>
556
        </td>
556
    </tr>
557
    </tr>
557
558
558
    <tr>
559
    <tr>
559
        <td>30 Undefined character position</td>
560
        <td>[% t('30 Undefined character position') %]</td>
560
        <td></td>
561
        <td></td>
561
    </tr>
562
    </tr>
562
563
563
    <tr>
564
    <tr>
564
        <td><label for="f31">31- Record update in process</label></td>
565
        <td><label for="f31">[% t('31- Record update in process') %]</label></td>
565
        <td>
566
        <td>
566
            <select name="f31" id="f31" size="1">
567
            <select name="f31" id="f31" size="1">
567
            [% IF ( f31a ) %]
568
            [% IF ( f31a ) %]
568
                <option value="a" selected="selected">a- Record can be used</option>
569
                <option value="a" selected="selected">[% t('a- Record can be used') %]</option>
569
            [% ELSE %]
570
            [% ELSE %]
570
                <option value="a">a- Record can be used</option>
571
                <option value="a">[% t('a- Record can be used') %]</option>
571
            [% END %]
572
            [% END %]
572
            [% IF ( f31b ) %]
573
            [% IF ( f31b ) %]
573
                <option value="b" selected="selected">b- Record is being updated</option>
574
                <option value="b" selected="selected">[% t('b- Record is being updated') %]</option>
574
            [% ELSE %]
575
            [% ELSE %]
575
                <option value="b">b- Record is being updated</option>
576
                <option value="b">[% t('b- Record is being updated') %]</option>
576
            [% END %]
577
            [% END %]
577
            [% IF ( f31pipe ) %]
578
            [% IF ( f31pipe ) %]
578
                <option value="|" selected="selected">|- No attempt to code</option>
579
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
579
            [% ELSE %]
580
            [% ELSE %]
580
                <option value="|">|- No attempt to code</option>
581
                <option value="|">[% t('|- No attempt to code') %]</option>
581
            [% END %]
582
            [% END %]
582
            </select>
583
            </select>
583
        </td>
584
        </td>
584
    </tr>
585
    </tr>
585
    <tr>
586
    <tr>
586
        <td><label for="f32">32- Undifferentiated personal name</label></td>
587
        <td><label for="f32">[% t('32- Undifferentiated personal name') %]</label></td>
587
        <td>
588
        <td>
588
            <select name="f32" id="f32" size="1">
589
            <select name="f32" id="f32" size="1">
589
            [% IF ( f32a ) %]
590
            [% IF ( f32a ) %]
590
                <option value="a" selected="selected">a- Differentiated personal name</option>
591
                <option value="a" selected="selected">[% t('a- Differentiated personal name') %]</option>
591
            [% ELSE %]
592
            [% ELSE %]
592
                <option value="a">a- Differentiated personal name</option>
593
                <option value="a">[% t('a- Differentiated personal name') %]</option>
593
            [% END %]
594
            [% END %]
594
            [% IF ( f32b ) %]
595
            [% IF ( f32b ) %]
595
                <option value="b" selected="selected">b- Undifferentiated personal name</option>
596
                <option value="b" selected="selected">[% t('b- Undifferentiated personal name') %]</option>
596
            [% ELSE %]
597
            [% ELSE %]
597
                <option value="b">b- Undifferentiated personal name</option>
598
                <option value="b">[% t('b- Undifferentiated personal name') %]</option>
598
            [% END %]
599
            [% END %]
599
            [% IF ( f32n ) %]
600
            [% IF ( f32n ) %]
600
                <option value="n" selected="selected">n- Not applicable</option>
601
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
601
            [% ELSE %]
602
            [% ELSE %]
602
                <option value="n">n- Not applicable</option>
603
                <option value="n">[% t('n- Not applicable') %]</option>
603
            [% END %]
604
            [% END %]
604
            [% IF ( f32pipe ) %]
605
            [% IF ( f32pipe ) %]
605
                <option value="|" selected="selected">|- No attempt to code</option>
606
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
606
            [% ELSE %]
607
            [% ELSE %]
607
                <option value="|">|- No attempt to code</option>
608
                <option value="|">[% t('|- No attempt to code') %]</option>
608
            [% END %]
609
            [% END %]
609
            </select>
610
            </select>
610
        </td>
611
        </td>
611
    </tr>
612
    </tr>
612
    <tr>
613
    <tr>
613
        <td><label for="f33">33- Level of establishment</label></td>
614
        <td><label for="f33">[% t('33- Level of establishment') %]</label></td>
614
        <td>
615
        <td>
615
            <select name="f33" id="f33" size="1">
616
            <select name="f33" id="f33" size="1">
616
            [% IF ( f33a ) %]
617
            [% IF ( f33a ) %]
617
                <option value="a" selected="selected">a- Fully established</option>
618
                <option value="a" selected="selected">[% t('a- Fully established') %]</option>
618
            [% ELSE %]
619
            [% ELSE %]
619
                <option value="a">a- Fully established</option>
620
                <option value="a">[% t('a- Fully established') %]</option>
620
            [% END %]
621
            [% END %]
621
            [% IF ( f33b ) %]
622
            [% IF ( f33b ) %]
622
                <option value="b" selected="selected">b- Memorandum</option>
623
                <option value="b" selected="selected">[% t('b- Memorandum') %]</option>
623
            [% ELSE %]
624
            [% ELSE %]
624
                <option value="b">b- Memorandum</option>
625
                <option value="b">[% t('b- Memorandum') %]</option>
625
            [% END %]
626
            [% END %]
626
            [% IF ( f33c ) %]
627
            [% IF ( f33c ) %]
627
                <option value="c" selected="selected">c- Provisional</option>
628
                <option value="c" selected="selected">[% t('c- Provisional') %]</option>
628
            [% ELSE %]
629
            [% ELSE %]
629
                <option value="c">c- Provisional</option>
630
                <option value="c">[% t('c- Provisional') %]</option>
630
            [% END %]
631
            [% END %]
631
            [% IF ( f33d ) %]
632
            [% IF ( f33d ) %]
632
                <option value="d" selected="selected">d- Preliminary</option>
633
                <option value="d" selected="selected">[% t('d- Preliminary') %]</option>
633
            [% ELSE %]
634
            [% ELSE %]
634
                <option value="d">d- Preliminary</option>
635
                <option value="d">[% t('d- Preliminary') %]</option>
635
            [% END %]
636
            [% END %]
636
            [% IF ( f33n ) %]
637
            [% IF ( f33n ) %]
637
                <option value="n" selected="selected">n- Not applicable</option>
638
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
638
            [% ELSE %]
639
            [% ELSE %]
639
                <option value="n">n- Not applicable</option>
640
                <option value="n">[% t('n- Not applicable') %]</option>
640
            [% END %]
641
            [% END %]
641
            [% IF ( f33pipe ) %]
642
            [% IF ( f33pipe ) %]
642
                <option value="|" selected="selected">|- No attempt to code</option>
643
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
643
            [% ELSE %]
644
            [% ELSE %]
644
                <option value="|">|- No attempt to code</option>
645
                <option value="|">[% t('|- No attempt to code') %]</option>
645
            [% END %]
646
            [% END %]
646
            </select>
647
            </select>
647
        </td>
648
        </td>
648
    </tr>
649
    </tr>
649
650
650
    <tr>
651
    <tr>
651
        <td>34-37 Undefined character positions</td>
652
        <td>[% t('34-37 Undefined character positions') %]</td>
652
        <td></td>
653
        <td></td>
653
    </tr>
654
    </tr>
654
655
655
    <tr>
656
    <tr>
656
        <td><label for="f38">38- Modified record</label></td>
657
        <td><label for="f38">[% t('38- Modified record') %]</label></td>
657
        <td>
658
        <td>
658
            <select name="f38" id="f38" size="1">
659
            <select name="f38" id="f38" size="1">
659
            [% IF ( f38 ) %]
660
            [% IF ( f38 ) %]
660
                <option value=" " selected="selected">#- Not modified</option>
661
                <option value=" " selected="selected">[% t('#- Not modified') %]</option>
661
            [% ELSE %]
662
            [% ELSE %]
662
                <option value=" ">#- Not modified</option>
663
                <option value=" ">[% t('#- Not modified') %]</option>
663
            [% END %]
664
            [% END %]
664
            [% IF ( f38s ) %]
665
            [% IF ( f38s ) %]
665
                <option value="s" selected="selected">s- Shortened</option>
666
                <option value="s" selected="selected">[% t('s- Shortened') %]</option>
666
            [% ELSE %]
667
            [% ELSE %]
667
                <option value="s">s- Shortened</option>
668
                <option value="s">[% t('s- Shortened') %]</option>
668
            [% END %]
669
            [% END %]
669
            [% IF ( f38x ) %]
670
            [% IF ( f38x ) %]
670
                <option value="x" selected="selected">x- Missing characters</option>
671
                <option value="x" selected="selected">[% t('x- Missing characters') %]</option>
671
            [% ELSE %]
672
            [% ELSE %]
672
                <option value="x">x- Missing characters</option>
673
                <option value="x">[% t('x- Missing characters') %]</option>
673
            [% END %]
674
            [% END %]
674
            [% IF ( f38pipe ) %]
675
            [% IF ( f38pipe ) %]
675
                <option value="|" selected="selected">|- No attempt to code</option>
676
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
676
            [% ELSE %]
677
            [% ELSE %]
677
                <option value="|">|- No attempt to code</option>
678
                <option value="|">[% t('|- No attempt to code') %]</option>
678
            [% END %]
679
            [% END %]
679
            </select>
680
            </select>
680
        </td>
681
        </td>
681
    </tr>
682
    </tr>
682
    <tr>
683
    <tr>
683
        <td><label for="f39">39- Cataloging source</label></td>
684
        <td><label for="f39">[% t('39- Cataloging source') %]</label></td>
684
        <td>
685
        <td>
685
            <select name="f39" id="f39" size="1">
686
            <select name="f39" id="f39" size="1">
686
            [% IF ( f39 ) %]
687
            [% IF ( f39 ) %]
687
                <option value=" " selected="selected">#- National bibliographic agency</option>
688
                <option value=" " selected="selected">[% t('#- National bibliographic agency') %]</option>
688
            [% ELSE %]
689
            [% ELSE %]
689
                <option value=" ">#- National bibliographic agency</option>
690
                <option value=" ">[% t('#- National bibliographic agency') %]</option>
690
            [% END %]
691
            [% END %]
691
            [% IF ( f39c ) %]
692
            [% IF ( f39c ) %]
692
                <option value="c" selected="selected">c- Cooperative cataloging program</option>
693
                <option value="c" selected="selected">[% t('c- Cooperative cataloging program') %]</option>
693
            [% ELSE %]
694
            [% ELSE %]
694
                <option value="c">c- Cooperative cataloging program</option>
695
                <option value="c">[% t('c- Cooperative cataloging program') %]</option>
695
            [% END %]
696
            [% END %]
696
            [% IF ( f39d ) %]
697
            [% IF ( f39d ) %]
697
                <option value="d" selected="selected">d- Other</option>
698
                <option value="d" selected="selected">[% t('d- Other') %]</option>
698
            [% ELSE %]
699
            [% ELSE %]
699
                <option value="d">d- Other</option>
700
                <option value="d">[% t('d- Other') %]</option>
700
            [% END %]
701
            [% END %]
701
            [% IF ( f39u ) %]
702
            [% IF ( f39u ) %]
702
                <option value="u" selected="selected">u- Unknown</option>
703
                <option value="u" selected="selected">[% t('u- Unknown') %]</option>
703
            [% ELSE %]
704
            [% ELSE %]
704
                <option value="u">u- Unknown</option>
705
                <option value="u">[% t('u- Unknown') %]</option>
705
            [% END %]
706
            [% END %]
706
            [% IF ( f39pipe ) %]
707
            [% IF ( f39pipe ) %]
707
                <option value="|" selected="selected">|- No attempt to code</option>
708
                <option value="|" selected="selected">[% t('|- No attempt to code') %]</option>
708
            [% ELSE %]
709
            [% ELSE %]
709
                <option value="|">|- No attempt to code</option>
710
                <option value="|">[% t('|- No attempt to code') %]</option>
710
            [% END %]
711
            [% END %]
711
            </select>
712
            </select>
712
        </td>
713
        </td>
713
    </tr>
714
    </tr>
714
</table>
715
</table>
715
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
716
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Cancel') %]</a></fieldset>
716
</form>
717
</form>
717
718
718
[% MACRO jsinclude BLOCK %]
719
[% MACRO jsinclude BLOCK %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008_classifications.tt (-62 / +63 lines)
Lines 1-202 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Classifications &rsaquo; 008 builder</title>
4
<title>[% t('Koha › Classifications › 008 builder') %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
6
</head>
6
7
7
<body id="cat_marc21_field_008_classifications" class="cat" style="padding:1em;">
8
<body id="cat_marc21_field_008_classifications" class="cat" style="padding:1em;">
8
<h3> 008 Fixed-length data elements</h3>
9
<h3> [% t('008 Fixed-length data elements') %]</h3>
9
<form name="f_pop" onsubmit="report()" action="">
10
<form name="f_pop" onsubmit="report()" action="">
10
<input type="hidden" name="plugin_name" value="marc21_field_008_classifications.pl" />
11
<input type="hidden" name="plugin_name" value="marc21_field_008_classifications.pl" />
11
<input name="f1" value="[% f1 %]" type="hidden" />
12
<input name="f1" value="[% f1 %]" type="hidden" />
12
<table>
13
<table>
13
    <tr>
14
    <tr>
14
        <td>00-05- Date entered on file</td>
15
        <td>[% t('00-05- Date entered on file') %]</td>
15
        <td>[% f1 %]</td>
16
        <td>[% f1 %]</td>
16
    </tr>
17
    </tr>
17
    <tr>
18
    <tr>
18
        <td><label for="f6">06- Kind of record</label></td>
19
        <td><label for="f6">[% t('06- Kind of record') %]</label></td>
19
        <td>
20
        <td>
20
            <select name="f6" id="f6" size="1">
21
            <select name="f6" id="f6" size="1">
21
            [% IF ( f6a ) %]
22
            [% IF ( f6a ) %]
22
                <option value="a" selected="selected">a- Schedule record</option>
23
                <option value="a" selected="selected">[% t('a- Schedule record') %]</option>
23
            [% ELSE %]
24
            [% ELSE %]
24
                <option value="a">a- Schedule record</option>
25
                <option value="a">[% t('a- Schedule record') %]</option>
25
            [% END %]
26
            [% END %]
26
            [% IF ( f6b ) %]
27
            [% IF ( f6b ) %]
27
                <option value="b" selected="selected">b- Table record</option>
28
                <option value="b" selected="selected">[% t('b- Table record') %]</option>
28
            [% ELSE %]
29
            [% ELSE %]
29
                <option value="b">b- Table record</option>
30
                <option value="b">[% t('b- Table record') %]</option>
30
            [% END %]
31
            [% END %]
31
            [% IF ( f6c ) %]
32
            [% IF ( f6c ) %]
32
                <option value="c" selected="selected">c- Index term record</option>
33
                <option value="c" selected="selected">[% t('c- Index term record') %]</option>
33
            [% ELSE %]
34
            [% ELSE %]
34
                <option value="c">c- Index term record</option>
35
                <option value="c">[% t('c- Index term record') %]</option>
35
            [% END %]
36
            [% END %]
36
            </select>
37
            </select>
37
        </td>
38
        </td>
38
    </tr>
39
    </tr>
39
    <tr>
40
    <tr>
40
        <td><label for="f7">07- Type of number</label></td>
41
        <td><label for="f7">[% t('07- Type of number') %]</label></td>
41
        <td>
42
        <td>
42
            <select name="f7" id="f7" size="1">
43
            <select name="f7" id="f7" size="1">
43
            [% IF ( f7a ) %]
44
            [% IF ( f7a ) %]
44
                <option value="a" selected="selected">a- Single number</option>
45
                <option value="a" selected="selected">[% t('a- Single number') %]</option>
45
            [% ELSE %]
46
            [% ELSE %]
46
                <option value="a">a- Single number</option>
47
                <option value="a">[% t('a- Single number') %]</option>
47
            [% END %]
48
            [% END %]
48
            [% IF ( f7b ) %]
49
            [% IF ( f7b ) %]
49
                <option value="b" selected="selected">b- Defined number span</option>
50
                <option value="b" selected="selected">[% t('b- Defined number span') %]</option>
50
            [% ELSE %]
51
            [% ELSE %]
51
                <option value="b">b- Defined number span</option>
52
                <option value="b">[% t('b- Defined number span') %]</option>
52
            [% END %]
53
            [% END %]
53
            [% IF ( f7c ) %]
54
            [% IF ( f7c ) %]
54
                <option value="c" selected="selected">c- Summary number span</option>
55
                <option value="c" selected="selected">[% t('c- Summary number span') %]</option>
55
            [% ELSE %]
56
            [% ELSE %]
56
                <option value="c">c- Summary number span</option>
57
                <option value="c">[% t('c- Summary number span') %]</option>
57
            [% END %]
58
            [% END %]
58
            [% IF ( f7n ) %]
59
            [% IF ( f7n ) %]
59
                <option value="n" selected="selected">n- Not applicable</option>
60
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
60
            [% ELSE %]
61
            [% ELSE %]
61
                <option value="n">n - Not applicable</option>
62
                <option value="n">[% t('n - Not applicable') %]</option>
62
            [% END %]
63
            [% END %]
63
            </select>
64
            </select>
64
        </td>
65
        </td>
65
    </tr>
66
    </tr>
66
    <tr>
67
    <tr>
67
        <td><label for="f8">08- Classification validity</label></td>
68
        <td><label for="f8">[% t('08- Classification validity') %]</label></td>
68
        <td>
69
        <td>
69
            <select name="f8" id="f8" size="1">
70
            <select name="f8" id="f8" size="1">
70
            [% IF ( f8a ) %]
71
            [% IF ( f8a ) %]
71
                <option value="a" selected="selected">a- Valid</option>
72
                <option value="a" selected="selected">[% t('a- Valid') %]</option>
72
            [% ELSE %]
73
            [% ELSE %]
73
                <option value="a">a- Valid</option>
74
                <option value="a">[% t('a- Valid') %]</option>
74
            [% END %]
75
            [% END %]
75
            [% IF ( f8b ) %]
76
            [% IF ( f8b ) %]
76
                <option value="b" selected="selected">b- First number of span invalid</option>
77
                <option value="b" selected="selected">[% t('b- First number of span invalid') %]</option>
77
            [% ELSE %]
78
            [% ELSE %]
78
                <option value="b">b- First number of span invalid</option>
79
                <option value="b">[% t('b- First number of span invalid') %]</option>
79
            [% END %]
80
            [% END %]
80
            [% IF ( f8c ) %]
81
            [% IF ( f8c ) %]
81
                <option value="c" selected="selected">c- Last number of span invalid</option>
82
                <option value="c" selected="selected">[% t('c- Last number of span invalid') %]</option>
82
            [% ELSE %]
83
            [% ELSE %]
83
                <option value="c">c- Last number of span invalid</option>
84
                <option value="c">[% t('c- Last number of span invalid') %]</option>
84
            [% END %]
85
            [% END %]
85
            [% IF ( f8d ) %]
86
            [% IF ( f8d ) %]
86
                <option value="d" selected="selected">d- Completely invalid</option>
87
                <option value="d" selected="selected">[% t('d- Completely invalid') %]</option>
87
            [% ELSE %]
88
            [% ELSE %]
88
                <option value="d">d- Completely invalid</option>
89
                <option value="d">[% t('d- Completely invalid') %]</option>
89
            [% END %]
90
            [% END %]
90
            [% IF ( f8e ) %]
91
            [% IF ( f8e ) %]
91
                <option value="e" selected="selected">e- Obsolete</option>
92
                <option value="e" selected="selected">[% t('e- Obsolete') %]</option>
92
            [% ELSE %]
93
            [% ELSE %]
93
                <option value="e">e- Obsolete</option>
94
                <option value="e">[% t('e- Obsolete') %]</option>
94
            [% END %]
95
            [% END %]
95
            [% IF ( f8n ) %]
96
            [% IF ( f8n ) %]
96
                <option value="n" selected="selected">n- Not applicable</option>
97
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
97
            [% ELSE %]
98
            [% ELSE %]
98
                <option value="n">n - Not applicable</option>
99
                <option value="n">[% t('n - Not applicable') %]</option>
99
            [% END %]
100
            [% END %]
100
            </select>
101
            </select>
101
        </td>
102
        </td>
102
    </tr>
103
    </tr>
103
    <tr>
104
    <tr>
104
        <td><label for="f9">09- Standard or optional designation</label></td>
105
        <td><label for="f9">[% t('09- Standard or optional designation') %]</label></td>
105
        <td>
106
        <td>
106
            <select name="f9" id="f9" size="1">
107
            <select name="f9" id="f9" size="1">
107
            [% IF ( f9a ) %]
108
            [% IF ( f9a ) %]
108
                <option value="a" selected="selected">a- Standard</option>
109
                <option value="a" selected="selected">[% t('a- Standard') %]</option>
109
            [% ELSE %]
110
            [% ELSE %]
110
                <option value="a">a- Standard</option>
111
                <option value="a">[% t('a- Standard') %]</option>
111
            [% END %]
112
            [% END %]
112
            [% IF ( f9b ) %]
113
            [% IF ( f9b ) %]
113
                <option value="b" selected="selected">b- Optional</option>
114
                <option value="b" selected="selected">[% t('b- Optional') %]</option>
114
            [% ELSE %]
115
            [% ELSE %]
115
                <option value="b">b- Optional</option>
116
                <option value="b">[% t('b- Optional') %]</option>
116
            [% END %]
117
            [% END %]
117
            [% IF ( f9n ) %]
118
            [% IF ( f9n ) %]
118
                <option value="n" selected="selected">n- Not applicable</option>
119
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
119
            [% ELSE %]
120
            [% ELSE %]
120
                <option value="n">n - Not applicable</option>
121
                <option value="n">[% t('n - Not applicable') %]</option>
121
            [% END %]
122
            [% END %]
122
            </select>
123
            </select>
123
        </td>
124
        </td>
124
    </tr>
125
    </tr>
125
    <tr>
126
    <tr>
126
        <td><label for="f10">10- Record update in process</label></td>
127
        <td><label for="f10">[% t('10- Record update in process') %]</label></td>
127
        <td>
128
        <td>
128
            <select name="f10" id="f10" size="1">
129
            <select name="f10" id="f10" size="1">
129
            [% IF ( f10a ) %]
130
            [% IF ( f10a ) %]
130
                <option value="a" selected="selected">a- Record can be used</option>
131
                <option value="a" selected="selected">[% t('a- Record can be used') %]</option>
131
            [% ELSE %]
132
            [% ELSE %]
132
                <option value="a">a- Record can be used</option>
133
                <option value="a">[% t('a- Record can be used') %]</option>
133
            [% END %]
134
            [% END %]
134
            [% IF ( f10b ) %]
135
            [% IF ( f10b ) %]
135
                <option value="b" selected="selected">b- Record is being updated</option>
136
                <option value="b" selected="selected">[% t('b- Record is being updated') %]</option>
136
            [% ELSE %]
137
            [% ELSE %]
137
                <option value="b">b- Record is being updated</option>
138
                <option value="b">[% t('b- Record is being updated') %]</option>
138
            [% END %]
139
            [% END %]
139
            </select>
140
            </select>
140
        </td>
141
        </td>
141
    </tr>
142
    </tr>
142
    <tr>
143
    <tr>
143
        <td><label for="f11">11- Level of establishment</label></td>
144
        <td><label for="f11">[% t('11- Level of establishment') %]</label></td>
144
        <td>
145
        <td>
145
            <select name="f11" id="f11" size="1">
146
            <select name="f11" id="f11" size="1">
146
            [% IF ( f11a ) %]
147
            [% IF ( f11a ) %]
147
                <option value="a" selected="selected">a- Fully established</option>
148
                <option value="a" selected="selected">[% t('a- Fully established') %]</option>
148
            [% ELSE %]
149
            [% ELSE %]
149
                <option value="a">a- Fully established</option>
150
                <option value="a">[% t('a- Fully established') %]</option>
150
            [% END %]
151
            [% END %]
151
            [% IF ( f11c ) %]
152
            [% IF ( f11c ) %]
152
                <option value="c" selected="selected">c- Provisional</option>
153
                <option value="c" selected="selected">[% t('c- Provisional') %]</option>
153
            [% ELSE %]
154
            [% ELSE %]
154
                <option value="c">c- Provisional</option>
155
                <option value="c">[% t('c- Provisional') %]</option>
155
            [% END %]
156
            [% END %]
156
            </select>
157
            </select>
157
        </td>
158
        </td>
158
    </tr>
159
    </tr>
159
    <tr>
160
    <tr>
160
        <td><label for="f12">12- Synthesized number indication</label></td>
161
        <td><label for="f12">[% t('12- Synthesized number indication') %]</label></td>
161
        <td>
162
        <td>
162
            <select name="f12" id="f12" size="1">
163
            <select name="f12" id="f12" size="1">
163
            [% IF ( f12a ) %]
164
            [% IF ( f12a ) %]
164
                <option value="a" selected="selected">a- Not synthesized</option>
165
                <option value="a" selected="selected">[% t('a- Not synthesized') %]</option>
165
            [% ELSE %]
166
            [% ELSE %]
166
                <option value="a">a- Not synthesized</option>
167
                <option value="a">[% t('a- Not synthesized') %]</option>
167
            [% END %]
168
            [% END %]
168
            [% IF ( f12b ) %]
169
            [% IF ( f12b ) %]
169
                <option value="b" selected="selected">b- Synthesized</option>
170
                <option value="b" selected="selected">[% t('b- Synthesized') %]</option>
170
            [% ELSE %]
171
            [% ELSE %]
171
                <option value="b">b- Synthesized</option>
172
                <option value="b">[% t('b- Synthesized') %]</option>
172
            [% END %]
173
            [% END %]
173
            [% IF ( f12n ) %]
174
            [% IF ( f12n ) %]
174
                <option value="n" selected="selected">n- Not applicable</option>
175
                <option value="n" selected="selected">[% t('n- Not applicable') %]</option>
175
            [% ELSE %]
176
            [% ELSE %]
176
                <option value="n">n - Not applicable</option>
177
                <option value="n">[% t('n - Not applicable') %]</option>
177
            [% END %]
178
            [% END %]
178
            </select>
179
            </select>
179
        </td>
180
        </td>
180
    </tr>
181
    </tr>
181
    <tr>
182
    <tr>
182
        <td><label for="f13">13- Display controller</label></td>
183
        <td><label for="f13">[% t('13- Display controller') %]</label></td>
183
        <td>
184
        <td>
184
            <select name="f13" id="f13" size="1">
185
            <select name="f13" id="f13" size="1">
185
            [% IF ( f13a ) %]
186
            [% IF ( f13a ) %]
186
                <option value="a" selected="selected">a- Displayed in standard schedules or tables</option>
187
                <option value="a" selected="selected">[% t('a- Displayed in standard schedules or tables') %]</option>
187
            [% ELSE %]
188
            [% ELSE %]
188
                <option value="a">a- Displayed in standard schedules or tables</option>
189
                <option value="a">[% t('a- Displayed in standard schedules or tables') %]</option>
189
            [% END %]
190
            [% END %]
190
            [% IF ( f13b ) %]
191
            [% IF ( f13b ) %]
191
                <option value="b" selected="selected">b- Extended display</option>
192
                <option value="b" selected="selected">[% t('b- Extended display') %]</option>
192
            [% ELSE %]
193
            [% ELSE %]
193
                <option value="b">b- Extended display</option>
194
                <option value="b">[% t('b- Extended display') %]</option>
194
            [% END %]
195
            [% END %]
195
            </select>
196
            </select>
196
        </td>
197
        </td>
197
    </tr>
198
    </tr>
198
</table>
199
</table>
199
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
200
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Cancel') %]</a></fieldset>
200
</form>
201
</form>
201
202
202
[% MACRO jsinclude BLOCK %]
203
[% MACRO jsinclude BLOCK %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader.tt (-114 / +115 lines)
Lines 1-327 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Cataloging &rsaquo; 000 - Leader builder</title>
4
<title>[% t('Koha › Cataloging › 000 - Leader builder') %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
6
</head>
6
7
7
<body id="cat_marc21_leader" class="cat" style="padding:1em;">
8
<body id="cat_marc21_leader" class="cat" style="padding:1em;">
8
<form name="f_pop" onsubmit="report()" action="">
9
<form name="f_pop" onsubmit="report()" action="">
9
<input type="hidden" name="plugin_name" value="marc21_leader.pl" />
10
<input type="hidden" name="plugin_name" value="marc21_leader.pl" />
10
<h3>000 - Leader</h3>
11
<h3>[% t('000 - Leader') %]</h3>
11
<table>
12
<table>
12
	<tr>
13
	<tr>
13
        <td><span class="label">0-4 Record size</span></td>
14
        <td><span class="label">[% t('0-4 Record size') %]</span></td>
14
		<td>(auto-filled)</td>
15
		<td>[% t('(auto-filled)') %]</td>
15
	</tr>
16
	</tr>
16
	<tr>
17
	<tr>
17
		<td><label for="f5">5- Record status</label></td>
18
		<td><label for="f5">[% t('5- Record status') %]</label></td>
18
		<td>
19
		<td>
19
			<select name="f5" id="f5" size="1">
20
			<select name="f5" id="f5" size="1">
20
			[% IF ( f5a ) %]
21
			[% IF ( f5a ) %]
21
                <option value="a" selected="selected">a- Increase in encoding level</option>
22
                <option value="a" selected="selected">[% t('a- Increase in encoding level') %]</option>
22
			[% ELSE %]
23
			[% ELSE %]
23
                <option value="a">a- Increase in encoding level</option>
24
                <option value="a">[% t('a- Increase in encoding level') %]</option>
24
			[% END %]
25
			[% END %]
25
26
26
			[% IF ( f5c ) %]
27
			[% IF ( f5c ) %]
27
				<option value="c" selected="selected">c- Corrected or revised</option>
28
				<option value="c" selected="selected">[% t('c- Corrected or revised') %]</option>
28
			[% ELSE %]
29
			[% ELSE %]
29
				<option value="c">c- Corrected or revised</option>
30
				<option value="c">[% t('c- Corrected or revised') %]</option>
30
			[% END %]
31
			[% END %]
31
			[% IF ( f5d ) %]
32
			[% IF ( f5d ) %]
32
				<option value="d" selected="selected">d- Deleted</option>
33
				<option value="d" selected="selected">[% t('d- Deleted') %]</option>
33
			[% ELSE %]
34
			[% ELSE %]
34
				<option value="d">d- Deleted</option>
35
				<option value="d">[% t('d- Deleted') %]</option>
35
			[% END %]
36
			[% END %]
36
			[% IF ( f5n ) %]
37
			[% IF ( f5n ) %]
37
				<option value="n" selected="selected">n- New</option>
38
				<option value="n" selected="selected">[% t('n- New') %]</option>
38
			[% ELSE %]
39
			[% ELSE %]
39
				<option value="n">n- New</option>
40
				<option value="n">[% t('n- New') %]</option>
40
			[% END %]
41
			[% END %]
41
			[% IF ( f5p ) %]
42
			[% IF ( f5p ) %]
42
				<option value="p" selected="selected">p- Increase in encoding level from prepublication</option>
43
				<option value="p" selected="selected">[% t('p- Increase in encoding level from prepublication') %]</option>
43
			[% ELSE %]
44
			[% ELSE %]
44
				<option value="p">p- Increase in encoding level from prepublication</option>
45
				<option value="p">[% t('p- Increase in encoding level from prepublication') %]</option>
45
			[% END %]
46
			[% END %]
46
			</select>
47
			</select>
47
		</td>
48
		</td>
48
	</tr>
49
	</tr>
49
	<tr>
50
	<tr>
50
		<td><label for="f6">6- Type of record</label></td>
51
		<td><label for="f6">[% t('6- Type of record') %]</label></td>
51
		<td>
52
		<td>
52
			<select name="f6" id="f6" size="1">
53
			<select name="f6" id="f6" size="1">
53
			[% IF ( f6a ) %]
54
			[% IF ( f6a ) %]
54
				<option value="a" selected="selected">a- Language material</option>
55
				<option value="a" selected="selected">[% t('a- Language material') %]</option>
55
			[% ELSE %]
56
			[% ELSE %]
56
				<option value="a">a- Language material</option>
57
				<option value="a">[% t('a- Language material') %]</option>
57
			[% END %]
58
			[% END %]
58
			[% IF ( f6c ) %]
59
			[% IF ( f6c ) %]
59
				<option value="c" selected="selected">c- Notated music</option>
60
				<option value="c" selected="selected">[% t('c- Notated music') %]</option>
60
			[% ELSE %]
61
			[% ELSE %]
61
				<option value="c">c- Notated music</option>
62
				<option value="c">[% t('c- Notated music') %]</option>
62
			[% END %]
63
			[% END %]
63
			[% IF ( f6d ) %]
64
			[% IF ( f6d ) %]
64
				<option value="d" selected="selected">d- Manuscript notated music</option>
65
				<option value="d" selected="selected">[% t('d- Manuscript notated music') %]</option>
65
			[% ELSE %]
66
			[% ELSE %]
66
				<option value="d">d- Manuscript notated music</option>
67
				<option value="d">[% t('d- Manuscript notated music') %]</option>
67
			[% END %]
68
			[% END %]
68
			[% IF ( f6e ) %]
69
			[% IF ( f6e ) %]
69
				<option value="e" selected="selected">e- Cartographic material</option>
70
				<option value="e" selected="selected">[% t('e- Cartographic material') %]</option>
70
			[% ELSE %]
71
			[% ELSE %]
71
				<option value="e">e- Cartographic material</option>
72
				<option value="e">[% t('e- Cartographic material') %]</option>
72
			[% END %]
73
			[% END %]
73
			[% IF ( f6f ) %]
74
			[% IF ( f6f ) %]
74
				<option value="f" selected="selected">f - Manuscript cartographic material</option>
75
				<option value="f" selected="selected">[% t('f - Manuscript cartographic material') %]</option>
75
			[% ELSE %]
76
			[% ELSE %]
76
				<option value="f">f - Manuscript cartographic material</option>
77
				<option value="f">[% t('f - Manuscript cartographic material') %]</option>
77
			[% END %]
78
			[% END %]
78
			[% IF ( f6g ) %]
79
			[% IF ( f6g ) %]
79
				<option value="g" selected="selected">g - Projected medium</option>
80
				<option value="g" selected="selected">[% t('g - Projected medium') %]</option>
80
			[% ELSE %]
81
			[% ELSE %]
81
				<option value="g">g - Projected medium</option>
82
				<option value="g">[% t('g - Projected medium') %]</option>
82
			[% END %]
83
			[% END %]
83
			[% IF ( f6i ) %]
84
			[% IF ( f6i ) %]
84
				<option value="i" selected="selected">i - Nonmusical sound recording</option>
85
				<option value="i" selected="selected">[% t('i - Nonmusical sound recording') %]</option>
85
			[% ELSE %]
86
			[% ELSE %]
86
				<option value="i">i - Nonmusical sound recording</option>
87
				<option value="i">[% t('i - Nonmusical sound recording') %]</option>
87
			[% END %]
88
			[% END %]
88
			[% IF ( f6j ) %]
89
			[% IF ( f6j ) %]
89
				<option value="j" selected="selected">j - Musical sound recording</option>
90
				<option value="j" selected="selected">[% t('j - Musical sound recording') %]</option>
90
			[% ELSE %]
91
			[% ELSE %]
91
				<option value="j">j - Musical sound recording</option>
92
				<option value="j">[% t('j - Musical sound recording') %]</option>
92
			[% END %]
93
			[% END %]
93
			[% IF ( f6k ) %]
94
			[% IF ( f6k ) %]
94
				<option value="k" selected="selected">k - Two-dimensional nonprojectable graphic</option>
95
				<option value="k" selected="selected">[% t('k - Two-dimensional nonprojectable graphic') %]</option>
95
			[% ELSE %]
96
			[% ELSE %]
96
				<option value="k">k - Two-dimensional nonprojectable graphic</option>
97
				<option value="k">[% t('k - Two-dimensional nonprojectable graphic') %]</option>
97
			[% END %]
98
			[% END %]
98
			[% IF ( f6m ) %]
99
			[% IF ( f6m ) %]
99
				<option value="m" selected="selected">m - Computer file</option>
100
				<option value="m" selected="selected">[% t('m - Computer file') %]</option>
100
			[% ELSE %]
101
			[% ELSE %]
101
				<option value="m">m - Computer file</option>
102
				<option value="m">[% t('m - Computer file') %]</option>
102
			[% END %]
103
			[% END %]
103
			[% IF ( f6o ) %]
104
			[% IF ( f6o ) %]
104
				<option value="o" selected="selected">o - Kit</option>
105
				<option value="o" selected="selected">[% t('o - Kit') %]</option>
105
			[% ELSE %]
106
			[% ELSE %]
106
				<option value="o">o - Kit</option>
107
				<option value="o">[% t('o - Kit') %]</option>
107
			[% END %]
108
			[% END %]
108
			[% IF ( f6p ) %]
109
			[% IF ( f6p ) %]
109
				<option value="p" selected="selected">p - Mixed materials</option>
110
				<option value="p" selected="selected">[% t('p - Mixed materials') %]</option>
110
			[% ELSE %]
111
			[% ELSE %]
111
				<option value="p">p - Mixed materials</option>
112
				<option value="p">[% t('p - Mixed materials') %]</option>
112
			[% END %]
113
			[% END %]
113
			[% IF ( f6r ) %]
114
			[% IF ( f6r ) %]
114
				<option value="r" selected="selected">r - Three-dimensional artifact or naturally occurring object</option>
115
				<option value="r" selected="selected">[% t('r - Three-dimensional artifact or naturally occurring object') %]</option>
115
			[% ELSE %]
116
			[% ELSE %]
116
				<option value="r">r - Three-dimensional artifact or naturally occurring object</option>
117
				<option value="r">[% t('r - Three-dimensional artifact or naturally occurring object') %]</option>
117
			[% END %]
118
			[% END %]
118
			[% IF ( f6t ) %]
119
			[% IF ( f6t ) %]
119
				<option value="t" selected="selected">t - Manuscript language material</option>
120
				<option value="t" selected="selected">[% t('t - Manuscript language material') %]</option>
120
			[% ELSE %]
121
			[% ELSE %]
121
				<option value="t">t - Manuscript language material</option>
122
				<option value="t">[% t('t - Manuscript language material') %]</option>
122
			[% END %]
123
			[% END %]
123
			</select>
124
			</select>
124
		</td>
125
		</td>
125
	</tr>
126
	</tr>
126
	<tr>
127
	<tr>
127
		<td><label for="f7">7- Bibliographic level</label></td>
128
		<td><label for="f7">[% t('7- Bibliographic level') %]</label></td>
128
		<td>
129
		<td>
129
			<select name="f7" id="f7" size="1">
130
			<select name="f7" id="f7" size="1">
130
				[% IF ( f7a ) %]
131
				[% IF ( f7a ) %]
131
					<option value="a" selected="selected">a- Monographic component part</option>
132
					<option value="a" selected="selected">[% t('a- Monographic component part') %]</option>
132
				[% ELSE %]
133
				[% ELSE %]
133
					<option value="a">a- Monographic component part</option>
134
					<option value="a">[% t('a- Monographic component part') %]</option>
134
				[% END %]
135
				[% END %]
135
				[% IF ( f7b ) %]
136
				[% IF ( f7b ) %]
136
					<option value="b" selected="selected">b- Serial component part</option>
137
					<option value="b" selected="selected">[% t('b- Serial component part') %]</option>
137
				[% ELSE %]
138
				[% ELSE %]
138
					<option value="b">b- Serial component part</option>
139
					<option value="b">[% t('b- Serial component part') %]</option>
139
				[% END %]
140
				[% END %]
140
				[% IF ( f7c ) %]
141
				[% IF ( f7c ) %]
141
					<option value="c" selected="selected">c- Collection</option>
142
					<option value="c" selected="selected">[% t('c- Collection') %]</option>
142
				[% ELSE %]
143
				[% ELSE %]
143
					<option value="c">c- Collection</option>
144
					<option value="c">[% t('c- Collection') %]</option>
144
				[% END %]
145
				[% END %]
145
				[% IF ( f7d ) %]
146
				[% IF ( f7d ) %]
146
					<option value="d" selected="selected">d- Subunit</option>
147
					<option value="d" selected="selected">[% t('d- Subunit') %]</option>
147
				[% ELSE %]
148
				[% ELSE %]
148
					<option value="d">d- Subunit</option>
149
					<option value="d">[% t('d- Subunit') %]</option>
149
				[% END %]
150
				[% END %]
150
				[% IF ( f7i ) %]
151
				[% IF ( f7i ) %]
151
					<option value="i" selected="selected">i- Integrating resource</option>
152
					<option value="i" selected="selected">[% t('i- Integrating resource') %]</option>
152
				[% ELSE %]
153
				[% ELSE %]
153
					<option value="i">i- Integrating resource</option>
154
					<option value="i">[% t('i- Integrating resource') %]</option>
154
				[% END %]
155
				[% END %]
155
				[% IF ( f7m ) %]
156
				[% IF ( f7m ) %]
156
					<option value="m" selected="selected">m- Monograph/item</option>
157
					<option value="m" selected="selected">[% t('m- Monograph/item') %]</option>
157
				[% ELSE %]
158
				[% ELSE %]
158
					<option value="m">m- Monograph/item</option>
159
					<option value="m">[% t('m- Monograph/item') %]</option>
159
				[% END %]
160
				[% END %]
160
				[% IF ( f7s ) %]
161
				[% IF ( f7s ) %]
161
					<option value="s" selected="selected">s- Serial</option>
162
					<option value="s" selected="selected">[% t('s- Serial') %]</option>
162
				[% ELSE %]
163
				[% ELSE %]
163
					<option value="s">s- Serial</option>
164
					<option value="s">[% t('s- Serial') %]</option>
164
				[% END %]
165
				[% END %]
165
			</select>
166
			</select>
166
		</td>
167
		</td>
167
	</tr>
168
	</tr>
168
	
169
	
169
	<tr>
170
	<tr>
170
		<td><label for="f8">8- Type of control</label></td>
171
		<td><label for="f8">[% t('8- Type of control') %]</label></td>
171
		<td>
172
		<td>
172
			<select name="f8" id="f8" size="1">
173
			<select name="f8" id="f8" size="1">
173
				[% IF ( f8 ) %]
174
				[% IF ( f8 ) %]
174
					<option value=" " selected="selected">No specific type</option>
175
					<option value=" " selected="selected">[% t('No specific type') %]</option>
175
				[% ELSE %]
176
				[% ELSE %]
176
					<option value=" ">No specific type</option>
177
					<option value=" ">[% t('No specific type') %]</option>
177
				[% END %]
178
				[% END %]
178
				[% IF ( f8a ) %]
179
				[% IF ( f8a ) %]
179
					<option value="a" selected="selected">a- Archival</option>
180
					<option value="a" selected="selected">[% t('a- Archival') %]</option>
180
				[% ELSE %]
181
				[% ELSE %]
181
					<option value="a">a- Archival</option>
182
					<option value="a">[% t('a- Archival') %]</option>
182
				[% END %]
183
				[% END %]
183
			</select>
184
			</select>
184
		</td>
185
		</td>
185
	</tr>
186
	</tr>
186
187
187
	<tr>
188
	<tr>
188
		<td>9- Character coding scheme</td>
189
		<td>[% t('9- Character coding scheme') %]</td>
189
		<td>a - UCS/Unicode (auto-filled)</td>
190
		<td>[% t('a - UCS/Unicode (auto-filled)') %]</td>
190
	</tr>
191
	</tr>
191
	<tr>
192
	<tr>
192
		<td>10-16 indicator/subfields/size</td>
193
		<td>[% t('10-16 indicator/subfields/size') %]</td>
193
		<td>(auto-filled)</td>
194
		<td>[% t('(auto-filled)') %]</td>
194
    </tr>
195
    </tr>
195
    <tr>
196
    <tr>
196
		<td><label for="f17">17- Encoding level</label></td>
197
		<td><label for="f17">[% t('17- Encoding level') %]</label></td>
197
		<td>
198
		<td>
198
			<select name="f17" id="f17" size="1">
199
			<select name="f17" id="f17" size="1">
199
				[% IF ( f17 ) %]
200
				[% IF ( f17 ) %]
200
					<option value=" " selected="selected">full level</option>
201
					<option value=" " selected="selected">[% t('full level') %]</option>
201
				[% ELSE %]
202
				[% ELSE %]
202
					<option value=" ">Full level</option>
203
					<option value=" ">[% t('Full level') %]</option>
203
				[% END %]
204
				[% END %]
204
				[% IF ( f171 ) %]
205
				[% IF ( f171 ) %]
205
					<option value="1" selected="selected">1- Full level, material not examined</option>
206
					<option value="1" selected="selected">[% t('1- Full level, material not examined') %]</option>
206
				[% ELSE %]
207
				[% ELSE %]
207
					<option value="1">1- Full level, material not examined</option>
208
					<option value="1">[% t('1- Full level, material not examined') %]</option>
208
				[% END %]
209
				[% END %]
209
				[% IF ( f172 ) %]
210
				[% IF ( f172 ) %]
210
					<option value="2" selected="selected">2 - Less-than-full level, material not examined</option>
211
					<option value="2" selected="selected">[% t('2 - Less-than-full level, material not examined') %]</option>
211
				[% ELSE %]
212
				[% ELSE %]
212
					<option value="2">2 - Less-than-full level, material not examined</option>
213
					<option value="2">[% t('2 - Less-than-full level, material not examined') %]</option>
213
				[% END %]
214
				[% END %]
214
				[% IF ( f173 ) %]
215
				[% IF ( f173 ) %]
215
					<option value="3" selected="selected">3- Abbreviated level</option>
216
					<option value="3" selected="selected">[% t('3- Abbreviated level') %]</option>
216
				[% ELSE %]
217
				[% ELSE %]
217
					<option value="3">3- Abbreviated level</option>
218
					<option value="3">[% t('3- Abbreviated level') %]</option>
218
				[% END %]
219
				[% END %]
219
				[% IF ( f174 ) %]
220
				[% IF ( f174 ) %]
220
					<option value="4" selected="selected">4- Core level</option>
221
					<option value="4" selected="selected">[% t('4- Core level') %]</option>
221
				[% ELSE %]
222
				[% ELSE %]
222
					<option value="4">4- Core level</option>
223
					<option value="4">[% t('4- Core level') %]</option>
223
				[% END %]
224
				[% END %]
224
				[% IF ( f175 ) %]
225
				[% IF ( f175 ) %]
225
					<option value="5" selected="selected">5- Partial (preliminary) level</option>
226
					<option value="5" selected="selected">[% t('5- Partial (preliminary) level') %]</option>
226
				[% ELSE %]
227
				[% ELSE %]
227
					<option value="5">5- Partial (preliminary) level</option>
228
					<option value="5">[% t('5- Partial (preliminary) level') %]</option>
228
				[% END %]
229
				[% END %]
229
				[% IF ( f177 ) %]
230
				[% IF ( f177 ) %]
230
					<option value="7" selected="selected">7- Minimal level</option>
231
					<option value="7" selected="selected">[% t('7- Minimal level') %]</option>
231
				[% ELSE %]
232
				[% ELSE %]
232
					<option value="7">7- Minimal level</option>
233
					<option value="7">[% t('7- Minimal level') %]</option>
233
				[% END %]
234
				[% END %]
234
				[% IF ( f178 ) %]
235
				[% IF ( f178 ) %]
235
					<option value="8" selected="selected">8- Prepublication level</option>
236
					<option value="8" selected="selected">[% t('8- Prepublication level') %]</option>
236
				[% ELSE %]
237
				[% ELSE %]
237
					<option value="8">8- Prepublication level</option>
238
					<option value="8">[% t('8- Prepublication level') %]</option>
238
				[% END %]
239
				[% END %]
239
				[% IF ( f17u ) %]
240
				[% IF ( f17u ) %]
240
					<option value="u" selected="selected">u - Unknown</option>
241
					<option value="u" selected="selected">[% t('u - Unknown') %]</option>
241
				[% ELSE %]
242
				[% ELSE %]
242
					<option value="u">u - Unknown</option>
243
					<option value="u">[% t('u - Unknown') %]</option>
243
				[% END %]
244
				[% END %]
244
				[% IF ( f17z ) %]
245
				[% IF ( f17z ) %]
245
					<option value="z" selected="selected">z- Not applicable</option>
246
					<option value="z" selected="selected">[% t('z- Not applicable') %]</option>
246
				[% ELSE %]
247
				[% ELSE %]
247
					<option value="z">z- Not applicable</option>
248
					<option value="z">[% t('z- Not applicable') %]</option>
248
				[% END %]
249
				[% END %]
249
			</select>
250
			</select>
250
		</td>
251
		</td>
251
	</tr>
252
	</tr>
252
253
253
	<tr>
254
	<tr>
254
		<td><label for="f18">18 - Descriptive cataloging form</label></td>
255
		<td><label for="f18">[% t('18 - Descriptive cataloging form') %]</label></td>
255
		<td>
256
		<td>
256
			<select name="f18" id="f18" size="1">
257
			<select name="f18" id="f18" size="1">
257
				[% IF ( f18 ) %]
258
				[% IF ( f18 ) %]
258
					<option value=" " selected="selected">Non-ISBD</option>
259
					<option value=" " selected="selected">[% t('Non-ISBD') %]</option>
259
				[% ELSE %]
260
				[% ELSE %]
260
					<option value=" ">Non-ISBD</option>
261
					<option value=" ">[% t('Non-ISBD') %]</option>
261
				[% END %]
262
				[% END %]
262
				[% IF ( f18a ) %]
263
				[% IF ( f18a ) %]
263
					<option value="a" selected="selected">a- AACR 2</option>
264
					<option value="a" selected="selected">[% t('a- AACR 2') %]</option>
264
				[% ELSE %]
265
				[% ELSE %]
265
					<option value="a">a- AACR 2</option>
266
					<option value="a">[% t('a- AACR 2') %]</option>
266
				[% END %]
267
				[% END %]
267
				[% IF ( f18c ) %]
268
				[% IF ( f18c ) %]
268
					<option value="c" selected="selected">c- ISBD punctuation omitted</option>
269
					<option value="c" selected="selected">[% t('c- ISBD punctuation omitted') %]</option>
269
				[% ELSE %]
270
				[% ELSE %]
270
					<option value="c">c- ISBD punctuation omitted</option>
271
					<option value="c">[% t('c- ISBD punctuation omitted') %]</option>
271
				[% END %]
272
				[% END %]
272
				[% IF ( f18i ) %]
273
				[% IF ( f18i ) %]
273
					<option value="i" selected="selected">i- ISBD punctuation included</option>
274
					<option value="i" selected="selected">[% t('i- ISBD punctuation included') %]</option>
274
				[% ELSE %]
275
				[% ELSE %]
275
					<option value="i">i- ISBD punctuation included</option>
276
					<option value="i">[% t('i- ISBD punctuation included') %]</option>
276
				[% END %]
277
				[% END %]
277
                [% IF ( f18n ) %]
278
                [% IF ( f18n ) %]
278
                    <option value="n" selected="selected">n- Non-ISBD punctuation omitted</option>
279
                    <option value="n" selected="selected">[% t('n- Non-ISBD punctuation omitted') %]</option>
279
                [% ELSE %]
280
                [% ELSE %]
280
                    <option value="n">n- Non-ISBD punctuation omitted</option>
281
                    <option value="n">[% t('n- Non-ISBD punctuation omitted') %]</option>
281
                [% END %]
282
                [% END %]
282
				[% IF ( f18u ) %]
283
				[% IF ( f18u ) %]
283
					<option value="u" selected="selected">u- Unknown</option>
284
					<option value="u" selected="selected">[% t('u- Unknown') %]</option>
284
				[% ELSE %]
285
				[% ELSE %]
285
					<option value="u">u- Unknown</option>
286
					<option value="u">[% t('u- Unknown') %]</option>
286
				[% END %]
287
				[% END %]
287
			</select>
288
			</select>
288
		</td>
289
		</td>
289
	</tr>
290
	</tr>
290
	
291
	
291
	<tr>
292
	<tr>
292
		<td><label for="f19">19 - Multipart resource record level</label></td>
293
		<td><label for="f19">[% t('19 - Multipart resource record level') %]</label></td>
293
		<td>
294
		<td>
294
			<select name="f19" id="f19" size="1">
295
			<select name="f19" id="f19" size="1">
295
				[% IF ( f19 ) %]
296
				[% IF ( f19 ) %]
296
					<option value=" " selected="selected">Not specified or not applicable </option>
297
					<option value=" " selected="selected">[% t('Not specified or not applicable') %] </option>
297
				[% ELSE %]
298
				[% ELSE %]
298
					<option value=" ">Not specified or not applicable</option>
299
					<option value=" ">[% t('Not specified or not applicable') %]</option>
299
				[% END %]
300
				[% END %]
300
				[% IF ( f19a ) %]
301
				[% IF ( f19a ) %]
301
					<option value="a" selected="selected">a- Set</option>
302
					<option value="a" selected="selected">[% t('a- Set') %]</option>
302
				[% ELSE %]
303
				[% ELSE %]
303
					<option value="a">a- Set</option>
304
					<option value="a">[% t('a- Set') %]</option>
304
				[% END %]
305
				[% END %]
305
				[% IF ( f19b ) %]
306
				[% IF ( f19b ) %]
306
					<option value="b" selected="selected">b- Part with independent title</option>
307
					<option value="b" selected="selected">[% t('b- Part with independent title') %]</option>
307
				[% ELSE %]
308
				[% ELSE %]
308
					<option value="b">b- Part with independent title</option>
309
					<option value="b">[% t('b- Part with independent title') %]</option>
309
				[% END %]
310
				[% END %]
310
				[% IF ( f19c ) %]
311
				[% IF ( f19c ) %]
311
					<option value="c" selected="selected">c- Part with dependent title</option>
312
					<option value="c" selected="selected">[% t('c- Part with dependent title') %]</option>
312
				[% ELSE %]
313
				[% ELSE %]
313
					<option value="c">c- Part with dependent title</option>
314
					<option value="c">[% t('c- Part with dependent title') %]</option>
314
				[% END %]
315
				[% END %]
315
			</select>
316
			</select>
316
		</td>
317
		</td>
317
	</tr>
318
	</tr>
318
	<tr>
319
	<tr>
319
		<td>20-24 entry map &amp; lengths</td>
320
		<td>[% t('20-24 entry map &amp; lengths') %]</td>
320
		<td>(auto-filled)</td>
321
		<td>[% t('(auto-filled)') %]</td>
321
	</tr>
322
	</tr>
322
323
323
</table>
324
</table>
324
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
325
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Cancel') %]</a></fieldset>
325
</form>
326
</form>
326
327
327
[% MACRO jsinclude BLOCK %]
328
[% MACRO jsinclude BLOCK %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader_authorities.tt (-38 / +39 lines)
Lines 1-124 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Authorities &rsaquo; Leader builder</title>
4
<title>[% t('Koha › Authorities › Leader builder') %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
5
</head>
6
</head>
6
7
7
<body id="cat_marc21_leader_authorities" class="cat" style="padding:1em;">
8
<body id="cat_marc21_leader_authorities" class="cat" style="padding:1em;">
8
<h3>000 - Leader</h3>
9
<h3>[% t('000 - Leader') %]</h3>
9
<form name="f_pop" onsubmit="report()" action="">
10
<form name="f_pop" onsubmit="report()" action="">
10
<input type="hidden" name="plugin_name" value="marc21_leader_authorities.pl" />
11
<input type="hidden" name="plugin_name" value="marc21_leader_authorities.pl" />
11
<table>
12
<table>
12
	<tr>
13
	<tr>
13
		<td>1-4 Record size</td>
14
		<td>[% t('1-4 Record size') %]</td>
14
		<td>(auto-filled)</td>
15
		<td>[% t('(auto-filled)') %]</td>
15
	</tr>
16
	</tr>
16
	<tr>
17
	<tr>
17
		<td><label for="f5">5- Record status</label></td>
18
		<td><label for="f5">[% t('5- Record status') %]</label></td>
18
		<td>
19
		<td>
19
			<select name="f5" id="f5" size="1">
20
			<select name="f5" id="f5" size="1">
20
			[% IF ( f5a ) %]
21
			[% IF ( f5a ) %]
21
				<option value="a" selected="selected">a- Increase in encoding level</option>
22
				<option value="a" selected="selected">[% t('a- Increase in encoding level') %]</option>
22
			[% ELSE %]
23
			[% ELSE %]
23
				<option value="a">a- Increase in encoding level</option>
24
				<option value="a">[% t('a- Increase in encoding level') %]</option>
24
			[% END %]
25
			[% END %]
25
26
26
			[% IF ( f5c ) %]
27
			[% IF ( f5c ) %]
27
				<option value="c" selected="selected">c- Corrected or revised</option>
28
				<option value="c" selected="selected">[% t('c- Corrected or revised') %]</option>
28
			[% ELSE %]
29
			[% ELSE %]
29
				<option value="c">c- Corrected or revised</option>
30
				<option value="c">[% t('c- Corrected or revised') %]</option>
30
			[% END %]
31
			[% END %]
31
			[% IF ( f5d ) %]
32
			[% IF ( f5d ) %]
32
				<option value="d" selected="selected">d- Deleted</option>
33
				<option value="d" selected="selected">[% t('d- Deleted') %]</option>
33
			[% ELSE %]
34
			[% ELSE %]
34
				<option value="d">d- Deleted</option>
35
				<option value="d">[% t('d- Deleted') %]</option>
35
			[% END %]
36
			[% END %]
36
			[% IF ( f5n ) %]
37
			[% IF ( f5n ) %]
37
				<option value="n" selected="selected">n- New</option>
38
				<option value="n" selected="selected">[% t('n- New') %]</option>
38
			[% ELSE %]
39
			[% ELSE %]
39
				<option value="n">n- New</option>
40
				<option value="n">[% t('n- New') %]</option>
40
			[% END %]
41
			[% END %]
41
			[% IF ( f5o ) %]
42
			[% IF ( f5o ) %]
42
				<option value="o" selected="selected">o- Obsolete</option>
43
				<option value="o" selected="selected">[% t('o- Obsolete') %]</option>
43
			[% ELSE %]
44
			[% ELSE %]
44
				<option value="o">o- Obsolete</option>
45
				<option value="o">[% t('o- Obsolete') %]</option>
45
			[% END %]
46
			[% END %]
46
			[% IF ( f5s ) %]
47
			[% IF ( f5s ) %]
47
				<option value="s" selected="selected">s- Deleted; heading split into two or more headings</option>
48
				<option value="s" selected="selected">[% t('s- Deleted; heading split into two or more headings') %]</option>
48
			[% ELSE %]
49
			[% ELSE %]
49
				<option value="s">s- Deleted; heading split into two or more headings</option>
50
				<option value="s">[% t('s- Deleted; heading split into two or more headings') %]</option>
50
			[% END %]
51
			[% END %]
51
			[% IF ( f5x ) %]
52
			[% IF ( f5x ) %]
52
				<option value="x" selected="selected">x- Deleted; heading replaced by another heading</option>
53
				<option value="x" selected="selected">[% t('x- Deleted; heading replaced by another heading') %]</option>
53
			[% ELSE %]
54
			[% ELSE %]
54
				<option value="x">x- Deleted; heading replaced by another heading</option>
55
				<option value="x">[% t('x- Deleted; heading replaced by another heading') %]</option>
55
			[% END %]
56
			[% END %]
56
			</select>
57
			</select>
57
		</td>
58
		</td>
58
	</tr>
59
	</tr>
59
	<tr>
60
	<tr>
60
		<td><label for="f6">6- Type of record</label></td>
61
		<td><label for="f6">[% t('6- Type of record') %]</label></td>
61
		<td>
62
		<td>
62
            <input name="f6" id="f6" value="z" type="hidden" />
63
            <input name="f6" id="f6" value="z" type="hidden" />
63
            z- Authority data
64
            [% t('z- Authority data') %]
64
		</td>
65
		</td>
65
	</tr>
66
	</tr>
66
	<tr>
67
	<tr>
67
		<td>7-8 Undefined</td>
68
		<td>[% t('7-8 Undefined') %]</td>
68
		<td></td>
69
		<td></td>
69
	</tr>
70
	</tr>
70
71
71
	<tr>
72
	<tr>
72
		<td><label for="f9">9- Encoding</label></td>
73
		<td><label for="f9">[% t('9- Encoding') %]</label></td>
73
		<td>
74
		<td>
74
			<select name="f9" id="f9" size="1">
75
			<select name="f9" id="f9" size="1">
75
				[% IF ( f9 ) %]
76
				[% IF ( f9 ) %]
76
					<option value=" " selected="selected">MARC-8</option>
77
					<option value=" " selected="selected">[% t('MARC-8') %]</option>
77
				[% ELSE %]
78
				[% ELSE %]
78
					<option value=" ">MARC-8</option>
79
					<option value=" ">[% t('MARC-8') %]</option>
79
				[% END %]
80
				[% END %]
80
				[% IF ( f9a ) %]
81
				[% IF ( f9a ) %]
81
					<option value="a" selected="selected">a- UCS/Unicode</option>
82
					<option value="a" selected="selected">[% t('a- UCS/Unicode') %]</option>
82
				[% ELSE %]
83
				[% ELSE %]
83
					<option value="a">a- UCS/Unicode</option>
84
					<option value="a">[% t('a- UCS/Unicode') %]</option>
84
				[% END %]
85
				[% END %]
85
			</select>
86
			</select>
86
		</td>
87
		</td>
87
	</tr>
88
	</tr>
88
	<tr>
89
	<tr>
89
		<td>10-16 indicator/subfields/size</td>
90
		<td>[% t('10-16 indicator/subfields/size') %]</td>
90
		<td>(auto-filled)</td>
91
		<td>[% t('(auto-filled)') %]</td>
91
	</tr>
92
	</tr>
92
	<tr>
93
	<tr>
93
		<td><label for="f17">17- Encoding level</label></td>
94
		<td><label for="f17">[% t('17- Encoding level') %]</label></td>
94
		<td>
95
		<td>
95
			<select name="f17" id="f17" size="1">
96
			<select name="f17" id="f17" size="1">
96
				[% IF ( f17n ) %]
97
				[% IF ( f17n ) %]
97
					<option value="n" selected="selected">n- Complete authority record</option>
98
					<option value="n" selected="selected">[% t('n- Complete authority record') %]</option>
98
				[% ELSE %]
99
				[% ELSE %]
99
					<option value="n">n- Complete authority record</option>
100
					<option value="n">[% t('n- Complete authority record') %]</option>
100
				[% END %]
101
				[% END %]
101
				[% IF ( f17o ) %]
102
				[% IF ( f17o ) %]
102
					<option value="o" selected="selected">o- Incomplete authority record</option>
103
					<option value="o" selected="selected">[% t('o- Incomplete authority record') %]</option>
103
				[% ELSE %]
104
				[% ELSE %]
104
					<option value="o">o- Incomplete authority record</option>
105
					<option value="o">[% t('o- Incomplete authority record') %]</option>
105
				[% END %]
106
				[% END %]
106
			</select>
107
			</select>
107
		</td>
108
		</td>
108
	</tr>
109
	</tr>
109
110
110
	<tr>
111
	<tr>
111
		<td>18-19 Undefined</td>
112
		<td>[% t('18-19 Undefined') %]</td>
112
		<td></td>
113
		<td></td>
113
	</tr>
114
	</tr>
114
115
115
	<tr>
116
	<tr>
116
		<td>20-24 entry map &amp; lengths</td>
117
		<td>[% t('20-24 entry map &amp; lengths') %]</td>
117
		<td>(auto-filled)</td>
118
		<td>[% t('(auto-filled)') %]</td>
118
	</tr>
119
	</tr>
119
120
120
</table>
121
</table>
121
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
122
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Cancel') %]</a></fieldset>
122
</form>
123
</form>
123
124
124
[% MACRO jsinclude BLOCK %]
125
[% MACRO jsinclude BLOCK %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_linking_section.tt (-22 / +23 lines)
Lines 1-20 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Cataloguing &rsaquo; plugin for links</title>
4
<title>[% t('Koha › Cataloguing › plugin for links') %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
5
[% IF ( fillinput ) %]
6
[% IF ( fillinput ) %]
6
    </head>
7
    </head>
7
8
8
<body id="cat_marc21_linking_section" class="cat" style="padding:1em;">
9
<body id="cat_marc21_linking_section" class="cat" style="padding:1em;">
9
<h3>MARC21 Plugin to build links between records</h3>
10
<h3>[% t('MARC21 Plugin to build links between records') %]</h3>
10
[% ELSE %]
11
[% ELSE %]
11
    </head>
12
    </head>
12
13
13
<body id="cat_marc21_linking_section" class="cat" style="padding:1em;">
14
<body id="cat_marc21_linking_section" class="cat" style="padding:1em;">
14
<h3>Plugin to build links between records</h3>
15
<h3>[% t('Plugin to build links between records') %]</h3>
15
    [% IF ( Search ) %]
16
    [% IF ( Search ) %]
16
            <div id="MARC21_Linking_section_search">
17
            <div id="MARC21_Linking_section_search">
17
               <h2>Search for</h2>
18
               <h2>[% t('Search for') %]</h2>
18
            <form name="f" method="post" action="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl">
19
            <form name="f" method="post" action="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl">
19
20
20
                     <p>
21
                     <p>
Lines 22-32 Link Here
22
                           <input type="hidden" name="index" value="[% index %]" />
23
                           <input type="hidden" name="index" value="[% index %]" />
23
                               <input type="hidden" name="result" value="marc12 field 7 [% index %]" />
24
                               <input type="hidden" name="result" value="marc12 field 7 [% index %]" />
24
                               <input type="hidden" name="op" value="do_search" />
25
                               <input type="hidden" name="op" value="do_search" />
25
                            <label class="label100" for="searchbox">Any word</label>
26
                            <label class="label100" for="searchbox">[% t('Any word') %]</label>
26
                               <input type="text" name="search" id="searchbox" size="35" /><br />
27
                               <input type="text" name="search" id="searchbox" size="35" /><br />
27
                             <label for="itypeloop">Item type</label>
28
                             <label for="itypeloop">[% t('Item type') %]</label>
28
                               <select name="itype" id="itypeloop">
29
                               <select name="itype" id="itypeloop">
29
                           <option value="" selected="selected">All Item Types</option>
30
                           <option value="" selected="selected">[% t('All Item Types') %]</option>
30
                               [% FOREACH itypeloo IN itypeloop %]
31
                               [% FOREACH itypeloo IN itypeloop %]
31
                             <option value="[% itypeloo.itemtype %]">[% itypeloo.description %]</option>
32
                             <option value="[% itypeloo.itemtype %]">[% itypeloo.description %]</option>
32
                              [% END %]
33
                              [% END %]
Lines 42-67 Link Here
42
       [% ELSE %]
43
       [% ELSE %]
43
44
44
45
45
           <h2>Search results</h2>
46
           <h2>[% t('Search results') %]</h2>
46
                <div id="MARC21_Linking_section__resultnumber">
47
                <div id="MARC21_Linking_section__resultnumber">
47
                        <p>[% IF ( displayprev ) %] <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;startfrom=[% startfromprev %]&amp;search=[% search %]&amp;resultsperpage=[% resultsperpage %]&amp;type=intranet&amp;op=do_search">&lt;&lt; Previous</a>[% END %]
48
                        <p>[% IF ( displayprev ) %] <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&index=[% index %]&startfrom=[% startfromprev %]&search=[% search %]&resultsperpage=[% resultsperpage %]&type=intranet&op=do_search">[% t('&lt;&lt; Previous') %]</a>[% END %]
48
                              [% FOREACH number IN numbers %]
49
                              [% FOREACH number IN numbers %]
49
                                [% IF ( number.highlight ) %] <span class="highlight">[% number.number %]</span>
50
                                [% IF ( number.highlight ) %] <span class="highlight">[% number.number %]</span>
50
                                [% ELSE %] <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;startfrom=[% number.startfrom %]&amp;search=[% number.search |url %]&amp;resultsperpage=[% number.resultsperpage %]&amp;type=intranet&amp;op=do_search">[% number.number %]</a>
51
                                [% ELSE %] <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&index=[% index %]&startfrom=[% number.startfrom %]&search=[% number.search |url %]&resultsperpage=[% number.resultsperpage %]&type=intranet&op=do_search">[% number.number %]</a>
51
                                [% END %]
52
                                [% END %]
52
                                [% END %]
53
                                [% END %]
53
                                [% IF ( displaynext ) %]
54
                                [% IF ( displaynext ) %]
54
                                  <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;startfrom=[% startfromnext %]&amp;search=[% search %]&amp;resultsperpage=[% resultsperpage %]&amp;type=intranet&amp;op=do_search">Next&gt;&gt;</a>
55
                                  <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&index=[% index %]&startfrom=[% startfromnext %]&search=[% search %]&resultsperpage=[% resultsperpage %]&type=intranet&op=do_search">[% t('Next&gt;&gt;') %]</a>
55
                                [% END %]</p>
56
                                [% END %]</p>
56
                  <p class="resultcount">
57
                  <p class="resultcount">
57
                          [% IF ( total ) %]Results [% from %] to [% to %] of [% total %]
58
                          [% IF ( total ) %][% t('Results') %] [% from %] [% t('to') %] [% to %] [% t('of') %] [% total %]
58
                          [% ELSE %]No results found
59
                          [% ELSE %][% t('No results found') %]
59
                          [% END %]</p></div>
60
                          [% END %]</p></div>
60
            <div id="resultlist">
61
            <div id="resultlist">
61
                  <table>
62
                  <table>
62
                                <tr>
63
                                <tr>
63
                                   <th>Concise description</th>
64
                                   <th>[% t('Concise description') %]</th>
64
                                   <th>&nbsp;</th>
65
                                   <th> </th>
65
                                </tr>
66
                                </tr>
66
                          [% FOREACH resul IN result %]
67
                          [% FOREACH resul IN result %]
67
                          [% IF ( resul.title ) %]
68
                          [% IF ( resul.title ) %]
Lines 84-92 Link Here
84
85
85
                                 <td>
86
                                 <td>
86
                      [% IF ( resul.biblionumber ) %]
87
                      [% IF ( resul.biblionumber ) %]
87
                                             <a href="javascript:jumpfull('/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;biblionumber=[% resul.biblionumber %]&amp;type=intranet&amp;op=fillinput')">Choose</a>
88
                                             <a href="javascript:jumpfull('/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&index=[% index %]&biblionumber=[% resul.biblionumber %]&type=intranet&op=fillinput')">[% t('Choose') %]</a>
88
                      [% ELSE %]
89
                      [% ELSE %]
89
                                             <a href="javascript:jumpfull('/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;type=intranet&amp;op=fillinput')">Clear field</a>
90
                                             <a href="javascript:jumpfull('/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&index=[% index %]&type=intranet&op=fillinput')">[% t('Clear field') %]</a>
90
                      [% END %]
91
                      [% END %]
91
                                   </td>
92
                                   </td>
92
                          </tr>
93
                          </tr>
Lines 97-104 Link Here
97
         <div id="resultnumber">
98
         <div id="resultnumber">
98
                        <p>
99
                        <p>
99
                            [% IF ( displayprev ) %]
100
                            [% IF ( displayprev ) %]
100
                               <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;amp;index=[% index %]&amp;amp;startfrom=[% startfromprev %]&amp;amp;search=[% search |url %]&amp;amp;resultsperpage=[% resultsperpage %]&amp;amp;type=intranet&amp;amp;op=do_search">
101
                               <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;startfrom=[% startfromprev %]&amp;search=[% search |url %]&amp;resultsperpage=[% resultsperpage %]&amp;type=intranet&amp;op=do_search">
101
                                     &lt;&lt; Previous
102
                                     [% t('&lt;&lt; Previous') %]
102
                              </a>
103
                              </a>
103
                           [% END %]
104
                           [% END %]
104
105
Lines 108-122 Link Here
108
                                                       [% number.number %]
109
                                                       [% number.number %]
109
                                            </span>
110
                                            </span>
110
                                        [% ELSE %]
111
                                        [% ELSE %]
111
                                             <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;startfrom=[% number.startfrom %]&amp;search=[% number.search %]&amp;resultsperpage=[% number.resultsperpage %]&amp;type=intranet&amp;op=do_search">
112
                                             <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&index=[% index %]&startfrom=[% number.startfrom %]&search=[% number.search %]&resultsperpage=[% number.resultsperpage %]&type=intranet&op=do_search">
112
                                                 [% number.number %]
113
                                                 [% number.number %]
113
                                            </a>
114
                                            </a>
114
                                   [% END %]
115
                                   [% END %]
115
                              [% END %]
116
                              [% END %]
116
117
117
                             [% IF ( displaynext ) %]
118
                             [% IF ( displaynext ) %]
118
                               <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&amp;index=[% index %]&amp;startfrom=[% startfromnext %]&amp;search=[% search %]&amp;resultsperpage=[% resultsperpage %]&amp;type=intranet&amp;op=do_search">
119
                               <a class="resultnumber" href="/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=marc21_linking_section.pl&index=[% index %]&startfrom=[% startfromnext %]&search=[% search %]&resultsperpage=[% resultsperpage %]&type=intranet&op=do_search">
119
                                  Next&gt;&gt;
120
                                  [% t('Next&gt;&gt;') %]
120
                           </a>
121
                           </a>
121
                           [% END %]
122
                           [% END %]
122
                      </p>
123
                      </p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_field_007.tt (-24 / +25 lines)
Lines 1-65 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Cataloging &rsaquo; 007 feltbygger</title>
3
<title>[% t('Koha › Cataloging › 007 feltbygger') %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
5
</head>
5
<body id="cat_normarc_field_007" class="cat" style="padding:1em;" onload="RedrawChoices('[% f0 %]');">
6
<body id="cat_normarc_field_007" class="cat" style="padding:1em;" onload="RedrawChoices('[% f0 %]');">
6
<h3>007 Fysisk beskrivelse av dokumentet</h3>
7
<h3>[% t('007 Fysisk beskrivelse av dokumentet') %]</h3>
7
<form id="f_pop" onsubmit="report()">
8
<form id="f_pop" onsubmit="report()">
8
<input type="hidden" name="plugin_name" value="normarc_field_007.pl" />
9
<input type="hidden" name="plugin_name" value="normarc_field_007.pl" />
9
10
10
<p><label for="MatTypeList">00 Type materiale: </label>
11
<p><label for="MatTypeList">[% t('00 Type materiale:') %] </label>
11
12
12
      <select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
13
      <select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
13
14
14
        [% IF ( f0a ) %]
15
        [% IF ( f0a ) %]
15
	  <option value="a" selected="selected">a Kartografisk materiale (unntatt globus)</option>
16
	  <option value="a" selected="selected">[% t('a Kartografisk materiale (unntatt globus)') %]</option>
16
        [% ELSE %]
17
        [% ELSE %]
17
	  <option value="a">a Kartografisk materiale (unntatt globus)</option>
18
	  <option value="a">[% t('a Kartografisk materiale (unntatt globus)') %]</option>
18
        [% END %]
19
        [% END %]
19
        [% IF ( f0c ) %]
20
        [% IF ( f0c ) %]
20
	  <option value="c" selected="selected">c Maskinlesbar fil</option>
21
	  <option value="c" selected="selected">[% t('c Maskinlesbar fil') %]</option>
21
        [% ELSE %]
22
        [% ELSE %]
22
	  <option value="c">c Maskinlesbar fil</option>
23
	  <option value="c">[% t('c Maskinlesbar fil') %]</option>
23
        [% END %]
24
        [% END %]
24
        [% IF ( f0d ) %]
25
        [% IF ( f0d ) %]
25
	  <option value="d" selected="selected">d Globus</option>
26
	  <option value="d" selected="selected">[% t('d Globus') %]</option>
26
        [% ELSE %]
27
        [% ELSE %]
27
	  <option value="d">d Globus</option>
28
	  <option value="d">[% t('d Globus') %]</option>
28
        [% END %]
29
        [% END %]
29
        [% IF ( f0g ) %]
30
        [% IF ( f0g ) %]
30
	  <option value="g" selected="selected">g Grafisk materiale som er tenkt projisert eller gjennomlyst</option>
31
	  <option value="g" selected="selected">[% t('g Grafisk materiale som er tenkt projisert eller gjennomlyst') %]</option>
31
        [% ELSE %]
32
        [% ELSE %]
32
	  <option value="g">g Grafisk materiale som er tenkt projisert eller gjennomlyst</option>
33
	  <option value="g">[% t('g Grafisk materiale som er tenkt projisert eller gjennomlyst') %]</option>
33
        [% END %]
34
        [% END %]
34
        [% IF ( f0h ) %]
35
        [% IF ( f0h ) %]
35
	  <option value="h" selected="selected">h Mikroform </option>
36
	  <option value="h" selected="selected">[% t('h Mikroform') %] </option>
36
        [% ELSE %]
37
        [% ELSE %]
37
	  <option value="h">h Mikroform </option>
38
	  <option value="h">[% t('h Mikroform') %] </option>
38
        [% END %]
39
        [% END %]
39
        [% IF ( f0k ) %]
40
        [% IF ( f0k ) %]
40
	  <option value="k" selected="selected">k Grafisk materiale som er ugjennomtrengelig for lys</option>
41
	  <option value="k" selected="selected">[% t('k Grafisk materiale som er ugjennomtrengelig for lys') %]</option>
41
        [% ELSE %]
42
        [% ELSE %]
42
	  <option value="k">k Grafisk materiale som er ugjennomtrengelig for lys</option>
43
	  <option value="k">[% t('k Grafisk materiale som er ugjennomtrengelig for lys') %]</option>
43
        [% END %]
44
        [% END %]
44
        [% IF ( f0m ) %]
45
        [% IF ( f0m ) %]
45
	  <option value="m" selected="selected">m Film </option>
46
	  <option value="m" selected="selected">[% t('m Film') %] </option>
46
        [% ELSE %]
47
        [% ELSE %]
47
	  <option value="m">m Film </option>
48
	  <option value="m">[% t('m Film') %] </option>
48
        [% END %]
49
        [% END %]
49
        [% IF ( f0s ) %]
50
        [% IF ( f0s ) %]
50
	  <option value="s" selected="selected">s Lydopptak </option>
51
	  <option value="s" selected="selected">[% t('s Lydopptak') %] </option>
51
        [% ELSE %]
52
        [% ELSE %]
52
	  <option value="s">s Lydopptak </option>
53
	  <option value="s">[% t('s Lydopptak') %] </option>
53
        [% END %]
54
        [% END %]
54
        [% IF ( f0u ) %]
55
        [% IF ( f0u ) %]
55
	  <option value="u" selected="selected">u Tre-dimensjonal gjenstand</option>
56
	  <option value="u" selected="selected">[% t('u Tre-dimensjonal gjenstand') %]</option>
56
        [% ELSE %]
57
        [% ELSE %]
57
	  <option value="u">u Tre-dimensjonal gjenstand</option>
58
	  <option value="u">[% t('u Tre-dimensjonal gjenstand') %]</option>
58
        [% END %]
59
        [% END %]
59
        [% IF ( f0v ) %]
60
        [% IF ( f0v ) %]
60
	  <option value="v" selected="selected">v Videoopptak </option>
61
	  <option value="v" selected="selected">[% t('v Videoopptak') %] </option>
61
        [% ELSE %]
62
        [% ELSE %]
62
	  <option value="v">v Videoopptak </option>
63
	  <option value="v">[% t('v Videoopptak') %] </option>
63
        [% END %]
64
        [% END %]
64
65
65
      </select></p>
66
      </select></p>
Lines 67-73 Link Here
67
<div id="choices">
68
<div id="choices">
68
</div>
69
</div>
69
70
70
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Avbryt</a></fieldset>
71
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Avbryt') %]</a></fieldset>
71
</form>
72
</form>
72
<script type="text/javascript">
73
<script type="text/javascript">
73
//<![CDATA[
74
//<![CDATA[
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_field_008.tt (-64 / +65 lines)
Lines 1-43 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Katalogisering &rsaquo; Feltbygger for 008</title> 
3
<title>[% t('Koha › Katalogisering › Feltbygger for 008') %]</title> 
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
5
</head>
5
<body id="cat_normarc_field_008" class="cat" style="padding:1em;">
6
<body id="cat_normarc_field_008" class="cat" style="padding:1em;">
6
<h3>008 Informasjonskoder</h3>
7
<h3>[% t('008 Informasjonskoder') %]</h3>
7
8
8
<form>
9
<form>
9
      <p><select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
10
      <p><select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
10
11
11
			<option value="" selected="selected">Velg materialtype</option>			
12
			<option value="" selected="selected">[% t('Velg materialtype') %]</option>			
12
	[% IF ( mon ) %] 
13
	[% IF ( mon ) %] 
13
		<option value="mon" selected="selected">Monografier</option> 
14
		<option value="mon" selected="selected">[% t('Monografier') %]</option> 
14
		[% ELSE %] 
15
		[% ELSE %] 
15
		<option value="mon">Monografier</option> 
16
		<option value="mon">[% t('Monografier') %]</option> 
16
		[% END %]
17
		[% END %]
17
	[% IF ( per ) %] 
18
	[% IF ( per ) %] 
18
		<option value="per" selected="selected">Periodika</option> 
19
		<option value="per" selected="selected">[% t('Periodika') %]</option> 
19
		[% ELSE %] 
20
		[% ELSE %] 
20
		<option value="per">Periodika</option> 
21
		<option value="per">[% t('Periodika') %]</option> 
21
		[% END %]
22
		[% END %]
22
	[% IF ( fil ) %] 
23
	[% IF ( fil ) %] 
23
		<option value="fil" selected="selected">Maskinlesbare filer</option> 
24
		<option value="fil" selected="selected">[% t('Maskinlesbare filer') %]</option> 
24
		[% ELSE %] 
25
		[% ELSE %] 
25
		<option value="fil">Maskinlesbare filer</option> 
26
		<option value="fil">[% t('Maskinlesbare filer') %]</option> 
26
		[% END %]	
27
		[% END %]	
27
	[% IF ( mus ) %] 
28
	[% IF ( mus ) %] 
28
		<option value="mus" selected="selected">Musikktrykk og lydopptak</option> 
29
		<option value="mus" selected="selected">[% t('Musikktrykk og lydopptak') %]</option> 
29
		[% ELSE %] 
30
		[% ELSE %] 
30
		<option value="mus">Musikktrykk og lydopptak</option> 
31
		<option value="mus">[% t('Musikktrykk og lydopptak') %]</option> 
31
		[% END %]	
32
		[% END %]	
32
	[% IF ( fv ) %] 
33
	[% IF ( fv ) %] 
33
		<option value="fv" selected="selected">Filmer og videogrammer</option> 
34
		<option value="fv" selected="selected">[% t('Filmer og videogrammer') %]</option> 
34
		[% ELSE %] 
35
		[% ELSE %] 
35
		<option value="fv">Filmer og videogrammer</option> 
36
		<option value="fv">[% t('Filmer og videogrammer') %]</option> 
36
		[% END %]	
37
		[% END %]	
37
	[% IF ( kar ) %] 
38
	[% IF ( kar ) %] 
38
		<option value="kar" selected="selected">Kart</option> 
39
		<option value="kar" selected="selected">[% t('Kart') %]</option> 
39
		[% ELSE %] 
40
		[% ELSE %] 
40
		<option value="kar">Kart</option> 
41
		<option value="kar">[% t('Kart') %]</option> 
41
		[% END %]
42
		[% END %]
42
		
43
		
43
      </select></p>
44
      </select></p>
Lines 53-136 Link Here
53
<table>
54
<table>
54
55
55
	<tr>
56
	<tr>
56
		<td>00-05 Registreringsdato</td>
57
		<td>[% t('00-05 Registreringsdato') %]</td>
57
		<td><input type="text" name="f1" maxlength="6" size="7" value="[% f1 %]" /></td>
58
		<td><input type="text" name="f1" maxlength="6" size="7" value="[% f1 %]" /></td>
58
	</tr>
59
	</tr>
59
	<tr>
60
	<tr>
60
		<!-- 06 Type of date / Publication status -->
61
		<!-- 06 Type of date / Publication status -->
61
		<td><label for="f6">06 Dateringskode/Utgivelsesstatus</label></td>
62
		<td><label for="f6">[% t('06 Dateringskode/Utgivelsesstatus') %]</label></td>
62
		<td>
63
		<td>
63
			<select name="f6" id="f6" size="1">
64
			<select name="f6" id="f6" size="1">
64
	[% IF ( f6 ) %]
65
	[% IF ( f6 ) %]
65
		<option value=" " selected="selected">^ Ikke angitt</option>
66
		<option value=" " selected="selected">[% t('^ Ikke angitt') %]</option>
66
		[% ELSE %]
67
		[% ELSE %]
67
		<option value=" ">^ Ikke angitt</option>
68
		<option value=" ">[% t('^ Ikke angitt') %]</option>
68
		[% END %]
69
		[% END %]
69
	[% IF ( f6a ) %] 
70
	[% IF ( f6a ) %] 
70
		<option value="a" selected="selected">a Antatt/forventet utgivelsesår i pos. 7-10</option> 
71
		<option value="a" selected="selected">[% t('a Antatt/forventet utgivelsesår i pos. 7-10') %]</option> 
71
		[% ELSE %] 
72
		[% ELSE %] 
72
		<option value="a">a Antatt/forventet utgivelsesår i pos. 7-10</option> 
73
		<option value="a">[% t('a Antatt/forventet utgivelsesår i pos. 7-10') %]</option> 
73
		[% END %] 
74
		[% END %] 
74
	[% IF ( f6c ) %] 
75
	[% IF ( f6c ) %] 
75
		<option value="c" selected="selected">c Utgivelsesår i pos. 7-10 og copyrightår i pos. 11-14</option> 
76
		<option value="c" selected="selected">[% t('c Utgivelsesår i pos. 7-10 og copyrightår i pos. 11-14') %]</option> 
76
		[% ELSE %] 
77
		[% ELSE %] 
77
		<option value="c">c Utgivelsesår i pos. 7-10 og copyrightår i pos. 11-14</option> 
78
		<option value="c">[% t('c Utgivelsesår i pos. 7-10 og copyrightår i pos. 11-14') %]</option> 
78
		[% END %] 
79
		[% END %] 
79
	[% IF ( f6n ) %] 
80
	[% IF ( f6n ) %] 
80
		<option value="n" selected="selected">n Ukjent år</option> 
81
		<option value="n" selected="selected">[% t('n Ukjent år') %]</option> 
81
		[% ELSE %] 
82
		[% ELSE %] 
82
		<option value="n">n Ukjent år</option> 
83
		<option value="n">[% t('n Ukjent år') %]</option> 
83
		[% END %] 
84
		[% END %] 
84
	[% IF ( f6o ) %] 
85
	[% IF ( f6o ) %] 
85
		<option value="o" selected="selected">o Opphørt (periodika)</option> 
86
		<option value="o" selected="selected">[% t('o Opphørt (periodika)') %]</option> 
86
		[% ELSE %] 
87
		[% ELSE %] 
87
		<option value="o">o Opphørt (periodika)</option> 
88
		<option value="o">[% t('o Opphørt (periodika)') %]</option> 
88
		[% END %] 
89
		[% END %] 
89
	[% IF ( f6p ) %] 
90
	[% IF ( f6p ) %] 
90
		<option value="p" selected="selected">p År for distribusjon/frigivelse i pos. 7-10 og produksjons-/opptaksperiode i pos. 11-14</option> 
91
		<option value="p" selected="selected">[% t('p År for distribusjon/frigivelse i pos. 7-10 og produksjons-/opptaksperiode i pos. 11-14') %]</option> 
91
		[% ELSE %] 
92
		[% ELSE %] 
92
		<option value="p">p År for distribusjon/frigivelse i pos. 7-10 og produksjons-/opptaksperiode i pos. 11-14</option> 
93
		<option value="p">[% t('p År for distribusjon/frigivelse i pos. 7-10 og produksjons-/opptaksperiode i pos. 11-14') %]</option> 
93
		[% END %] 
94
		[% END %] 
94
	[% IF ( f6r ) %] 
95
	[% IF ( f6r ) %] 
95
		<option value="r" selected="selected">r Nyutgaveår i pos. 7-10 og originalår i pos. 11-14</option> 
96
		<option value="r" selected="selected">[% t('r Nyutgaveår i pos. 7-10 og originalår i pos. 11-14') %]</option> 
96
		[% ELSE %] 
97
		[% ELSE %] 
97
		<option value="r">r Nyutgaveår i pos. 7-10 og originalår i pos. 11-14</option> 
98
		<option value="r">[% t('r Nyutgaveår i pos. 7-10 og originalår i pos. 11-14') %]</option> 
98
		[% END %] 
99
		[% END %] 
99
	[% IF ( f6s ) %] 
100
	[% IF ( f6s ) %] 
100
		<option value="s" selected="selected">s Enkelt år (f.eks. utgivelsesår) i pos. 7-10</option> 
101
		<option value="s" selected="selected">[% t('s Enkelt år (f.eks. utgivelsesår) i pos. 7-10') %]</option> 
101
		[% ELSE %] 
102
		[% ELSE %] 
102
		<option value="s">s Enkelt år (f.eks. utgivelsesår) i pos. 7-10</option> 
103
		<option value="s">[% t('s Enkelt år (f.eks. utgivelsesår) i pos. 7-10') %]</option> 
103
		[% END %] 
104
		[% END %] 
104
	[% IF ( f6u ) %] 
105
	[% IF ( f6u ) %] 
105
		<option value="u" selected="selected">u Ukjent status (periodika)</option> 
106
		<option value="u" selected="selected">[% t('u Ukjent status (periodika)') %]</option> 
106
		[% ELSE %] 
107
		[% ELSE %] 
107
		<option value="u">u Ukjent status (periodika)</option> 
108
		<option value="u">[% t('u Ukjent status (periodika)') %]</option> 
108
		[% END %] 
109
		[% END %] 
109
	[% IF ( f6x ) %] 
110
	[% IF ( f6x ) %] 
110
		<option value="x" selected="selected">x Løpende (periodika)</option> 
111
		<option value="x" selected="selected">[% t('x Løpende (periodika)') %]</option> 
111
		[% ELSE %] 
112
		[% ELSE %] 
112
		<option value="x">x Løpende (periodika)</option> 
113
		<option value="x">[% t('x Løpende (periodika)') %]</option> 
113
		[% END %] 	
114
		[% END %] 	
114
			</select>
115
			</select>
115
		</td>
116
		</td>
116
	</tr>
117
	</tr>
117
	<tr>
118
	<tr>
118
		<td><label for="f710">07-10 Årstall 1</label></td>
119
		<td><label for="f710">[% t('07-10 Årstall 1') %]</label></td>
119
		<td>
120
		<td>
120
			<input type="text" name="f710" id="f710" size="4" maxlength="4" value="[% f710 %]"/>
121
			<input type="text" name="f710" id="f710" size="4" maxlength="4" value="[% f710 %]" />
121
		</td>
122
		</td>
122
	</tr>
123
	</tr>
123
	<tr>
124
	<tr>
124
    <td><label for="f1114">11-14 Årstall 2</label></td>
125
    <td><label for="f1114">[% t('11-14 Årstall 2') %]</label></td>
125
    <td>
126
    <td>
126
      <input type="text" name="f1114" id="f1114" size="4" maxlength="4" value="[% f1114 %]"/>
127
      <input type="text" name="f1114" id="f1114" size="4" maxlength="4" value="[% f1114 %]" />
127
		</td>
128
		</td>
128
  </tr>
129
  </tr>
129
130
130
	<tr>
131
	<tr>
131
      <td><label for="f1517">15-17 Utgivelsesland</label> (Se <a href="http://www.nb.no/baser/landekoder/">NORMARC-koder for land</a>)</td>
132
      <td><label for="f1517">[% t('15-17 Utgivelsesland') %]</label> [% t('(Se') %] <a href="http://www.nb.no/baser/landekoder/">[% t('NORMARC-koder for land') %]</a>)</td>
132
      <td>
133
      <td>
133
              <input type="text" name="f1517" id="f1517" size="3"  maxlength="3" value="[% f1517 %]"/> <!-- Default is set by the DefaultLanguageField008 syspref -->
134
              <input type="text" name="f1517" id="f1517" size="3" maxlength="3" value="[% f1517 %]" /> <!-- Default is set by the DefaultLanguageField008 syspref -->
134
      </td>
135
      </td>
135
        </tr>
136
        </tr>
136
				
137
				
Lines 140-199 Link Here
140
141
141
<!-- Start second batch of common fields for all formats -->
142
<!-- Start second batch of common fields for all formats -->
142
       <tr>
143
       <tr>
143
                <td><label for="f3537">35-37 Språk</label> (Se <a href="http://www.nb.no/baser/sprakkoder/">NORMARC-koder for språk</a>)</td>
144
                <td><label for="f3537">[% t('35-37 Språk') %]</label> [% t('(Se') %] <a href="http://www.nb.no/baser/sprakkoder/">[% t('NORMARC-koder for språk') %]</a>)</td>
144
                <td>
145
                <td>
145
                        <input type="text" name="f3537" id="f3537" size="4"  maxlength="4" value="[% f3537 %]"/>
146
                        <input type="text" name="f3537" id="f3537" size="4" maxlength="4" value="[% f3537 %]" />
146
                </td>
147
                </td>
147
        </tr>
148
        </tr>
148
	<tr>
149
	<tr>
149
                <td><label for="f38">38 Udefinert</label></td>
150
                <td><label for="f38">[% t('38 Udefinert') %]</label></td>
150
                <td>
151
                <td>
151
										<input type="hidden" name="f38" value=" " />                
152
										<input type="hidden" name="f38" value=" " />                
152
                </td>
153
                </td>
153
        </tr>
154
        </tr>
154
<tr>
155
<tr>
155
                <td><label for="f39">39 Katalogiseringskilde</label></td>
156
                <td><label for="f39">[% t('39 Katalogiseringskilde') %]</label></td>
156
                <td>
157
                <td>
157
                <select name="f39" id="f39" size="1">                                    
158
                <select name="f39" id="f39" size="1">                                    
158
	[% IF ( f39 ) %]
159
	[% IF ( f39 ) %]
159
		<option value=" " selected="selected">^ Ikke angitt</option>
160
		<option value=" " selected="selected">[% t('^ Ikke angitt') %]</option>
160
		[% ELSE %]
161
		[% ELSE %]
161
		<option value=" ">^ Ikke angitt</option>
162
		<option value=" ">[% t('^ Ikke angitt') %]</option>
162
		[% END %]
163
		[% END %]
163
	[% IF ( f390 ) %] 
164
	[% IF ( f390 ) %] 
164
		<option value="0" selected="selected">0 Norges nasjonalbibliografi, autorisert post</option> 
165
		<option value="0" selected="selected">[% t('0 Norges nasjonalbibliografi, autorisert post') %]</option> 
165
		[% ELSE %] 
166
		[% ELSE %] 
166
		<option value="0">0 Norges nasjonalbibliografi, autorisert post</option> 
167
		<option value="0">[% t('0 Norges nasjonalbibliografi, autorisert post') %]</option> 
167
		[% END %] 
168
		[% END %] 
168
	[% IF ( f391 ) %] 
169
	[% IF ( f391 ) %] 
169
		<option value="1" selected="selected">1 Norges nasjonalbibliografi, uautorisert post</option> 
170
		<option value="1" selected="selected">[% t('1 Norges nasjonalbibliografi, uautorisert post') %]</option> 
170
		[% ELSE %] 
171
		[% ELSE %] 
171
		<option value="1">1 Norges nasjonalbibliografi, uautorisert post</option> 
172
		<option value="1">[% t('1 Norges nasjonalbibliografi, uautorisert post') %]</option> 
172
		[% END %] 
173
		[% END %] 
173
	[% IF ( f392 ) %] 
174
	[% IF ( f392 ) %] 
174
		<option value="2" selected="selected">2 Biblioteksentralen, autorisert post</option> 
175
		<option value="2" selected="selected">[% t('2 Biblioteksentralen, autorisert post') %]</option> 
175
		[% ELSE %] 
176
		[% ELSE %] 
176
		<option value="2">2 Biblioteksentralen, autorisert post</option> 
177
		<option value="2">[% t('2 Biblioteksentralen, autorisert post') %]</option> 
177
		[% END %] 
178
		[% END %] 
178
	[% IF ( f393 ) %] 
179
	[% IF ( f393 ) %] 
179
		<option value="3" selected="selected">3 Biblioteksentralen, uautorisert post</option> 
180
		<option value="3" selected="selected">[% t('3 Biblioteksentralen, uautorisert post') %]</option> 
180
		[% ELSE %] 
181
		[% ELSE %] 
181
		<option value="3">3 Biblioteksentralen, uautorisert post</option> 
182
		<option value="3">[% t('3 Biblioteksentralen, uautorisert post') %]</option> 
182
		[% END %] 
183
		[% END %] 
183
	[% IF ( f394 ) %] 
184
	[% IF ( f394 ) %] 
184
		<option value="4" selected="selected">4 BIBSYS, autorisert post</option> 
185
		<option value="4" selected="selected">[% t('4 BIBSYS, autorisert post') %]</option> 
185
		[% ELSE %] 
186
		[% ELSE %] 
186
		<option value="4">4 BIBSYS, autorisert post</option> 
187
		<option value="4">[% t('4 BIBSYS, autorisert post') %]</option> 
187
		[% END %] 
188
		[% END %] 
188
	[% IF ( f395 ) %] 
189
	[% IF ( f395 ) %] 
189
		<option value="5" selected="selected">5 BIBSYS, uautorisert post</option> 
190
		<option value="5" selected="selected">[% t('5 BIBSYS, uautorisert post') %]</option> 
190
		[% ELSE %] 
191
		[% ELSE %] 
191
		<option value="5">5 BIBSYS, uautorisert post</option> 
192
		<option value="5">[% t('5 BIBSYS, uautorisert post') %]</option> 
192
		[% END %] 
193
		[% END %] 
193
	[% IF ( f399 ) %] 
194
	[% IF ( f399 ) %] 
194
		<option value="9" selected="selected">9 Annen kilde</option> 
195
		<option value="9" selected="selected">[% t('9 Annen kilde') %]</option> 
195
		[% ELSE %] 
196
		[% ELSE %] 
196
		<option value="9">9 Annen kilde</option> 
197
		<option value="9">[% t('9 Annen kilde') %]</option> 
197
		[% END %]
198
		[% END %]
198
								</select>
199
								</select>
199
                </td>
200
                </td>
Lines 202-208 Link Here
202
<!-- End second batch of common fields for all formats -->
203
<!-- End second batch of common fields for all formats -->
203
204
204
</table>
205
</table>
205
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
206
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Cancel') %]</a></fieldset>
206
</form>
207
</form>
207
208
208
<script type="text/javascript">//<![CDATA[
209
<script type="text/javascript">//<![CDATA[
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_leader.tt (-68 / +68 lines)
Lines 1-188 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Cataloging &rsaquo; 000 - Bygging av postens hode</title>
3
<title>[% t('Koha › Cataloging › 000 - Bygging av postens hode') %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
5
</head>
5
<body id="cat_normarc_leader" class="cat" style="padding:1em;">
6
<body id="cat_normarc_leader" class="cat" style="padding:1em;">
6
<form name="f_pop" onsubmit="report()">
7
<form name="f_pop" onsubmit="report()">
7
<input type="hidden" name="plugin_name" value="normarc_leader.pl" />
8
<input type="hidden" name="plugin_name" value="normarc_leader.pl" />
8
<h3>000 - Postens hode</h3>
9
<h3>[% t('000 - Postens hode') %]</h3>
9
<table>
10
<table>
10
	<tr>
11
	<tr>
11
		<td><span class="label">00-04 Systemgenerert informasjon</span></td>
12
		<td><span class="label">[% t('00-04 Systemgenerert informasjon') %]</span></td>
12
		<td>(autofylt)</td>
13
		<td>[% t('(autofylt)') %]</td>
13
	</tr>
14
	</tr>
14
	<tr>
15
	<tr>
15
		<td><label for="f5">05 Postens status</label></td>
16
		<td><label for="f5">[% t('05 Postens status') %]</label></td>
16
		<td>
17
		<td>
17
			<select name="f5" id="f5" size="1">
18
			<select name="f5" id="f5" size="1">
18
			
19
			
19
			[% IF ( f5c ) %]
20
			[% IF ( f5c ) %]
20
				<option value="c" selected="selected">c Rettet post</option>
21
				<option value="c" selected="selected">[% t('c Rettet post') %]</option>
21
			[% ELSE %]
22
			[% ELSE %]
22
				<option value="c">c Rettet post</option>
23
				<option value="c">[% t('c Rettet post') %]</option>
23
			[% END %]
24
			[% END %]
24
25
25
			[% IF ( f5d ) %]
26
			[% IF ( f5d ) %]
26
				<option value="d" selected="selected">d Slettet post</option>
27
				<option value="d" selected="selected">[% t('d Slettet post') %]</option>
27
			[% ELSE %]
28
			[% ELSE %]
28
				<option value="d">d Slettet post</option>
29
				<option value="d">[% t('d Slettet post') %]</option>
29
			[% END %]
30
			[% END %]
30
31
31
			[% IF ( f5n ) %]
32
			[% IF ( f5n ) %]
32
				<option value="n" selected="selected">n Ny post</option>
33
				<option value="n" selected="selected">[% t('n Ny post') %]</option>
33
			[% ELSE %]
34
			[% ELSE %]
34
				<option value="n">n Ny post</option>
35
				<option value="n">[% t('n Ny post') %]</option>
35
			[% END %]
36
			[% END %]
36
			
37
			
37
			[% IF ( f5p ) %]
38
			[% IF ( f5p ) %]
38
				<option value="p" selected="selected">p Oppgradert post</option>
39
				<option value="p" selected="selected">[% t('p Oppgradert post') %]</option>
39
			[% ELSE %]
40
			[% ELSE %]
40
				<option value="p">p Oppgradert post</option>
41
				<option value="p">[% t('p Oppgradert post') %]</option>
41
			[% END %]
42
			[% END %]
42
43
43
			</select>
44
			</select>
44
		</td>
45
		</td>
45
	</tr>
46
	</tr>
46
	<tr>
47
	<tr>
47
		<td><label for="f6">06 Materialtype</label></td>
48
		<td><label for="f6">[% t('06 Materialtype') %]</label></td>
48
		<td>
49
		<td>
49
			<select name="f6" id="f6" size="1">
50
			<select name="f6" id="f6" size="1">
50
			
51
			
51
			[% IF ( f6a ) %]
52
			[% IF ( f6a ) %]
52
				<option value="a" selected="selected">a Tekstlig materiale</option>
53
				<option value="a" selected="selected">[% t('a Tekstlig materiale') %]</option>
53
			[% ELSE %]
54
			[% ELSE %]
54
				<option value="a">a Tekstlig materiale</option>
55
				<option value="a">[% t('a Tekstlig materiale') %]</option>
55
			[% END %]
56
			[% END %]
56
			[% IF ( f6b ) %]
57
			[% IF ( f6b ) %]
57
				<option value="b" selected="selected">b Manuskripter (kap.4)</option>
58
				<option value="b" selected="selected">[% t('b Manuskripter (kap.4)') %]</option>
58
			[% ELSE %]
59
			[% ELSE %]
59
				<option value="b">b Manuskripter (kap.4)</option>
60
				<option value="b">[% t('b Manuskripter (kap.4)') %]</option>
60
			[% END %]
61
			[% END %]
61
			[% IF ( f6c ) %]
62
			[% IF ( f6c ) %]
62
				<option value="c" selected="selected">c Musikktrykk (kap.5)</option>
63
				<option value="c" selected="selected">[% t('c Musikktrykk (kap.5)') %]</option>
63
			[% ELSE %]
64
			[% ELSE %]
64
				<option value="c">c Musikktrykk (kap.5)</option>
65
				<option value="c">[% t('c Musikktrykk (kap.5)') %]</option>
65
			[% END %]
66
			[% END %]
66
			[% IF ( f6d ) %]
67
			[% IF ( f6d ) %]
67
				<option value="d" selected="selected">d Musikkmanuskripter (kap.5)</option>
68
				<option value="d" selected="selected">[% t('d Musikkmanuskripter (kap.5)') %]</option>
68
			[% ELSE %]
69
			[% ELSE %]
69
				<option value="d">d Musikkmanuskripter (kap.5)</option>
70
				<option value="d">[% t('d Musikkmanuskripter (kap.5)') %]</option>
70
			[% END %]
71
			[% END %]
71
			[% IF ( f6e ) %]
72
			[% IF ( f6e ) %]
72
				<option value="e" selected="selected">e Kartografisk materiale (kap.3)</option>
73
				<option value="e" selected="selected">[% t('e Kartografisk materiale (kap.3)') %]</option>
73
			[% ELSE %]
74
			[% ELSE %]
74
				<option value="e">e Kartografisk materiale (kap.3)</option>
75
				<option value="e">[% t('e Kartografisk materiale (kap.3)') %]</option>
75
			[% END %]
76
			[% END %]
76
			[% IF ( f6f ) %]
77
			[% IF ( f6f ) %]
77
				<option value="f" selected="selected">f Kartmanuskripter (kap.3)</option>
78
				<option value="f" selected="selected">[% t('f Kartmanuskripter (kap.3)') %]</option>
78
			[% ELSE %]
79
			[% ELSE %]
79
				<option value="f">f Kartmanuskripter (kap.3)</option>
80
				<option value="f">[% t('f Kartmanuskripter (kap.3)') %]</option>
80
			[% END %]
81
			[% END %]
81
			[% IF ( f6g ) %]
82
			[% IF ( f6g ) %]
82
				<option value="g" selected="selected">g Filmer og videoopptak (kap.7)</option>
83
				<option value="g" selected="selected">[% t('g Filmer og videoopptak (kap.7)') %]</option>
83
			[% ELSE %]
84
			[% ELSE %]
84
				<option value="g">g Filmer og videoopptak (kap.7)</option>
85
				<option value="g">[% t('g Filmer og videoopptak (kap.7)') %]</option>
85
			[% END %]
86
			[% END %]
86
			[% IF ( f6i ) %]
87
			[% IF ( f6i ) %]
87
				<option value="i" selected="selected">i Lydopptak (ikke musikk) (kap.6)</option>
88
				<option value="i" selected="selected">[% t('i Lydopptak (ikke musikk) (kap.6)') %]</option>
88
			[% ELSE %]
89
			[% ELSE %]
89
				<option value="i">i Lydopptak (ikke musikk) (kap.6)</option>
90
				<option value="i">[% t('i Lydopptak (ikke musikk) (kap.6)') %]</option>
90
			[% END %]
91
			[% END %]
91
			[% IF ( f6j ) %]
92
			[% IF ( f6j ) %]
92
				<option value="j" selected="selected">j Lydopptak av musikkverk (kap.6)</option>
93
				<option value="j" selected="selected">[% t('j Lydopptak av musikkverk (kap.6)') %]</option>
93
			[% ELSE %]
94
			[% ELSE %]
94
				<option value="j">j Lydopptak av musikkverk (kap.6)</option>
95
				<option value="j">[% t('j Lydopptak av musikkverk (kap.6)') %]</option>
95
			[% END %]
96
			[% END %]
96
			[% IF ( f6k ) %]
97
			[% IF ( f6k ) %]
97
				<option value="k" selected="selected">k Grafisk materiale (kap.8)</option>
98
				<option value="k" selected="selected">[% t('k Grafisk materiale (kap.8)') %]</option>
98
			[% ELSE %]
99
			[% ELSE %]
99
				<option value="k">k Grafisk materiale (kap.8)</option>
100
				<option value="k">[% t('k Grafisk materiale (kap.8)') %]</option>
100
			[% END %]
101
			[% END %]
101
			[% IF ( f6m ) %]
102
			[% IF ( f6m ) %]
102
				<option value="m" selected="selected">m Maskinlesbare filer (kap.9)</option>
103
				<option value="m" selected="selected">[% t('m Maskinlesbare filer (kap.9)') %]</option>
103
			[% ELSE %]
104
			[% ELSE %]
104
				<option value="m">m Maskinlesbare filer (kap.9)</option>
105
				<option value="m">[% t('m Maskinlesbare filer (kap.9)') %]</option>
105
			[% END %]
106
			[% END %]
106
			[% IF ( f6o ) %]
107
			[% IF ( f6o ) %]
107
				<option value="o" selected="selected">o Kombidokumenter</option>
108
				<option value="o" selected="selected">[% t('o Kombidokumenter') %]</option>
108
			[% ELSE %]
109
			[% ELSE %]
109
				<option value="o">o Kombidokumenter</option>
110
				<option value="o">[% t('o Kombidokumenter') %]</option>
110
			[% END %]
111
			[% END %]
111
			[% IF ( f6r ) %]
112
			[% IF ( f6r ) %]
112
				<option value="r" selected="selected">r Tre-dimensjonale gjenstander (kap.10)</option>
113
				<option value="r" selected="selected">[% t('r Tre-dimensjonale gjenstander (kap.10)') %]</option>
113
			[% ELSE %]
114
			[% ELSE %]
114
				<option value="r">r Tre-dimensjonale gjenstander (kap.10)</option>
115
				<option value="r">[% t('r Tre-dimensjonale gjenstander (kap.10)') %]</option>
115
			[% END %]
116
			[% END %]
116
117
117
			</select>
118
			</select>
118
		</td>
119
		</td>
119
	</tr>
120
	</tr>
120
	<tr>
121
	<tr>
121
		<td><label for="f7">07 Bibliografisk kategori</label></td>
122
		<td><label for="f7">[% t('07 Bibliografisk kategori') %]</label></td>
122
		<td>
123
		<td>
123
			<select name="f7" id="f7" size="1">
124
			<select name="f7" id="f7" size="1">
124
			
125
			
125
				[% IF ( f7a ) %]
126
				[% IF ( f7a ) %]
126
					<option value="a" selected="selected">a Analytt til ikke-periodisk dokument</option>
127
					<option value="a" selected="selected">[% t('a Analytt til ikke-periodisk dokument') %]</option>
127
				[% ELSE %]
128
				[% ELSE %]
128
					<option value="a">a Analytt til ikke-periodisk dokument</option>
129
					<option value="a">[% t('a Analytt til ikke-periodisk dokument') %]</option>
129
				[% END %]
130
				[% END %]
130
				[% IF ( f7b ) %]
131
				[% IF ( f7b ) %]
131
					<option value="b" selected="selected">b Serieanalytt</option>
132
					<option value="b" selected="selected">[% t('b Serieanalytt') %]</option>
132
				[% ELSE %]
133
				[% ELSE %]
133
					<option value="b">b Serieanalytt</option>
134
					<option value="b">[% t('b Serieanalytt') %]</option>
134
				[% END %]				
135
				[% END %]				
135
				[% IF ( f7c ) %]
136
				[% IF ( f7c ) %]
136
					<option value="c" selected="selected">c Samling</option>
137
					<option value="c" selected="selected">[% t('c Samling') %]</option>
137
				[% ELSE %]
138
				[% ELSE %]
138
					<option value="c">c Samling</option>
139
					<option value="c">[% t('c Samling') %]</option>
139
				[% END %]				
140
				[% END %]				
140
				[% IF ( f7m ) %]
141
				[% IF ( f7m ) %]
141
					<option value="m" selected="selected">m Monografi</option>
142
					<option value="m" selected="selected">[% t('m Monografi') %]</option>
142
				[% ELSE %]
143
				[% ELSE %]
143
					<option value="m">m Monografi</option>
144
					<option value="m">[% t('m Monografi') %]</option>
144
				[% END %]				
145
				[% END %]				
145
				[% IF ( f7p ) %]
146
				[% IF ( f7p ) %]
146
					<option value="p" selected="selected">p Analytt til periodikum</option>
147
					<option value="p" selected="selected">[% t('p Analytt til periodikum') %]</option>
147
				[% ELSE %]
148
				[% ELSE %]
148
					<option value="p">p Analytt til periodikum</option>
149
					<option value="p">[% t('p Analytt til periodikum') %]</option>
149
				[% END %]				
150
				[% END %]				
150
				[% IF ( f7s ) %]
151
				[% IF ( f7s ) %]
151
					<option value="s" selected="selected">s Periodikum </option>
152
					<option value="s" selected="selected">[% t('s Periodikum') %] </option>
152
				[% ELSE %]
153
				[% ELSE %]
153
					<option value="s">s Periodikum </option>
154
					<option value="s">[% t('s Periodikum') %] </option>
154
				[% END %]				
155
				[% END %]				
155
156
156
			</select>
157
			</select>
157
		</td>
158
		</td>
158
	</tr>
159
	</tr>
159
	<tr>
160
	<tr>
160
		<td>08-16 Systemgenerert informasjon</td>
161
		<td>[% t('08-16 Systemgenerert informasjon') %]</td>
161
		<td>(autofylt)</td>
162
		<td>[% t('(autofylt)') %]</td>
162
    </tr>
163
    </tr>
163
    <tr>
164
    <tr>
164
		<td><label for="f17">17 Beskrivelsesnivå</label></td>
165
		<td><label for="f17">[% t('17 Beskrivelsesnivå') %]</label></td>
165
		<td>
166
		<td>
166
			<select name="f17" id="f17" size="1">
167
			<select name="f17" id="f17" size="1">
167
				[% IF ( f170 ) %]
168
				[% IF ( f170 ) %]
168
					<option value="0" selected="selected">0	Fullstendig beskrivelse</option>
169
					<option value="0" selected="selected">[% t('0') %]	[% t('Fullstendig beskrivelse') %]</option>
169
				[% ELSE %]
170
				[% ELSE %]
170
					<option value="0">0	Fullstendig beskrivelse</option>
171
					<option value="0">[% t('0') %]	[% t('Fullstendig beskrivelse') %]</option>
171
				[% END %]
172
				[% END %]
172
				[% IF ( f171 ) %]
173
				[% IF ( f171 ) %]
173
					<option value="1" selected="selected">1 Nivå 2, iflg. KAT.</option>
174
					<option value="1" selected="selected">[% t('1 Nivå 2, iflg. KAT.') %]</option>
174
				[% ELSE %]
175
				[% ELSE %]
175
					<option value="1">1 Nivå 2, iflg. KAT.</option>
176
					<option value="1">[% t('1 Nivå 2, iflg. KAT.') %]</option>
176
				[% END %]
177
				[% END %]
177
				[% IF ( f172 ) %]
178
				[% IF ( f172 ) %]
178
					<option value="2" selected="selected">2 Nivå 1, iflg. KAT.</option>
179
					<option value="2" selected="selected">[% t('2 Nivå 1, iflg. KAT.') %]</option>
179
				[% ELSE %]
180
				[% ELSE %]
180
					<option value="2">2 Nivå 1, iflg. KAT.</option>
181
					<option value="2">[% t('2 Nivå 1, iflg. KAT.') %]</option>
181
				[% END %]
182
				[% END %]
182
				[% IF ( f175 ) %]
183
				[% IF ( f175 ) %]
183
					<option value="5" selected="selected">5 Foreløpig katalogisering.</option>
184
					<option value="5" selected="selected">[% t('5 Foreløpig katalogisering.') %]</option>
184
				[% ELSE %]
185
				[% ELSE %]
185
					<option value="5">5 Foreløpig katalogisering.</option>
186
					<option value="5">[% t('5 Foreløpig katalogisering.') %]</option>
186
				[% END %]
187
				[% END %]
187
188
188
			</select>
189
			</select>
Lines 190-201 Link Here
190
	</tr>
191
	</tr>
191
192
192
	<tr>
193
	<tr>
193
		<td>18-23 Systemgenerert informasjon</td>
194
		<td>[% t('18-23 Systemgenerert informasjon') %]</td>
194
		<td>(autofylt)</td>
195
		<td>[% t('(autofylt)') %]</td>
195
	</tr>
196
	</tr>
196
197
197
</table>
198
</table>
198
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Avbryt</a></fieldset>
199
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">[% t('Avbryt') %]</a></fieldset>
199
</form>
200
</form>
200
<script type="text/javascript">
201
<script type="text/javascript">
201
//<![CDATA[
202
//<![CDATA[
202
- 

Return to bug 20988