display a more explanatory message in batch import success with a link to where the user can see his batch imports

This commit is contained in:
Kostas Stamatis
2014-11-27 13:04:05 +02:00
parent 7a3365cf62
commit e383ab86ef
2 changed files with 7 additions and 1 deletions

View File

@@ -308,6 +308,7 @@ jsp.dspace-admin.batchmetadataimport.genericerror = An error occured! Please,
jsp.dspace-admin.batchmetadataimport.selectfile = Select data file to upload
jsp.dspace-admin.batchmetadataimport.selectinputfile = Select the type of the input data
jsp.dspace-admin.batchmetadataimport.selectcollection = Select the collection the items will be imported to
jsp.dspace-admin.batchimport.info.success = The job was taken over, an email will be sent to the end of work. In the meanwhile, you can check your batch import in the "{0}" section.
jsp.dspace-admin.metadataimport.title = Import metadata
jsp.dspace-admin.metadataimport.apply = Apply changes
jsp.dspace-admin.metadataimport.unknownerror = An unknown error has occurred

View File

@@ -63,7 +63,12 @@
}
else {
%>
<div class="alert alert-info"><fmt:message key="jsp.dspace-admin.batchmetadataimport.success"/></div>
<div class="alert alert-info">
<fmt:message key="jsp.dspace-admin.batchimport.info.success">
<% String link = "<a href=\""+request.getContextPath()+"/mydspace\">My DSpace</a>"; %>
<fmt:param value="<%= link %>"/>
</fmt:message>
</div>
<%
}
%>