Author: wsmoak
Date: Wed Apr 8 16:56:24 2009
New Revision: 763314
URL: http://svn.apache.org/viewvc?rev=763314&view=rev
Log:
[CONTINUUM-2145] Fix title and text when deleting a schedule
Submitted by: Jose Morales Martinez
Also applied as r763312 on the 1.3.x branch.
Modified:
continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/confirmScheduleRemoval.jsp
Modified: continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties?rev=763314&r1=763313&r2=763314&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
(original)
+++ continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
Wed Apr 8 16:56:24 2009
@@ -605,7 +605,6 @@
schedules.table.cronExpression = Cron Expression
schedules.table.active = Active
schedules.table.maxJobExecutionTime = Max Job Time
-schedules.confirmation.message = Are you sure you want to delete the schedule "{0}"?
# ----------------------------------------------------------------------
# Page: Add/EditSchedule
@@ -643,6 +642,13 @@
schedule.name.already.exists = A Schedule with the same name already exists
# ----------------------------------------------------------------------
+# Page: Delete Schedule
+# ----------------------------------------------------------------------
+deleteSchedule.page.title = Continuum - Delete Schedule
+deleteSchedule.section.title = Delete Schedule
+schedules.confirmation.message = Are you sure you want to delete the schedule "{0}"?
+
+# ----------------------------------------------------------------------
# Page: SurefireReport
# ----------------------------------------------------------------------
surefireReport.page.title = Continuum - Surefire Report
Modified: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/confirmScheduleRemoval.jsp
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/confirmScheduleRemoval.jsp?rev=763314&r1=763313&r2=763314&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/confirmScheduleRemoval.jsp
(original)
+++ continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/confirmScheduleRemoval.jsp
Wed Apr 8 16:56:24 2009
@@ -22,11 +22,11 @@
<html>
<s:i18n name="localization.Continuum">
<head>
- <title>Schedule Removal</title>
+ <title><s:text name="deleteSchedule.page.title"/></title>
</head>
<body>
<div id="axial" class="h3">
- <h3>Schedule Removal</h3>
+ <h3><s:text name="deleteSchedule.section.title"/></h3>
<div class="axial">
<s:form action="removeSchedule" method="post">
<s:hidden name="id"/>
|