function gtranslate_help in Translate Drupal with GTranslate 6
Same name and namespace in other branches
- 8 gtranslate.module \gtranslate_help()
- 7 gtranslate.module \gtranslate_help()
File
- ./
gtranslate.module, line 2
Code
function gtranslate_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#gtranslate':
$output = '<p>' . t("Uses Google power to translate your web site. Author Edvard Ananyan http://gtranslate.net") . '</p>';
break;
}
return $output;
}