(Scott Phillips) SF#1897998 'This collection' search label missing when using browse

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2732 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Scott Phillips
2008-02-28 02:59:32 +00:00
parent 132791a9bd
commit d74916e5ff
2 changed files with 9 additions and 3 deletions

View File

@@ -1552,7 +1552,9 @@
<message key="xmlui.dri2xhtml.structural.login">Login</message>
<message key="xmlui.dri2xhtml.structural.search">Search DSpace</message>
<message key="xmlui.dri2xhtml.structural.search-advanced">Advanced Search</message>
<message key="xmlui.dri2xhtml.structural.search-advanced">Advanced Search</message>
<message key="xmlui.dri2xhtml.structural.search-in-community">This Community</message>
<message key="xmlui.dri2xhtml.structural.search-in-collection">This Collection</message>
<message key="xmlui.dri2xhtml.structural.pagination-previous">Previous Page</message>
<message key="xmlui.dri2xhtml.structural.pagination-info">Now showing items {0}-{1} of {2}</message>

View File

@@ -480,8 +480,12 @@
</xsl:attribute>
</input>
<xsl:choose>
<xsl:when test="/dri:document/dri:body//dri:div/dri:referenceSet[@type='detailView' and @n='collection-view']">This Collection</xsl:when>
<xsl:when test="/dri:document/dri:body//dri:div/dri:referenceSet[@type='detailView' and @n='community-view']">This Community</xsl:when>
<xsl:when test="/dri:document/dri:body//dri:div/dri:referenceSet[@type='detailView' and @n='community-view']">
<i18n:text>xmlui.dri2xhtml.structural.search-in-community</i18n:text>
</xsl:when>
<xsl:otherwise>
<i18n:text>xmlui.dri2xhtml.structural.search-in-collection</i18n:text>
</xsl:otherwise>
</xsl:choose>
</label>