mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
80 lines
4.1 KiB
PHP
80 lines
4.1 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Plugin strings are defined here.
|
|
*
|
|
* @package mod_h5pactivity
|
|
* @category string
|
|
* @copyright 2020 Ferran Recio <ferran@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$string['areapackage'] = 'Package file';
|
|
$string['attempt'] = 'Attempt';
|
|
$string['attempts'] = 'Attempts';
|
|
$string['deleteallattempts'] = 'Delete all H5P attempts';
|
|
$string['displayexport'] = 'Allow download';
|
|
$string['displayembed'] = 'Embed button';
|
|
$string['displaycopyright'] = 'Copyright button';
|
|
$string['enabletracking'] = 'Enable attempt tracking';
|
|
$string['grade_grademethod'] = 'Grading method';
|
|
$string['grade_grademethod_help'] = 'When using point grading, the following methods are available for calculating the final grade:
|
|
|
|
* Highest grade of all attempts
|
|
* Average (mean) grade of all attempts
|
|
* First attempt (all other attempts are ignored)
|
|
* Last attempt (all other attempts are ignored)
|
|
* Don\'t use attempts for grading (disable grading calculation)';
|
|
$string['grade_manual'] = 'Don\'t calculate a grade';
|
|
$string['grade_highest_attempt'] = 'Highest grade';
|
|
$string['grade_average_attempt'] = 'Average grade';
|
|
$string['grade_last_attempt'] = 'Last attempt';
|
|
$string['grade_first_attempt'] = 'First attempt';
|
|
$string['h5pactivity:addinstance'] = 'Add a new H5P';
|
|
$string['h5pactivity:reviewattempts'] = 'Review H5P attempts';
|
|
$string['h5pactivity:submit'] = 'Submit H5P attempts';
|
|
$string['h5pactivity:view'] = 'View H5P';
|
|
$string['h5pactivityfieldset'] = 'H5P settings';
|
|
$string['h5pactivityname'] = 'H5P';
|
|
$string['h5pactivitysettings'] = 'Settings';
|
|
$string['h5pattempts'] = 'Attempt options';
|
|
$string['h5pdisplay'] = 'H5P options';
|
|
$string['modulename'] = 'H5P';
|
|
$string['modulename_help'] = 'H5P is an abbreviation for HTML5 Package - interactive content such as presentations, videos and other multimedia, questions, quizzes, games and more. The H5P activity enables H5P to be uploaded and added to a course.
|
|
|
|
Any question attempts are marked automatically, and the grade is recorded in the gradebook.';
|
|
$string['modulename_link'] = 'mod/h5pactivity/view';
|
|
$string['modulenameplural'] = 'H5P';
|
|
$string['myattempts'] = 'My attempts';
|
|
$string['package'] = 'Package file';
|
|
$string['package_help'] = 'The package file is a h5p file containing H5P interactive content.';
|
|
$string['page-mod-h5pactivity-x'] = 'Any H5P module page';
|
|
$string['pluginadministration'] = 'H5P administration';
|
|
$string['pluginname'] = 'H5P';
|
|
$string['previewmode'] = 'This content is displayed in preview mode. No attempt tracking will be stored.';
|
|
$string['privacy:metadata:attempt'] = 'The attempt number';
|
|
$string['privacy:metadata:rawscore'] = 'The score obtained';
|
|
$string['privacy:metadata:timecreated'] = 'The time when the tracked element was created';
|
|
$string['privacy:metadata:timemodified'] = 'The last time element was tracked';
|
|
$string['privacy:metadata:userid'] = 'The ID of the user who accessed the H5P activity';
|
|
$string['privacy:metadata:xapi_track'] = 'Attempt tracking information';
|
|
$string['privacy:metadata:xapi_track_results'] = 'Attempt results tracking information';
|
|
$string['statement_received'] = 'xAPI statement received';
|
|
$string['tracking_messages'] = 'Some H5P provide attempt tracking data for advanced reporting such as number of attempts, responses and grades. Note: Some H5P don\'t provide attempt tracking data. In such cases, the following settings will have no effect.';
|
|
$string['view'] = 'View';
|