### Eclipse Workspace Patch 1.0
#P drupal-contrib-cvs
Index: modules/project/project.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/project.module,v
retrieving revision 1.274
diff -u -r1.274 project.module
--- modules/project/project.module	20 Jun 2007 21:54:46 -0000	1.274
+++ modules/project/project.module	2 Jul 2007 17:47:28 -0000
@@ -22,11 +22,7 @@
           }
         }
         if (count($categories)) {
-          $help = t('<p>Properly categorizing your project will help ensure that users can find it easily.  Please follow these steps:</p>
-          <ul>
-            <li>Select <em>one</em> of the first-level terms (%types) as the project type.</li>
-            <li>Then choose <em>one or more</em> categories below this term to classify your project.  For example, for %type, you would choose from the various %type types: %categories, and so on.</li>
-          </ul>', array('%types' => implode (', ', $types), '%type' => $types[0], '%categories' => implode (', ', $categories)));
+          $help = t('<p>Properly categorizing your project will help ensure that users can find it easily. Please follow these steps:</p><ul><li>Select <em>one</em> of the first-level terms (%types) as the project type.</li><li>Then choose <em>one or more</em> categories below this term to classify your project. For example, for %type, you would choose from the various %type types: %categories, and so on.</li></ul>', array('%types' => implode (', ', $types), '%type' => $types[0], '%categories' => implode (', ', $categories)));
         }
       }
       $help .= variable_get('project_help_node_add', '');
@@ -35,10 +31,7 @@
       if (project_use_taxonomy()) {
         $vid = _project_get_vid();
         $vocabulary = taxonomy_get_vocabulary($vid);
-        return t('<p>The project module makes special use of the taxonomy (category) system.  A special vocabulary, %vocabulary_name, has been created automatically.</p>
-        <p>To take full advantage of project categorization, add at least two levels of terms to this vocabulary.  The first level will be the basic project types, e.g., "modules", "themes", "translations".</p>
-        <p>Subterms of each of these types will be the categories that users can select to classify the projects.  For example, "modules" might have sub-terms including "mail" and "XML".</p>
-        <p>Use the <a href="!taxonomy-admin">vocabulary admin page</a> to view and add terms.</p>', array('!taxonomy-admin' => url('admin/content/taxonomy/' . $vid), '%vocabulary_name' => $vocabulary->name));
+        return t('<p>The project module makes special use of the taxonomy (category) system. A special vocabulary, %vocabulary_name, has been created automatically.</p><p>To take full advantage of project categorization, add at least two levels of terms to this vocabulary. The first level will be the basic project types, e.g., "modules", "themes", "translations".</p><p>Subterms of each of these types will be the categories that users can select to classify the projects. For example, "modules" might have sub-terms including "mail" and "XML".</p><p>Use the <a href="!taxonomy-admin">vocabulary admin page</a> to view and add terms.</p>', array('!taxonomy-admin' => url('admin/content/taxonomy/' . $vid), '%vocabulary_name' => $vocabulary->name));
       }
       break;
   }
@@ -62,7 +55,7 @@
 function project_node_info() {
   return array(
     'project_project' => array(
-      'name' => t('project'),
+      'name' => t('Project'),
       'module' => 'project_project',
       'description' => t('A project is something a group is working on. It can optionally have issue tracking, integration with revision control systems, releases, and so on.' ),
     ),
@@ -358,7 +351,7 @@
       }
       else {
         unset($form['path']['path']);
-        $form['path']['value'] = array('#value' => t('Automatically generated path alias: %url', array('%url' => $url_alias)));
+        $form['path']['value'] = array('#value' => '<div>'.t('Automatically generated path alias: %url', array('%url' => $url_alias)).'</div>');
       }
     }
   }
@@ -879,7 +872,7 @@
   );
   $form['submit'] = array(
     '#type' => 'submit',
-    '#value' => t('Go')
+    '#value' => t('Filter')
   );
   return $form;
 }
