Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/MonitoringAction.java =================================================================== diff -u -r1ed31293ec907243ad2e5796dabbd842356f25ab -r6419c0a657c415c666aef60e05a01535b7979d38 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/MonitoringAction.java (.../MonitoringAction.java) (revision 1ed31293ec907243ad2e5796dabbd842356f25ab) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/MonitoringAction.java (.../MonitoringAction.java) (revision 6419c0a657c415c666aef60e05a01535b7979d38) @@ -280,31 +280,31 @@ row = sheet.createRow(0); cell = row.createCell((short) idx); cell.setEncoding(HSSFCell.ENCODING_UTF_16); - cell.setCellValue("Subject"); + cell.setCellValue(getMessageService().getMessage("lable.topic.title.subject")); sheet.setColumnWidth((short) idx, (short) 8000); ++idx; cell = row.createCell((short) idx); cell.setEncoding(HSSFCell.ENCODING_UTF_16); - cell.setCellValue("Author"); + cell.setCellValue(getMessageService().getMessage("lable.topic.title.author")); sheet.setColumnWidth((short) idx, (short) 8000); ++idx; cell = row.createCell((short) idx); cell.setEncoding(HSSFCell.ENCODING_UTF_16); - cell.setCellValue("Date"); + cell.setCellValue(getMessageService().getMessage("label.download.marks.heading.date")); sheet.setColumnWidth((short) idx, (short) 8000); ++idx; cell = row.createCell((short) idx); cell.setEncoding(HSSFCell.ENCODING_UTF_16); - cell.setCellValue("Marks"); + cell.setCellValue(getMessageService().getMessage("label.download.marks.heading.marks")); sheet.setColumnWidth((short) idx, (short) 8000); ++idx; cell = row.createCell((short) idx); cell.setEncoding(HSSFCell.ENCODING_UTF_16); - cell.setCellValue("Comments"); + cell.setCellValue(getMessageService().getMessage("label.download.marks.heading.comments")); sheet.setColumnWidth((short) idx, (short) 8000); ++idx; }