=== modified file 'modules/node/content_types.inc' --- modules/node/content_types.inc 2009-10-16 14:00:04 +0000 +++ modules/node/content_types.inc 2009-10-27 21:40:19 +0000 @@ -429,7 +429,7 @@ $num_nodes = db_query("SELECT COUNT(*) FROM {node} WHERE type = :type", array(':type' => $type->type))->fetchField(); if ($num_nodes) { - $caption .= '

' . format_plural($num_nodes, 'Warning: there is currently 1 %type post on your site. It may not be able to be displayed or edited correctly once you have removed this content type.', 'Warning: 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' => $type->name)) . '

'; + $caption .= '

' . format_plural($num_nodes, '%type is used by 1 piece of content on your site. If you remove this content type, you will not be able to edit the %type content and it may not display correctly.', '%type is used by @count pieces of content on your site. If you remove %type, you will not be able to edit the %type content and it may not display correctly.

', array('%type' => $type->name)) . '

'; } $caption .= '

' . t('This action cannot be undone.') . '

';