summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/aggregator/aggregator.module2
-rw-r--r--modules/blog/blog.module2
-rw-r--r--modules/book/book.install2
-rw-r--r--modules/forum/forum.module2
-rw-r--r--modules/poll/poll.module2
5 files changed, 5 insertions, 5 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index ea59011e4..30fdfd590 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -321,7 +321,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);
- $read_more = theme('more_link', url('aggregator/sources/'. $feed->fid), t("View this feed's recent news."));
+ $read_more = theme('more_link', url('aggregator/sources/'. $feed->fid), t("View this feed's recent news."));
}
break;
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 564261177..a47c8d9a4 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -14,7 +14,7 @@ function blog_node_info() {
'blog' => array(
'name' => t('Blog entry'),
'module' => 'blog',
- 'description' => t('A blog is a regularly updated journal or diary made up of individual posts shown in reversed chronological order. Each member of the site may create and maintain a blog.'),
+ 'description' => t('A <em>blog entry</em> is a single post to an online journal, or <em>blog</em>.'),
)
);
}
diff --git a/modules/book/book.install b/modules/book/book.install
index d46bb11a9..445a20a4a 100644
--- a/modules/book/book.install
+++ b/modules/book/book.install
@@ -28,7 +28,7 @@ function _book_install_type_create() {
'type' => 'book',
'name' => t('Book page'),
'module' => 'node',
- 'description' => t("A static page. These posts (as well as other types) may be added to a book outline to create a hierarchical structure for your site."),
+ 'description' => t('A <em>book page</em> is a page of content, organized into a collection of related entries collectively known as a <em>book</em>. A <em>book page</em> automatically displays links to adjacent pages, providing a simple navigation system for organizing and reviewing structured content.'),
'custom' => TRUE,
'modified' => TRUE,
'locked' => FALSE,
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
index e7b3bb683..eabd4eb79 100644
--- a/modules/forum/forum.module
+++ b/modules/forum/forum.module
@@ -285,7 +285,7 @@ function forum_node_info() {
'forum' => array(
'name' => t('Forum topic'),
'module' => 'forum',
- 'description' => t('Create a new topic for discussion in the forums.'),
+ 'description' => t('A <em>forum topic</em> is the initial post to a new discussion thread within a forum.'),
'title_label' => t('Subject'),
)
);
diff --git a/modules/poll/poll.module b/modules/poll/poll.module
index 4833332c5..a346c7996 100644
--- a/modules/poll/poll.module
+++ b/modules/poll/poll.module
@@ -166,7 +166,7 @@ function poll_node_info() {
'poll' => array(
'name' => t('Poll'),
'module' => 'poll',
- 'description' => t("A poll is a multiple-choice question which visitors can vote on."),
+ 'description' => t('A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.'),
'title_label' => t('Question'),
'has_body' => FALSE,
)