You are here

function content_translation_menu_links_discovered_alter in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/content_translation/content_translation.module \content_translation_menu_links_discovered_alter()

Implements hook_menu_links_discovered_alter().

File

core/modules/content_translation/content_translation.module, line 257
Allows entities to be translated into different languages.

Code

function content_translation_menu_links_discovered_alter(array &$links) {

  // Clarify where translation settings are located.
  $links['language.content_settings_page']['title'] = new TranslatableMarkup('Content language and translation');
  $links['language.content_settings_page']['description'] = new TranslatableMarkup('Configure language and translation support for content.');
}