Clarify which Collection is which, in the item mapper pages.

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5424 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Mark Wood
2010-10-12 20:13:47 +00:00
parent 0d8280ccb5
commit baae889ed0
2 changed files with 21 additions and 12 deletions

View File

@@ -1221,23 +1221,23 @@ jsp.tools.group-select-list.th.id.sortedby = ID ↑
jsp.tools.group-select-list.th.name = Name
jsp.tools.group-select-list.th.name.sortedby = Name ↑
jsp.tools.group-select-list.title = Select Groups
jsp.tools.itemmap-browse.add = Check the box next to items you wish to add, and choose 'add'.
jsp.tools.itemmap-browse.add = Check the box next to items you wish to add to {0}, and choose ''Add''.
jsp.tools.itemmap-browse.heading-authors = Browse Items matching author ''{0}''
jsp.tools.itemmap-browse.heading-collection = Browse Collection {0}
jsp.tools.itemmap-browse.remove = Check the box next to items you wish to remove, and choose 'remove'.
jsp.tools.itemmap-browse.heading-collection = Items Mapped to Collection {1} from Collection {0}
jsp.tools.itemmap-browse.remove = Check the box next to items you wish to unmap from {0}, and choose ''Remove''.
jsp.tools.itemmap-browse.th.action = Action
jsp.tools.itemmap-browse.th.author = First Author
jsp.tools.itemmap-browse.th.date = Date
jsp.tools.itemmap-browse.th.remove = Remove
jsp.tools.itemmap-browse.th.remove = Unmap
jsp.tools.itemmap-browse.th.title = Title
jsp.tools.itemmap-browse.title = Browse Items
jsp.tools.itemmap-info.button.continue = Continue
jsp.tools.itemmap-info.heading = Item Map Info
jsp.tools.itemmap-info.msg.added = Add item {0}
jsp.tools.itemmap-info.msg.none-selected = No items selected, none added.
jsp.tools.itemmap-info.msg.none-removed = No items selected, none removed.
jsp.tools.itemmap-info.msg.none-removed = No items selected, none unmapped.
# In the following 2 messages the only parameter is an item ID
jsp.tools.itemmap-info.msg.remove = Remove item {0}
jsp.tools.itemmap-info.msg.remove = Unmap item {0}
jsp.tools.itemmap-info.title = Item Map Info
jsp.tools.itemmap-main.collection = Collection: "{0}"
jsp.tools.itemmap-main.heading = Item Mapper - Map Items from Other Collections

View File

@@ -44,10 +44,10 @@
-
- Attributes to pass in:
-
- items - sorted Map of Items to display
- collection - Collection we're managing
- collections - Map of Collections, keyed by collection_id
- browsetext - text to display at the top
- items - sorted Map of mapped Items to display
- collection - Collection we're mapping into
- collections - Map of Collections mapped into this one, keyed by collection_id
- browsetext - text to display at the top (name of collection we are mapping from)
- browsetype - "Add" or "Remove"
--%>
@@ -84,16 +84,25 @@
<% } else if (browsetype.equals("Remove")) { %>
<fmt:message key="jsp.tools.itemmap-browse.heading-collection">
<fmt:param><%= browsetext %></fmt:param>
<fmt:param><%= collection.getName() %></fmt:param>
</fmt:message>
<% } %>
</h2>
<%-- <p>Check the box next to items you wish to add or remove, and choose 'add' or 'remove'.</p> --%>
<% if (browsetype.equals("Add")){ %>
<p><fmt:message key="jsp.tools.itemmap-browse.add"/></p>
<p>
<fmt:message key="jsp.tools.itemmap-browse.add">
<fmt:param><%= collection.getName() %></fmt:param>
</fmt:message>
</p>
<% }%>
<% if (browsetype.equals("Remove")){ %>
<p><fmt:message key="jsp.tools.itemmap-browse.remove"/></p>
<p>
<fmt:message key="jsp.tools.itemmap-browse.remove">
<fmt:param><%= collection.getName() %></fmt:param>
</fmt:message>
</p>
<% } %>
<%-- %>p><fmt:message key="jsp.tools.itemmap-browse.infomsg"/></p--%>