Index: availability_calendars.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/availability_calendars/availability_calendars.install,v retrieving revision 1.1.4.1 diff -u -p -r1.1.4.1 availability_calendars.install --- availability_calendars.install 5 Oct 2008 16:11:20 -0000 1.1.4.1 +++ availability_calendars.install 22 Sep 2009 23:27:27 -0000 @@ -15,34 +15,34 @@ function availability_calendars_schema() $schema = array(); $schema['availability_calendars_day'] = array( - 'description' => t('The table for calendar days.'), + 'description' => 'The table for calendar days.', 'fields' => array( 'nid' => array( - 'description' => t('The primary identifier for a node.'), + 'description' => 'The primary identifier for a node.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'year' => array( - 'description' => t('The number of the year.'), + 'description' => 'The number of the year.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'month' => array( - 'description' => t('The number of the month.'), + 'description' => 'The number of the month.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'day' => array( - 'description' => t('The number of the day.'), + 'description' => 'The number of the day.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'status' => array( - 'description' => t('The status.'), + 'description' => 'The status.', 'type' => 'int', 'unsigned' => TRUE ) @@ -50,34 +50,34 @@ function availability_calendars_schema() ); $schema['availability_calendars_week'] = array( - 'description' => t('The table for calendar days.'), + 'description' => 'The table for calendar days.', 'fields' => array( 'nid' => array( - 'description' => t('The primary identifier for a node.'), + 'description' => 'The primary identifier for a node.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'year' => array( - 'description' => t('The number of the year.'), + 'description' => 'The number of the year.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'month' => array( - 'description' => t('The number of the month.'), + 'description' => 'The number of the month.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'week' => array( - 'description' => t('The number of the week.'), + 'description' => 'The number of the week.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'note' => array( - 'description' => t('The status.'), + 'description' => 'The status.', 'type' => 'varchar', 'length' => 64 )