1. Schema descriptions are no longer translated

Schema descriptions are no longer translated

(Issue) To reduce the strings to translate, descriptions of the schema database (tables and fields) in module.install no longer need to be translated.

6.x:

t('Stores the relationship of nodes to forum terms.'), 'fields' => array( 'nid' => array( 'description' => t('The {node}.nid of the node.'), ), ), ); return $schema; } ?>

7.x:

'Stores the relationship of nodes to forum terms.', 'fields' => array( 'nid' => array( 'description' => 'The {node}.nid of the node.', ), ), ); return $schema; } ?>