diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-10-01 15:47:01 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-10-01 15:47:01 -0400 |
commit | 4b522e22ad390402e93af9940fa7e74d05465af2 (patch) | |
tree | bf919fe6ae822c8d69bc7cc573ea08994637a254 /modules/system/system.module | |
parent | 4bfb50a2604c1114479203b0389515db9884542a (diff) | |
download | drupal-4b522e22ad390402e93af9940fa7e74d05465af2.tar.gz drupal-4b522e22ad390402e93af9940fa7e74d05465af2.zip |
- Patch #806974 by kiamlaluno, rocket_nova: fixed punctuation errors in messages.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index b11e77e297c0..0ef688e4a69c 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -127,13 +127,13 @@ function system_help($path, $arg) { case 'admin/config/system/actions': case 'admin/config/system/actions/manage': $output = ''; - $output .= '<p>' . 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 <em>Create</em> button.') . '</p>'; + $output .= '<p>' . 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 <em>Create</em> button.') . '</p>'; if (module_exists('trigger')) { $output .= '<p>' . t('You may proceed to the <a href="@url">Triggers</a> page to assign these actions to system events.', array('@url' => url('admin/structure/trigger'))) . '</p>'; } return $output; case 'admin/config/system/actions/configure': - return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Description</em> field is recommended, in order to better identify the precise action taking place. This description will be displayed in modules such as the Trigger module when assigning actions to system events, so it is best if it is as descriptive as possible (for example, "Send e-mail to Moderation Team" rather than simply "Send e-mail").'); + return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Description</em> field is recommended in order to better identify the precise action taking place. This description will be displayed in modules such as the Trigger module when assigning actions to system events, so it is best if it is as descriptive as possible (for example, "Send e-mail to Moderation Team" rather than simply "Send e-mail").'); case 'admin/config/people/ip-blocking': return '<p>' . t('IP addresses listed here are blocked from your site. Blocked addresses are completely forbidden from accessing the site and instead see a brief message explaining the situation.') . '</p>'; case 'admin/reports/status': @@ -2999,7 +2999,7 @@ function system_cron() { } } else { - watchdog('file system', 'Did not delete temporary file "%path" during garbage collection, because it is in use by the following modules: %modules.', array('%path' => $file->uri, '%modules' => implode(', ', array_keys($references))), WATCHDOG_INFO); + watchdog('file system', 'Did not delete temporary file "%path" during garbage collection because it is in use by the following modules: %modules.', array('%path' => $file->uri, '%modules' => implode(', ', array_keys($references))), WATCHDOG_INFO); } } } |