Bug 9075: Rename "type" to "material type" on OPAC XSLT detail and results
The label Material type better describes what the icon presents. It is based on leader values of the MARC record. Revised Test Plan ----------------- 1) In the staff client, set the OPAC system preference OPACXSLTDetailsDisplay to 'default' and save. 2) In the staff client, set the OPAC system preference OPACXSLTResultsDisplay to 'default' and save. 3) In the staff client, set the OPAC system preference opacthemes to 'bootstrap' and save. 4) In the OPAC, search for biblio used in previous patch testing. -- It should display "Type:" 6) Look at the biblio details -- It should also display "Type:" 7) In the staff client, set the OPAC system preference opacthemes to 'prog' and save. 8) In the OPAC, search for biblio used in previous patch testing. -- It should display "Type:" 9) Look at the biblio details -- It should also display "Type:" 10) Apply the patch 11) In the staff client, set the OPAC system preference opacthemes to 'bootstrap' and save. 12) In the OPAC, search for biblio used in previous patch testing. -- It should display "Material type:" this time. 13) Look at the biblio details -- It should display "Material type:" this time. 14) In the staff client, set the OPAC system preference opacthemes to 'prog' and save. 15) In the OPAC, search for biblio used in previous patch testing. -- It should display "Material type:" this time. 16) Look at the biblio details -- It should display "Material type:" this time. 17) Run the koha qa test tool. Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Note: Just a simple string change. Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> String change, works as advertised in staff, prog and bootstrap OPAC. Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
parent
4bdd8d9a69
commit
007c94ff20
4 changed files with 4 additions and 4 deletions
|
@ -171,7 +171,7 @@
|
|||
|
||||
<xsl:if test="$DisplayOPACiconsXSLT!='0'">
|
||||
<xsl:if test="$materialTypeCode!=''">
|
||||
<span class="results_summary type"><span class="label">Type: </span>
|
||||
<span class="results_summary type"><span class="label">Material type: </span>
|
||||
<xsl:element name="img"><xsl:attribute name="src">/opac-tmpl/lib/famfamfam/<xsl:value-of select="$materialTypeCode"/>.png</xsl:attribute><xsl:attribute name="alt">materialTypeLabel</xsl:attribute><xsl:attribute name="class">materialtype</xsl:attribute></xsl:element>
|
||||
<xsl:value-of select="$materialTypeLabel"/>
|
||||
</span>
|
||||
|
|
|
@ -533,7 +533,7 @@
|
|||
<xsl:if test="$DisplayOPACiconsXSLT!='0'">
|
||||
<span class="results_summary type">
|
||||
<xsl:if test="$typeOf008!=''">
|
||||
<span class="label">Type: </span>
|
||||
<span class="label">Material type: </span>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$leader19='a'"><img src="/opac-tmpl/lib/famfamfam/silk/book_link.png" alt="book" title="book" class="materialtype"/> Set</xsl:when>
|
||||
<xsl:when test="$leader6='a'">
|
||||
|
|
|
@ -171,7 +171,7 @@
|
|||
|
||||
<xsl:if test="$DisplayOPACiconsXSLT!='0'">
|
||||
<xsl:if test="$materialTypeCode!=''">
|
||||
<span class="results_summary type"><span class="label">Type: </span>
|
||||
<span class="results_summary type"><span class="label">Material type: </span>
|
||||
<xsl:element name="img"><xsl:attribute name="src">/opac-tmpl/lib/famfamfam/<xsl:value-of select="$materialTypeCode"/>.png</xsl:attribute><xsl:attribute name="alt">materialTypeLabel</xsl:attribute><xsl:attribute name="class">materialtype</xsl:attribute></xsl:element>
|
||||
<xsl:value-of select="$materialTypeLabel"/>
|
||||
</span>
|
||||
|
|
|
@ -533,7 +533,7 @@
|
|||
<xsl:if test="$DisplayOPACiconsXSLT!='0'">
|
||||
<span class="results_summary type">
|
||||
<xsl:if test="$typeOf008!=''">
|
||||
<span class="label">Type: </span>
|
||||
<span class="label">Material type: </span>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$leader19='a'"><img src="/opac-tmpl/lib/famfamfam/silk/book_link.png" alt="book" title="book" class="materialtype"/> Set</xsl:when>
|
||||
<xsl:when test="$leader6='a'">
|
||||
|
|
Loading…
Reference in a new issue