From 52329a32f1692683a26b3c09e8f78c13b6a3e12e Mon Sep 17 00:00:00 2001 From: Frederic Massart Date: Thu, 3 Apr 2014 11:20:49 +0800 Subject: [PATCH] MDL-44747 editor_atto: Improved configuration error messages --- lib/editor/atto/lang/en/editor_atto.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/editor/atto/lang/en/editor_atto.php b/lib/editor/atto/lang/en/editor_atto.php index 410711d80ec..c77afe5852a 100644 --- a/lib/editor/atto/lang/en/editor_atto.php +++ b/lib/editor/atto/lang/en/editor_atto.php @@ -22,11 +22,11 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ -$string['errorcannotparseline'] = 'The line \'{$a}\' could not be parsed.'; -$string['errorgroupisusedtwice'] = 'The group \'{$a}\' is defined twice, group names must be unique.'; -$string['errornopluginsorgroupsfound'] = 'No plugins or groups found, please add some groups and plugins.'; -$string['errorpluginnotfound'] = 'The plugin \'{$a}\' cannot be used, it does not appear to be installed.'; -$string['errorpluginisusedtwice'] = 'The plugin \'{$a}\' is used twice, plugins can only be defined once.'; +$string['errorcannotparseline'] = 'The line \'{$a}\' is not in the correct format.'; +$string['errorgroupisusedtwice'] = 'The group \'{$a}\' is defined twice; group names must be unique.'; +$string['errornopluginsorgroupsfound'] = 'No plugins or groups found; please add some groups and plugins.'; +$string['errorpluginnotfound'] = 'The plugin \'{$a}\' cannot be used; it does not appear to be installed.'; +$string['errorpluginisusedtwice'] = 'The plugin \'{$a}\' is used twice; plugins can only be defined once.'; $string['pluginname'] = 'Atto HTML editor'; $string['subplugintype_atto'] = 'Atto plugin'; $string['subplugintype_atto_plural'] = 'Atto plugins';