Index: nodewords.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodewords/Attic/nodewords.info,v
retrieving revision 1.3.2.7
diff -u -r1.3.2.7 nodewords.info
--- nodewords.info	25 Sep 2009 14:21:25 -0000	1.3.2.7
+++ nodewords.info	25 Sep 2009 18:39:02 -0000
@@ -1,5 +1,5 @@
 ; $Id: nodewords.info,v 1.3.2.7 2009/09/25 14:21:25 kiam Exp $
-name = Nodewords
+name = Meta tags
 description = Allows users to add meta tags, e.g. keywords or description. This module doesn't actually implement any meta tags, but requires other modules to implement them.
 package = Meta tags
 core = 6.x
Index: nodewords.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodewords/Attic/nodewords.module,v
retrieving revision 1.57.2.156
diff -u -r1.57.2.156 nodewords.module
--- nodewords.module	25 Sep 2009 14:28:39 -0000	1.57.2.156
+++ nodewords.module	25 Sep 2009 18:39:02 -0000
@@ -38,8 +38,8 @@
  */
 function nodewords_content_extra_fields() {
   $extras['nodewords'] = array(
-    'label' => t('Nodewords'),
-    'description' => t('Nodewords fieldset.'),
+    'label' => t('Meta tags'),
+    'description' => t('Meta tags fieldset.'),
     'weight' => 10,
   );
 
@@ -89,7 +89,7 @@
 
     $form['nodewords'] = array(
       '#type' => 'fieldset',
-      '#title' => t('Nodewords settings'),
+      '#title' => t('Meta tag settings'),
       '#collapsible' => TRUE,
       '#collapsed' => TRUE,
     );
@@ -620,7 +620,7 @@
   $default_options = array(
     'page:administrative' => FALSE,
     'fieldset' => TRUE,
-    'fieldset:title' => t('Nodewords'),
+    'fieldset:title' => t('Meta tags'),
     'fieldset:weight' => 20,
   );
   $edit_tags = variable_get('nodewords_edit', array());
Index: nodewords.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodewords/Attic/nodewords.admin.inc,v
retrieving revision 1.1.2.70
diff -u -r1.1.2.70 nodewords.admin.inc
--- nodewords.admin.inc	23 Sep 2009 17:37:54 -0000	1.1.2.70
+++ nodewords.admin.inc	25 Sep 2009 18:39:02 -0000
@@ -141,7 +141,7 @@
   $form['path'] = array(
     '#type' => 'textfield',
     '#title' => t('Path'),
-    '#description' => t('Enter the Drupal path of the page. The '*' character is a wildcard. Example paths are <em>blog</em> for the blog page and <em>blog/*</em> for every personal blog.'),
+    '#description' => t("Enter the Drupal path of the page. The '*' character is a wildcard. Example paths are <em>blog</em> for the blog page and <em>blog/*</em> for every personal blog."),
     '#default_value' => $page->path,
     '#size' => 60,
     '#maxlength' => 255,
@@ -211,14 +211,13 @@
     }
 
     $bool = db_result(
-      db_query("SELECT 1 FROM {nodewords_custom}
-        WHERE path = '%s' AND pid <> %d", $path,
+      db_query("SELECT 1 FROM {nodewords_custom} WHERE path = '%s' AND pid <> %d", $path,
         isset($form_state['values']['pid']) ? $form_state['values']['pid'] : 0
       )
     );
 
     if ($bool) {
-      form_set_error('path', t('The path has been already used.'));
+      form_set_error('path', t('The path is already in use.'));
     }
   }
   else {
@@ -477,7 +476,7 @@
   if (empty($rows)) {
     $rows[] = array(
       array(
-        'data' => t('There are no meta tags currently defined.'),
+        'data' => t('There are currently no meta tags defined.'),
         'colspan' => '4'
       )
     );
