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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc-overlay-rules.tt (-27 / +16 lines)
Lines 197-208 $(document).ready(function(){ Link Here
197
    var module_filter_options = {
197
    var module_filter_options = {
198
      source: {
198
      source: {
199
        '*': '*',
199
        '*': '*',
200
        batchmod: "Batch record modification",
200
        batchmod: _("Batch record modification"),
201
        intranet: "Staff client MARC editor",
201
        intranet: _("Staff client MARC editor"),
202
        batchimport: "Staged MARC import",
202
        batchimport: _("Staged MARC import"),
203
        z3950: "Z39.50",
203
        z3950: _("Z39.50"),
204
        bulkmarcimport: "bulkmarcimport.pl",
204
        bulkmarcimport: _("bulkmarcimport.pl"),
205
        import_lexile: "import_lexile.pl"
205
        import_lexile: _("import_lexile.pl")
206
      },
206
      },
207
      categorycode: {
207
      categorycode: {
208
        '*': '*',
208
        '*': '*',
Lines 339-354 $(document).ready(function(){ Link Here
339
            <th>
339
            <th>
340
                <select name="preset">
340
                <select name="preset">
341
                    <option value="" selected>Custom</option>
341
                    <option value="" selected>Custom</option>
342
                    [% FOR preset IN [
342
                    <option value="Protect">Protect</option>
343
                            'Protect',
343
                    <option value="Overwrite">Overwrite</option>
344
                            'Overwrite',
344
                    <option value="Add new">Add new</option>
345
                            'Add new',
345
                    <option value="Add and append">Add and append</option>
346
                            'Add and append',
346
                    <option value="Protect from deletion">Protect from deletion</option>
347
                            'Protect from deletion'
348
                        ]
349
                    %]
350
                        <option value="[% preset | html %]">[% preset | html %]</option>
351
                    [% END %]
352
                </select>
347
                </select>
353
            </th>
348
            </th>
354
            <th class="rule-operation-action-edit">
349
            <th class="rule-operation-action-edit">
Lines 409-424 $(document).ready(function(){ Link Here
409
                <th>
404
                <th>
410
                    <select name="preset">
405
                    <select name="preset">
411
                        <option value="" selected>Custom</option>
406
                        <option value="" selected>Custom</option>
412
                        [% FOR preset IN [
407
                        <option value="Protect">Protect</option>
413
                                'Protect',
408
                        <option value="Overwrite">Overwrite</option>
414
                                'Overwrite',
409
                        <option value="Add new">Add new</option>
415
                                'Add new',
410
                        <option value="Add and append">Add and append</option>
416
                                'Add and append',
411
                        <option value="Protect from deletion">Protect from deletion</option>
417
                                'Protect from deletion'
418
                            ]
419
                        %]
420
                            <option value="[% preset | html %]">[% preset | html %]</option>
421
                        [% END %]
422
                    </select>
412
                    </select>
423
                </th>
413
                </th>
424
                <td class="rule-operation-action-edit">
414
                <td class="rule-operation-action-edit">
425
- 

Return to bug 14957