tmgmt_locale.module in Translation Management Tool 7
Source plugin for the Translation Management system that handles locale strings.
File
sources/locale/tmgmt_locale.moduleView source
<?php
/**
* @file
* Source plugin for the Translation Management system that handles locale strings.
*/
/**
* Implements hook_tmgmt_source_plugin_info().
*
* @see TMGMTLocaleSourcePluginController
*/
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;
}
Functions
Name | Description |
---|---|
tmgmt_locale_tmgmt_source_plugin_info | Implements hook_tmgmt_source_plugin_info(). |