summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2007-01-09 07:53:26 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2007-01-09 07:53:26 +0000
commit94f6f95db568239d92c982a8e0e28fb04f5e7d0a (patch)
treef77688462aa7b6624fe6c74e4a2decdedffe369f
parentd5e9aad52bd44f8265c22b9e261faa7ae52f9064 (diff)
downloadbrdo-94f6f95db568239d92c982a8e0e28fb04f5e7d0a.tar.gz
brdo-94f6f95db568239d92c982a8e0e28fb04f5e7d0a.tar.bz2
#106245 by webchick. Replace 'node' with post.
-rw-r--r--modules/node/content_types.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc
index 90dab7296..b51cac15d 100644
--- a/modules/node/content_types.inc
+++ b/modules/node/content_types.inc
@@ -388,7 +388,7 @@ function node_type_delete_confirm($type) {
$num_nodes = db_num_rows(db_query("SELECT * FROM {node} WHERE type = '%s'", $type->type));
if ($num_nodes) {
- $caption .= '<p>'. strtr(format_plural($num_nodes, '<strong>Warning:</strong> there is currently @count %type node on your site. It may not be able to be displayed or edited correctly, once you have removed this content type.', '<strong>Warning:</strong> there are currently @count %type nodes on your site. They may not be able to be displayed or edited correctly, once you have removed this content type.'), array('%type' => theme('placeholder', $type->name))) .'</p>';
+ $caption .= '<p>'. strtr(format_plural($num_nodes, '<strong>Warning:</strong> there is currently @count %type post on your site. It may not be able to be displayed or edited correctly, once you have removed this content type.', '<strong>Warning:</strong> there are currently @count %type posts on your site. They may not be able to be displayed or edited correctly, once you have removed this content type.'), array('%type' => theme('placeholder', $type->name))) .'</p>';
}
$caption .= '<p>'. t('This action cannot be undone.') .'</p>';