You are here

function i18nviews_help in Internationalization Views 7.3

Same name and namespace in other branches
  1. 6.3 i18nviews.module \i18nviews_help()
  2. 6.2 i18nviews.module \i18nviews_help()

Implementation of hook_help().

File

./i18nviews.module, line 16
Views support for Internationalization (i18n) package

Code

function i18nviews_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      $output = '<p>' . t('Supports translation for views strings: title, header, footer...') . '</p>';
      $output .= '<p>' . t('To search and translate strings, use the <a href="@translate-interface">translation interface</a> pages.', array(
        '@translate-interface' => url('admin/build/translate'),
      )) . '</p>';
      return $output;
  }
}