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
 * This file manages all the en strings
19
 *
20
 * @package    mod_custommailing
21
 * @author     jeanfrancois@cblue.be
22
 * @copyright  2021 CBlue SPRL
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 */
25
 
26
$string['pluginname'] = 'Custom Mailing';
27
 
28
$string['andtargetactivitynotcompleted'] = 'and target module is not completed by the user';
29
$string['atactivitycompleted'] = "At target module completion";
30
$string['atcourseenrol'] = "At course enrol";
31
$string['atfirstlaunch'] = "At first launch (target module)";
32
$string['certificate'] = "Certificate";
33
$string['confirmdelete'] = 'Are you sure to delete this mailing : {$a}';
34
$string['course'] = "Course";
35
$string['coursecompletionenabled'] = "Warning : course completion has been enabled.";
36
$string['coursecompletionnotenabled'] = "Error : The activity was added but course completion could not be enabled.";
37
$string['courseenroldate'] = "days(s) after course enrol date";
38
$string['courselastaccess'] = "days(s) after last course access";
39
$string['createmailing'] = "Create mailing";
40
$string['createnewmailing'] = 'Create a new mailing';
41
$string['crontask'] = "Cron task";
42
$string['customcert'] = "Certificate";
43
$string['customcert_help'] = "Email with certificate attached will be send to each user who fulfil all requirements of the certificate";
44
$string['custommailingname'] = "Name";
45
$string['daysafter'] = 'day(s) after :';
46
$string['debugmode'] = "debug mode";
47
$string['debugmode_help'] = "mailing delay in minutes instead of days";
48
$string['disabled'] = "Disabled";
49
$string['enabled'] = "Enabled";
50
$string['firstlaunch'] = "days(s) after first launch (target module)";
51
$string['lastlaunch'] = "days(s) after last launch (target module)";
52
$string['log_mailing_failed'] = 'Failed';
53
$string['log_mailing_idle'] = 'Idle';
54
$string['log_mailing_processing'] = 'Processing';
55
$string['log_mailing_sent'] = 'Sent';
56
$string['log_mailing_unknown'] = 'Unknown';
57
$string['logtable'] = "Log table";
58
$string['mailingadded'] = "Mailing added";
59
$string['mailingcontent'] = "Body";
60
$string['mailingcontent_help'] = 'You can use the following variables in the mail :
61
<ul>
62
<li>%firstname%</li>
63
<li>%lastname%</li>
64
</ul>';
65
$string['mailingdeleted'] = 'Mailing deleted';
66
$string['mailinglang'] = 'Lang';
67
$string['mailingname'] = 'Name';
68
$string['mailingsubject'] = "Subject";
69
$string['mailingtargetactivitystatuscomplete'] = "Target module complete";
70
$string['mailingtargetactivitystatusincomplete'] = "Target module incomplete";
71
$string['mailingupdated'] = "Mailing updated";
72
$string['module'] = "Scorm";
73
$string['modulename'] = 'Custom Mailing';
74
$string['modulenameplural'] = "Custom Mailing's";
75
$string['pluginadministration'] = 'custommailing administration';
76
$string['retroactive'] = "Retroactive";
77
$string['retroactive_help'] = "Retroactive effect of sending conditions";
78
$string['select'] = "Select";
79
$string['selectsource'] = "Source";
80
$string['sendmailing'] = "Send mailing";
81
$string['settings'] = "Settings";
82
$string['starttime'] = "Sending time";
83
$string['targetactivitynotfound'] = "Target module not found";
84
$string['targetmoduleid'] = 'Target module';
85
$string['timecreated'] = 'Time created';
86
$string['timemodified'] = 'Time modified';
87
$string['updatemailing'] = "Update mailing";
88
 
89
$string['privacy:metadata'] = 'The Custom Mailing plugin store personal log for each email sended by each mailing.';
90
$string['privacy:metadata:custommailing_logs'] = 'Custom Mailing Logs';
91
$string['privacy:metadata:custommailingmailingid'] = 'Mailing id';
92
$string['privacy:metadata:emailtouserid'] = 'User id';
93
$string['privacy:metadata:emailstatus'] = 'Email status';
94
$string['privacy:metadata:timecreated'] = 'Time created';
95
$string['privacy:metadata:timemodified'] = 'Time modified';
96