You are here

function gtranslate_help in Translate Drupal with GTranslate 6

Same name and namespace in other branches
  1. 8 gtranslate.module \gtranslate_help()
  2. 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;
}