function translation_overview_help in Translation Overview 6.2
Same name and namespace in other branches
- 6 translation_overview.module \translation_overview_help()
Implementation of hook_help().
File
- ./
translation_overview.module, line 10
Code
function translation_overview_help($path, $arg) {
switch ($path) {
case 'admin/content/translation_overview_manage':
$args = array();
$states = array(
'original',
'current',
'outofdate',
'missing',
);
foreach ($states as $state) {
$args['!' . $state] = theme('translation_overview_translation_link', $state);
}
return '<p>' . t('The table uses the following symbols to indicate the translation status: !original, !current, !outofdate, !missing.', $args) . '</p>';
}
}