Bug 32945: (QA follow-up) Fix capitalization of id in even more places

This fixes additional strings pointed out by QA.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit d22f885b06)
Signed-off-by: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com>
This commit is contained in:
Katrin Fischer 2023-02-23 22:31:09 +00:00 committed by Martin Renvoize
parent fcdb3e0899
commit 0771a70c48
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
4 changed files with 7 additions and 7 deletions

View file

@ -45,7 +45,7 @@
[% IF message.code == 'biblio_not_exists' %]
<span>The biblionumber [% message.biblionumber | html %] does not exist in the database.</span>
[% ELSIF message.code == 'authority_not_exists' %]
<span>The authority id [% message.authid | html %] does not exist in the database.</span>
<span>The authority ID [% message.authid | html %] does not exist in the database.</span>
[% ELSIF message.code == 'cannot_enqueue_job' %]
<span>Cannot enqueue this job.</span>
[% ELSIF message.code == 'biblio_not_exists' %]

View file

@ -49,7 +49,7 @@
<h2>Original</h2>
[% IF ( ERROR_FORMATTED1 ) %]
<div class="dialog alert">
<p>The record id <em>[% RECORDID | html %]</em> doesn't match any existing record.</p>
<p>The record ID <em>[% RECORDID | html %]</em> doesn't match any existing record.</p>
</div>
[% ELSE %]
<h2>[% RECORDTITLE | html %]</h2>
@ -60,7 +60,7 @@
<h2>Imported</h2>
[% IF ( ERROR_FORMATTED2 ) %]
<div class="dialog alert">
<p>The import id number <em>[% IMPORTID | html %]</em> doesn't match any existing record.</p>
<p>The import ID number <em>[% IMPORTID | html %]</em> doesn't match any existing record.</p>
</div>
[% ELSE %]
<h2>[% IMPORTTITLE | html %]</h2>

View file

@ -51,10 +51,10 @@
[% IF message == 'valid_payment' %]
<p>Your payment of $[% message_value | html %] has been processed successfully!</p>
[% ELSIF message == 'duplicate_payment' %]
<p>A payment with the transaction id '[% message_value | html %]' has already been posted to an account.</p>
<p>A payment with the transaction ID '[% message_value | html %]' has already been posted to an account.</p>
<p>Please contact a librarian for details.</p>
[% ELSIF message == 'invalid_payment' %]
<p>The transaction id '[% message_value | html %]' for this payment is invalid.</p>
<p>The transaction ID '[% message_value | html %]' for this payment is invalid.</p>
<p>Please contact a librarian for details.</p>
[% END %]
</div>

View file

@ -85,7 +85,7 @@
[% IF ( bad_biblionumber ) %]
<li id="bad_biblionumber">
ERROR: No record found for record id [% bad_biblionumber | html %].
ERROR: No record found for record ID [% bad_biblionumber | html %].
</li>
[% END %]
@ -103,7 +103,7 @@
[% IF ( no_biblionumber ) %]
<li id="no_biblionumber">
ERROR: No record id specified.
ERROR: No record ID specified.
</li>
[% END %]