Commit | Line | Data |
---|---|---|
30c8dd34 DM |
1 | <?php |
2 | ||
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
5 | // Moodle is free software: you can redistribute it and/or modify | |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
14 | // | |
15 | // You should have received a copy of the GNU General Public License | |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
18 | /** | |
19 | * Strings for component 'message_email', language 'en', branch 'MOODLE_20_STABLE' | |
20 | * | |
21 | * @package message_email | |
22 | * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} | |
23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
24 | */ | |
25 | ||
2f2137fc RK |
26 | $string['allowusermailcharset'] = 'Allow user to select character set'; |
27 | $string['configallowusermailcharset'] = 'Enabling this, every user in the site will be able to specify his own charset for email.'; | |
28 | $string['configmailnewline'] = 'Newline characters used in mail messages. CRLF is required according to RFC 822bis, some mail servers do automatic conversion from LF to CRLF, other mail servers do incorrect conversion from CRLF to CRCRLF, yet others reject mails with bare LF (qmail for example). Try changing this setting if you are having problems with undelivered emails or double newlines.'; | |
29 | $string['confignoreplyaddress'] = 'Emails are sometimes sent out on behalf of a user (eg forum posts). The email address you specify here will be used as the "From" address in those cases when the recipients should not be able to reply directly to the user (eg when a user chooses to keep their address private).'; | |
30 | $string['configsitemailcharset'] = 'All the emails generated by your site will be sent in the charset specified here. Anyway, every individual user will be able to adjust it if the next setting is enabled.'; | |
31 | $string['configsmtphosts'] = 'Give the full name of one or more local SMTP servers that Moodle should use to send mail (eg \'mail.a.com\' or \'mail.a.com;mail.b.com\'). To specify a non-default port (i.e other than port 25), you can use the [server]:[port] syntax (eg \'mail.a.com:587\'. If you leave it blank, Moodle will use the PHP default method of sending mail.'; | |
32 | $string['configsmtpmaxbulk'] = 'Maximum number of messages sent per SMTP session. Grouping messages may speed up the sending of emails. Values lower than 2 force creation of new SMTP session for each email.'; | |
33 | $string['configsmtpuser'] = 'If you have specified an SMTP server above, and the server requires authentication, then enter the username and password here.'; | |
a813a748 | 34 | $string['email'] = 'Send email notifications to'; |
2f2137fc RK |
35 | $string['mailnewline'] = 'Newline characters in mail'; |
36 | $string['noreplyaddress'] = 'No-reply address'; | |
37 | $string['pluginname'] = 'Email'; | |
38 | $string['sitemailcharset'] = 'Character set'; | |
39 | $string['smtphosts'] = 'SMTP hosts'; | |
40 | $string['smtpmaxbulk'] = 'SMTP session limit'; | |
41 | $string['smtppass'] = 'SMTP password'; | |
42 | $string['smtpuser'] = 'SMTP username'; |