'#description'=>t('Should users preview posts before submitting?'),
);
$form['submission']['help']=array(
'#type'=>'textarea',
'#title'=>t('Explanation or submission guidelines'),
'#default_value'=>$type->help,
'#description'=>t('This text will be displayed at the top of the submission form for this content type. It is useful for helping or instructing your users.')
'#description'=>t('This text will be displayed at the top of the submission form for this content type.')
);
$form['workflow']=array(
'#type'=>'fieldset',
...
...
@@ -396,7 +394,7 @@ function node_type_delete_confirm(&$form_state, $type) {
$num_nodes=db_query("SELECT COUNT(*) FROM {node} WHERE type = :type",array(':type'=>$type->type))->fetchField();
if($num_nodes){
$caption.='<p>'.format_plural($num_nodes,'<strong>Warning:</strong> 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.','<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'=>$type->name)).'</p>';
$caption.='<p>'.format_plural($num_nodes,'<strong>Warning:</strong> 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.','<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'=>$type->name)).'</p>';
}
$caption.='<p>'.t('This action cannot be undone.').'</p>';