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 |
/**
|
|
|
19 |
* Defines the lang strings for the Message My Teacher block
|
|
|
20 |
*
|
|
|
21 |
* @package block_messageteacher
|
|
|
22 |
* @author Mark Johnson <mark@barrenfrozenwasteland.com>
|
|
|
23 |
* @copyright 2010-2012 Tauntons College, UK. 2012 onwards Mark Johnson.
|
|
|
24 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
25 |
*/
|
|
|
26 |
defined('MOODLE_INTERNAL') || die();
|
|
|
27 |
|
|
|
28 |
$string['appendurl'] = 'Append Referring URL';
|
|
|
29 |
$string['appendurldesc'] = 'When enabled, all messages send using the block will automatically contain the URL of the page from which the message was sent.';
|
|
|
30 |
$string['enablegroups'] = 'Enable Group Support';
|
|
|
31 |
$string['groupsdesc'] = 'When enabled, students will only see teachers in the same group as them';
|
|
|
32 |
$string['includecoursecat'] = 'Include teachers from Course Category';
|
|
|
33 |
$string['includecoursecatdesc'] = 'When enabled, users with the teacher roles in the course\'s parent category will be displayed, as well as those assigned in the course itself';
|
|
|
34 |
$string['messageteacher:addinstance'] = 'Add a new Message My Teacher block';
|
|
|
35 |
$string['messageprovider:message'] = 'A message sent using the Message My Teacher block';
|
|
|
36 |
$string['messagefrom'] = 'Message From {$a}';
|
|
|
37 |
$string['messageheader'] = 'Enter your message for {$a}';
|
|
|
38 |
$string['messagefailed'] = 'Message sending failed';
|
|
|
39 |
$string['messagesent'] = 'Message Sent!';
|
|
|
40 |
$string['messagetext'] = 'Message text';
|
|
|
41 |
$string['nogroupmembership'] = 'You\'re not a member of any group';
|
|
|
42 |
$string['nogroupteachers'] = 'Teacher not yet assigned to your group';
|
|
|
43 |
$string['norecipient'] = 'No recipient could be determined for userid {$a}';
|
|
|
44 |
$string['pluginname'] = 'Message My Teacher';
|
|
|
45 |
$string['pluginnameplural'] = 'Message My Teachers';
|
|
|
46 |
$string['send'] = 'Send';
|
|
|
47 |
$string['sentfrom'] = 'This message was sent from {$a}';
|
|
|
48 |
$string['showuserpictures'] = 'Show User Pictures';
|
|
|
49 |
$string['showuserpicturesdesc'] = 'If enabled, teachers\' pictures will show alongside their name';
|
|
|
50 |
$string['teachersinclude'] = 'Teachers include:';
|
|
|
51 |
$string['rolesdesc'] = 'Select all the roles which are teachers or people whom students may wish to ask for help';
|