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 'tool_userroles', language 'en'
|
|
|
19 |
*
|
|
|
20 |
* @package tool_cohortroles
|
|
|
21 |
* @copyright 2015 Damyon Wiese
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
$string['acohortroleassignmentssaved'] = '{$a} cohort role assignments were saved.';
|
|
|
26 |
$string['assign'] = 'Assign';
|
|
|
27 |
$string['assignroletocohort'] = 'Assign user-context roles to all cohort members';
|
|
|
28 |
$string['backgroundsync'] = 'Note: New cohort role assignments will not take effect immediately. Role assignment changes will be made by a scheduled task.';
|
|
|
29 |
$string['cohortroleassignmentremoved'] = 'The cohort role assignment was removed.';
|
|
|
30 |
$string['cohortroleassignmentnotremoved'] = 'The cohort role assignment was not removed.';
|
|
|
31 |
$string['cohortroles'] = 'Cohort roles';
|
|
|
32 |
$string['existingcohortroles'] = 'Existing cohort role assignments';
|
|
|
33 |
$string['managecohortroles'] = 'Assign user roles to cohort';
|
|
|
34 |
$string['noassignableroles'] = 'There are currently no roles that can be assigned in the user context. <a href="../../roles/manage.php">Manage roles</a>';
|
|
|
35 |
$string['nocohortroleassignmentssaved'] = 'No cohort role assignments were saved.';
|
|
|
36 |
$string['onecohortroleassignmentsaved'] = 'One cohort role assignment was saved.';
|
|
|
37 |
$string['pluginname'] = 'Cohort roles management';
|
|
|
38 |
$string['removecohortroleassignment'] = 'Remove cohort role assignment';
|
|
|
39 |
$string['removecohortroleassignmentconfirm'] = 'Are you sure you want to remove this cohort role assignment? This role will be removed for this user in all other user contexts.';
|
|
|
40 |
$string['selectcohorts'] = 'Select cohorts';
|
|
|
41 |
$string['selectrole'] = 'Select role';
|
|
|
42 |
$string['selectusers'] = 'Select users to assign role';
|
|
|
43 |
$string['taskname'] = 'Sync cohort role assignments';
|
|
|
44 |
$string['thisuserroles'] = 'Roles assigned relative to this user';
|
|
|
45 |
$string['privacy:metadata:tool_cohortroles'] = 'The Cohort roles management plugin stores user cohort role mappings.';
|
|
|
46 |
$string['privacy:metadata:tool_cohortroles:id'] = 'The ID of the cohort role mapping record';
|
|
|
47 |
$string['privacy:metadata:tool_cohortroles:cohortid'] = 'The ID of the cohort';
|
|
|
48 |
$string['privacy:metadata:tool_cohortroles:roleid'] = 'The ID of the role';
|
|
|
49 |
$string['privacy:metadata:tool_cohortroles:userid'] = 'The ID of the user';
|
|
|
50 |
$string['privacy:metadata:tool_cohortroles:timecreated'] = 'The time when the cohort role mapping was created';
|
|
|
51 |
$string['privacy:metadata:tool_cohortroles:timemodified'] = 'The time when the cohort role mapping was modified';
|
|
|
52 |
$string['privacy:metadata:tool_cohortroles:usermodified'] = 'The ID of the user who last modified the cohort role mapping';
|