You are here

function select_translation_help in Select translation 7

Implements hook_help().

File

./select_translation.module, line 10
Main module file.

Code

function select_translation_help($section, $arg) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Select translation provides a views filter and a module API, allowing users to display only one of the nodes of a group of nodes representing a translation');
  }
  return '';
}