]> git.mjollnir.org Git - moodle.git/commitdiff
Bug 5967 - Missing lang strings and help for quiz reports. Merged from MOODLE_16_STABLE.
authortjhunt <tjhunt>
Fri, 30 Jun 2006 10:31:44 +0000 (10:31 +0000)
committertjhunt <tjhunt>
Fri, 30 Jun 2006 10:31:44 +0000 (10:31 +0000)
lang/en_utf8/help/quiz/overviewdownload.html [new file with mode: 0644]
lang/en_utf8/quiz_analysis.php
lang/en_utf8/quiz_overview.php
mod/quiz/report/analysis/report.php
mod/quiz/report/overview/report.php

diff --git a/lang/en_utf8/help/quiz/overviewdownload.html b/lang/en_utf8/help/quiz/overviewdownload.html
new file mode 100644 (file)
index 0000000..afad6ef
--- /dev/null
@@ -0,0 +1,15 @@
+<p align="center"><b>Overview Download</b></p>
+
+<p>You may want to download the data displayed in the on-screen
+table for further analysis. You can choose between two file
+formats for downloaded data.<br /> In each case data will be
+presented as a table with appropriate titles, as on the screen. If
+the table is paged, all data for all pages will be downloaded in a
+single file. </p>
+
+<p><b>Excel Spreadsheet format:</b></p> <p>You will get an .xls
+spreadsheet document.</p>
+
+<p><b>Text format</b></p> <p>In this case, data will be stored as a
+regular text file. A line for each row in the table with data
+separated by tabstops.</p>
index 48654547a88ad8101fc0a29422151916e27de383..16b1b8cf2fa265f11284b9b714beebb6587a601c 100644 (file)
@@ -1,6 +1,7 @@
 <?php // $Id$
 
 $string['analysis'] = 'Item analysis';
+$string['analysisdownload'] = 'Analysis download';
 $string['analysisoptions'] = 'Analysis options';
 $string['attemptselection'] = 'Attempts to analyze per user ';
 $string['lowmarkslimit'] = "Don't analyse if score is less than: ";
index 216686011ead1840b4b5d24b15ae61e8b2522e52..a8b06f8da3eda52ca5d265ab35ac9eb78c74fa39 100644 (file)
@@ -6,5 +6,6 @@ $string['attemptsonly'] = 'Show $a with attempts only';
 $string['allattempts'] = 'Show all attempts';
 $string['allstudents'] = 'Show all $a';
 $string['noattemptsonly'] = 'Show $a with no attempts only';
+$string['overviewdownload'] = 'Overview download';
 
 ?>
index e82d5e679b564321aa46526f094ec5e1ddf4b91b..b3a4a23ab9abd1c60356b6b829c0a38f84644544 100644 (file)
@@ -413,7 +413,7 @@ class quiz_report extends quiz_default_report {
         print_single_button('report.php', $options, get_string("downloadtext"));
         echo "</td>\n";
         echo "<td>";
-        helpbutton("analysisdownload", get_string("analysisdownload","quiz"), "quiz");
+        helpbutton('analysisdownload', get_string('analysisdownload', 'quiz_analysis'), 'quiz');
         echo "</td>\n";
         echo '</tr></table>';
 }
index 026e755c78622d924e9750411bc5348fd90464be..0f2470f84b0c553090c4e69474ea72dd35883d2d 100644 (file)
@@ -484,7 +484,7 @@ class quiz_report extends quiz_default_report {
                     print_single_button('report.php', $options, get_string("downloadtext"));
                     echo "</td>\n";
                     echo "<td>";
-                    helpbutton("download", get_string("download","quiz"), "quiz");
+                    helpbutton('overviewdownload', get_string('overviewdownload', 'quiz_overview'), 'quiz');
                     echo "</td>\n";
                     echo '</tr></table>';
                 }