Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

i18nmenu_locale_refresh

Definition

i18nmenu_locale_refresh()
contributions/i18n/i18nmenu/i18nmenu.module, line 27

Description

Refresh locale strings

Code

<?php
function i18nmenu_locale_refresh() {
  foreach (menu_get_menus() as $name => $title) {
    $tree = menu_tree_all_data($name);
    i18nmenu_localize_tree($tree);
  }
}
?>