Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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
 * Block "people" - Language pack
19
 *
20
 * @package    block_people
21
 * @copyright  2013 Alexander Bias, Ulm University <alexander.bias@uni-ulm.de>
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
defined('MOODLE_INTERNAL') || die();
26
 
27
$string['pluginname'] = 'People';
28
$string['participantslist'] = 'Show participants list';
29
$string['people:addinstance'] = 'Add a new people block';
30
$string['people:myaddinstance'] = 'Add a new people block to Dashboard';
31
$string['privacy:metadata'] = 'The people plugin provides extended functionality to Moodle users, but does not store any personal data.';
32
$string['noparticipantslist'] = 'Viewing the participants list is prohibited in this course';
33
 
34
// Settings.
35
$string['setting_participantspageheading'] = 'Participants page';
36
$string['setting_linkparticipantspage'] = 'Show link to the participants page';
37
$string['setting_linkparticipantspage_desc'] = 'By enabling this setting, a link to the participants page of the course will be shown within the block.';
38
$string['setting_hideblockheading'] = 'Hiding the block';
39
$string['setting_hideblock'] = 'Hiding the block';
40
$string['setting_hideblock_desc'] = 'By enabling this setting, the block can be hidden by users.<br/>
41
Important notice:<br/>
42
Disabling this setting will entirely remove the showing / hiding the block menu item. This means, that users cannot hide this block anymore, but on the other hand, blocks that are already hidden cannot be shown anymore, too. If you want to enable this feature, consider using the following function to reset the visibility for all "block_people" instances.';
43
$string['setting_linkingheading'] = 'Linking';
44
$string['setting_linkavatar'] = 'Link avatar';
45
$string['setting_linkavatar_desc'] = 'By enabling this setting, a link to the teacher\'s user page will be added onto the teacher\'s avatar. The link will only be added if the user is allowed to view user profiles.';
46
$string['setting_linkname'] = 'Link name';
47
$string['setting_linkname_desc'] = 'By enabling this setting, a link to the teacher\'s user page will be added onto the teacher\'s name. The link will only be added if the user is allowed to view user profiles.';
48
$string['setting_linkmessaging'] = 'Link to messaging';
49
$string['setting_linkmessaging_desc'] = 'By enabling this setting, a link to the teacher\'s messaging page will be added below the teacher\'s name. The link will only be added if the user is allowed to message the teacher.';
50
$string['setting_multipleroles'] = 'Show multiple roles';
51
$string['setting_multipleroles_desc'] = 'This setting allows you to control if users who have more than one of the roles configured above are listed once or multiple times in this block. If this setting is disabled, users will be only listed with the first role they have according to the global role sort order. If this setting is enabled, users will be listed within each of their roles.';
52
$string['setting_resetvisibility'] = 'Reset visibility';
53
$string['setting_resetvisibility_desc'] = 'By enabling this checkbox, the visibility of all existing "block_people" instances will be set to visible (again).<br/>
54
Please note: <br/>
55
After saving this option, the database operations for resetting the visibility will be triggered and this checkbox will be unticked again. The next enabling and saving of this feature will trigger the database operations for resetting the visibility again. ';
56
$string['setting_rolesheading'] = 'Roles';
57
$string['setting_roles'] = 'Show these roles';
58
$string['setting_roles_desc'] = 'This setting allows you to control which users appear in this block. Users need to have at least one of these roles in a course to be shown in the block.';
59
 
60
// Notifications.
61
$string['resetvisibilitysuccess'] = 'Success! All "block_people" instances are visible (again). <br/> The setting "Reset visibility" has been reset.';
62
$string['resetvisibilityerror'] = 'Oops... Something went wrong updating the database tables... <br/> The setting "Reset visibility" has been reset.';