summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-01 23:48:48 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-01 23:48:48 +0000
commit0af8301ac2721db0bee7a10884d1da1cfccc7d8e (patch)
tree3e624f8f36bac2a5f09585f1e1133eefb6fffa9b /modules/syslog/syslog.module
parentbdf018696fa40eef6f20316a5c1927bfb240f0eb (diff)
downloadbrdo-0af8301ac2721db0bee7a10884d1da1cfccc7d8e.tar.gz
brdo-0af8301ac2721db0bee7a10884d1da1cfccc7d8e.tar.bz2
- Patch #634234 by jhodgdon, arianek: more help improvements.
Diffstat (limited to 'modules/syslog/syslog.module')
-rw-r--r--modules/syslog/syslog.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
index 4705614f1..1bbaf2047 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -24,10 +24,10 @@ function syslog_help($path, $arg) {
$output .= '<p>' . t("The Syslog module logs events by sending messages to the logging facility of your web server's operating system. Syslog is an operating system administrative logging tool that provides valuable information for use in system management and security auditing. Most suited to medium and large sites, Syslog provides filtering tools that allow messages to be routed by type and severity. For more information, see the online handbook entry for <a href='@syslog'>Syslog module</a> and PHP's <a href='@php_openlog'>openlog</a> and <a href='@php_syslog'>syslog</a> functions.", array('@syslog' => 'http://drupal.org/handbook/modules/syslog', '@php_openlog' => 'http://www.php.net/manual/function.openlog.php', '@php_syslog' => 'http://www.php.net/manual/function.syslog.php')) . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
- $output .= '<dt>' . t('Logging for UNIX, Linux, and Mac OS X') . '</dt>';
+ $output .= '<dt>' . t('Logging for UNIX, Linux, and Mac OS X') . '</dt>';
$output .= '<dd>' . t('On UNIX, Linux, and Mac OS X, the file <em>/etc/syslog.conf</em> defines the routing configuration. Messages can be flagged with the codes <code>LOG_LOCAL0</code> through <code>LOG_LOCAL7</code>. For information on Syslog facilities, severity levels, and how to set up <em>syslog.conf</em>, see the <em>syslog.conf</em> manual page on your command line.') . '</dd>';
- $output .= '<dt>' . t('Logging for Windows') . '</dt>';
- $output .= '<dd>' . t('On Windows, messages are always sent to the Event Log using the code <code>LOG_USER</code>.') . '</dd>';
+ $output .= '<dt>' . t('Logging for Microsoft Windows') . '</dt>';
+ $output .= '<dd>' . t('On Microsoft Windows, messages are always sent to the Event Log using the code <code>LOG_USER</code>.') . '</dd>';
$output .= '</dl>';
return $output;
}