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   * Log store lang strings.
  19   *
  20   * @package    logstore_database
  21   * @copyright  2013 Petr Skoda {@link http://skodak.org}
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['buffersize'] = 'Buffer size';
  26  $string['buffersize_help'] = 'Number of log entries inserted in one batch database operation, which improves performance.';
  27  $string['conectexception'] = 'Cannot connect to the database.';
  28  $string['create'] = 'Create';
  29  $string['databasesettings'] = 'Database settings';
  30  $string['databasesettings_help'] = 'Connection details for the external log database: {$a}';
  31  $string['databasepersist'] = 'Persistent database connections';
  32  $string['databaseschema'] = 'Database schema';
  33  $string['databasecollation'] = 'Database collation';
  34  $string['databasehandlesoptions'] = 'Database handles options';
  35  $string['databasehandlesoptions_help'] = 'Does the remote database handle its own options.';
  36  $string['databasetable'] = 'Database table';
  37  $string['databasetable_help'] = 'Name of the table where logs will be stored. This table should have a structure identical to the one used by logstore_standard (mdl_logstore_standard_log).';
  38  $string['includeactions'] = 'Include actions of these types';
  39  $string['includelevels'] = 'Include actions with these educational levels';
  40  $string['filters'] = 'Filter logs';
  41  $string['filters_help'] = 'Enable filters that exclude some actions from being logged.';
  42  $string['jsonformat'] = 'JSON format';
  43  $string['jsonformat_desc'] = 'Use standard JSON format instead of PHP serialised data in the \'other\' database field.';
  44  $string['logguests'] = 'Log guest actions';
  45  $string['other'] = 'Other';
  46  $string['participating'] = 'Participating';
  47  $string['pluginname'] = 'External database log';
  48  $string['pluginname_desc'] = 'A log plugin that stores log entries in an external database table.';
  49  $string['privacy:metadata:log'] = 'A collection of past events';
  50  $string['privacy:metadata:log:anonymous'] = 'Whether the event was flagged as anonymous';
  51  $string['privacy:metadata:log:eventname'] = 'The event name';
  52  $string['privacy:metadata:log:ip'] = 'The IP address used at the time of the event';
  53  $string['privacy:metadata:log:origin'] = 'The origin of the event';
  54  $string['privacy:metadata:log:other'] = 'Additional information about the event';
  55  $string['privacy:metadata:log:realuserid'] = 'The ID of the real user behind the event, when masquerading a user.';
  56  $string['privacy:metadata:log:relateduserid'] = 'The ID of a user related to this event';
  57  $string['privacy:metadata:log:timecreated'] = 'The time when the event occurred';
  58  $string['privacy:metadata:log:userid'] = 'The ID of the user who triggered this event';
  59  $string['read'] = 'Read';
  60  $string['tablenotfound'] = 'Specified table was not found';
  61  $string['teaching'] = 'Teaching';
  62  $string['testsettings'] = 'Test connection';
  63  $string['testingsettings'] = 'Testing database settings...';
  64  $string['update'] = 'Update';
  65