Bug 32945: Fix capitalization of id in more places
authorKatrin Fischer <katrin.fischer.83@web.de>
Fri, 10 Feb 2023 20:49:19 +0000 (21:49 +0100)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 27 Mar 2023 09:52:38 +0000 (11:52 +0200)
id should be spelled ID, ids should be IDs as it's
an abbreviation according to:

https://www.oxfordlearnersdictionaries.com/definition/english/identification

To test:
* Some of these are hard to make happen or require specific
  data, easiest will be to review the patch itself closely.

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
koha-tmpl/intranet-tmpl/prog/en/modules/about.tt
koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqcontract.tt
koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt
koha-tmpl/intranet-tmpl/prog/en/modules/admin/library_groups.tt
koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt

index 81ddc19..280b756 100644 (file)
                                 <h3>Problems found</h3>
                                 [% IF ai_patrons %]
                                     <h4>Patrons</h4>
-                                    <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
+                                    <p>The following IDs exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
                                     <p>
                                         [% FOR p IN ai_patrons %]
                                             [% p.borrowernumber | html %]
                                 [% END %]
                                 [% IF ai_biblios %]
                                     <h4>Bibliographic records</h4>
-                                    <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
+                                    <p>The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
                                     <p>
                                         [% FOR b IN ai_biblios %]
                                             [% b.biblionumber | html %]
                                 [% END %]
                                 [% IF ai_items %]
                                     <h4>Items</h4>
-                                    <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
+                                    <p>The following IDs exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
                                     <p>
                                         [% FOR i IN ai_items %]
                                             [% i.itemnumber | html %]
                                 [% END %]
                                 [% IF ai_checkouts %]
                                     <h4>Checkouts</h4>
-                                    <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
+                                    <p>The following IDs exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
                                     <p>
                                         [% FOR c IN ai_checkouts %]
                                             [% c.issue_id | html %]
                                 [% END %]
                                 [% IF ai_holds %]
                                     <h4>Holds</h4>
-                                    <p>The following ids exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
+                                    <p>The following IDs exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
                                     <p>
                                         [% FOR h IN ai_holds %]
                                             [% h.reserve_id | html %]
index 097b2c9..5b26ac2 100644 (file)
                         <fieldset class="rows">
                             <ol>
                                 [% IF ( contractnumber ) %]
-                                        <li><span class="label">Contract id </span>[% contractnumber | html %]
+                                        <li><span class="label">Contract ID </span>[% contractnumber | html %]
                                             <input type="hidden" name="contractnumber" value="[% contractnumber | html %]" />
                                             <input type="hidden" name="is_a_modif" value="1" />
                                         </li>
index 56b6a06..abef24f 100644 (file)
@@ -69,7 +69,7 @@
         [% CASE 'error_on_update' %]
             <span>An error occurred when updating this city. Perhaps it already exists.</span>
         [% CASE 'error_on_insert' %]
-            <span>An error occurred when adding this city. The city id might already exist.</span>
+            <span>An error occurred when adding this city. The city ID might already exist.</span>
         [% CASE 'error_on_delete' %]
             <span>An error occurred when deleting this city. Check the logs.</span>
         [% CASE 'success_on_update' %]
index bcbe19d..c1b5114 100644 (file)
@@ -33,7 +33,7 @@
     <div class="dialog [% m.type | html %]">
         [% SWITCH m.code %]
         [% CASE 'error_on_insert' %]
-            <span>An error occurred when adding this library. The library id might already exist in this group.</span>
+            <span>An error occurred when adding this library. The library ID might already exist in this group.</span>
         [% CASE %]
             <span>[% m.code | html %]</span>
         [% END %]
index 4b345ee..ae11332 100644 (file)
@@ -82,7 +82,7 @@
 [% ELSIF msg_added %]
     <div class="dialog message">Z39.50/SRU server added ([% msg_add | html %])</div>
 [% ELSIF msg_notfound %]
-    <div class="dialog alert">Error: Server with id [% msg_add | html %] not found</div>
+    <div class="dialog alert">Error: Server with ID [% msg_add | html %] not found</div>
 [% END %]
 
 [% IF ( add_form ) %]