summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/system/system.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 647ffc5c7..6bd1eac0c 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1695,13 +1695,13 @@ function system_performance_settings() {
);
$form['bandwidth_optimization']['preprocess_css'] = array(
'#type' => 'checkbox',
- '#title' => t('Aggregate and compress CSS files into one file.'),
+ '#title' => t('Aggregate and compress CSS files.'),
'#default_value' => intval(variable_get('preprocess_css', 0) && $is_writable),
'#disabled' => $disabled,
);
$form['bandwidth_optimization']['preprocess_js'] = array(
'#type' => 'checkbox',
- '#title' => t('Aggregate JavaScript files into one file.'),
+ '#title' => t('Aggregate JavaScript files.'),
'#default_value' => intval(variable_get('preprocess_js', 0) && $is_writable),
'#disabled' => $disabled,
);