Bugzilla – Attachment 154109 Details for
Bug 34434
Terminology: Biblio should be bibliographic
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34434: Terminology: Biblio should be bibliographic
Bug-34434-Terminology-Biblio-should-be-bibliograph.patch (text/plain), 8.93 KB, created by
Katrin Fischer
on 2023-07-31 19:37:09 UTC
(
hide
)
Description:
Bug 34434: Terminology: Biblio should be bibliographic
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2023-07-31 19:37:09 UTC
Size:
8.93 KB
patch
obsolete
>From 69a7c1d086888005961cd75c4b858f787df6c6e0 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Thu, 27 Jul 2023 15:12:12 +0000 >Subject: [PATCH] Bug 34434: Terminology: Biblio should be bibliographic > >This patch corrects several more instances where the templates use the >term "biblio" where it should use "bibliographic." > >To test, apply the patch and confirm that these instances read >correctly: > >- About -> Special thanks... -> Mines Paristech: "bibliographic > frameworks" >- Acquisitions -> Vendor -> Receive shipments: "Record count" in the > table of shipments. >- Catalogue -> Bibliographic record details -> Labeled MARC: "Labeled > MARC record" heading. >- Circulation -> Holds to pull: Error message, "hold has been placed at > the bibliographic record level." > * I'm not sure how one can trigger this error message. >- Tools -> Log viewer -> Filter by "Catalog" and "Add": "Bibliographic > record..." link in the "Object" column. > >Signed-off-by: Sam Lau <samalau@gmail.com> >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt | 3 ++- > .../prog/en/modules/catalogue/labeledMARCdetail.tt | 2 +- > .../intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt | 6 +++--- > 5 files changed, 9 insertions(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >index c5c90e97c4..87e9a409cb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >@@ -572,7 +572,7 @@ > <th scope="row"><strong>Warning</strong> </th> > <td> > [% FOR w IN warnHiddenBiblionumbers %] >- <span>Biblio framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]</span><br/> >+ <span>Bibliographic framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]</span><br/> > [% END %] > </td> > </tr> >@@ -734,7 +734,7 @@ > <a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship) > </li> > <li> >- <a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (biblio frameworks, MARC authorities, OPAC basket, Serials sponsorship) >+ <a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (bibliographic frameworks, MARC authorities, OPAC basket, Serials sponsorship) > </li> > <li> > <a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules) >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt >index 2cdf9433f2..45bd57cfe2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt >@@ -1,6 +1,7 @@ > [% USE raw %] > [% USE Asset %] > [% USE KohaDates %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] > <title>Receive shipment from vendor [% name | html %] › Acquisitions › Koha</title> >@@ -82,7 +83,7 @@ > <th>Date received</th> > <th>Invoice number</th> > <th>Item count</th> >- <th>Biblio count</th> >+ <th>[% tp("Bibliographic record", "Record count") | html %]</th> > <th>Items expected</th> > </tr> > </thead> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >index e680719011..b8aff7b211 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >@@ -50,7 +50,7 @@ > [% IF ( unknownbiblionumber ) %] > Unknown record > [% ELSE %] >- Labeled MARC biblio : [% biblionumber | html %] ( [% bibliotitle | html %] ) >+ Labeled MARC record : [% biblionumber | html %] ( [% bibliotitle | html %] ) > [% END %] > </h1> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >index 4f265aaa7d..44dcb43c3f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >@@ -45,7 +45,7 @@ > [% CASE 'hold_cancelled' %] > <span>The hold has been correctly cancelled.</span> > [% CASE 'hold_placed_at_biblio_level' %] >- <span>The hold has been placed on biblio level. It is not possible to determine the item to mark as lost.</span> >+ <span>The hold has been placed at the bibliographic record level. It is not possible to determine the item to mark as lost.</span> > [% CASE %] > [% m.code | html %] > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >index c840d16fcc..c4c3d3d6d9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >@@ -351,9 +351,9 @@ > [% ELSIF ( loopro.module == 'CATALOGUING' ) %] > [% IF ( loopro.info.substr(0, 4) == 'item' ) %] > <a href="/cgi-bin/koha/catalogue/moredetail.pl?item=[% loopro.object | uri %]&biblionumber=[% loopro.biblionumber | uri %]&bi=[% loopro.biblioitemnumber | uri %]#item[% loopro.object | uri %]">Item [% loopro.object | html %]</a> from >- <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.biblionumber | uri %]" title="Display detail for this biblio">Biblio [% loopro.biblionumber | html %]</a> >+ <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.biblionumber | uri %]" title="Display detail for this bibliographic record">Bibliographic record [% loopro.biblionumber | html %]</a> > [% ELSIF ( loopro.info.substr(0, 6) == 'biblio' ) %] >- <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.object | uri %]" title="Display detail for this biblio">Biblio [% loopro.object | html %]</a> >+ <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.object | uri %]" title="Display detail for this bibliographic record">Bibliographic record [% loopro.object | html %]</a> > [% ELSE %] > [% loopro.object | html %] > [% END %] >@@ -371,7 +371,7 @@ > [% IF loopro.recall.item_level %] > Item-level recall on <a href="/cgi-bin/koha/catalogue/moredetail.pl?item=[% loopro.recall.item_id | uri %]&biblionumber=[% loopro.recall.biblio_id | uri %]&bi=[% loopro.recall.item.biblioitemnumber | uri %]">item</a> > [% ELSE %] >- Biblio-level recall on <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.recall.biblio_id | uri %]">biblio</a> >+ Bibliographic record-level recall on <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.recall.biblio_id | uri %]">biblio</a> > [% END %] > [% ELSIF ( loopro.module == 'ACQUISITIONS' && loopro.action == 'ACQUISITION ORDER' && loopro.object ) %] > [% IF ( CAN_user_acquisition_order_manage ) %] >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 34434
:
153995
|
154104
| 154109