AutorÃa | Ultima modificación | Ver Log |
<?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/>./*** Language strings.** @package availability_relativedate* @copyright 2022 eWallah.net* @author Renaat Debleu <info@eWallah.net>* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later*/$string['after'] = ' after ';$string['before'] = ' before ';$string['datecompletion'] = 'after completion of activity';$string['dateend'] = 'before course end date';$string['dateendafter'] = 'after course end date';$string['dateendenrol'] = 'after enrolment method end date';$string['dateenrol'] = 'after user enrolment date';$string['datestart'] = 'after course start date';$string['datestartbefore'] = 'before course start date';$string['day'] = 'day';$string['days'] = 'days';$string['description'] = 'Prevent access until a relative time is reached before/after a course or user date.';$string['from'] = 'From {$a->rnumber} {$a->rtime} {$a->rela}';$string['hour'] = 'hour';$string['hours'] = 'hours';$string['minute'] = 'minute';$string['minutes'] = 'minutes';$string['missing'] = '(missing)';$string['month'] = 'month';$string['months'] = 'months';$string['noenddate'] = 'This course has no end date';$string['pluginname'] = 'Restriction by relative date';$string['privacy:metadata'] = "The relative date availability restriction does not store private user data.";$string['title'] = 'Relative date';$string['until'] = 'Until {$a->rnumber} {$a->rtime} {$a->rela}';$string['week'] = 'week';$string['weeks'] = 'weeks';$string['year'] = 'year';$string['years'] = 'years';