Changeset 860
- Timestamp:
- Mar 13, 2011, 5:41:55 PM (14 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/i18n/messages.properties
r856 r860 215 215 216 216 # Task Actions 217 task.status.resolved=Resolved .217 task.status.resolved=Resolved 218 218 task.status.resolved.help=Indicate that root cause is known and has been completely resolved. 219 task.status.unresolved=Unresolved. 220 task.status.unresolved.help=Indicate that this task requires further attention, root cause is either unknown or unresolved. 219 task.status.unresolved=Unresolved 220 task.status.unresolved.help=Indicate that this task requires further attention, \ 221 root cause is either unknown or unresolved. 222 task.status.resolved.save.entry=Resolved 223 task.status.resolved.save.entry.help=Save entry and complete task. 224 task.status.unresolved.save.entry=Unresolved 225 task.status.unresolved.save.entry.help=Save entry and indicate that this task requires further attention, \ 226 root cause is either unknown or unresolved. 227 task.save.entry=Save 228 task.save.entry.help=Save entry and leave task status unchanged. 221 229 222 230 taskRecurringSchedule.nextTargetStartDate.mayNotBePast=Please select a start date that is not in the past. -
trunk/grails-app/views/entryDetailed/_create.gsp
r855 r860 109 109 <input class="save" type="submit" value="Save" /> 110 110 </span> 111 <custom:helpBalloon code="task.save.entry" 112 iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 111 113 <span class="button"> 112 114 <input class="flag" type="button" value="Unresolved" name="submit_andSetAttentionFlag" /> 113 115 </span> 114 <custom:helpBalloon code="task.status.unresolved" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 116 <custom:helpBalloon code="task.status.unresolved.save.entry" 117 iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 115 118 <span class="button"> 116 119 <g:if test="${entryInstance.task.attentionFlag}" > … … 125 128 </g:else> 126 129 </span> 127 <custom:helpBalloon code="task.status.resolved" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 130 <custom:helpBalloon code="task.status.resolved.save.entry" 131 iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 128 132 </div> 129 133 </g:form>
Note: See TracChangeset
for help on using the changeset viewer.