You are here

function potx_help in Translation template extractor 6.3

Same name and namespace in other branches
  1. 8 potx.module \potx_help()
  2. 5.2 potx.module \potx_help()
  3. 5 potx.module \potx_help()
  4. 6 potx.module \potx_help()
  5. 6.2 potx.module \potx_help()
  6. 7.3 potx.module \potx_help()
  7. 7 potx.module \potx_help()
  8. 7.2 potx.module \potx_help()

Implementation of hook_help().

File

./potx.module, line 16
Drupal translation template extractor.

Code

function potx_help($path, $arg) {
  switch ($path) {
    case 'admin/build/translate/extract':
      return '<p>' . t('This page allows you to generate translation templates for module and theme files. Select the module or theme you wish to generate a template file for. A single Gettext Portable Object (Template) file is generated, so you can easily save it and start translation.') . '</p>';
  }
}