Mercurial > defr > drupal > core
diff modules/contact/contact.install @ 19:3edae6ecd6c6 6.9
Drupal 6.9
author | Franck Deroche <franck@defr.org> |
---|---|
date | Thu, 15 Jan 2009 10:15:56 +0100 |
parents | c1f4ac30525a |
children |
line wrap: on
line diff
--- a/modules/contact/contact.install Tue Dec 23 14:32:55 2008 +0100 +++ b/modules/contact/contact.install Thu Jan 15 10:15:56 2009 +0100 @@ -1,5 +1,5 @@ <?php -// $Id: contact.install,v 1.10 2007/12/18 12:59:21 dries Exp $ +// $Id: contact.install,v 1.10.2.1 2009/01/06 15:46:36 goba Exp $ /** * Implementation of hook_install(). @@ -26,46 +26,46 @@ */ function contact_schema() { $schema['contact'] = array( - 'description' => t('Contact form category settings.'), + 'description' => 'Contact form category settings.', 'fields' => array( 'cid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('Primary Key: Unique category ID.'), + 'description' => 'Primary Key: Unique category ID.', ), 'category' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Category name.'), + 'description' => 'Category name.', ), 'recipients' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('Comma-separated list of recipient e-mail addresses.'), + 'description' => 'Comma-separated list of recipient e-mail addresses.', ), 'reply' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('Text of the auto-reply message.'), + 'description' => 'Text of the auto-reply message.', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t("The category's weight."), + 'description' => "The category's weight.", ), 'selected' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Flag to indicate whether or not category is selected by default. (1 = Yes, 0 = No)'), + 'description' => 'Flag to indicate whether or not category is selected by default. (1 = Yes, 0 = No)', ), ), 'primary key' => array('cid'),