Commit 9e3c85be1dec22467081e95f1b6687093b94e2bf

Authored by nbm
1 parent 06e8b43b

Add content to replace a FIXME in a descriptive text area.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4853 c91229c3-7414-0410-bfa2-8a42b809f60b
plugins/ktcore/KTDocumentActions.php
... ... @@ -696,9 +696,9 @@ class KTDocumentWorkflowAction extends KTDocumentAction {
696 696 $aVocab[$oTransition->getId()] = $oTransition->showDescription();
697 697 }
698 698 $fieldOptions = array("vocab" => $aVocab);
699   - $transition_fields[] = new KTLookupWidget(_('Transition to perform'), 'FIXME', 'fTransitionId', null, $this->oPage, true, null, $fieldErrors, $fieldOptions);
  699 + $transition_fields[] = new KTLookupWidget(_('Transition to perform'), 'The transition listed will cause the document to change from its current state to the listed destination state.', 'fTransitionId', null, $this->oPage, true, null, $fieldErrors, $fieldOptions);
700 700 $transition_fields[] = new KTTextWidget(
701   - _('Reason for transition'), _('Describe the changes made to the document.'),
  701 + _('Reason for transition'), _('Describe why this document qualifies to be changed from its current state to the destination state of the transition chosen.'),
702 702 'fComments', "",
703 703 $this->oPage, true, null, null,
704 704 array('cols' => 80, 'rows' => 4));
... ...