$field['#description']='To alter the term page display you need to go to the <em>Taxonomy term page</em> view mode.';
$field['#description']=t('To alter the term page display you need to go to the <em>Taxonomy term page</em> view mode.');
}
else{
$field['#description']='Enable the <em>Taxonomy term page</em> view mode under the <em>Custom display settings</em> tab to alter the term page display.';
$field['#description']=t('Enable the <em>Taxonomy term page</em> view mode under the <em>Custom display settings</em> tab to alter the term page display.');
@@ -69,8 +69,8 @@ function taxonomy_display_admin_form(&$form, &$form_state) {
// Add selection for adding taxonomy term core feed to page
$fieldset['add_feed']=array(
'#default_value'=>$stored_settings['add_feed'],
'#description'=>'Drupal, by default, includes a feed of content referencing the term, by unchecking this you can prevent the feed from being added.',
'#title'=>'Include feed',
'#description'=>t('Drupal, by default, includes a feed of content referencing the term, by unchecking this you can prevent the feed from being added.'),
'#title'=>t('Include feed'),
'#type'=>'checkbox',
);
...
...
@@ -196,7 +196,7 @@ function taxonomy_display_field_ui_layouts_validate($form, &$form_state) {
/**
* Helper function; build the admin form for plugins.
*
*
* @param string $type
* Either 'term', 'associated', or 'breadcrumb'.
* @param array $fieldset
...
...
@@ -219,7 +219,7 @@ function _taxonomy_display_admin_form_build_plugin_form($type, &$fieldset, &$for
$select_field_description=t('Select which plugin you would like to display the term\'s '.$plugin_types[$type]['description']);
$select_field_description=t("Select which plugin you would like to display the term's %plugin_types_description.",array('%plugin_types_description'=>$plugin_types[$type]['description']));