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.

Differences Between: [Versions 39 and 400] [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]

   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 'editor_atto', language 'en'.
  19   *
  20   * @package    editor_atto
  21   * @copyright  2013 Damyon Wiese  <damyon@moodle.com>
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['autosavefailed'] = 'Could not connect to the server. If you submit this page now, your changes may be lost.';
  26  $string['autosavefrequency'] = 'Autosave frequency';
  27  $string['autosavefrequency_desc'] = 'This is the number of seconds between auto save attempts. Atto will automatically save the text in the editor according to this setting, so that text can be automatically restored when the same user returns to the same form.';
  28  $string['autosavesucceeded'] = 'Draft saved.';
  29  $string['errorcannotparseline'] = 'The line \'{$a}\' is not in the correct format.';
  30  $string['errorgroupisusedtwice'] = 'The group \'{$a}\' is defined twice; group names must be unique.';
  31  $string['errornopluginsorgroupsfound'] = 'No plugins or groups found; please add some groups and plugins.';
  32  $string['errorpluginnotfound'] = 'The plugin \'{$a}\' cannot be used; it does not appear to be installed.';
  33  $string['errorpluginisusedtwice'] = 'The plugin \'{$a}\' is used twice; plugins can only be defined once.';
  34  $string['errortextrecovery'] = 'Unfortunately the draft version could not be restored.';
  35  $string['pluginname'] = 'Atto HTML editor';
  36  $string['subplugintype_atto'] = 'Atto plugin';
  37  $string['subplugintype_atto_plural'] = 'Atto plugins';
  38  $string['settings'] = 'Atto toolbar settings';
  39  $string['taskautosavecleanup'] = 'Delete expired autosave drafts';
  40  $string['textrecovered'] = 'A draft version of this text was automatically restored.';
  41  $string['toolbarconfig'] = 'Toolbar config';
  42  $string['toolbarconfig_desc'] = 'The list of plugins and the order they are displayed can be configured here. The configuration consists of groups (one per line) followed by the ordered list of plugins for that group. The group is separated from the plugins with an equals sign and the plugins are separated with commas. The group names must be unique and should indicate what the buttons have in common. Button and group names should not be repeated and may only contain alphanumeric characters.';
  43  $string['editor_command_keycode'] = 'Cmd + {$a}';
  44  $string['editor_control_keycode'] = 'Ctrl + {$a}';
  45  $string['plugin_title_shortcut'] = '{$a->title} [{$a->shortcut}]';
  46  $string['recover'] = 'Recover';
  47  $string['infostatus'] = 'Information';
  48  $string['warningstatus'] = 'Warning';
  49  $string['autosaves'] = 'Editor autosave information';
  50  $string['privacy:metadata:database:atto_autosave'] = 'Automatically saved text editor drafts.';
  51  $string['privacy:metadata:database:atto_autosave:userid'] = 'The ID of the user whose data was saved.';
  52  $string['privacy:metadata:database:atto_autosave:drafttext'] = 'The text which was saved.';
  53  $string['privacy:metadata:database:atto_autosave:timemodified'] = 'The time that content was modified.';