diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-24 10:18:24 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-24 10:18:24 +0000 |
commit | 827f064debf8e04ebe6183dc4cd96e0cd022300d (patch) | |
tree | 2feec3257b82924471417f51841f659117002515 /modules/aggregator | |
parent | f191e197eedbaa23a8c68f2fad88196473edb4b4 (diff) | |
download | brdo-827f064debf8e04ebe6183dc4cd96e0cd022300d.tar.gz brdo-827f064debf8e04ebe6183dc4cd96e0cd022300d.tar.bz2 |
- Patch # #98366 by webchick and ac: simplified strings for translators.
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 6 |
1 files changed, 3 insertions, 3 deletions
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'] = '<div class="more-link">'. l(t('more'), 'aggregator/sources/'. $feed->fid, array('title' => t('View this feed\'s recent news.'))) .'</div>'; + $block['content'] = '<div class="more-link">'. l(t('more'), 'aggregator/sources/'. $feed->fid, array('title' => t("View this feed's recent news."))) .'</div>'; } 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'] = '<div class="more-link">'. l(t('more'), 'aggregator/categories/'. $category->cid, array('title' => t('View this category\'s recent news.'))) .'</div>'; + $block['content'] = '<div class="more-link">'. l(t('more'), 'aggregator/categories/'. $category->cid, array('title' => t("View this category's recent news."))) .'</div>'; } break; } |