mirror of
https://github.com/moodle/moodle.git
synced 2025-03-09 02:10:00 +01:00
Significant string changes: * moodleorghubname,core_admin and sitemustberegistered,message_airnotifier - 'Moodle.net' changed to 'Moodle' * registration_help,core_admin and registermoochtips,core_hub - removed erroneous 'access to Moodle.net our course sharing platform' * trackingtype_help,mod_forum and formnotavailable,core_grading and showgrades_help,core and rolewarning_help,core_rating - 'Administration block' changed to 'Actions menu or admin block', 'navigation block' changed to 'navigation drawer or block'
47 lines
2.4 KiB
PHP
47 lines
2.4 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Strings for component 'tool_spamcleaner', language 'en', branch 'MOODLE_22_STABLE'
|
|
*
|
|
* @package tool
|
|
* @subpackage spamcleaner
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['pluginname'] = 'Spam cleaner';
|
|
$string['spamauto'] = 'Autodetect common spam patterns';
|
|
$string['spamcannotdelete'] = 'Cannot delete this user';
|
|
$string['spamcannotfinduser'] = 'No users matching your search';
|
|
$string['spamcleanerintro'] = '<p>This script allows you to search all user profiles for certain strings and then delete those accounts which are obviously created by spammers. You can search for multiple keywords using commas (e.g. casino, porn).</p>
|
|
<p>For further information, see the documentation <a href="https://docs.moodle.org/en/Reducing_spam_in_Moodle">Reducing spam in Moodle</a>.</p>';
|
|
$string['spamdeleteall'] = 'Delete all these user accounts';
|
|
$string['spamdeleteallconfirm'] = 'Are you sure you want to delete all these user accounts? You can not undo this.';
|
|
$string['spamdeleteconfirm'] = 'Are you sure you want to delete this entry? You can not undo this.';
|
|
$string['spamdesc'] = 'Description';
|
|
$string['spameg'] = 'eg: casino, porn, xxx';
|
|
$string['spamfromblog'] = 'From blog post:';
|
|
$string['spamfromcomments'] = 'From comments:';
|
|
$string['spamfrommessages'] = 'From messages:';
|
|
$string['spamfromforumpost'] = 'From forum post:';
|
|
$string['spaminvalidresult'] = 'Unknown but invalid result';
|
|
$string['spamkeyword'] = 'Keyword';
|
|
$string['spamoperation'] = 'Operation';
|
|
$string['spamresult'] = 'Results of searching user profiles containing:';
|
|
$string['spamsearch'] = 'Search for these keywords';
|
|
$string['privacy:metadata'] = 'The Spam cleaner plugin does not store any personal data.';
|