From 9d40c10c2add9604139cb4130ed7854bba06cd8a Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 13 Jan 2010 05:43:01 +0000 Subject: #654934 by plach: Remove Translatable option on field creation. This functionality has been moved to Entity Translation in contrib. --- modules/field_ui/field_ui.admin.inc | 9 --------- 1 file changed, 9 deletions(-) (limited to 'modules') 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 body. Language neutral fields will retain the same value across all translations. An example of a language neutral field is a user profile's first name."), - ); - // 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. -- cgit v1.2.3