The theme is quite good but lacks multilingual support for the main menu. check out http://med.uou.ac.in/hi (Hindi Version) The translations for Home, Login etc are there but are not being displayed only the English version is shown.

Comments

devsaran’s picture

Status: Active » Closed (works as designed)

For Main Menu Multilingual Support,
I solved replacing, in page.tpl.php, the original code with the following:

<?php
        if (module_exists('i18n')) {
            $main_menu_tree = i18n_menu_translated_tree(variable_get('menu_main_links_source', 'main-menu'));
        } else {
          $main_menu_tree = menu_tree(variable_get('menu_main_links_source', 'main-menu'));
        }
       print drupal_render($main_menu_tree);
?>

Note: http://drupal.org/node/1218924#comment-5635240 (different theme, same issue)

abhisheknagar’s picture

Solved Thanks.

Why not commit it to the theme.

abhisheknagar’s picture

In addition to this if the slideshow could also be translated it would be great