Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * Strings for component qbank_previewquestion, language 'en'
19
 *
20
 * @package    qbank_previewquestion
21
 * @copyright  2021 Catalyst IT Australia Pty Ltd
22
 * @author     Safat Shahin <safatshahin@catalyst-au.net>
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 */
25
 
26
$string['alwayslatest'] = 'Always latest';
27
$string['newerversion'] = 'This preview is using an older version of the question. {$a->restartbutton}';
28
$string['pluginname'] = 'Preview question';
29
$string['privacy:metadata'] = 'The Preview question question bank plugin does not store any personal data.';
30
// Tag related errors.
31
$string['tagclosebutton'] = 'Close';
32
$string['tagerror'] = 'No question was found with following tags: {$a}. Please change or remove tags filtering.';
33
$string['tagsnotfound'] = 'Tags not found';
34
// Form string(s).
35
$string['previewoptions'] = 'Preview options';
36
$string['questionversion'] = 'Question version';
37
$string['restartnow'] = 'Use latest version';
38
$string['theoptionsyouselectonlyaffectthepreview'] = 'These settings are for testing the question. The options you select only affect the preview.';
39
// Preview title.
40
$string['versiontitle'] = 'Version {$a}';
41
$string['versiontitlelatest'] = 'Version {$a} (latest)';
42