I found https://www.drupal.org/node/1196982 but reproduce issue with Node reference (node_reference) 7.x-2.1 and Field translation (i18n_field) 7.x-1.13.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

validoll created an issue. See original summary.

validoll’s picture

Widget translated via18n_field_field_widget_form_alter(), and that translate label for widget need $element['#title'], but node_reference_field_widget_form() return $element = array('nid' => $element), meaning isset($element['#title']) == FALSE.

This patch fix translation for label with autocomplete widget and single value.

Status: Needs review » Needs work
cdeces’s picture

I've also applied it in user_reference.module
And it fixes the label translation issue.

But it causes error with rules:

Unable to modify data "node:author": Invalid data value given. Be sure it matches the required data type and format.

validoll’s picture