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

(-)a/installer/data/mysql/atomicupdate/bug_32902.pl (+24 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number => "BUG_NUMBER",
5
    description => "A single line description",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        # Do you stuffs here
10
        $dbh->do(q{});
11
        # Print useful stuff here
12
        # tables
13
        say $out "Added new table 'XXX'";
14
        say $out "Added column 'XXX.YYY'";
15
        # sysprefs
16
        say $out "Added new system preference 'XXX'";
17
        say $out "Updated system preference 'XXX'";
18
        say $out "Removed system preference 'XXX'";
19
        # permissions
20
        say $out "Added new permission 'XXX'";
21
        # letters
22
        say $out "Added new letter 'XXX' (TRANSPORT)";
23
    },
24
};
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-item-action.inc (-3 / +3 lines)
Lines 14-32 Link Here
14
            [% ELSE %]
14
            [% ELSE %]
15
                <option value="add_only_for_matches">
15
                <option value="add_only_for_matches">
16
            [% END %]
16
            [% END %]
17
                Add items only if matching bib was found</option>
17
                Add items only if matching record was found</option>
18
            [% IF ( item_action_add_only_for_new ) %]
18
            [% IF ( item_action_add_only_for_new ) %]
19
                <option value="add_only_for_new" selected="selected">
19
                <option value="add_only_for_new" selected="selected">
20
            [% ELSE %]
20
            [% ELSE %]
21
                <option value="add_only_for_new">
21
                <option value="add_only_for_new">
22
            [% END %]
22
            [% END %]
23
                Add items only if no matching bib was found</option>
23
                Add items only if no matching record was found</option>
24
            [% IF ( item_action_replace ) %]
24
            [% IF ( item_action_replace ) %]
25
                <option value="replace" selected="selected">
25
                <option value="replace" selected="selected">
26
            [% ELSE %]
26
            [% ELSE %]
27
                <option value="replace">
27
                <option value="replace">
28
            [% END %]
28
            [% END %]
29
                Replace items if matching bib was found (only for existing items)</option>
29
                Replace items if matching record was found (only for existing items)</option>
30
            [% IF ( item_action_ignore ) %]
30
            [% IF ( item_action_ignore ) %]
31
                <option value="ignore" selected="selected">
31
                <option value="ignore" selected="selected">
32
            [% ELSE %]
32
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt (-3 / +2 lines)
Lines 238-246 Link Here
238
                                            [% IF ( item_action == 'always_add' ) %]
238
                                            [% IF ( item_action == 'always_add' ) %]
239
                                                <span>Always add items</span>
239
                                                <span>Always add items</span>
240
                                            [% ELSIF ( item_action == 'add_only_for_matches' ) %]
240
                                            [% ELSIF ( item_action == 'add_only_for_matches' ) %]
241
                                                <span>Add items only if matching bib was found</span>
241
                                                <span>Add items only if matching record was found</span>
242
                                            [% ELSIF ( item_action == 'add_only_for_new' ) %]
242
                                            [% ELSIF ( item_action == 'add_only_for_new' ) %]
243
                                                <span>Add items only if no matching bib was found</span>
243
                                                <span>Add items only if no matching record was found</span>
244
                                            [% ELSIF ( item_action == 'ignore' ) %]
244
                                            [% ELSIF ( item_action == 'ignore' ) %]
245
                                                <span>Ignore items</span>
245
                                                <span>Ignore items</span>
246
                                            [% ELSE %]
246
                                            [% ELSE %]
247
- 

Return to bug 32901