Bugzilla – Attachment 112547 Details for
Bug 16696
Rename "Publisher" to "Publication details" on detail and result lists
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16696: [Alternative] Rename 'Publisher' to 'Publication details' on detail and result lists
Bug-16696-Alternative-Rename-Publisher-to-Publicat.patch (text/plain), 7.67 KB, created by
David Nind
on 2020-10-27 10:23:37 UTC
(
hide
)
Description:
Bug 16696: [Alternative] Rename 'Publisher' to 'Publication details' on detail and result lists
Filename:
MIME Type:
Creator:
David Nind
Created:
2020-10-27 10:23:37 UTC
Size:
7.67 KB
patch
obsolete
>From e101527fef7b05cf03636dad9048aa452c76f66e Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Mon, 26 Oct 2020 23:12:11 +0000 >Subject: [PATCH] Bug 16696: [Alternative] Rename 'Publisher' to 'Publication > details' on detail and result lists > >To test: >1) Do a catalog search in staff client >2) Confirm 'Publisher' says 'Publication details' for each result in search >3) Click on a record to go to the detail page >4) Confirm 'Publisher' says 'Publication details' >5) Click the Items tab on the left >6) Confirm 'Publisher' says 'Publication details' >7) Do a search in the OPAC >8) Confirm 'Publisher' says 'Published' for each result in search >9) Click on a record to go to the detail page and switch to the items tab >10) Confirm 'Publisher' says 'Publication details' on top of the page > >Signed-off-by: David Nind <david@davidnind.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl | 4 ++-- > koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 4 ++-- > koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl | 4 ++-- > 5 files changed, 9 insertions(+), 9 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >index 1bd086487c..9c7a1357b8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >@@ -40,7 +40,7 @@ > [% IF ( rentalcharge_daily ) %]<li><span class="label">Daily rental charge:</span>[% rentalcharge_daily | $Price %] </li>[% END %] > [% IF ( rentalcharge_hourly ) %]<li><span class="label">Hourly rental charge:</span>[% rentalcharge_hourly | $Price %] </li>[% END %] > <li><span class="label">ISBN:</span> [% isbn | html %] </li> >- <li><span class="label">Publisher:</span>[% place | html %] [% publishercode | html %] [% publicationyear | html %] </li> >+ <li><span class="label">Publication details:</span>[% place | html %] [% publishercode | html %] [% publicationyear | html %] </li> > [% IF ( volumeddesc ) %]<li><span class="label">Volume:</span> [% volumeddesc | html %]</li>[% END %] > <li><span class="label">Physical details:</span> [% pages | html %] [% illus | html %] [% size | html %] </li> > [% IF ( bnotes ) %]<li><span class="label">Notes:</span> [% bnotes | html %]</li>[% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >index bd75f364d5..7dd2fedd74 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >+++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >@@ -276,7 +276,7 @@ > <xsl:with-param name="basetags">260</xsl:with-param> > <xsl:with-param name="codes">abcg</xsl:with-param> > <xsl:with-param name="class">results_summary publisher</xsl:with-param> >- <xsl:with-param name="label">Publisher: </xsl:with-param> >+ <xsl:with-param name="label">Publication details: </xsl:with-param> > </xsl:call-template> > </xsl:if> > >@@ -288,7 +288,7 @@ > </xsl:call-template> > </xsl:when> > <xsl:when test="marc:datafield[@tag=260]"> >- <span class="results_summary publisher"><span class="label">Publisher: </span> >+ <span class="results_summary publisher"><span class="label">Publication details: </span> > <xsl:for-each select="marc:datafield[@tag=260]"> > <xsl:if test="marc:subfield[@code='a']"> > <xsl:call-template name="subfieldSelect"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl >index d263de1ea1..c906d3a1f6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl >+++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl >@@ -836,7 +836,7 @@ > <xsl:with-param name="basetags">260</xsl:with-param> > <xsl:with-param name="codes">abcg</xsl:with-param> > <xsl:with-param name="class">results_summary publisher</xsl:with-param> >- <xsl:with-param name="label">Publisher: </xsl:with-param> >+ <xsl:with-param name="label">Publication details: </xsl:with-param> > </xsl:call-template> > </xsl:if> > >@@ -852,7 +852,7 @@ > <xsl:call-template name="showRDAtag264"/> > </xsl:when> > <xsl:when test="marc:datafield[@tag=260]"> >- <span class="results_summary publisher"><span class="label">Publisher: </span> >+ <span class="results_summary publisher"><span class="label">Publication details: </span> > <xsl:for-each select="marc:datafield[@tag=260]"> > <xsl:if test="marc:subfield[@code='a']"> > <xsl:call-template name="subfieldSelect"> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >index eed5bf7b56..8f50ad5fa6 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >@@ -297,7 +297,7 @@ > <xsl:with-param name="basetags">260</xsl:with-param> > <xsl:with-param name="codes">abcg</xsl:with-param> > <xsl:with-param name="class">results_summary publisher</xsl:with-param> >- <xsl:with-param name="label">Publisher: </xsl:with-param> >+ <xsl:with-param name="label">Publication details: </xsl:with-param> > </xsl:call-template> > </xsl:if> > >@@ -309,7 +309,7 @@ > </xsl:call-template> > </xsl:when> > <xsl:when test="marc:datafield[@tag=260]"> >- <span class="results_summary publisher"><span class="label">Publisher: </span> >+ <span class="results_summary publisher"><span class="label">Publication details: </span> > <xsl:for-each select="marc:datafield[@tag=260]"> > <span property="publisher" typeof="Organization"> > <xsl:if test="marc:subfield[@code='a']"> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl >index 78aa361918..1d0d4733e8 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl >@@ -1041,7 +1041,7 @@ > <xsl:with-param name="basetags">260</xsl:with-param> > <xsl:with-param name="codes">abcg</xsl:with-param> > <xsl:with-param name="class">results_summary publisher</xsl:with-param> >- <xsl:with-param name="label">Publisher: </xsl:with-param> >+ <xsl:with-param name="label">Publication details: </xsl:with-param> > </xsl:call-template> > </xsl:if> > >@@ -1051,7 +1051,7 @@ > <xsl:call-template name="showRDAtag264"/> > </xsl:when> > <xsl:when test="marc:datafield[@tag=260]"> >- <span class="results_summary publisher"><span class="label">Publisher: </span> >+ <span class="results_summary publisher"><span class="label">Publication details: </span> > <xsl:for-each select="marc:datafield[@tag=260]"> > <xsl:if test="marc:subfield[@code='a']"> > <xsl:call-template name="subfieldSelect"> >-- >2.11.0
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 16696
:
60722
|
60733
|
112545
|
112547
|
112696
|
113125