Closed (fixed)
Project:
YUI Menu
Version:
6.x-1.1-rc1
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Feb 2009 at 15:06 UTC
Updated:
18 Sep 2010 at 11:30 UTC
hi,
i can set the menus for different languages, but i see the wrong submenus (submenus from other languages).
Csaba
Comments
Comment #1
relayer3000 commentedHi, I solved the problem adding this lines (+) to yuimenu.module:
function get_html_menu_script ($menu_id) {
$output .='
';
$menu = load_menu($menu_id);
+if(module_exists('i18nmenu')) {
+ i18nmenu_localize_tree($menu);
+ }
You can use this post as a reference: http://drupal.org/node/300628
Comment #2
bakyildiz commentedThank you relayer3000. I added you code into yuimenu.