diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-13 05:43:01 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-13 05:43:01 +0000 |
commit | 9d40c10c2add9604139cb4130ed7854bba06cd8a (patch) | |
tree | 359ea0ca5dfc7e22ed2fcc400fb189f92b2fed2e | |
parent | 02d2f6e04a29acb1c3fcedcd5068878cffb10fbf (diff) | |
download | brdo-9d40c10c2add9604139cb4130ed7854bba06cd8a.tar.gz brdo-9d40c10c2add9604139cb4130ed7854bba06cd8a.tar.bz2 |
#654934 by plach: Remove Translatable option on field creation. This functionality has been moved to Entity Translation in contrib.
-rw-r--r-- | modules/field_ui/field_ui.admin.inc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/field_ui/field_ui.admin.inc b/modules/field_ui/field_ui.admin.inc index 2e334ac37..eb94ed6c7 100644 --- a/modules/field_ui/field_ui.admin.inc +++ b/modules/field_ui/field_ui.admin.inc @@ -842,15 +842,6 @@ function field_ui_field_settings_form($form, &$form_state, $obj_type, $bundle, $ $form['field']['module'] = array('#type' => 'value', '#value' => $field['module']); $form['field']['active'] = array('#type' => 'value', '#value' => $field['active']); - // Set translatability. - $form['field']['translatable'] = array( - '#type' => 'radios', - '#title' => t('Multilingual settings'), - '#options' => array(TRUE => t('Translatable field'), FALSE => t('Language neutral field')), - '#default_value' => $field['translatable'], - '#description' => t("Translatable fields can have a different value for each available language. An example of a translatable field is an article's <em>body</em>. Language neutral fields will retain the same value across all translations. An example of a language neutral field is a user profile's <em>first name</em>."), - ); - // Add settings provided by the field module. The field module is // responsible for not returning settings that cannot be changed if // the field already has data. |