summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 15:46:07 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 15:46:07 +0000
commitd6c908a39b0c80ed974c9fe18a2086f9d0fca7d7 (patch)
tree80a67b43ed069ae99fc326149f0eab7f5e8728f4 /modules
parente377c8c2b328dedc5e1d59b1d56b46917da881fc (diff)
downloadbrdo-d6c908a39b0c80ed974c9fe18a2086f9d0fca7d7.tar.gz
brdo-d6c908a39b0c80ed974c9fe18a2086f9d0fca7d7.tar.bz2
#202026 by marco.robotangel, keith.smith: avoid tech language in connection to feeds
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.admin.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 02c0076a1..ee5d86373 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1393,17 +1393,17 @@ function system_rss_feeds_settings() {
$form['feed_default_items'] = array(
'#type' => 'select',
- '#title' => t('Number of items per feed'),
+ '#title' => t('Number of items in each feed'),
'#default_value' => variable_get('feed_default_items', 10),
'#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30)),
- '#description' => t('The default number of items to include in a feed.')
+ '#description' => t('Default number of items to include in each feed.')
);
$form['feed_item_length'] = array(
'#type' => 'select',
- '#title' => t('Display of XML feed items'),
+ '#title' => t('Feed content'),
'#default_value' => variable_get('feed_item_length', 'teaser'),
'#options' => array('title' => t('Titles only'), 'teaser' => t('Titles plus teaser'), 'fulltext' => t('Full text')),
- '#description' => t('Global setting for the length of XML feed items that are output by default.')
+ '#description' => t('Global setting for the default display of content items in each feed.')
);
return system_settings_form($form);