mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 03:53:49 +01:00
79 lines
2.7 KiB
PHP
Executable File
79 lines
2.7 KiB
PHP
Executable File
<?PHP // $Id$
|
|
// quiz.php - created with Moodle 1.2 development (2003111400)
|
|
|
|
//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['outputformat'] = 'Output format';
|
|
$string['outputformat_best'] = 'best';
|
|
$string['outputformat_v6_plus'] = 'v6+';
|
|
$string['outputformat_v6'] = 'v6';
|
|
$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['shownextquiz'] = 'Show next quiz?';
|
|
$string['forceplugins'] = "Force media plugins";
|
|
|
|
$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';
|
|
|
|
// lib.php
|
|
$string['noactivity'] = 'No activity';
|
|
$string['inprogress'] = 'in progress';
|
|
$string['abandoned'] = 'abandoned';
|
|
|
|
$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';
|
|
|
|
// report.php
|
|
$string['deletedattempts'] = '$a attempts were deleted';
|
|
$string['deletedresponses'] = '$a responses were deleted';
|
|
$string['selectattempt'] = 'Please select an attempt';
|
|
|
|
$string['thiscourse'] = 'this course';
|
|
$string['allmycourses'] = 'all my courses';
|
|
$string['bestattempt'] = 'best attempt';
|
|
$string['allattempts'] = 'all attempts';
|
|
|
|
// report/*/report.php
|
|
$string['average'] = 'Average';
|
|
$string['questionshort'] = 'Q-$a';
|
|
|
|
// report/overview/report.php
|
|
$string['deleteabandoned'] = 'Delete abandoned';
|
|
$string['deleteabandonedcheck'] = 'Do you really want to delete all $a abandoned attempts?';
|
|
|
|
// review.php
|
|
$string['noresponses'] = 'No information about individual questions and responses was found.';
|
|
|
|
?>
|