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 |
* Language strings.
|
|
|
19 |
*
|
|
|
20 |
* @package availability_relativedate
|
|
|
21 |
* @copyright 2022 eWallah.net
|
|
|
22 |
* @author Renaat Debleu <info@eWallah.net>
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
$string['after'] = ' after ';
|
|
|
27 |
$string['before'] = ' before ';
|
|
|
28 |
$string['datecompletion'] = 'after completion of activity';
|
|
|
29 |
$string['dateend'] = 'before course end date';
|
|
|
30 |
$string['dateendafter'] = 'after course end date';
|
|
|
31 |
$string['dateendenrol'] = 'after enrolment method end date';
|
|
|
32 |
$string['dateenrol'] = 'after user enrolment date';
|
|
|
33 |
$string['datestart'] = 'after course start date';
|
|
|
34 |
$string['datestartbefore'] = 'before course start date';
|
|
|
35 |
$string['day'] = 'day';
|
|
|
36 |
$string['days'] = 'days';
|
|
|
37 |
$string['description'] = 'Prevent access until a relative time is reached before/after a course or user date.';
|
|
|
38 |
$string['from'] = 'From {$a->rnumber} {$a->rtime} {$a->rela}';
|
|
|
39 |
$string['hour'] = 'hour';
|
|
|
40 |
$string['hours'] = 'hours';
|
|
|
41 |
$string['minute'] = 'minute';
|
|
|
42 |
$string['minutes'] = 'minutes';
|
|
|
43 |
$string['missing'] = '(missing)';
|
|
|
44 |
$string['month'] = 'month';
|
|
|
45 |
$string['months'] = 'months';
|
|
|
46 |
$string['noenddate'] = 'This course has no end date';
|
|
|
47 |
$string['pluginname'] = 'Restriction by relative date';
|
|
|
48 |
$string['privacy:metadata'] = "The relative date availability restriction does not store private user data.";
|
|
|
49 |
$string['title'] = 'Relative date';
|
|
|
50 |
$string['until'] = 'Until {$a->rnumber} {$a->rtime} {$a->rela}';
|
|
|
51 |
$string['week'] = 'week';
|
|
|
52 |
$string['weeks'] = 'weeks';
|
|
|
53 |
$string['year'] = 'year';
|
|
|
54 |
$string['years'] = 'years';
|