diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-12 16:10:54 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-12 16:10:54 +0000 |
commit | 2c4a82bda243a006af96cb76be0c0500b4c3a47b (patch) | |
tree | cf68e2c0d1bc4155e432d58e8ca112afcb05607c /modules/system/system.module | |
parent | 7a536c06d41ccfef114525296b96e1078f9c72cb (diff) | |
download | brdo-2c4a82bda243a006af96cb76be0c0500b4c3a47b.tar.gz brdo-2c4a82bda243a006af96cb76be0c0500b4c3a47b.tar.bz2 |
#11503: (more) missing t()
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 80d4ddcbc..b955cdd89 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -194,7 +194,7 @@ function system_view_general() { $period['1000000000'] = t('Never'); $group = form_textfield(t('Default 403 (access denied) page'), 'site_403', variable_get('site_403', ''), 70, 70, t('This page is displayed when the requested document is denied to the current user. If you are not using clean URLs, specify the part after "?q=". If unsure, specify nothing.')); $group .= form_textfield(t('Default 404 (not found) page'), 'site_404', variable_get('site_404', ''), 70, 70, t('This page is displayed when no other content matches the requested document. If you are not using clean URLs, specify the part after "?q=". If unsure, specify nothing.')); - $group .= form_select(t('Error reporting'), 'error_level', variable_get('error_level', 1), array('Write errors to the log', 'Write errors to the log and to the screen'), t('Where Drupal, PHP and SQL errors are logged. On a production server it is recommended that errors are only written to the error log. On a test server it can be helpful to write logs to the screen.')); + $group .= form_select(t('Error reporting'), 'error_level', variable_get('error_level', 1), array(t('Write errors to the log'), t('Write errors to the log and to the screen')), t('Where Drupal, PHP and SQL errors are logged. On a production server it is recommended that errors are only written to the error log. On a test server it can be helpful to write logs to the screen.')); $group .= form_select(t('Discard log entries older than'), 'watchdog_clear', variable_get('watchdog_clear', 604800), $period, t('The time log entries should be kept. Older entries will be automatically discarded. Requires crontab.')); $output .= form_group(t('Error handling'), $group); |