diff --git a/core/modules/content_translation/content_translation.module b/core/modules/content_translation/content_translation.module index a3a074a..2b6a611 100644 --- a/core/modules/content_translation/content_translation.module +++ b/core/modules/content_translation/content_translation.module @@ -148,6 +148,20 @@ function content_translation_menu() { $item[str_replace('_', ' ', $key)] = $value; } + $items["$path/translations"] = array( + 'title' => 'Translate', + 'route_name' => "content_translation.translation_overview_$entity_type", + 'type' => MENU_LOCAL_TASK, + 'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE, + 'weight' => 2, + ) + $item; + + $items["$path/translations/overview"] = array( + 'title' => 'Overview', + 'type' => MENU_DEFAULT_LOCAL_TASK, + 'weight' => 0, + ); + // Add translation callback. // @todo Add the access callback instead of replacing it as soon as the // routing system supports multiple callbacks.