Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.
/lang/en/ -> debug.php (source)

Differences Between: [Versions 310 and 400] [Versions 311 and 400] [Versions 39 and 400]

   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 'debug', language 'en', branch 'MOODLE_20_STABLE'
  19   *
  20   * @package   core
  21   * @copyright 1999 onwards Martin Dougiamas  {@link http://moodle.com}
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['authpluginnotfound'] = 'Authentication plugin {$a} not found.';
  26  $string['blocknotexist'] = '{$a} block doesn\'t exist';
  27  $string['cannotbenull'] = '{$a} cannot be null!';
  28  $string['cannotdowngrade'] = 'Cannot downgrade {$a->plugin} from {$a->oldversion} to {$a->newversion}.';
  29  $string['cannotfindadmin'] = 'Could not find an admin user!';
  30  $string['cannotinitpage'] = 'Cannot fully initialize page: invalid {$a->name} id {$a->id}';
  31  $string['cannotsetuptable'] = '{$a} tables could NOT be set up successfully!';
  32  $string['codingerror'] = 'Coding error detected, it must be fixed by a programmer: {$a}';
  33  $string['configmoodle'] = 'Moodle has not been configured yet. You need to edit config.php first.';
  34  $string['debuginfo'] = 'Debug info';
  35  $string['erroroccur'] = 'An error has occurred during this process';
  36  $string['invalidarraysize'] = 'Incorrect size of arrays in params of {$a}';
  37  $string['invalideventdata'] = 'Incorrect event data submitted: {$a}';
  38  $string['invalidparameter'] = 'Invalid parameter value detected';
  39  $string['invalidresponse'] = 'Invalid response value detected';
  40  $string['line'] = 'Line';
  41  $string['missingconfigversion'] = 'Config table does not contain the version. You cannot continue.';
  42  $string['modulenotexist'] = '{$a} module doesn\'t exist';
  43  $string['morethanonerecordinfetch'] = 'Found more than one record in fetch() !';
  44  $string['mustbeoveride'] = 'Abstract {$a} method must be overridden.';
  45  $string['noadminrole'] = 'No admin role could be found';
  46  $string['noblocks'] = 'No blocks installed!';
  47  $string['nocate'] = 'No categories!';
  48  $string['nomodules'] = 'No modules found!!';
  49  $string['nopageclass'] = 'Imported {$a} but found no page classes';
  50  $string['noreports'] = 'No reports accessible';
  51  $string['notables'] = 'No tables!';
  52  $string['outputbuffer'] = 'Output buffer';
  53  $string['phpvaroff'] = 'The PHP server variable \'{$a->name}\' should be Off - {$a->link}';
  54  $string['phpvaron'] = 'The PHP server variable \'{$a->name}\' is not turned On - {$a->link}';
  55  $string['reactive_instances'] = 'Reactive instances:';
  56  $string['reactive_noinstances'] = 'This page has no reactive instances.';
  57  $string['reactive_pin'] = 'Pin';
  58  $string['reactive_unpin'] = 'Unpin';
  59  $string['reactive_highlightoff'] = 'Highlight OFF';
  60  $string['reactive_highlighton'] = 'Highlight ON';
  61  $string['reactive_readmodeon'] = 'Read mode ON';
  62  $string['reactive_readmodeoff'] = 'Read mode OFF';
  63  $string['reactive_resetpanel'] = 'Reset panel';
  64  $string['reactive_statedata'] = 'State data';
  65  $string['reactive_saveingwarning'] = 'Warning: Editing the state can cause unexpected results.';
  66  $string['sessionmissing'] = '{$a} object missing from session';
  67  $string['sqlrelyonobsoletetable'] = 'This SQL relies on obsolete table(s): {$a}!  Your code must be fixed by a developer.';
  68  $string['stacktrace'] = 'Stack trace';
  69  $string['withoutversion'] = 'Main version.php file is missing, not readable or broken.';
  70  $string['xmlizeunavailable'] = 'xmlize functions are not available';