From bfa7d178a9e42b8f65550c9e69665b29a6d20940 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 21 Jun 2004 20:01:49 +0000 Subject: - Patch #8713 by stefan: changed some 'node's to 'post's. Usability improvement. --- modules/node/node.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/node/node.module') diff --git a/modules/node/node.module b/modules/node/node.module index 5db76c824..4eb566ce0 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -48,13 +48,13 @@ function node_help($section = 'admin/help#node') { $output = t('Settings for the core of Drupal. Almost everything is a node so these settings will affect most of the site.'); break; case 'admin/node': - $output = t("Below is a list of all of the nodes in your site. Other forms of content are listed elsewhere (e.g. comments).
Clicking a title views that node, while clicking an author's name edits their user information.
Other node-related tasks are available from the menu on the left.", array('%comments' => url('admin/comment'))); + $output = t("Below is a list of all of the posts on your site. Other forms of content are listed elsewhere (e.g. comments).
Clicking a title views the post, while clicking an author's name edits their user information.
Other post-related tasks are available from the menu.", array('%comments' => url('admin/comment'))); break; case 'admin/node/search': $output = t("Enter a simple pattern to search for a post. This can include the wildcard character *.
For example, a search for \"br*\" might return \"bread bakers\", \"our daily bread\" and \"brenda\"."); break; case 'admin/node/configure/defaults': - $output = t('This page lets you set the defaults used during creation of nodes for all the different node types.
comment: Read/write setting for comments.
publish: Is this node publicly viewable, has it been published?
promote: Is this node to be promoted to the front page?
moderate: Does this node need approval before it can be viewed?
sticky: Is this node always visible at the top of lists?
revision: Will this node go into the revision system allowing multiple versions to be saved?'); + $output = t('This page lets you set the defaults used during creation of nodes for all the different node types.
comment: Read/write setting for comments.
publish: Is this post publicly viewable, has it been published?
promote: Is this post to be promoted to the front page?
moderate: Does this post need approval before it can be viewed?
sticky: Is this post always visible at the top of lists?
revision: Will this post go into the revision system allowing multiple versions to be saved?'); break; } @@ -810,7 +810,7 @@ function node_admin_nodes() { $header = array(NULL, t('title'), t('type'), t('author'), t('status'), array('data' => t('operations'), 'colspan' => 2)); while ($node = db_fetch_object($result)) { - $rows[] = array(form_checkbox(NULL, "status][$node->nid", 1, 0), l($node->title, "node/$node->nid") .' '. (node_is_new($node->nid, $node->changed) ? theme_mark() : ''), node_invoke($node, 'node_name'), format_name($node), ($node->status ? t('published') : t('not published')), l(t('edit node'), "node/$node->nid/edit"), l(t('delete node'), "admin/node/delete/$node->nid")); + $rows[] = array(form_checkbox(NULL, "status][$node->nid", 1, 0), l($node->title, "node/$node->nid") .' '. (node_is_new($node->nid, $node->changed) ? theme_mark() : ''), node_invoke($node, 'node_name'), format_name($node), ($node->status ? t('published') : t('not published')), l(t('edit %post', array('%post' => t($node->type))), "node/$node->nid/edit"), l(t('delete %post', array('%post' => t($node->type))), "admin/node/delete/$node->nid")); } if ($pager = theme('pager', NULL, 50, 0)) { -- cgit v1.2.3