You are here

function tmgmt_local_tmgmt_translator_plugin_info in Translation Management Tool 7

Implements hook_tmgmt_translator_plugin_info().

File

translators/tmgmt_local/tmgmt_local.module, line 225
Main module file for the local translation module.

Code

function tmgmt_local_tmgmt_translator_plugin_info() {
  $info['local'] = array(
    'label' => t('Local Translator'),
    'description' => t('Allows local users to process translation jobs.'),
    'plugin controller class' => 'TMGMTLocalTranslatorPluginController',
    'ui controller class' => 'TMGMTLocalTranslatorUIController',
    'map remote languages' => FALSE,
  );
  return $info;
}