| 1 translation.module | translation_admin_paths() | 
Implements hook_admin_paths().
File
- core/modules/ translation/ translation.module, line 69 
- Manages content translations.
Code
function translation_admin_paths() {
  if (config_get('system.core', 'node_admin_theme')) {
    $paths = array(
      'node/*/translate' => TRUE,
    );
    return $paths;
  }
}
