In a Drupal multilingual site, for custom modules, (not nodes) what is approach to assure that user navigates to same page in new language?
example: en/mypage to de/mypage
edit: menu hook looks like this:
// add menu item
$items['my_module_name'] = array(
'title' => t('My Page Title'),
'menu_name' => 'menu-my-menu',
'page callback' => 'call_this_function_below',
'access arguments' => array('access content'),
);