Author: evenisse
Date: Thu Aug 9 14:06:36 2007
New Revision: 564381
URL: http://svn.apache.org/viewvc?view=rev&rev=564381
Log:
[CONTINUUM-981] [CONTINUUM-982] Rename some texts to avoid confusion
Modified:
maven/continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/projectSummaryComponent.jsp
maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/projectGroupSummary.jsp
Modified: maven/continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties?view=diff&rev=564381&r1=564380&r2=564381
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
(original)
+++ maven/continuum/trunk/continuum-webapp/src/main/resources/localization/Continuum.properties
Thu Aug 9 14:06:36 2007
@@ -132,6 +132,7 @@
# Page: Project Group
# ----------------------------------------------------------------------
projectGroup.page.title = Continuum - Project Group
+projectGroup.informations.title = Project Group Informations
projectGroup.name.label = Project Group Name
projectGroup.groupId.label = Project Group Id
projectGroup.description.label = Description
@@ -140,9 +141,14 @@
projectGroup.tab.members = Members
projectGroup.tab.buildDefinitions = Build Definitions
projectGroup.tab.notifiers = Notifiers
+projectGroup.actions.title = Group Actions
projectGroup.release.error.emptyGroup = Cannot release an empty group.
projectGroup.release.error.severalParentProjects = Cannot release two or more parent projects
in the same project group at the same time.
projectGroup.release.error.projectNotInSuccess = Cannot release project group: one or more
projects in the group were not built successfully.
+projectGroup.deleteGroup = Delete Group
+projectGroup.buildGroup = Build all projects
+projectGroup.deleteProjects = Delete Project(s)
+projectGroup.buildProjects = Build Project(s)
# ----------------------------------------------------------------------
# Page: Add Project Group
Modified: maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/projectSummaryComponent.jsp
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/projectSummaryComponent.jsp?view=diff&rev=564381&r1=564380&r2=564381
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/projectSummaryComponent.jsp
(original)
+++ maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/projectSummaryComponent.jsp
Thu Aug 9 14:06:36 2007
@@ -195,8 +195,8 @@
<td>
<redback:ifAuthorized permission="continuum-modify-group" resource="${projectGroupName}">
<input type="hidden" name="projectGroupId" value="${project.projectGroupId}"
/>
- <input type="button" name="delete-projects" value="<ww:text name="delete"/>"
onclick="document.forms.projectsForm.methodToCall.value='remove';document.forms.projectsForm.submit();"
/>
- <input type="button" name="build-projects" value="<ww:text name="build"/>"
onclick="document.forms.projectsForm.methodToCall.value='build';document.forms.projectsForm.submit();"
/>
+ <input type="button" name="delete-projects" value="<ww:text name="projectGroup.deleteProjects"/>"
onclick="document.forms.projectsForm.methodToCall.value='remove';document.forms.projectsForm.submit();"
/>
+ <input type="button" name="build-projects" value="<ww:text name="projectGroup.buildProjects"/>"
onclick="document.forms.projectsForm.methodToCall.value='build';document.forms.projectsForm.submit();"
/>
</redback:ifAuthorized>
</td>
</tr>
Modified: maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/projectGroupSummary.jsp
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/projectGroupSummary.jsp?view=diff&rev=564381&r1=564380&r2=564381
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/projectGroupSummary.jsp
(original)
+++ maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/projectGroupSummary.jsp
Thu Aug 9 14:06:36 2007
@@ -70,7 +70,7 @@
<ww:param name="tabName" value="'Summary'"/>
</ww:action>
- <h3>Project Group</h3>
+ <h3><ww:text name="projectGroup.informations.title"/></h3>
<div class="axial">
<table border="1" cellspacing="2" cellpadding="3" width="100%">
<c1:data label="%{getText('projectGroup.name.label')}" name="projectGroup.name"/>
@@ -80,7 +80,7 @@
</div>
<redback:ifAnyAuthorized permissions="continuum-build-group,continuum-remove-group"
resource="${projectGroup.name}">
- <h3>Project Group Actions</h3>
+ <h3><ww:text name="projectGroup.actions.title"/></h3>
<c:if test="${!empty actionErrors}">
<div class="errormessage">
@@ -97,7 +97,7 @@
<redback:ifAuthorized permission="continuum-build-group" resource="${projectGroup.name}">
<form action="buildProjectGroup.action" method="post">
<input type="hidden" name="projectGroupId" value="<ww:property
value="projectGroupId"/>"/>
- <input type="submit" name="build" value="<ww:text name="build"/>"/>
+ <input type="submit" name="build" value="<ww:text name="projectGroup.buildGroup"/>"/>
</form>
</redback:ifAuthorized>
<td>
@@ -112,7 +112,7 @@
<redback:ifAuthorized permission="continuum-remove-group" resource="${projectGroup.name}">
<form action="removeProjectGroup.action" method="post">
<input type="hidden" name="projectGroupId" value="<ww:property
value="projectGroupId"/>"/>
- <input type="submit" name="remove" value="<ww:text name="delete"/>"/>
+ <input type="submit" name="remove" value="<ww:text name="projectGroup.deleteGroup"/>"/>
</form>
</redback:ifAuthorized>
</td>
|