You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.7 KiB
51 lines
2.7 KiB
<?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_profile
|
|
* @copyright 2014 The Open University
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['conditiontitle'] = 'User profile field';
|
|
$string['description'] = 'Control access based on fields within the student\'s profile.';
|
|
$string['error_selectfield'] = 'You must select a profile field.';
|
|
$string['error_setvalue'] = 'You must type a value.';
|
|
$string['label_operator'] = 'Method of comparison';
|
|
$string['label_value'] = 'Value to compare against';
|
|
$string['pluginname'] = 'Restriction by profile';
|
|
$string['requires_contains'] = 'Your <strong>{$a->field}</strong> contains <strong>{$a->value}</strong>';
|
|
$string['requires_doesnotcontain'] = 'Your <strong>{$a->field}</strong> does not contain <strong>{$a->value}</strong>';
|
|
$string['requires_endswith'] = 'Your <strong>{$a->field}</strong> ends with <strong>{$a->value}</strong>';
|
|
$string['requires_isempty'] = 'Your <strong>{$a->field}</strong> is empty';
|
|
$string['requires_isequalto'] = 'Your <strong>{$a->field}</strong> is <strong>{$a->value}</strong>';
|
|
$string['requires_isnotempty'] = 'Your <strong>{$a->field}</strong> is not empty';
|
|
$string['requires_notendswith'] = 'Your <strong>{$a->field}</strong> does not end with <strong>{$a->value}</strong>';
|
|
$string['requires_notisequalto'] = 'Your <strong>{$a->field}</strong> is not <strong>{$a->value}</strong>';
|
|
$string['requires_notstartswith'] = 'Your <strong>{$a->field}</strong> does not start with <strong>{$a->value}</strong>';
|
|
$string['requires_startswith'] = 'Your <strong>{$a->field}</strong> starts with <strong>{$a->value}</strong>';
|
|
$string['missing'] = '(Missing custom field: {$a})';
|
|
$string['title'] = 'User profile';
|
|
$string['op_contains'] = 'contains';
|
|
$string['op_doesnotcontain'] = 'doesn\'t contain';
|
|
$string['op_endswith'] = 'ends with';
|
|
$string['op_isempty'] = 'is empty';
|
|
$string['op_isequalto'] = 'is equal to';
|
|
$string['op_isnotempty'] = 'is not empty';
|
|
$string['op_startswith'] = 'starts with';
|
|
$string['privacy:metadata'] = 'The Restriction by profile plugin does not store any personal data.';
|
|
|