From: tjhunt Date: Fri, 30 Jun 2006 10:31:44 +0000 (+0000) Subject: Bug 5967 - Missing lang strings and help for quiz reports. Merged from MOODLE_16_STABLE. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c358d62055541aaed0629b152969b15af3b18285;p=moodle.git Bug 5967 - Missing lang strings and help for quiz reports. Merged from MOODLE_16_STABLE. --- diff --git a/lang/en_utf8/help/quiz/overviewdownload.html b/lang/en_utf8/help/quiz/overviewdownload.html new file mode 100644 index 0000000000..afad6ef1b6 --- /dev/null +++ b/lang/en_utf8/help/quiz/overviewdownload.html @@ -0,0 +1,15 @@ +

Overview Download

+ +

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.
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.

+ +

Excel Spreadsheet format:

You will get an .xls +spreadsheet document.

+ +

Text format

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.

diff --git a/lang/en_utf8/quiz_analysis.php b/lang/en_utf8/quiz_analysis.php index 48654547a8..16b1b8cf2f 100644 --- a/lang/en_utf8/quiz_analysis.php +++ b/lang/en_utf8/quiz_analysis.php @@ -1,6 +1,7 @@ diff --git a/mod/quiz/report/analysis/report.php b/mod/quiz/report/analysis/report.php index e82d5e679b..b3a4a23ab9 100644 --- a/mod/quiz/report/analysis/report.php +++ b/mod/quiz/report/analysis/report.php @@ -413,7 +413,7 @@ class quiz_report extends quiz_default_report { print_single_button('report.php', $options, get_string("downloadtext")); echo "\n"; echo ""; - helpbutton("analysisdownload", get_string("analysisdownload","quiz"), "quiz"); + helpbutton('analysisdownload', get_string('analysisdownload', 'quiz_analysis'), 'quiz'); echo "\n"; echo ''; } diff --git a/mod/quiz/report/overview/report.php b/mod/quiz/report/overview/report.php index 026e755c78..0f2470f84b 100644 --- a/mod/quiz/report/overview/report.php +++ b/mod/quiz/report/overview/report.php @@ -484,7 +484,7 @@ class quiz_report extends quiz_default_report { print_single_button('report.php', $options, get_string("downloadtext")); echo "\n"; echo ""; - helpbutton("download", get_string("download","quiz"), "quiz"); + helpbutton('overviewdownload', get_string('overviewdownload', 'quiz_overview'), 'quiz'); echo "\n"; echo ''; }