diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-26 00:15:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-26 00:15:59 +0000 |
commit | bbce39fff3491d9f8e5386d43a78dddf7459d0b2 (patch) | |
tree | b39220557dbc80120891c107f74dfcaa1d542b05 | |
parent | 0c0957ba9f9cc258bf8b25d7caea83ab2ab9153c (diff) | |
download | brdo-bbce39fff3491d9f8e5386d43a78dddf7459d0b2.tar.gz brdo-bbce39fff3491d9f8e5386d43a78dddf7459d0b2.tar.bz2 |
- Patch #307354 by xmacinfo, heather: rename 'Display fields' to 'Manage Display'.
-rw-r--r-- | modules/field/field.module | 2 | ||||
-rw-r--r-- | modules/field_ui/field_ui.module | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/field/field.module b/modules/field/field.module index d2a51643b..422b81c6e 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -478,7 +478,7 @@ function _field_filter_xss_display_allowed_tags() { * * Used to display a field's values outside the context of the $node, as * when fields are displayed in Views, or to display a field in a template - * using a different formatter than the one set up on the Display Fields tab + * using a different formatter than the one set up on the 'Manage display' tab * for the node's context. * * @param $field diff --git a/modules/field_ui/field_ui.module b/modules/field_ui/field_ui.module index 2710acf9b..a9e5cc1ed 100644 --- a/modules/field_ui/field_ui.module +++ b/modules/field_ui/field_ui.module @@ -106,9 +106,9 @@ function field_ui_menu() { 'file' => 'field_ui.admin.inc', ) + $access; - // 'Display fields' tab and context secondary tabs. + // 'Manage display' tab and context secondary tabs. $items["$path/display"] = array( - 'title' => 'Display fields', + 'title' => 'Manage display', 'page callback' => 'drupal_get_form', 'page arguments' => array('field_ui_display_overview_form', $obj_type, $bundle_arg), 'type' => MENU_LOCAL_TASK, @@ -167,7 +167,7 @@ function field_ui_theme() { } /** - * Group available build modes on tabs on the 'Display fields' page. + * Group available build modes on tabs on the 'Manage display' page. * * @todo Remove this completely and use vertical tabs? */ |