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 the customcert module for 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 'customcertelement_daterange', language 'en'.
19
 *
20
 * @package    customcertelement_daterange
21
 * @copyright  2018 Dmitrii Metelkin <dmitriim@catalyst-au.net>
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
26
 
27
$string['addrange'] = 'Add another range';
28
$string['completiondate'] = 'Completion date';
29
$string['courseenddate'] = 'Course end date';
30
$string['coursegradedate'] = 'Course grade date';
31
$string['coursestartdate'] = 'Course start date';
32
$string['currentdate'] = 'Current date';
33
$string['dateitem'] = 'Date item';
34
$string['dateitem_help'] = 'This will be the date that is printed on the certificate';
35
$string['dateranges'] = 'Date ranges';
36
$string['datestring'] = 'String';
37
$string['end'] = 'End';
38
$string['error:atleastone'] = 'You must have at least one date range configured';
39
$string['error:datestring'] = 'You must provide string representation for the date range';
40
$string['error:enddate'] = 'End date must occur after the start date';
41
$string['error:recurring'] = 'Recurring range must not be longer than 12 months';
42
$string['fallbackstring'] = 'Fallback string';
43
$string['fallbackstring_help'] = 'This string will be displayed if no date range applies to a date. If the fallback string is not set, then there will be no output at all.';
44
$string['help'] = 'Configure a string representation for your date ranges.<br /><br />If your ranges overlap the first matched date range will be applied.';
45
$string['issueddate'] = 'Issued date';
46
$string['placeholders'] = 'The following placeholders can be used in the string representation or fallback string. <br/><br /> {{range_first_year}} - first year of the matched range,<br/> {{range_last_year}} - last year of the matched range,<br/> {{recurring_range_first_year}} - first year of the matched recurring period,<br/> {{recurring_range_last_year}} - last year of the matched recurring period,<br/> {{current_year}} - the current year,<br/>  {{date_year}} - a year of the users\'s date.';
47
$string['pluginname'] = 'Date range';
48
$string['preview'] = 'Preview {$a}';
49
$string['privacy:metadata'] = 'The Date range plugin does not store any personal data.';
50
$string['recurring'] = 'Recurring';
51
$string['recurring_help'] = 'If you mark a date range as recurring then the configured year will not be considered.';
52
$string['setdeleted'] = 'Delete';
53
$string['start'] = 'Start';