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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt (-1 / +1 lines)
Lines 45-51 Link Here
45
    [% IF message.code == 'biblio_not_exists' %]
45
    [% IF message.code == 'biblio_not_exists' %]
46
      <span>The biblionumber [% message.biblionumber | html %] does not exist in the database.</span>
46
      <span>The biblionumber [% message.biblionumber | html %] does not exist in the database.</span>
47
    [% ELSIF message.code == 'authority_not_exists' %]
47
    [% ELSIF message.code == 'authority_not_exists' %]
48
      <span>The authority id [% message.authid | html %] does not exist in the database.</span>
48
      <span>The authority ID [% message.authid | html %] does not exist in the database.</span>
49
    [% ELSIF message.code == 'cannot_enqueue_job' %]
49
    [% ELSIF message.code == 'cannot_enqueue_job' %]
50
        <span>Cannot enqueue this job.</span>
50
        <span>Cannot enqueue this job.</span>
51
    [% ELSIF message.code == 'biblio_not_exists' %]
51
    [% ELSIF message.code == 'biblio_not_exists' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/showdiffmarc.tt (-2 / +2 lines)
Lines 49-55 Link Here
49
            <h2>Original</h2>
49
            <h2>Original</h2>
50
            [% IF ( ERROR_FORMATTED1 ) %]
50
            [% IF ( ERROR_FORMATTED1 ) %]
51
                <div class="dialog alert">
51
                <div class="dialog alert">
52
                    <p>The record id <em>[% RECORDID | html %]</em> doesn't match any existing record.</p>
52
                    <p>The record ID <em>[% RECORDID | html %]</em> doesn't match any existing record.</p>
53
                </div>
53
                </div>
54
            [% ELSE %]
54
            [% ELSE %]
55
                <h2>[% RECORDTITLE | html %]</h2>
55
                <h2>[% RECORDTITLE | html %]</h2>
Lines 60-66 Link Here
60
            <h2>Imported</h2>
60
            <h2>Imported</h2>
61
            [% IF ( ERROR_FORMATTED2 ) %]
61
            [% IF ( ERROR_FORMATTED2 ) %]
62
                <div class="dialog alert">
62
                <div class="dialog alert">
63
                    <p>The import id number <em>[% IMPORTID | html %]</em> doesn't match any existing record.</p>
63
                    <p>The import ID number <em>[% IMPORTID | html %]</em> doesn't match any existing record.</p>
64
                </div>
64
                </div>
65
            [% ELSE %]
65
            [% ELSE %]
66
                <h2>[% IMPORTTITLE | html %]</h2>
66
                <h2>[% IMPORTTITLE | html %]</h2>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt (-2 / +2 lines)
Lines 51-60 Link Here
51
                            [% IF message == 'valid_payment' %]
51
                            [% IF message == 'valid_payment' %]
52
                                <p>Your payment of $[% message_value | html %] has been processed successfully!</p>
52
                                <p>Your payment of $[% message_value | html %] has been processed successfully!</p>
53
                            [% ELSIF message == 'duplicate_payment' %]
53
                            [% ELSIF message == 'duplicate_payment' %]
54
                                <p>A payment with the transaction id '[% message_value | html %]' has already been posted to an account.</p>
54
                                <p>A payment with the transaction ID '[% message_value | html %]' has already been posted to an account.</p>
55
                                <p>Please contact a librarian for details.</p>
55
                                <p>Please contact a librarian for details.</p>
56
                            [% ELSIF message == 'invalid_payment' %]
56
                            [% ELSIF message == 'invalid_payment' %]
57
                                <p>The transaction id '[% message_value | html %]' for this payment is invalid.</p>
57
                                <p>The transaction ID '[% message_value | html %]' for this payment is invalid.</p>
58
                                <p>Please contact a librarian for details.</p>
58
                                <p>Please contact a librarian for details.</p>
59
                            [% END %]
59
                            [% END %]
60
                        </div>
60
                        </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-3 / +2 lines)
Lines 85-91 Link Here
85
85
86
                        [% IF ( bad_biblionumber ) %]
86
                        [% IF ( bad_biblionumber ) %]
87
                            <li id="bad_biblionumber">
87
                            <li id="bad_biblionumber">
88
                                ERROR: No record found for record id [% bad_biblionumber | html %].
88
                                ERROR: No record found for record ID [% bad_biblionumber | html %].
89
                            </li>
89
                            </li>
90
                        [% END %]
90
                        [% END %]
91
91
Lines 103-109 Link Here
103
103
104
                        [% IF ( no_biblionumber ) %]
104
                        [% IF ( no_biblionumber ) %]
105
                            <li id="no_biblionumber">
105
                            <li id="no_biblionumber">
106
                               ERROR: No record id specified.
106
                               ERROR: No record ID specified.
107
                           </li>
107
                           </li>
108
                        [% END %]
108
                        [% END %]
109
109
110
- 

Return to bug 32945