Index: int_meta.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/int_meta/int_meta.install,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 int_meta.install
--- int_meta.install	24 Jan 2009 21:52:21 -0000	1.1.2.8
+++ int_meta.install	2 Jan 2010 15:34:35 -0000
@@ -21,38 +21,38 @@
  */
 function int_meta_schema() {
   $schema['int_meta_fields'] = array(
-    'description' => t('Stores all of the dynamic Metatags for a site.'),
+    'description' => 'Stores all of the dynamic Metatags for a site.',
     'fields' => array(
       'field' => array(
-        'description' => t('Represents the value selected in the dropdown when creating a dynamic Metatag.'),
+        'description' => 'Represents the value selected in the dropdown when creating a dynamic Metatag.',
         'type' => 'varchar',
         'length' => 128,
         'not null' => TRUE,
         'default' => '',
       ),
       'type' => array(
-        'description' => t('The node type this field should be applied to.  Blank means it belongs to the global settings.'),
+        'description' => 'The node type this field should be applied to. Blank means it belongs to the global settings.',
         'type' => 'varchar',
         'length' => 32,
         'not null' => TRUE,
         'default' => '',
       ),
       'name'		=> array(
-        'description' => t('The display name of the field when rendered for the client.'),
+        'description' => 'The display name of the field when rendered for the client.',
         'type' => 'varchar',
         'length' => 128,
         'not null' => TRUE,
         'default' => '',
       ),
       'combine'	=> array(
-        'description' => t('Whether to combine this value with other like-named fields when rendered.'),
+        'description' => 'Whether to combine this value with other like-named fields when rendered.',
         'type' => 'int',
         'size' => 'tiny',
         'not null' => TRUE,
         'default' => 0,
       ),
       'status'	=> array(
-        'description' => t('Whether this field is enabled or not.  Only enabled fields are rendered for the client.'),
+        'description' => 'Whether this field is enabled or not. Only enabled fields are rendered for the client.',
         'type' => 'int',
         'size' => 'tiny',
         'not null' => TRUE,

