The i8ntaxonomy module says in the i8ntaxonomy_help function (line 52):

case I18N_TAXONOMY_LOCALIZE:
          return '<p>'. t('%capital_name is a localizable vocabulary. You will be able to translate term names and descriptions using the localization interface.', array('%capital_name' => drupal_ucfirst($vocabulary->name), '%name' => $vocabulary->name)) .'</p>';

But the localization interface doesn't handle this in Drupal 6.x. It's handled through translate interface, at least as far as I can tell. So that needs to be changed.

Also the string in line 351 reads "This name be localizable." - it should be "This name will be localizable."

Line 41 also references an non existent help page: $output .= '<p>'. t('For more information please read the <a href="@i18n">on-line help pages</a>.', array('@i18n' =>'http://drupal.org/node/31631')) .'</p>';

Comments

jose reyero’s picture

Status: Active » Fixed

Thank you, fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.