Changeset 860


Ignore:
Timestamp:
Mar 13, 2011, 5:41:55 PM (13 years ago)
Author:
gav
Message:

Add/update task status help messages on entry save.

Location:
trunk/grails-app
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/i18n/messages.properties

    r856 r860  
    215215
    216216# Task Actions
    217 task.status.resolved=Resolved.
     217task.status.resolved=Resolved
    218218task.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.
     219task.status.unresolved=Unresolved
     220task.status.unresolved.help=Indicate that this task requires further attention, \
     221    root cause is either unknown or unresolved.
     222task.status.resolved.save.entry=Resolved
     223task.status.resolved.save.entry.help=Save entry and complete task.
     224task.status.unresolved.save.entry=Unresolved
     225task.status.unresolved.save.entry.help=Save entry and indicate that this task requires further attention, \
     226    root cause is either unknown or unresolved.
     227task.save.entry=Save
     228task.save.entry.help=Save entry and leave task status unchanged.
    221229
    222230taskRecurringSchedule.nextTargetStartDate.mayNotBePast=Please select a start date that is not in the past.
  • trunk/grails-app/views/entryDetailed/_create.gsp

    r855 r860  
    109109                <input class="save" type="submit" value="Save" />
    110110            </span>
     111            <custom:helpBalloon code="task.save.entry"
     112                                            iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" />
    111113            <span class="button">
    112114                <input class="flag" type="button" value="Unresolved" name="submit_andSetAttentionFlag" />
    113115            </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')}" />
    115118            <span class="button">
    116119                <g:if test="${entryInstance.task.attentionFlag}" >
     
    125128                </g:else>
    126129            </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')}" />
    128132        </div>
    129133    </g:form>
Note: See TracChangeset for help on using the changeset viewer.