diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-11-21 09:00:33 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-11-21 09:00:33 +0000 |
commit | dc22c73a9001708805a29da69dd5c809ffb70f25 (patch) | |
tree | 4f541c597d41c6e553b93a97e014705e80c364c3 | |
parent | fc13ed0da4c95b1d6e0289179c5f6da4766d64a1 (diff) | |
download | brdo-dc22c73a9001708805a29da69dd5c809ffb70f25.tar.gz brdo-dc22c73a9001708805a29da69dd5c809ffb70f25.tar.bz2 |
- Patch #638214 by yoroy: usability: improve labels and descriptions on aggregator admin page.
-rw-r--r-- | modules/aggregator/aggregator.processor.inc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/aggregator/aggregator.processor.inc b/modules/aggregator/aggregator.processor.inc index 8010f7afe..83ed207c9 100644 --- a/modules/aggregator/aggregator.processor.inc +++ b/modules/aggregator/aggregator.processor.inc @@ -90,10 +90,9 @@ function aggregator_form_aggregator_admin_form_alter(&$form, $form_state) { $form['modules']['aggregator']['aggregator_summary_items'] = array( '#type' => 'select', - '#title' => t('Items shown in sources and categories pages') , + '#title' => t('Number of items shown in listing pages') , '#default_value' => variable_get('aggregator_summary_items', 3), '#options' => $items, - '#description' => t('Number of feed items displayed in feed and category summary pages.'), ); $form['modules']['aggregator']['aggregator_clear'] = array( @@ -101,16 +100,16 @@ function aggregator_form_aggregator_admin_form_alter(&$form, $form_state) { '#title' => t('Discard items older than'), '#default_value' => variable_get('aggregator_clear', 9676800), '#options' => $period, - '#description' => t('The length of time to retain feed items before discarding. (Requires a correctly configured <a href="@cron">cron maintenance task</a>.)', array('@cron' => url('admin/reports/status'))), + '#description' => t('Requires a correctly configured <a href="@cron">cron maintenance task</a>.', array('@cron' => url('admin/reports/status'))), ); $form['modules']['aggregator']['aggregator_category_selector'] = array( '#type' => 'radios', - '#title' => t('Category selection type'), + '#title' => t('Select categories using'), '#default_value' => variable_get('aggregator_category_selector', 'checkboxes'), '#options' => array('checkboxes' => t('checkboxes'), 'select' => t('multiple selector')), - '#description' => t('The type of category selection widget displayed on categorization pages. (For a small number of categories, checkboxes are easier to use, while a multiple selector works well with large numbers of categories.)'), + '#description' => t('For a small number of categories, checkboxes are easier to use, while a multiple selector works well with large numbers of categories.'), ); $form['modules']['aggregator']['aggregator_teaser_length'] = array( '#type' => 'select', |