Commit | Line | Data |
---|---|---|
adca7326 DW |
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 | ||
a108fbee | 25 | $string['autosavefailed'] = 'Could not connect to the server. If you submit this page now, your changes may be lost.'; |
b6da971b | 26 | $string['autosavefrequency'] = 'Autosave frequency'; |
a108fbee | 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.'; |
a10c6ea8 | 28 | $string['autosavesucceeded'] = 'Draft saved.'; |
52329a32 FM |
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.'; | |
b6da971b | 34 | $string['errortextrecovery'] = 'The draft version of this text was unable to be restored.'; |
adca7326 | 35 | $string['pluginname'] = 'Atto HTML editor'; |
55c0403c | 36 | $string['subplugintype_atto'] = 'Atto plugin'; |
6f0a1600 | 37 | $string['subplugintype_atto_plural'] = 'Atto plugins'; |
55c0403c | 38 | $string['settings'] = 'Atto toolbar settings'; |
6bfd450a | 39 | $string['textrecovered'] = 'A draft version of this text was automatically restored.'; |
55c0403c | 40 | $string['toolbarconfig'] = 'Toolbar config'; |
87c0e4e0 | 41 | $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.'; |
d86e45f0 AN |
42 | $string['editor_command_keycode'] = 'Cmd + {$a}'; |
43 | $string['editor_control_keycode'] = 'Ctrl + {$a}'; | |
44 | $string['plugin_title_shortcut'] = '{$a->title} [{$a->shortcut}]'; | |
2ba6706d | 45 | $string['recover'] = 'Recover'; |
75c86d13 DW |
46 | $string['infostatus'] = 'Information'; |
47 | $string['warningstatus'] = 'Warning'; |