mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00

If enabled $CFG->allowcohortthemes, then themes can be set at the cohort level. This will affect all users with only one cohort or more than one but with the same theme. The default theme order will be: course, category, session, user, cohort, site.
92 lines
4.8 KiB
PHP
92 lines
4.8 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Strings for component 'cohort', language 'en', branch 'MOODLE_20_STABLE'
|
|
*
|
|
* @package core_cohort
|
|
* @subpackage cohort
|
|
* @copyright 2010 Petr Skoda (info@skodak.org)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['addcohort'] = 'Add new cohort';
|
|
$string['allcohorts'] = 'All cohorts';
|
|
$string['anycohort'] = 'Any';
|
|
$string['assign'] = 'Assign';
|
|
$string['assignto'] = 'Cohort \'{$a}\' members';
|
|
$string['backtocohorts'] = 'Back to cohorts';
|
|
$string['bulkadd'] = 'Add to cohort';
|
|
$string['bulknocohort'] = 'No available cohorts found';
|
|
$string['categorynotfound'] = 'Category <b>{$a}</b> not found or you don\'t have permission to create a cohort there. The default context will be used.';
|
|
$string['cohort'] = 'Cohort';
|
|
$string['cohorts'] = 'Cohorts';
|
|
$string['cohortsin'] = '{$a}: available cohorts';
|
|
$string['assigncohorts'] = 'Assign cohort members';
|
|
$string['component'] = 'Source';
|
|
$string['contextnotfound'] = 'Context <b>{$a}</b> not found or you don\'t have permission to create a cohort there. The default context will be used.';
|
|
$string['csvcontainserrors'] = 'Errors were found in CSV data. See details below.';
|
|
$string['csvcontainswarnings'] = 'Warnings were found in CSV data. See details below.';
|
|
$string['csvextracolumns'] = 'Column(s) <b>{$a}</b> will be ignored.';
|
|
$string['currentusers'] = 'Current users';
|
|
$string['currentusersmatching'] = 'Current users matching';
|
|
$string['defaultcontext'] = 'Default context';
|
|
$string['delcohort'] = 'Delete cohort';
|
|
$string['delconfirm'] = 'Do you really want to delete cohort \'{$a}\'?';
|
|
$string['description'] = 'Description';
|
|
$string['displayedrows'] = '{$a->displayed} rows displayed out of {$a->total}.';
|
|
$string['duplicateidnumber'] = 'Cohort with the same ID number already exists';
|
|
$string['editcohort'] = 'Edit cohort';
|
|
$string['editcohortidnumber'] = 'Edit cohort ID';
|
|
$string['editcohortname'] = 'Edit cohort name';
|
|
$string['eventcohortcreated'] = 'Cohort created';
|
|
$string['eventcohortdeleted'] = 'Cohort deleted';
|
|
$string['eventcohortmemberadded'] = 'User added to a cohort';
|
|
$string['eventcohortmemberremoved'] = 'User removed from a cohort';
|
|
$string['eventcohortupdated'] = 'Cohort updated';
|
|
$string['external'] = 'External cohort';
|
|
$string['invalidtheme'] = 'Cohort theme does not exist';
|
|
$string['idnumber'] = 'Cohort ID';
|
|
$string['memberscount'] = 'Cohort size';
|
|
$string['name'] = 'Name';
|
|
$string['namecolumnmissing'] = 'There is something wrong with the format of the CSV file. Please check that it includes column names.';
|
|
$string['namefieldempty'] = 'Field name can not be empty';
|
|
$string['newnamefor'] = 'New name for cohort {$a}';
|
|
$string['newidnumberfor'] = 'New ID number for cohort {$a}';
|
|
$string['nocomponent'] = 'Created manually';
|
|
$string['potusers'] = 'Potential users';
|
|
$string['potusersmatching'] = 'Potential matching users';
|
|
$string['preview'] = 'Preview';
|
|
$string['removeuserwarning'] = 'Removing users from a cohort may result in unenrolling of users from multiple courses which includes deleting of user settings, grades, group membership and other user information from affected courses.';
|
|
$string['selectfromcohort'] = 'Select members from cohort';
|
|
$string['systemcohorts'] = 'System cohorts';
|
|
$string['unknowncohort'] = 'Unknown cohort ({$a})!';
|
|
$string['uploadcohorts'] = 'Upload cohorts';
|
|
$string['uploadedcohorts'] = 'Uploaded {$a} cohorts';
|
|
$string['useradded'] = 'User added to cohort "{$a}"';
|
|
$string['search'] = 'Search';
|
|
$string['searchcohort'] = 'Search cohort';
|
|
$string['uploadcohorts_help'] = 'Cohorts may be uploaded via text file. The format of the file should be as follows:
|
|
|
|
* Each line of the file contains one record
|
|
* Each record is a series of data separated by commas (or other delimiters)
|
|
* The first record contains a list of fieldnames defining the format of the rest of the file
|
|
* Required fieldname is name
|
|
* Optional fieldnames are idnumber, description, descriptionformat, visible, context, category, category_id, category_idnumber, category_path
|
|
';
|
|
$string['visible'] = 'Visible';
|
|
$string['visible_help'] = "Any cohort can be viewed by users who have 'moodle/cohort:view' capability in the cohort context.<br/>
|
|
Visible cohorts can also be viewed by users in the underlying courses.";
|