Index: fckeditor.admin.inc =================================================================== RCS file: /cvs/drupal/contributions/modules/fckeditor/Attic/fckeditor.admin.inc,v retrieving revision 1.1.2.46 diff -u -r1.1.2.46 fckeditor.admin.inc --- fckeditor.admin.inc 26 Oct 2009 19:53:09 -0000 1.1.2.46 +++ fckeditor.admin.inc 1 Nov 2009 15:12:31 -0000 @@ -37,9 +37,8 @@ $editor_path = fckeditor_path(TRUE); $fckconfig_file = $editor_path .'/fckconfig.js'; if (!file_exists($fckconfig_file)) { - drupal_set_message(t('The FCKeditor component appears to be not installed correctly, because %checkfile could not be found.') .'
'. t('Please go to the !fckeditorlink to download the latest version. After that you must extract the files to %fckeditorpath and make sure that the directory %fckeditorsubdir and the file %fckeditorfile exist. Refer to the !readme for more information.', + drupal_set_message(t('The FCKeditor component appears to be not installed correctly, because %checkfile could not be found.', array('%checkfile' => $fckconfig_file)) .'
'. t('Please go to the !fckeditorlink to download the latest version. After that you must extract the files to %fckeditorpath and make sure that the directory %fckeditorsubdir and the file %fckeditorfile exist. Refer to the !readme for more information.', array( - '%checkfile' => $fckconfig_file, '!fckeditorlink' => l(t('FCKeditor homepage'), 'http://www.fckeditor.net/download'), '!readme' => l(t('readme.txt'), 'admin/help/fckeditor'), '%fckeditorpath' => $editor_path, @@ -626,7 +625,7 @@ '#default_value' => !empty($profile->settings['css_path']) ? $profile->settings['css_path'] : "", '#size' => 40, '#maxlength' => 255, - '#description' => + '#description' => t('Enter path to CSS file (Example: %cssexample1) or a list of CSS files separated by a comma (Example: %cssexample2). Make sure to select %defcss above.', array( '%cssexample1' => 'css/editor.css', @@ -668,7 +667,7 @@ array( '@type' => t('styles'), '%example' => '/fckstyles.xml', - '%setting' => t('Define path to fckstyles.xml'), + '%setting' => t('Define path to fckstyles.xml'), )) .'
'. t('Available placeholders') .':
'. '%h - '. t('host name (%host)', array('%host' => base_path())) .'
'.