1441 |
ariadna |
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 |
* Strings for component 'sms', language 'en'
|
|
|
19 |
*
|
|
|
20 |
* @package core
|
|
|
21 |
* @category string
|
|
|
22 |
* @copyright 2024 Andrew Lyons <andrew@nicols.co.uk>
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
$string['actions'] = 'Actions';
|
|
|
26 |
$string['countrycode'] = 'Default country code';
|
|
|
27 |
$string['countrycode_help'] = 'Country code to be added to phone numbers if users don\'t enter their own country code. Enter the number without the leading \'+\' symbol.';
|
|
|
28 |
$string['createnewgateway'] = 'Create new SMS gateway';
|
|
|
29 |
$string['delete_sms_gateway'] = 'Delete SMS gateway';
|
|
|
30 |
$string['delete_sms_gateway_confirmation'] = 'This will delete the {$a->gateway} SMS gateway.';
|
|
|
31 |
$string['edit_sms_gateway'] = 'Edit {$a->gateway} SMS gateway';
|
|
|
32 |
$string['gateway'] = 'Gateway';
|
|
|
33 |
$string['gateway_name'] = 'Gateway name';
|
|
|
34 |
$string['manage_sms_gateways'] = 'Manage SMS gateways';
|
|
|
35 |
$string['phonenumbernotvalid'] = 'Format of phone number not recognised: {$a->message}';
|
|
|
36 |
$string['privacy:metadata:sms_messages'] = 'Stores messages sent via SMS';
|
|
|
37 |
$string['privacy:metadata:sms_messages:content'] = 'The message text';
|
|
|
38 |
$string['privacy:metadata:sms_messages:id'] = 'The ID of the message';
|
|
|
39 |
$string['privacy:metadata:sms_messages:recipient'] = 'The phone number that the message was sent to';
|
|
|
40 |
$string['privacy:metadata:sms_messages:recipientuserid'] = 'The user who the message was sent to, if known';
|
|
|
41 |
$string['privacy:metadata:sms_messages:status'] = 'The status of the message';
|
|
|
42 |
$string['privacy:metadata:sms_messages:timecreated'] = 'The time the message was created';
|
|
|
43 |
$string['privacy:sms:sensitive_not_shown'] = 'The content of this message was not stored as it was marked as containing sensitive content.';
|
|
|
44 |
$string['select_sms_gateways'] = 'SMS gateway provider';
|
|
|
45 |
$string['sms'] = 'SMS';
|
|
|
46 |
$string['status:gateway_failed'] = 'The gateway has failed to send the message';
|
|
|
47 |
$string['status:gateway_not_available'] = 'The gateway is not available to send the message';
|
|
|
48 |
$string['status:gateway_queued'] = 'The message is queued to be sent by the gateway';
|
|
|
49 |
$string['status:gateway_rejected'] = 'The gateway has rejected the message';
|
|
|
50 |
$string['status:gateway_sent'] = 'The message has been sent by the gateway';
|
|
|
51 |
$string['status:message_over_size'] = 'The message is too large to be sent by the gateway';
|
|
|
52 |
$string['status:unknown'] = 'Unable to determine the status of the message';
|
|
|
53 |
$string['sms_gateway_deleted'] = '{$a->gateway} SMS gateway deleted';
|
|
|
54 |
$string['sms_gateway_delete_failed'] = 'Cannot delete the {$a->gateway} SMS gateway. The gateway is either in use or there\'s a database issue. Check if the gateway is active or contact your database administrator for help.';
|
|
|
55 |
$string['sms_gateway_disable_failed'] = 'Cannot disable the SMS gateway. The gateway is either in use or there\'s a database issue. Check if the gateway is active or contact your database administrator for help.';
|
|
|
56 |
$string['sms_gateways'] = 'SMS gateways';
|
|
|
57 |
$string['sms_gateways_info'] = 'Create and manage SMS gateways to send SMS messages from your site.';
|