Index: corner.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/corner/corner.install,v
retrieving revision 1.4
diff -u -p -r1.4 corner.install
--- corner.install	6 Jan 2009 21:45:19 -0000	1.4
+++ corner.install	5 May 2009 17:25:51 -0000
@@ -42,78 +42,78 @@ function corner_uninstall() {
  */
 function corner_schema() {
   $schema['corners'] = array(
-    'description' => t('Stores corner settings, such as image and visibility settings.'),
+    'description' => 'Stores corner settings, such as image and visibility settings.',
     'fields' => array(
       'cid' => array(
         'type' => 'serial',
         'not null' => TRUE,
-        'description' => t('Primary Key: Unique corner ID.'),
+        'description' => 'Primary Key: Unique corner ID.',
       ),
       'name' => array(
         'type' => 'varchar',
         'length' => 64,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Name of the corner. The name will be added to the corner class to enable custom theming.'),
+        'description' => 'Name of the corner. The name will be added to the corner class to enable custom theming.',
       ),
       'image' => array(
         'type' => 'varchar',
         'length' => 64,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('The filename of the corner to be shown.'),
+        'description' => 'The filename of the corner to be shown.',
       ),
       'image_title' => array(
         'type' => 'varchar',
         'length' => 64,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('The title of the corner image.'),
+        'description' => 'The title of the corner image.',
       ),
       'image_uri' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Link URI of corner.'),
+        'description' => 'Link URI of corner.',
       ),
       'status' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
         'size' => 'tiny',
-        'description' => t('Corner enabled status. (1 = enabled, 0 = disabled)'),
+        'description' => 'Corner enabled status. (1 = enabled, 0 = disabled)',
       ),
       'languages' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('The language visibility of the corner. Comma separated string of language names.'),
+        'description' => 'The language visibility of the corner. Comma separated string of language names.',
       ),
       'roles' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('The role visibility of the corner. Comma separated string of role ids (rid).'),
+        'description' => 'The role visibility of the corner. Comma separated string of role ids (rid).',
       ),
       'visibility' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
         'size' => 'tiny',
-        'description' => t('Flag to indicate how to show corners on pages. (0 = Show on all pages except listed pages, 1 = Show only on listed pages, 2 = Use custom PHP code to determine visibility)'),
+        'description' => 'Flag to indicate how to show corners on pages. (0 = Show on all pages except listed pages, 1 = Show only on listed pages, 2 = Use custom PHP code to determine visibility)',
       ),
       'pages' => array(
         'type' => 'text',
         'not null' => TRUE,
-        'description' => t('Contents of the "Pages" textarea; contains either a list of paths on which to include/exclude the corner or PHP code, depending on "visibility" setting.'),
+        'description' => 'Contents of the "Pages" textarea; contains either a list of paths on which to include/exclude the corner or PHP code, depending on "visibility" setting.',
       ),
       'options' => array(
         'type' => 'text',
         'not null' => TRUE,
-        'description' => t('Serialized array of various corner options.')
+        'description' => 'Serialized array of various corner options.',
       ),
     ),
     'primary key' => array('cid'),
@@ -132,10 +132,8 @@ function corner_schema() {
  */
 function corner_update_6200() {
   $ret = array();
-  db_add_field($ret, 'corners', 'languages', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', 'description' => t('The language visibility of the corner. Comma separated string of language names.')), array());
-  db_add_field($ret, 'corners', 'options', array('type' => 'text', 'not null' => TRUE, 'description' => t('Serialized array of various corner options.')), array());
+  db_add_field($ret, 'corners', 'languages', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', 'description' => 'The language visibility of the corner. Comma separated string of language names.'), array());
+  db_add_field($ret, 'corners', 'options', array('type' => 'text', 'not null' => TRUE, 'description' => 'Serialized array of various corner options.'), array());
   db_drop_field($ret, 'corners', 'position');
   return $ret;
 }
-
-
