From 827f064debf8e04ebe6183dc4cd96e0cd022300d Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 24 Nov 2006 10:18:24 +0000 Subject: - Patch # #98366 by webchick and ac: simplified strings for translators. --- modules/aggregator/aggregator.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/aggregator') diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index dfdeb8908..ccaf7909b 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -36,7 +36,7 @@ function aggregator_menu($may_cache) { if ($may_cache) { $items[] = array('path' => 'admin/content/aggregator', 'title' => t('RSS aggregator'), - 'description' => t('Configure which content your site aggregates from other sites, how often it polls them, and how they\'re categorized.'), + 'description' => t("Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized."), 'callback' => 'aggregator_admin_overview', 'access' => $edit); $items[] = array('path' => 'admin/content/aggregator/add/feed', @@ -285,7 +285,7 @@ function aggregator_block($op = 'list', $delta = 0, $edit = array()) { if ($feed = db_fetch_object(db_query('SELECT fid, title, block FROM {aggregator_feed} WHERE fid = %d', $id))) { $block['subject'] = check_plain($feed->title); $result = db_query_range('SELECT * FROM {aggregator_item} WHERE fid = %d ORDER BY timestamp DESC, iid DESC', $feed->fid, 0, $feed->block); - $block['content'] = ''; + $block['content'] = ''; } break; @@ -293,7 +293,7 @@ function aggregator_block($op = 'list', $delta = 0, $edit = array()) { if ($category = db_fetch_object(db_query('SELECT cid, title, block FROM {aggregator_category} WHERE cid = %d', $id))) { $block['subject'] = check_plain($category->title); $result = db_query_range('SELECT i.* FROM {aggregator_category_item} ci LEFT JOIN {aggregator_item} i ON ci.iid = i.iid WHERE ci.cid = %d ORDER BY i.timestamp DESC, i.iid DESC', $category->cid, 0, $category->block); - $block['content'] = ''; + $block['content'] = ''; } break; } -- cgit v1.2.3