Contributions API

i18nstrings_help

Definition

i18nstrings_help($path, $arg)
contributions/i18n/i18nstrings/i18nstrings.module, line 25

Description

Implementation of hook_help()

Code

<?php
function i18nstrings_help($path, $arg) {
  switch ($path) {
    case 'admin/build/translate/refresh':
      $output = '<p>'.t('On this page you can refresh and update values for user defined strings.').'</p>';
      $output .= '<ul>';
      $output .= '<li>'.t('Use the refresh option when you are missing strings to translate for a given text group. All the strings will be re-created keeping existing translations.').'</li>';
      $output .= '<li>'.t('Use the update option when some of the strings had been previously translated with the localization system but the translations are not showing up for the configurable strings.').'</li>';
      $output .= '</ul>';
      return $output;
  }
}
?>