mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
Merged tidy-ups from stable
This commit is contained in:
parent
6dfb22349f
commit
304d08f0c4
76 changed files with 1463 additions and 1525 deletions
|
@ -1,214 +1,156 @@
|
|||
<?PHP // $Id$
|
||||
// quiz.php - created with Moodle 1.2 development (2003111400)
|
||||
// hotpot.php - created with Moodle 1.7 beta + (2006101003)
|
||||
|
||||
//translators: You might want to leave the first two items 'as is' in English
|
||||
$string['modulename'] = 'Hot Potatoes Quiz';
|
||||
$string['modulenameplural'] = 'Hot Potatoes Quizzes';
|
||||
|
||||
// for mod.html
|
||||
|
||||
$string['hotpot:attempt'] = 'Attempt a quiz';
|
||||
$string['hotpot:viewreport'] = 'View reports';
|
||||
$string['hotpot:grade'] = 'Modify grades';
|
||||
$string['hotpot:deleteattempt'] = 'Delete quiz attempts';
|
||||
|
||||
$string['textsourcequiz'] = 'Get from quiz';
|
||||
$string['textsourcefilename'] = 'Use file name';
|
||||
$string['textsourcefilepath'] = 'Use file path';
|
||||
$string['textsourcespecific'] = 'Specific text';
|
||||
|
||||
$string['alwaysopen'] = 'Always open';
|
||||
$string['specifictime'] = 'Specific time';
|
||||
$string['neverclosed'] = 'Never closed';
|
||||
|
||||
$string['displayhotpotnext'] = 'Display Hot Potatoes quiz next';
|
||||
$string['displaycoursenext'] = 'Display Course page next';
|
||||
$string['displayindexnext'] = 'Display HotPot index next';
|
||||
|
||||
$string['hotpot:view'] = 'Use quiz';
|
||||
|
||||
$string['outputformat'] = 'Output format';
|
||||
$string['outputformat_best'] = 'best';
|
||||
$string['outputformat_v6_plus'] = 'v6+';
|
||||
$string['outputformat_v6'] = 'v6';
|
||||
$string['outputformat_v5_plus'] = 'v5+';
|
||||
$string['outputformat_v5'] = 'v5';
|
||||
$string['outputformat_v4'] = 'v4';
|
||||
$string['outputformat_v3'] = 'v3';
|
||||
$string['outputformat_flash'] = 'Flash';
|
||||
$string['outputformat_mobile'] = 'mobile';
|
||||
|
||||
$string['navigation'] = 'Navigation';
|
||||
$string['navigation_bar'] = 'Moodle navigation bar';
|
||||
$string['navigation_frame'] = 'Moodle navigation frame';
|
||||
$string['navigation_iframe'] = 'Embedded <IFRAME>';
|
||||
$string['navigation_buttons'] = 'Hot Potatoes quiz buttons';
|
||||
$string['navigation_give_up'] = 'A single "Give Up" button';
|
||||
$string['navigation_none'] = 'None';
|
||||
|
||||
$string['giveup'] = 'Give Up';
|
||||
$string['location'] = 'File location';
|
||||
$string['addquizchain'] = 'Add quiz chain';
|
||||
$string['updatequizchain'] = 'Update quiz chain';
|
||||
$string['shownextquiz'] = 'Show next quiz';
|
||||
$string['forceplugins'] = "Force media plugins";
|
||||
$string['clickreporting'] = "Enable click reporting";
|
||||
|
||||
$string['resultssaved'] = 'Quiz results were saved';
|
||||
|
||||
// for edit.php and show.php
|
||||
$string['filetype'] = 'File type';
|
||||
$string['quiztype'] = 'Quiz type';
|
||||
$string['showxmlsource'] = 'Show XML source';
|
||||
$string['showxmltree'] = 'Show XML tree';
|
||||
$string['showhtmlsource'] = 'Show HTML source';
|
||||
$string['enterafilename'] = 'Please enter a file name';
|
||||
|
||||
// show.php (javascript messages, so must be double escaped. i.e. "it's" ==> 'it\\\'s' OR "it\\'s")
|
||||
$string['copytoclipboard'] = 'Copy to Clipboard';
|
||||
$string['copiedtoclipboard'] = 'The contents of this page have been copied to the clipboard';
|
||||
|
||||
// lib.php (calendar events)
|
||||
$string['hotpotcloses'] = 'Hot Potatoes quiz closes';
|
||||
$string['hotpotopens'] = 'Hot Potatoes quiz opens';
|
||||
|
||||
// lib.php (status)
|
||||
$string['noactivity'] = 'No activity';
|
||||
$string['inprogress'] = 'In progress';
|
||||
$string['timedout'] = 'Timed out';
|
||||
$string['abandoned'] = 'Abandoned';
|
||||
$string['completed'] = 'Completed';
|
||||
|
||||
// lib.php (feedback)
|
||||
$string['studentfeedback'] = 'Student feedback';
|
||||
$string['feedbacknone'] = 'None';
|
||||
$string['feedbackwebpage'] = 'Web page';
|
||||
$string['feedbackformmail'] = 'Feedback form';
|
||||
$string['feedbackmoodleforum'] = 'Moodle forum';
|
||||
$string['feedbackmoodlemessaging'] = 'Moodle messaging';
|
||||
|
||||
// lib.php (responses)
|
||||
$string['correct'] = 'Correct';
|
||||
$string['ignored'] = 'Ignored';
|
||||
$string['wrong'] = 'Wrong';
|
||||
$string['score'] = 'Score';
|
||||
$string['weighting'] = 'Weighting';
|
||||
$string['hints'] = 'Hints';
|
||||
$string['clues'] = 'Clues';
|
||||
$string['checks'] = 'Checks';
|
||||
$string['penalties'] = 'Penalties';
|
||||
|
||||
// index.php
|
||||
$string['regrade'] = 'Regrade';
|
||||
$string['regradecheck'] = 'Do you really want to regrade "$a"?';
|
||||
$string['regraderequired'] = 'Regrade required';
|
||||
|
||||
// report.php
|
||||
$string['reportclick'] = 'Click trail report';
|
||||
|
||||
$string['reportcontent'] = 'Content';
|
||||
$string['reportformat'] = 'Format';
|
||||
|
||||
$string['reportbutton'] = 'Generate report';
|
||||
|
||||
$string['thiscourse'] = 'This course'; //necessary for 1.6 and older
|
||||
$string['allmycourses'] = 'All my courses'; //necessary for 1.6 and older
|
||||
|
||||
$string['addquizchain'] = 'Add quiz chain';
|
||||
$string['allusers'] = 'All users';
|
||||
|
||||
$string['alwaysopen'] = 'Always open';
|
||||
$string['attemptsall'] = 'All attempts';
|
||||
$string['attemptsbest'] = 'Best attempt';
|
||||
$string['attemptsfirst'] = 'First attempt';
|
||||
$string['attemptslast'] = 'Last attempt';
|
||||
|
||||
$string['reportformathtml'] = 'HTML';
|
||||
$string['reportformatexcel'] = 'Excel';
|
||||
$string['reportformattext'] = 'Text';
|
||||
$string['reportencoding'] = 'Encoding';
|
||||
$string['reportwrapdata'] = 'Wrap data';
|
||||
$string['reportshowlegend'] = 'Show legend';
|
||||
|
||||
$string['rawdetails'] = 'Raw attempt details';
|
||||
|
||||
// report/*/report.php
|
||||
$string['average'] = 'Average';
|
||||
$string['questionshort'] = 'Q-$a';
|
||||
|
||||
// report/default.php
|
||||
$string['reportlegend'] = 'Legend';
|
||||
|
||||
// report/overview/report.php
|
||||
$string['checks'] = 'Checks';
|
||||
$string['clickreporting'] = 'Enable click reporting';
|
||||
$string['clues'] = 'Clues';
|
||||
$string['completed'] = 'Completed';
|
||||
$string['configexcelencodings'] = 'A list of encodings, separated by commas, that can be used to force report values into a specific encoding for spreadsheet programs. For example, Microsoft Excel requires the "SJIS" encoding for Japanese';
|
||||
$string['configshowtimes'] = 'Should the time taken to process records be displayed in listings and reports? This is only really necessary if you are trying to find out why your server is running slowly.';
|
||||
$string['copiedtoclipboard'] = 'The contents of this page have been copied to the clipboard';
|
||||
$string['copytoclipboard'] = 'Copy to Clipboard';
|
||||
$string['correct'] = 'Correct';
|
||||
$string['deleteabandoned'] = 'Delete abandoned';
|
||||
$string['deleteabandonedcheck'] = 'Do you really want to delete all $a abandoned attempts?';
|
||||
|
||||
// report/click/report.php
|
||||
$string['reportnottriedsymbol'] = '-';
|
||||
$string['reportcorrectsymbol'] = 'O';
|
||||
$string['reportwrongsymbol'] = 'X';
|
||||
|
||||
$string['reportcoursename'] = 'Course name';
|
||||
$string['reportsectionnumber'] = 'Section';
|
||||
$string['reportexercisenumber'] = 'Exercise';
|
||||
$string['reportexercisename'] = 'Ex. name';
|
||||
$string['reportexercisetype'] = 'Ex. type';
|
||||
$string['reportnumberofquestions'] = "No. of q's";
|
||||
|
||||
$string['reportstudentid'] = 'Student id';
|
||||
$string['reportlogindate'] = 'Login date';
|
||||
$string['reportlogintime'] = 'Login time';
|
||||
$string['reportlogofftime'] = 'Logoff time';
|
||||
|
||||
$string['displaycoursenext'] = 'Display Course page next';
|
||||
$string['displayhotpotnext'] = 'Display Hot Potatoes quiz next';
|
||||
$string['displayindexnext'] = 'Display HotPot index next';
|
||||
$string['enterafilename'] = 'Please enter a file name';
|
||||
$string['error_couldnotopenfolder'] = 'Could not access the folder "$a"';
|
||||
$string['error_couldnotopensourcefile'] = 'Could not open the source file \"$a\"';
|
||||
$string['error_couldnotopentemplate'] = 'Could not open template for "$a" format';
|
||||
$string['error_invalidquiztype'] = 'Quiz type is missing or invalid';
|
||||
$string['error_nocourseorfilename'] = 'Could not create XML tree: missing course or file name';
|
||||
$string['error_nofeedbackurlformmail'] = 'Please enter a URL for the form processing script';
|
||||
$string['error_nofeedbackurlwebpage'] = 'Please enter a URL for the webpage';
|
||||
$string['error_nofilename'] = 'Please enter a file name';
|
||||
$string['error_noquizzesfound'] = 'No Hot Potatoes quizzes found';
|
||||
$string['error_notfileorfolder'] = '"$a" is not file or folder';
|
||||
$string['feedbackformmail'] = 'Feedback form';
|
||||
$string['feedbackmoodleforum'] = 'Moodle forum';
|
||||
$string['feedbackmoodlemessaging'] = 'Moodle messaging';
|
||||
$string['feedbacknone'] = 'None';
|
||||
$string['feedbackwebpage'] = 'Web page';
|
||||
$string['filetype'] = 'File type';
|
||||
$string['forceplugins'] = 'Force media plugins';
|
||||
$string['giveup'] = 'Give Up';
|
||||
$string['hints'] = 'Hints';
|
||||
$string['hotpot:attempt'] = 'Attempt a quiz';
|
||||
$string['hotpot:deleteattempt'] = 'Delete quiz attempts';
|
||||
$string['hotpot:grade'] = 'Modify grades';
|
||||
$string['hotpot:view'] = 'Use quiz';
|
||||
$string['hotpot:viewreport'] = 'View reports';
|
||||
$string['hotpotcloses'] = 'Hot Potatoes quiz closes';
|
||||
$string['hotpotopens'] = 'Hot Potatoes quiz opens';
|
||||
$string['ignored'] = 'Ignored';
|
||||
$string['inprogress'] = 'In progress';
|
||||
$string['location'] = 'File location';
|
||||
$string['modulename'] = 'Hot Potatoes Quiz';
|
||||
$string['modulenameplural'] = 'Hot Potatoes Quizzes';
|
||||
$string['navigation'] = 'Navigation';
|
||||
$string['navigation_bar'] = 'Moodle navigation bar';
|
||||
$string['navigation_buttons'] = 'Hot Potatoes quiz buttons';
|
||||
$string['navigation_frame'] = 'Moodle navigation frame';
|
||||
$string['navigation_give_up'] = 'A single "Give Up" button';
|
||||
$string['navigation_iframe'] = 'Embedded <IFRAME>';
|
||||
$string['navigation_none'] = 'None';
|
||||
$string['neverclosed'] = 'Never closed';
|
||||
$string['noactivity'] = 'No activity';
|
||||
$string['noresponses'] = 'No information about individual questions and responses was found.';
|
||||
$string['outputformat'] = 'Output format';
|
||||
$string['outputformat_best'] = 'best';
|
||||
$string['outputformat_flash'] = 'Flash';
|
||||
$string['outputformat_mobile'] = 'mobile';
|
||||
$string['outputformat_v3'] = 'v3';
|
||||
$string['outputformat_v4'] = 'v4';
|
||||
$string['outputformat_v5'] = 'v5';
|
||||
$string['outputformat_v5_plus'] = 'v5+';
|
||||
$string['outputformat_v6'] = 'v6';
|
||||
$string['outputformat_v6_plus'] = 'v6+';
|
||||
$string['penalties'] = 'Penalties';
|
||||
$string['questionshort'] = 'Q-$a';
|
||||
$string['quiztype'] = 'Quiz type';
|
||||
$string['rawdetails'] = 'Raw attempt details';
|
||||
$string['regrade'] = 'Regrade';
|
||||
$string['regradecheck'] = 'Do you really want to regrade "$a"?';
|
||||
$string['regraderequired'] = 'Regrade required';
|
||||
$string['reportanswers'] = 'Answers';
|
||||
$string['reportattemptfinish'] = 'Att. finish';
|
||||
$string['reportattemptnumber'] = 'Attempt';
|
||||
$string['reportattemptstart'] = 'Att. start';
|
||||
$string['reportattemptfinish'] = 'Att. finish';
|
||||
|
||||
$string['reportbutton'] = 'Generate report';
|
||||
$string['reportchanges'] = 'Changes';
|
||||
$string['reportchecks'] = 'Checks';
|
||||
$string['reportclick'] = 'Click trail report';
|
||||
$string['reportclicknumber'] = 'Click';
|
||||
$string['reportclicktime'] = 'Click time';
|
||||
$string['reportclicktype'] = 'Click type';
|
||||
|
||||
$string['reportthisclick'] = '$a this click';
|
||||
$string['reportsofar'] = '$a so far';
|
||||
|
||||
$string['reportquestionstried'] = "Q's tried";
|
||||
|
||||
$string['reportright'] = 'Right';
|
||||
$string['reportwrong'] = 'Wrong';
|
||||
$string['reportnottried'] = 'Not tried';
|
||||
|
||||
$string['reportanswers'] = 'Answers';
|
||||
$string['reportchanges'] = 'Changes';
|
||||
$string['reportchecks'] = 'Checks';
|
||||
$string['reportclues'] = 'Clues';
|
||||
$string['reportcontent'] = 'Content';
|
||||
$string['reportcorrectsymbol'] = 'O';
|
||||
$string['reportcoursename'] = 'Course name';
|
||||
$string['reportencoding'] = 'Encoding';
|
||||
$string['reportevents'] = 'Events';
|
||||
$string['reportexercisename'] = 'Ex. name';
|
||||
$string['reportexercisenumber'] = 'Exercise';
|
||||
$string['reportexercisetype'] = 'Ex. type';
|
||||
$string['reportformat'] = 'Format';
|
||||
$string['allmycourses'] = 'All my courses'; //necessary for 1.6 and older
|
||||
$string['allusers'] = 'All users';
|
||||
$string['reportformatexcel'] = 'Excel';
|
||||
$string['reportformathtml'] = 'HTML';
|
||||
$string['reportformattext'] = 'Text';
|
||||
$string['reporthints'] = 'Hints';
|
||||
$string['reportshowanswer'] = 'Show answers';
|
||||
$string['reportstatus'] = 'Status';
|
||||
|
||||
$string['reportrawscore'] = 'Raw score';
|
||||
$string['reportmaxscore'] = 'Max score';
|
||||
$string['reportpercentscore'] = '%% Score';
|
||||
|
||||
$string['reporthotpotscore'] = 'Hotpot score';
|
||||
|
||||
// review.php
|
||||
$string['noresponses'] = 'No information about individual questions and responses was found.';
|
||||
$string['reportlegend'] = 'Legend';
|
||||
$string['reportlogindate'] = 'Login date';
|
||||
$string['reportlogintime'] = 'Login time';
|
||||
$string['reportlogofftime'] = 'Logoff time';
|
||||
$string['reportmaxscore'] = 'Max score';
|
||||
$string['reportnottried'] = 'Not tried';
|
||||
$string['reportnottriedsymbol'] = '-';
|
||||
$string['reportnumberofquestions'] = 'No. of q\'s';
|
||||
$string['reportpercentscore'] = '%% Score';
|
||||
$string['reportquestionstried'] = 'Q\'s tried';
|
||||
$string['reportrawscore'] = 'Raw score';
|
||||
$string['reportright'] = 'Right';
|
||||
$string['reportsectionnumber'] = 'Section';
|
||||
$string['reportshowanswer'] = 'Show answers';
|
||||
$string['reportshowlegend'] = 'Show legend';
|
||||
$string['reportsofar'] = '$a so far';
|
||||
$string['reportstatus'] = 'Status';
|
||||
$string['reportstudentid'] = 'Student id';
|
||||
$string['reportthisclick'] = '$a this click';
|
||||
$string['reporttimerecorded'] = 'Responses recorded';
|
||||
$string['reportwrapdata'] = 'Wrap data';
|
||||
$string['reportwrong'] = 'Wrong';
|
||||
$string['reportwrongsymbol'] = 'X';
|
||||
$string['resultssaved'] = 'Quiz results were saved';
|
||||
$string['score'] = 'Score';
|
||||
$string['showhtmlsource'] = 'Show HTML source';
|
||||
$string['shownextquiz'] = 'Show next quiz';
|
||||
$string['showxmlsource'] = 'Show XML source';
|
||||
$string['showxmltree'] = 'Show XML tree';
|
||||
$string['specifictime'] = 'Specific time';
|
||||
$string['studentfeedback'] = 'Student feedback';
|
||||
$string['textsourcefilename'] = 'Use file name';
|
||||
$string['textsourcefilepath'] = 'Use file path';
|
||||
$string['textsourcequiz'] = 'Get from quiz';
|
||||
$string['textsourcespecific'] = 'Specific text';
|
||||
$string['thiscourse'] = 'This course'; //necessary for 1.6 and older
|
||||
$string['timedout'] = 'Timed out';
|
||||
$string['updatequizchain'] = 'Update quiz chain';
|
||||
$string['weighting'] = 'Weighting';
|
||||
$string['wrong'] = 'Wrong';
|
||||
|
||||
// config.html
|
||||
$string['configshowtimes'] = 'Should the time taken to process records be displayed in listings and reports? This is only really necessary if you are trying to find out why your server is running slowly.';
|
||||
$string['configexcelencodings'] = 'A list of encodings, separated by commas, that can be used to force report values into a specific encoding for spreadsheet programs. For example, Microsoft Excel requires the "SJIS" encoding for Japanese';
|
||||
|
||||
// error messages (lib.php)
|
||||
$string['error_nofilename'] = 'Please enter a file name';
|
||||
$string['error_notfileorfolder'] = '"$a" is not file or folder';
|
||||
$string['error_nocourseorfilename'] = 'Could not create XML tree: missing course or file name';
|
||||
$string['error_couldnotopensourcefile'] = 'Could not open the source file \\"$a\\"';
|
||||
$string['error_couldnotopenfolder'] = 'Could not access the folder "$a"';
|
||||
$string['error_couldnotopentemplate'] = 'Could not open template for "$a" format';
|
||||
$string['error_noquizzesfound'] = 'No Hot Potatoes quizzes found';
|
||||
$string['error_nofeedbackurlwebpage'] = 'Please enter a URL for the webpage';
|
||||
$string['error_nofeedbackurlformmail'] = 'Please enter a URL for the form processing script';
|
||||
|
||||
// error messages (attempt.php)
|
||||
$string['error_invalidquiztype'] = 'Quiz type is missing or invalid';
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue