Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
   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 'tool_spamcleaner', language 'en', branch 'MOODLE_22_STABLE'
  19   *
  20   * @package    tool
  21   * @subpackage spamcleaner
  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  
  26  $string['pluginname'] = 'Spam cleaner';
  27  $string['spamauto'] = 'Autodetect common spam patterns';
  28  $string['spamcannotdelete'] = 'Cannot delete this user';
  29  $string['spamcannotfinduser'] = 'No users matching your search';
  30  $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>
  31  <p>For further information, see the documentation <a href="https://docs.moodle.org/en/Reducing_spam_in_Moodle">Reducing spam in Moodle</a>.</p>';
  32  $string['spamdeleteall'] = 'Delete all these user accounts';
  33  $string['spamdeleteallconfirm'] = 'Are you sure you want to delete all these user accounts?  You can not undo this.';
  34  $string['spamdeleteconfirm'] = 'Are you sure you want to delete this entry?  You can not undo this.';
  35  $string['spamdesc'] = 'Description';
  36  $string['spameg'] = 'eg:  casino, porn, xxx';
  37  $string['spamfromblog'] = 'From blog post:';
  38  $string['spamfromcomments'] = 'From comments:';
  39  $string['spamfrommessages'] = 'From messages:';
  40  $string['spamfromforumpost'] = 'From forum post:';
  41  $string['spaminvalidresult'] = 'Unknown but invalid result';
  42  $string['spamkeyword'] = 'Keyword';
  43  $string['spamoperation'] = 'Operation';
  44  $string['spamresult'] = 'Results of searching user profiles containing:';
  45  $string['spamsearch'] = 'Search for these keywords';
  46  $string['privacy:metadata'] = 'The Spam cleaner plugin does not store any personal data.';