Details
Description
Multilingual fields doesn't work in Drupal Views module.
For example, i want to display Registration Link Text for an event, views give the following query :
SELECT civicrm_event.id AS id,
civicrm_event.registration_link_text AS civicrm_event_registration_link_text
FROM civicrm_event civicrm_event
WHERE civicrm_event.id = 6
It doesn't work because it should use the database view of the good language instead. For example, if the user is in fr_CA, it should use :
SELECT civicrm_event.id AS id,
civicrm_event.registration_link_text AS civicrm_event_registration_link_text
FROM civicrm_event_fr_CA civicrm_event
WHERE civicrm_event.id = 6