$form['info']['name']['#description'] = t('The machine-readable name of this relationship template. This text will be used for constructing the URL of the create content page for this relationship template. This name must contain only lowercase letters, numbers, and underscores. Underscores will be converted into hyphens when constructing the URL of the create content page. This name must be unique and cannot conflict with any existing content type.');
$form['title'] = array(
'#title' =>t('Name'),
'#type' =>'textfield',
'#required' =>TRUE,
'#weight' => -10,
'#description' =>t('The human-readable name of this relationship template. This text will be displayed as part of the list on the create content page. It is recommended that this name begin with a capital letter and contain only letters, numbers, and spaces. This name must be unique and cannot conflict with any existing content type.'),
'#default_value' =>$form_state['item']->title,
);
$form['description'] = array(
'#title' =>t('Description'),
'#type' =>'textarea',
'#description' =>t('A brief description of this relationship template. This text will be displayed as part of the list on the create content page.'),