function tmgmt_locale_tmgmt_source_plugin_info in Translation Management Tool 7
Implements hook_tmgmt_source_plugin_info().
See also
TMGMTLocaleSourcePluginController
File
- sources/
locale/ tmgmt_locale.module, line 13 - Source plugin for the Translation Management system that handles locale strings.
Code
function tmgmt_locale_tmgmt_source_plugin_info() {
$info['locale'] = array(
'label' => t('Locale source'),
'description' => t('Source handler for locale strings.'),
'plugin controller class' => 'TMGMTLocaleSourcePluginController',
'ui controller class' => 'TMGMTLocaleSourceUIController',
'item types' => array(
'default' => t('Locale'),
),
);
return $info;
}