From c358d62055541aaed0629b152969b15af3b18285 Mon Sep 17 00:00:00 2001 From: tjhunt Date: Fri, 30 Jun 2006 10:31:44 +0000 Subject: [PATCH] Bug 5967 - Missing lang strings and help for quiz reports. Merged from MOODLE_16_STABLE. --- lang/en_utf8/help/quiz/overviewdownload.html | 15 +++++++++++++++ lang/en_utf8/quiz_analysis.php | 1 + lang/en_utf8/quiz_overview.php | 1 + mod/quiz/report/analysis/report.php | 2 +- mod/quiz/report/overview/report.php | 2 +- 5 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 lang/en_utf8/help/quiz/overviewdownload.html 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 ''; } -- 2.39.5