function potx_help in Translation template extractor 6
Same name and namespace in other branches
- 8 potx.module \potx_help()
- 5.2 potx.module \potx_help()
- 5 potx.module \potx_help()
- 6.3 potx.module \potx_help()
- 6.2 potx.module \potx_help()
- 7.3 potx.module \potx_help()
- 7 potx.module \potx_help()
- 7.2 potx.module \potx_help()
Implementation of hook_help().
File
- ./potx.module, line 16 
- Gettext translation template and translation 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 files. Select the module 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>';
  }
}