diff --git a/node_gallery_api.module b/node_gallery_api.module index 92da0be..1bd01bb 100644 --- a/node_gallery_api.module +++ b/node_gallery_api.module @@ -1182,14 +1182,14 @@ function node_gallery_api_help($path, $arg) { $output = ''; switch ($path) { case 'node/%/images': - if (node_gallery_user_access('administer')) { - return '

' . t('To configure what is displayed on this form, review the "Manage Images Fields" fieldset under Node Gallery administration.', array('!admin' => url('admin/config/content/node_gallery'))) . '

'; + if (node_gallery_api_user_access('administer')) { + return '

' . t('To configure what is displayed on this form, review the "Manage Items Fields" fieldset under Node Gallery administration.', array('!admin' => url('admin/config/content/node_gallery'))) . '

'; } break; case 'node/%/upload': if (module_exists('plupload')) { - return '

' . t('To edit image data after uploading please visit the Manage Images tab.', array('!manage' => url('node/' . $arg[1] . '/images'))) . '

'; + return '

' . t('To edit image data after uploading please visit the Manage Items tab.', array('!manage' => url('node/' . $arg[1] . '/items'))) . '

'; } elseif (node_gallery_api_user_access('administer')) { return '

' . t('To enable seamless bulk image uploading please install the plupload integration module.', array('!plupload' => url('http://drupal.org/project/plupload'))) . '

';