Skip to content

Commit

Permalink
Improved the language on Student Result Mode help text
Browse files Browse the repository at this point in the history
  • Loading branch information
xcompass committed Apr 2, 2014
1 parent ecec491 commit fef1138
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/views/events/add.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ echo $this->Form->input(
'default' => '1'
)
); ?>
<div class='help-text'><?php echo _t('Basic view only show averages of questions') ?></div>
<div class='help-text'><?php echo _t('Basic view only shows grades. Detailed view shows both grades and comments') ?></div>
<?php
echo $this->Form->input('due_date', array('type' => 'text'));
echo $this->Form->input('release_date_begin', array('label' => 'Evaluation Released From', 'type' => 'text'));
Expand All @@ -62,15 +62,15 @@ echo $this->Form->input('result_release_date_begin',
array('div' => array('id' => 'ResultReleaseBeginDiv'), 'label' => 'Results Released From', 'type' => 'text'));
echo $this->Form->input('result_release_date_end',
array('div' => array('id' => 'ResultReleaseEndDiv'), 'label' => 'Until', 'type' => 'text'));

echo $this->Form->input(
'email_schedule',
array(
'label' => 'Email Reminder Frequency ',
'options' => $emailSchedules,
'div' => array('id' => 'emailSchedule')
)
);
);
?>
<div class='email-help-text'><?php __('Select the number of days in between each email reminder for submitting
evaluations. The first email is sent when the event is released.') ?></div>
Expand Down
4 changes: 2 additions & 2 deletions app/views/events/edit.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ echo $this->Form->input(
'default' => '1'
)
); ?>
<div class='help-text'><?php echo _t('Basic view only show averages of questions') ?></div>
<div class='help-text'><?php echo _t('Basic view only shows grades. Detailed view shows both grades and comments') ?></div>
<?php
echo $this->Form->input('due_date', array('type' => 'text'));
echo $this->Form->input('release_date_begin', array('label' => 'Evaluation Released From', 'type' => 'text'));
Expand All @@ -102,7 +102,7 @@ echo $this->Form->input(
'default' => "$email_schedule",
'div' => array('id' => 'emailSchedule')
)
);
);
?>
<div class='email-help-text'><?php __('Select the number of days in between each email reminder for submitting
evaluations. The first email is sent when the event is released.') ?></div>
Expand Down

0 comments on commit fef1138

Please sign in to comment.