I wouldn't mind if related contents could be synchronized with the translations of a node.
The related nodes matching the language of the "main" node of course.

Comments

Naiya’s picture

Agreed, it would be great!

Naiya’s picture

FYI - For now I have added argument for my views -
1. node translation - language
2. "provide default argument" > php code
3.

 if (arg(0) && is_numeric(arg(1))) {
  $nid = arg(1);
  $node = node_load($nid);  
  return $node->language;
}
else {
return 'en';
}