Index: nodequeue.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodequeue/nodequeue.install,v
retrieving revision 1.21
diff -b -u -p -r1.21 nodequeue.install
--- nodequeue.install	23 Mar 2010 16:50:56 -0000	1.21
+++ nodequeue.install	3 Sep 2010 03:06:59 -0000
@@ -3,16 +3,16 @@
 
 function nodequeue_schema() {
   $schema['nodequeue_queue'] = array(
-    'description' => t('Base table for queues, storing global information for each queue'),
+    'description' => 'Base table for queues, storing global information for each queue',
     'fields' => array(
       'qid' => array(
-        'description' => t('The primary identifier for a queue.'),
+        'description' => 'The primary identifier for a queue.',
         'type' => 'serial',
         'unsigned' => TRUE,
         'not null' => TRUE
       ),
       'title' => array(
-        'description' => t('Title of a queue.'),
+        'description' => 'Title of a queue.',
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
@@ -24,17 +24,17 @@ function nodequeue_schema() {
         'not null' => TRUE,
       ),
       'size' => array(
-        'description' => t('How many nodes this queue will hold'),
+        'description' => 'How many nodes this queue will hold',
         'type' => 'int',
         'default' => 0,
       ),
       'link' => array(
-        'description' => t('The link text to show under a node to add it to the queue.'),
+        'description' => 'The link text to show under a node to add it to the queue.',
         'type' => 'varchar',
         'length' => 40,
       ),
       'link_remove' => array(
-        'description' => t('The link text to show under a node to remove it from the queue.'),
+        'description' => 'The link text to show under a node to remove it from the queue.',
         'type' => 'varchar',
         'length' => 40,
       ),
@@ -82,17 +82,17 @@ function nodequeue_schema() {
     'primary key' => array('qid'),
   ); // nodequeue_queue.
   $schema['nodequeue_roles'] = array(
-    'description' => t('Defines the roles which are allowed to use a particular nodequeue.'),
+    'description' => 'Defines the roles which are allowed to use a particular nodequeue.',
     'fields' => array(
       'qid' => array(
-        'description' => t('Primary key for {nodequeue_queue}'),
+        'description' => 'Primary key for {nodequeue_queue}',
         'type' => 'int',
         'size' => 'big',
         'unsigned' => TRUE,
         'not null' => TRUE
       ),
       'rid' => array(
-        'description' => t('Primary key for roles'),
+        'description' => 'Primary key for roles',
         'type' => 'int',
         'size' => 'big',
         'unsigned' => TRUE,
@@ -105,17 +105,17 @@ function nodequeue_schema() {
     ), // indexes
   ); // nodequeue_roles
   $schema['nodequeue_types'] = array(
-    'description' => t('Defines the node types which are allowed in each queue'),
+    'description' => 'Defines the node types which are allowed in each queue',
     'fields' => array(
       'qid' => array(
-        'description' => t('Primary key for {nodequeue_queue}'),
+        'description' => 'Primary key for {nodequeue_queue}',
         'type' => 'int',
         'size' => 'big',
         'unsigned' => TRUE,
         'not null' => TRUE
       ),
       'type' => array(
-        'description' => t('Node Type'),
+        'description' => 'Node Type',
         'type' => 'varchar',
         'length' => 255,
         'not null' => FALSE
@@ -132,16 +132,16 @@ function nodequeue_schema() {
   // to do anything. Reference is for the use of whatever is creating
   // the subqueues in order to link it to some other ID easily.
   $schema['nodequeue_subqueue'] = array(
-    'description' => t('Subqueues are minor queues that inherit all of the properties of the parent queue. A parent queue must have at least 1 subqueue to do anything. Reference is for the use of whatever is creating the subqueues in order to link it to some other ID easily.'),
+    'description' => 'Subqueues are minor queues that inherit all of the properties of the parent queue. A parent queue must have at least 1 subqueue to do anything. Reference is for the use of whatever is creating the subqueues in order to link it to some other ID easily.',
     'fields' => array(
       'sqid' => array(
-        'description' => t('Subqueue identifier'),
+        'description' => 'Subqueue identifier',
         'type' => 'serial',
         'unsigned' => TRUE,
         'not null' => TRUE,
       ),
       'qid' => array(
-        'description' => t('Queue identifier.'),
+        'description' => 'Queue identifier.',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
@@ -170,28 +170,28 @@ function nodequeue_schema() {
   ); // nodequeue_subqueue
 
   $schema['nodequeue_nodes'] = array(
-    'description' => t('Indicates which nodes are in which queues/subqueues.'),
+    'description' => 'Indicates which nodes are in which queues/subqueues.',
     'fields' => array(
       'qid' => array(
-        'description' => t('Queue id'),
+        'description' => 'Queue id',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
       ),
       'sqid' => array(
-        'description' => t('Subqueue this node is in'),
+        'description' => 'Subqueue this node is in',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
       ),
       'nid' => array(
-        'description' => t('Node id in this subqueue'),
+        'description' => 'Node id in this subqueue',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => FALSE
       ),
       'position' => array(
-        'description' => t('The position of the node in this subqueue.'),
+        'description' => 'The position of the node in this subqueue.',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => FALSE
@@ -226,12 +226,12 @@ function nodequeue_update_5000() {
   $ret[] = array('success' => TRUE, 'query' => t('Some of the following queries may appear to fail. This is not a problem.'));
 
   db_add_field($ret, "nodequeue_queue", "link", array(
-        'description' => t('The link text to show under a node to add it to the queue.'),
+        'description' => 'The link text to show under a node to add it to the queue.',
         'type' => 'varchar',
         'length' => 40,
       ));
   db_add_field($ret, "nodequeue_queue", "link_remove", array(
-        'description' => t('The link text to show under a node to remove it from the queue.'),
+        'description' => 'The link text to show under a node to remove it from the queue.',
         'type' => 'varchar',
         'length' => 40,
       ));
@@ -282,16 +282,16 @@ function nodequeue_update_5201() {
   $ret[] = update_sql("UPDATE {nodequeue_queue} SET owner = 'nodequeue', show_in_ui = 1, show_in_tab = 1, show_in_links = 1, reference = 0");
   
   db_create_table($ret, 'nodequeue_subqueue', array(
-    'description' => t('Subqueues are minor queues that inherit all of the properties of the parent queue. A parent queue must have at least 1 subqueue to do anything. Reference is for the use of whatever is creating the subqueues in order to link it to some other ID easily.'),
+    'description' => 'Subqueues are minor queues that inherit all of the properties of the parent queue. A parent queue must have at least 1 subqueue to do anything. Reference is for the use of whatever is creating the subqueues in order to link it to some other ID easily.',
     'fields' => array(
       'sqid' => array(
-        'description' => t('Subqueue identifier'),
+        'description' => 'Subqueue identifier',
         'type' => 'serial',
         'unsigned' => TRUE,
         'not null' => TRUE,
       ),
       'qid' => array(
-        'description' => t('Queue identifier.'),
+        'description' => 'Queue identifier.',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
