Index: modules/project_issue/issue.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/project_issue/issue.inc,v retrieving revision 1.172.2.22.2.5 diff -u -p -r1.172.2.22.2.5 issue.inc --- modules/project_issue/issue.inc 17 Nov 2006 22:20:06 -0000 1.172.2.22.2.5 +++ modules/project_issue/issue.inc 18 Nov 2006 02:16:13 -0000 @@ -900,10 +900,10 @@ function project_issue_priority($priorit function project_issue_category($category = 0, $plural = 1) { if ($plural) { - $categories = array('bug' => t('bug reports'), 'task' => t('tasks'), 'feature' => t('feature requests'), 'support' => t('support requests')); + $categories = array('bug' => t('bug reports'), 'task' => t('tasks'), 'feature' => t('feature requests'), 'support' => t('support requests'), 'port' => t('port requests')); } else { - $categories = array('bug' => t('bug report'), 'task' => t('task'), 'feature' => t('feature request'), 'support' => t('support request')); + $categories = array('bug' => t('bug report'), 'task' => t('task'), 'feature' => t('feature request'), 'support' => t('support request'), 'port' => t('port request')); } return $category ? $categories[$category] : $categories; }