]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-14780 Show analysis to students setting does not reflect roles aliases
authoragrabs <agrabs>
Sun, 22 Jun 2008 18:06:14 +0000 (18:06 +0000)
committeragrabs <agrabs>
Sun, 22 Jun 2008 18:06:14 +0000 (18:06 +0000)
lang/en_utf8/feedback.php
mod/feedback/mod_form.php

index 18d54ef83e63680885874dc6081461b541080442..759c74340c3eafdac131f2ba17ef0ab3a2c62754 100644 (file)
@@ -134,7 +134,6 @@ $string['position'] = 'Position';
 $string['preview'] = 'Preview';
 $string['previous_page'] = 'Previous page';
 $string['public'] = 'Public';
-$string['publish_stats_on_students'] = 'Show analysis to students';
 $string['question'] = 'Question';
 $string['questions'] = 'Questions';
 $string['radio'] = 'Multiple choice - single answer';;
@@ -159,6 +158,7 @@ $string['selected_dump']='Selected indexes of \$SESSION variable are dumped belo
 $string['separator_decimal'] = '.';
 $string['separator_thousand'] = ',';
 $string['show_all'] = 'Show all';
+$string['show_analysepage_after_submit'] = 'Show analysepage after submit';
 $string['show_entries'] = 'Show responses';
 $string['show_entry'] = 'Show response';
 $string['site_after_submit'] = 'Site after submit';
index 457cde73367c8567bd4abd69eaa5cdcb98163fb0..a96dc11d65cdefe16644d21e087749091f079460 100644 (file)
@@ -53,7 +53,7 @@ class mod_feedback_mod_form extends moodleform_mod {
         $options[2]  = get_string('non_anonymous', 'feedback');
         $mform->addElement('select', 'anonymous', get_string('anonymous_edit', 'feedback'), $options);
         
-        $mform->addElement('selectyesno', 'publish_stats', get_string('publish_stats_on_students', 'feedback'));
+        $mform->addElement('selectyesno', 'publish_stats', get_string('show_analysepage_after_submit', 'feedback'));
         $mform->addElement('selectyesno', 'email_notification', get_string('email_notification', 'feedback'));
         $mform->setHelpButton('email_notification', array('emailnotification', get_string('email_notification', 'feedback'), 'feedback'));