diff --git a/dspace/config/Messages_en.properties b/dspace/config/Messages_en.properties index 8298bc9d4b..83735a330d 100644 --- a/dspace/config/Messages_en.properties +++ b/dspace/config/Messages_en.properties @@ -792,7 +792,7 @@ jsp.submit.edit-metadata.paperno = Report or Paper No. jsp.submit.get-file-format.choose.button =Choose automatically-recognized type jsp.submit.get-file-format.format =File Format: jsp.submit.get-file-format.heading =Submit: Select File Format -jsp.submit.get-file-format.info1 =Uploaded file: {0} ({1,integer} bytes) +jsp.submit.get-file-format.info1 =Uploaded file: {0} ({1} bytes) jsp.submit.get-file-format.info2 =DSpace could not identify the format of this file. jsp.submit.get-file-format.info3 =DSpace recognized the file format as {0}. Please be sure before you change this! jsp.submit.get-file-format.info5 =Select the format of the file from the list below, for example "Adobe PDF" or "Microsoft Word", OR if the format is not in the list, please describe the format file in the input box below the list. diff --git a/dspace/jsp/submit/get-file-format.jsp b/dspace/jsp/submit/get-file-format.jsp index d61bfda12e..c32db40c4c 100644 --- a/dspace/jsp/submit/get-file-format.jsp +++ b/dspace/jsp/submit/get-file-format.jsp @@ -91,7 +91,7 @@ <%--

Uploaded file: <%= si.bitstream.getName() %> (<%= si.bitstream.getSize() %> bytes)

--%>

<%= si.bitstream.getName() %> - <%= si.bitstream.getSize() %> + <%= String.valueOf(si.bitstream.getSize()) %>

<%