diff --git a/core/modules/translation_entity/translation_entity.module b/core/modules/translation_entity/translation_entity.module index 1aee30e..26c9278 100644 --- a/core/modules/translation_entity/translation_entity.module +++ b/core/modules/translation_entity/translation_entity.module @@ -772,8 +772,8 @@ function translation_entity_form_field_ui_field_edit_form_alter(array &$form, ar if ($form['#field']['translatable'] && !empty($form['#field']['settings']['translation_sync'])) { $form['instance']['settings']['translation_sync'] = array( '#type' => 'checkbox', - '#title' => t('Synchronize translations'), - '#description' => t('Check this option if you just wish to translate the textual elements of this field. All the other aspects, such as the order of items or non-textual values, will be the same for all languages.'), + '#title' => t('Synchronize non-textual values across translations.'), + '#description' => t('Textual elements, such as alt text, will still be translatable.'), '#default_value' => !empty($form['#instance']['settings']['translation_sync']), ); }