? trigger_taxonomy_rename.patch Index: modules/trigger/trigger.module =================================================================== RCS file: /cvs/drupal/drupal/modules/trigger/trigger.module,v retrieving revision 1.6 diff -u -p -r1.6 trigger.module --- modules/trigger/trigger.module 11 Nov 2007 06:56:44 -0000 1.6 +++ modules/trigger/trigger.module 19 Nov 2007 20:51:35 -0000 @@ -20,12 +20,12 @@ function trigger_help($path, $arg) { case 'admin/build/trigger/cron': return $explanation .'

'. t('Below you can assign actions to run when cron runs. More information on cron is available in the System module help page.', array('@system' => url('admin/help/system'))) .'

'; case 'admin/build/trigger/taxonomy': - return $explanation .'

'. t('Below you can assign actions to run when certain category-related triggers happen. For example, you could send an e-mail to an administrator when a category is deleted.') .'

'; + return $explanation .'

'. t('Below you can assign actions to run when certain taxonomy-related triggers happen. For example, you could send an e-mail to an administrator when a term is deleted.') .'

'; case 'admin/build/trigger/user': return $explanation .'

'. t("Below you can assign actions to run when certain user-related triggers happen. For example, you could send an e-mail to an administrator when a user account is deleted.") .'

'; case 'admin/help#trigger': $output = '

'. t('The Trigger module provides the ability to trigger actions upon system events, such as when new content is added or when a user logs in.', array('@actions' => url('admin/settings/actions'))) .'

'; - $output .= '

'. t('The combination of actions and triggers can perform many useful tasks, such as e-mailing an administrator if a user account is deleted, or automatically unpublishing comments that contain certain words. By default, there are five "contexts" of events (Categories, Comments, Content, Cron, and Users), but more may be added by additional modules.') .'

'; + $output .= '

'. t('The combination of actions and triggers can perform many useful tasks, such as e-mailing an administrator if a user account is deleted, or automatically unpublishing comments that contain certain words. By default, there are five "contexts" of events (Comments, Content, Cron, Taxonomy, and Users), but more may be added by additional modules.') .'

'; $output .= '

'. t('For more information please read the configuration and customization handbook Trigger page.', array('@trigger' => 'http://drupal.org/handbook/modules/trigger/')) .'

'; return $output; } @@ -71,7 +71,7 @@ function trigger_menu() { 'file' => 'trigger.admin.inc', ); $items['admin/build/trigger/taxonomy'] = array( - 'title' => 'Categories', + 'title' => 'Taxonomy', 'page callback' => 'trigger_assign', 'page arguments' => array('taxonomy'), 'access callback' => 'trigger_access_check',