hello

in settings.php

$conf['i18n_variables'] = array(
// These are for primary and secondary links
'menu_primary_links_source',
'menu_secondary_links_source',
'menu_default_node_menu',
'menutrails_menu',
'menutrails_node_types',
'menutrails_terms',
'anonymous',
'site_frontpage',
'site_slogan',
'contact_form_information',
);

would it be possible to also use some variables of menu block split to bring the thing to work on an multilingual page?
or another way?

thanks momper

Comments

gjvoosten’s picture

In your settings.php, add to the $conf['i18n_variables'] array like so:

$conf['i18n_variables'] = array(
  ....
  // For menu_block_split; use _1 for the first block, _2 for the second one (if you have it), etc.
  menu_block_split_1,
  menu_block_splittitle_1,
);
gjvoosten’s picture

Status: Active » Needs review