From ffbdf59cd8b7f2cb41be303bc1df0e3d5b360fc8 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 12 Dec 2009 21:05:20 +0000 Subject: - Patch #645796 by arianek, jhodgdon, lisarex: fixed help texts. --- modules/system/system.admin.inc | 4 ++-- modules/system/system.module | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/system') diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 2b3a14276..d0b3a6226 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2790,7 +2790,7 @@ function system_actions_manage() { if (!empty($pager)) { $row[] = array(array('data' => $pager, 'colspan' => '3')); } - $build['system_actions_header'] = array('#markup' => '

' . t('Actions available to Drupal:') . '

'); + $build['system_actions_header'] = array('#markup' => '

' . t('Available actions:') . '

'); $build['system_actions_table'] = array('#markup' => theme('table', array('header' => $header, 'rows' => $row))); } @@ -2817,7 +2817,7 @@ function system_actions_manage() { function system_actions_manage_form($form, &$form_state, $options = array()) { $form['parent'] = array( '#type' => 'fieldset', - '#title' => t('Make a new advanced action available'), + '#title' => t('Create an advanced action'), '#prefix' => '
', '#suffix' => '
', ); diff --git a/modules/system/system.module b/modules/system/system.module index 50a426dcf..235136c0c 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -123,7 +123,7 @@ function system_help($path, $arg) { case 'admin/config/system/actions': case 'admin/config/system/actions/manage': $output = ''; - $output .= '

' . t('There are two types of actions: simple and advanced. Simple actions do not require any additional configuration, and are listed here automatically. Advanced actions can do more than simple actions; for example, send an e-mail to a specified address, or check for certain words within a piece of content. These actions need to be created and configured first before they may be used. To create an advanced action, select the action from the drop-down list in the advanced action section below and click the Create button.') . '

'; + $output .= '

' . t('There are two types of actions: simple and advanced. Simple actions do not require any additional configuration, and are listed here automatically. Advanced actions need to be created and configured before they can be used, because they have options that need to be specified; for example, sending an e-mail to a specified address, or unpublishing content containing certain words. To create an advanced action, select the action from the drop-down list in the advanced action section below and click the Create button.') . '

'; if (module_exists('trigger')) { $output .= '

' . t('You may proceed to the Triggers page to assign these actions to system events.', array('@url' => url('admin/structure/trigger'))) . '

'; } -- cgit v1.2.3