? sites/default/files ? sites/default/settings.php Index: modules/aggregator/aggregator.install =================================================================== RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.install,v retrieving revision 1.18 diff -u -p -r1.18 aggregator.install --- modules/aggregator/aggregator.install 8 Nov 2008 23:03:39 -0000 1.18 +++ modules/aggregator/aggregator.install 11 Nov 2008 21:34:04 -0000 @@ -27,32 +27,32 @@ function aggregator_uninstall() { */ function aggregator_schema() { $schema['aggregator_category'] = array( - 'description' => t('Stores categories for aggregator feeds and feed items.'), + 'description' => 'Stores categories for aggregator feeds and feed items.', 'fields' => array( 'cid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique aggregator category ID.'), + 'description' => 'Primary Key: Unique aggregator category ID.', ), 'title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Title of the category.'), + 'description' => 'Title of the category.', ), 'description' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('Description of the category'), + 'description' => 'Description of the category', ), 'block' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('The number of recent items to show within the category block.'), + 'description' => 'The number of recent items to show within the category block.', ) ), 'primary key' => array('cid'), @@ -62,19 +62,19 @@ function aggregator_schema() { ); $schema['aggregator_category_feed'] = array( - 'description' => t('Bridge table; maps feeds to categories.'), + 'description' => 'Bridge table; maps feeds to categories.', 'fields' => array( 'fid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t("The feed's {aggregator_feed}.fid."), + 'description' => "The feed's {aggregator_feed}.fid.", ), 'cid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {aggregator_category}.cid to which the feed is being assigned.'), + 'description' => 'The {aggregator_category}.cid to which the feed is being assigned.', ) ), 'primary key' => array('cid', 'fid'), @@ -84,19 +84,19 @@ function aggregator_schema() { ); $schema['aggregator_category_item'] = array( - 'description' => t('Bridge table; maps feed items to categories.'), + 'description' => 'Bridge table; maps feed items to categories.', 'fields' => array( 'iid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t("The feed item's {aggregator_item}.iid."), + 'description' => "The feed item's {aggregator_item}.iid.", ), 'cid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {aggregator_category}.cid to which the feed item is being assigned.'), + 'description' => 'The {aggregator_category}.cid to which the feed item is being assigned.', ) ), 'primary key' => array('cid', 'iid'), @@ -106,84 +106,84 @@ function aggregator_schema() { ); $schema['aggregator_feed'] = array( - 'description' => t('Stores feeds to be parsed by the aggregator.'), + 'description' => 'Stores feeds to be parsed by the aggregator.', 'fields' => array( 'fid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique feed ID.'), + 'description' => 'Primary Key: Unique feed ID.', ), 'title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Title of the feed.'), + 'description' => 'Title of the feed.', ), 'url' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('URL to the feed.'), + 'description' => 'URL to the feed.', ), 'refresh' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('How often to check for new feed items, in seconds.'), + 'description' => 'How often to check for new feed items, in seconds.', ), 'checked' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Last time feed was checked for new items, as Unix timestamp.'), + 'description' => 'Last time feed was checked for new items, as Unix timestamp.', ), 'link' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The parent website of the feed; comes from the <link> element in the feed.'), + 'description' => 'The parent website of the feed; comes from the <link> element in the feed.', ), 'description' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t("The parent website's description; comes from the <description> element in the feed."), + 'description' => "The parent website's description; comes from the <description> element in the feed.", ), 'image' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('An image representing the feed.'), + 'description' => 'An image representing the feed.', ), 'hash' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', - 'description' => t('Calculated md5 hash of the feed data, used for validating cache.'), + 'description' => 'Calculated md5 hash of the feed data, used for validating cache.', ), 'etag' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Entity tag HTTP response header, used for validating cache.'), + 'description' => 'Entity tag HTTP response header, used for validating cache.', ), 'modified' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('When the feed was last modified, as a Unix timestamp.'), + 'description' => 'When the feed was last modified, as a Unix timestamp.', ), 'block' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t("Number of items to display in the feed's block."), + 'description' => "Number of items to display in the feed's block.", ) ), 'primary key' => array('fid'), @@ -194,56 +194,56 @@ function aggregator_schema() { ); $schema['aggregator_item'] = array( - 'description' => t('Stores the individual items imported from feeds.'), + 'description' => 'Stores the individual items imported from feeds.', 'fields' => array( 'iid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique ID for feed item.'), + 'description' => 'Primary Key: Unique ID for feed item.', ), 'fid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {aggregator_feed}.fid to which this item belongs.'), + 'description' => 'The {aggregator_feed}.fid to which this item belongs.', ), 'title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Title of the feed item.'), + 'description' => 'Title of the feed item.', ), 'link' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Link to the feed item.'), + 'description' => 'Link to the feed item.', ), 'author' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Author of the feed item.'), + 'description' => 'Author of the feed item.', ), 'description' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('Body of the feed item.'), + 'description' => 'Body of the feed item.', ), 'timestamp' => array( 'type' => 'int', 'not null' => FALSE, - 'description' => t('Posted date of the feed item, as a Unix timestamp.'), + 'description' => 'Posted date of the feed item, as a Unix timestamp.', ), 'guid' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t('Unique identifier for the feed item.'), + 'description' => 'Unique identifier for the feed item.', ) ), 'primary key' => array('iid'), Index: modules/block/block.install =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.install,v retrieving revision 1.12 diff -u -p -r1.12 block.install --- modules/block/block.install 8 Nov 2008 23:03:39 -0000 1.12 +++ modules/block/block.install 11 Nov 2008 21:34:04 -0000 @@ -6,87 +6,87 @@ */ function block_schema() { $schema['blocks'] = array( - 'description' => t('Stores block settings, such as region and visibility settings.'), + 'description' => 'Stores block settings, such as region and visibility settings.', 'fields' => array( 'bid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique block ID.'), + 'description' => 'Primary Key: Unique block ID.', ), 'module' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t("The module from which the block originates; for example, 'user' for the Who's Online block, and 'block' for any custom blocks."), + 'description' => "The module from which the block originates; for example, 'user' for the Who's Online block, and 'block' for any custom blocks.", ), 'delta' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '0', - 'description' => t('Unique ID for block within a module.'), + 'description' => 'Unique ID for block within a module.', ), 'theme' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('The theme under which the block settings apply.'), + 'description' => 'The theme under which the block settings apply.', ), 'status' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Block enabled status. (1 = enabled, 0 = disabled)'), + 'description' => 'Block enabled status. (1 = enabled, 0 = disabled)', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Block weight within region.'), + 'description' => 'Block weight within region.', ), 'region' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('Theme region within which the block is set.'), + 'description' => 'Theme region within which the block is set.', ), 'custom' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Flag to indicate how users may control visibility of the block. (0 = Users cannot control, 1 = On by default, but can be hidden, 2 = Hidden by default, but can be shown)'), + 'description' => 'Flag to indicate how users may control visibility of the block. (0 = Users cannot control, 1 = On by default, but can be hidden, 2 = Hidden by default, but can be shown)', ), 'visibility' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Flag to indicate how to show blocks 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 blocks 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" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.'), + 'description' => 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.', ), 'title' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)'), + 'description' => 'Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)', ), 'cache' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 1, 'size' => 'tiny', - 'description' => t('Binary flag to indicate block cache mode. (-1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See BLOCK_CACHE_* constants in block.module for more detailed information.'), + 'description' => 'Binary flag to indicate block cache mode. (-1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See BLOCK_CACHE_* constants in block.module for more detailed information.', ), ), 'primary key' => array('bid'), @@ -99,25 +99,25 @@ function block_schema() { ); $schema['blocks_roles'] = array( - 'description' => t('Sets up access permissions for blocks based on user roles'), + 'description' => 'Sets up access permissions for blocks based on user roles', 'fields' => array( 'module' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, - 'description' => t("The block's origin module, from {blocks}.module."), + 'description' => "The block's origin module, from {blocks}.module.", ), 'delta' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, - 'description' => t("The block's unique delta within module, from {blocks}.delta."), + 'description' => "The block's unique delta within module, from {blocks}.delta.", ), 'rid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t("The user's role ID from {users_roles}.rid."), + 'description' => "The user's role ID from {users_roles}.rid.", ), ), 'primary key' => array('module', 'delta', 'rid'), @@ -127,33 +127,33 @@ function block_schema() { ); $schema['boxes'] = array( - 'description' => t('Stores contents of custom-made blocks.'), + 'description' => 'Stores contents of custom-made blocks.', 'fields' => array( 'bid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t("The block's {blocks}.bid."), + 'description' => "The block's {blocks}.bid.", ), 'body' => array( 'type' => 'text', 'not null' => FALSE, 'size' => 'big', - 'description' => t('Block contents.'), + 'description' => 'Block contents.', ), 'info' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Block description.'), + 'description' => 'Block description.', ), 'format' => array( 'type' => 'int', 'size' => 'small', 'not null' => TRUE, 'default' => 0, - 'description' => t("Block body's {filter_formats}.format; for example, 1 = Filtered HTML."), + 'description' => "Block body's {filter_formats}.format; for example, 1 = Filtered HTML.", ) ), 'unique keys' => array( @@ -163,7 +163,7 @@ function block_schema() { ); $schema['cache_block'] = drupal_get_schema_unprocessed('system', 'cache'); - $schema['cache_block']['description'] = t('Cache table for the Block module to store already built blocks, identified by module, delta, and various contexts which may change the block, such as theme, locale, and caching mode defined for the block.'); + $schema['cache_block']['description'] = 'Cache table for the Block module to store already built blocks, identified by module, delta, and various contexts which may change the block, such as theme, locale, and caching mode defined for the block.'; return $schema; } Index: modules/blogapi/blogapi.install =================================================================== RCS file: /cvs/drupal/drupal/modules/blogapi/blogapi.install,v retrieving revision 1.3 diff -u -p -r1.3 blogapi.install --- modules/blogapi/blogapi.install 12 Oct 2008 02:58:23 -0000 1.3 +++ modules/blogapi/blogapi.install 11 Nov 2008 21:34:04 -0000 @@ -23,28 +23,28 @@ function blogapi_uninstall() { */ function blogapi_schema() { $schema['blogapi_files'] = array( - 'description' => t('Stores information for files uploaded via the blogapi.'), + 'description' => 'Stores information for files uploaded via the blogapi.', 'fields' => array( 'fid' => array( - 'description' => t('Primary Key: Unique file ID.'), + 'description' => 'Primary Key: Unique file ID.', 'type' => 'serial', ), 'uid' => array( - 'description' => t('The {users}.uid of the user who is associated with the file.'), + 'description' => 'The {users}.uid of the user who is associated with the file.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'filepath' => array( - 'description' => t('Path of the file relative to Drupal root.'), + 'description' => 'Path of the file relative to Drupal root.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'filesize' => array( - 'description' => t('The size of the file in bytes.'), + 'description' => 'The size of the file in bytes.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, Index: modules/book/book.install =================================================================== RCS file: /cvs/drupal/drupal/modules/book/book.install,v retrieving revision 1.23 diff -u -p -r1.23 book.install --- modules/book/book.install 8 Oct 2008 03:27:55 -0000 1.23 +++ modules/book/book.install 11 Nov 2008 22:10:22 -0000 @@ -251,28 +251,28 @@ function book_update_6000() { */ function book_schema() { $schema['book'] = array( - 'description' => t('Stores book outline information. Uniquely connects each node in the outline to a link in {menu_links}'), + 'description' => 'Stores book outline information. Uniquely connects each node in the outline to a link in {menu_links}', 'fields' => array( 'mlid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t("The book page's {menu_links}.mlid."), + 'description' => "The book page's {menu_links}.mlid.", ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t("The book page's {node}.nid."), + 'description' => "The book page's {node}.nid.", ), 'bid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t("The book ID is the {book}.nid of the top-level page."), + 'description' => "The book ID is the {book}.nid of the top-level page.", ), ), 'primary key' => array('mlid'), Index: modules/comment/comment.install =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.install,v retrieving revision 1.26 diff -u -p -r1.26 comment.install --- modules/comment/comment.install 17 Sep 2008 07:11:56 -0000 1.26 +++ modules/comment/comment.install 11 Nov 2008 21:34:04 -0000 @@ -118,56 +118,56 @@ function comment_update_7001() { */ function comment_schema() { $schema['comments'] = array( - 'description' => t('Stores comments and associated data.'), + 'description' => 'Stores comments and associated data.', 'fields' => array( 'cid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique comment ID.'), + 'description' => 'Primary Key: Unique comment ID.', ), 'pid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {comments}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.'), + 'description' => 'The {comments}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.', ), 'nid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid to which this comment is a reply.'), + 'description' => 'The {node}.nid to which this comment is a reply.', ), 'uid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {users}.uid who authored the comment. If set to 0, this comment was created by an anonymous user.'), + 'description' => 'The {users}.uid who authored the comment. If set to 0, this comment was created by an anonymous user.', ), 'subject' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('The comment title.'), + 'description' => 'The comment title.', ), 'comment' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('The comment body.'), + 'description' => 'The comment body.', ), 'hostname' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t("The author's host name."), + 'description' => "The author's host name.", ), 'timestamp' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The time that the comment was created, or last edited by its author, as a Unix timestamp.'), + 'description' => 'The time that the comment was created, or last edited by its author, as a Unix timestamp.', ), 'status' => array( 'type' => 'int', @@ -175,38 +175,38 @@ function comment_schema() { 'not null' => TRUE, 'default' => 1, 'size' => 'tiny', - 'description' => t('The published status of a comment. (0 = Not Published, 1 = Published)'), + 'description' => 'The published status of a comment. (0 = Not Published, 1 = Published)', ), 'format' => array( 'type' => 'int', 'size' => 'small', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {filter_formats}.format of the comment body.'), + 'description' => 'The {filter_formats}.format of the comment body.', ), 'thread' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, - 'description' => t("The vancode representation of the comment's place in a thread."), + 'description' => "The vancode representation of the comment's place in a thread.", ), 'name' => array( 'type' => 'varchar', 'length' => 60, 'not null' => FALSE, - 'description' => t("The comment author's name. Uses {users}.name if the user is logged in, otherwise uses the value typed into the comment form."), + 'description' => "The comment author's name. Uses {users}.name if the user is logged in, otherwise uses the value typed into the comment form.", ), 'mail' => array( 'type' => 'varchar', 'length' => 64, 'not null' => FALSE, - 'description' => t("The comment author's e-mail address from the comment form, if user is anonymous, and the 'Anonymous users may/must leave their contact information' setting is turned on."), + 'description' => "The comment author's e-mail address from the comment form, if user is anonymous, and the 'Anonymous users may/must leave their contact information' setting is turned on.", ), 'homepage' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t("The comment author's home page address from the comment form, if user is anonymous, and the 'Anonymous users may/must leave their contact information' setting is turned on."), + 'description' => "The comment author's home page address from the comment form, if user is anonymous, and the 'Anonymous users may/must leave their contact information' setting is turned on.", ) ), 'indexes' => array( @@ -219,39 +219,39 @@ function comment_schema() { ); $schema['node_comment_statistics'] = array( - 'description' => t('Maintains statistics of node and comments posts to show "new" and "updated" flags.'), + 'description' => 'Maintains statistics of node and comments posts to show "new" and "updated" flags.', 'fields' => array( 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid for which the statistics are compiled.'), + 'description' => 'The {node}.nid for which the statistics are compiled.', ), 'last_comment_timestamp' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The Unix timestamp of the last comment that was posted within this node, from {comments}.timestamp.'), + 'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comments}.timestamp.', ), 'last_comment_name' => array( 'type' => 'varchar', 'length' => 60, 'not null' => FALSE, - 'description' => t('The name of the latest author to post a comment on this node, from {comments}.name.'), + 'description' => 'The name of the latest author to post a comment on this node, from {comments}.name.', ), 'last_comment_uid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The user ID of the latest author to post a comment on this node, from {comments}.uid.'), + 'description' => 'The user ID of the latest author to post a comment on this node, from {comments}.uid.', ), 'comment_count' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The total number of comments on this node.'), + 'description' => 'The total number of comments on this node.', ), ), 'primary key' => array('nid'), Index: modules/contact/contact.install =================================================================== RCS file: /cvs/drupal/drupal/modules/contact/contact.install,v retrieving revision 1.10 diff -u -p -r1.10 contact.install --- modules/contact/contact.install 18 Dec 2007 12:59:21 -0000 1.10 +++ modules/contact/contact.install 11 Nov 2008 21:34:04 -0000 @@ -26,46 +26,46 @@ function contact_uninstall() { */ 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'), Index: modules/dblog/dblog.install =================================================================== RCS file: /cvs/drupal/drupal/modules/dblog/dblog.install,v retrieving revision 1.9 diff -u -p -r1.9 dblog.install --- modules/dblog/dblog.install 22 Oct 2008 18:32:31 -0000 1.9 +++ modules/dblog/dblog.install 11 Nov 2008 21:34:04 -0000 @@ -22,37 +22,37 @@ function dblog_uninstall() { */ function dblog_schema() { $schema['watchdog'] = array( - 'description' => t('Table that contains logs of all system events.'), + 'description' => 'Table that contains logs of all system events.', 'fields' => array( 'wid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique watchdog event ID.'), + 'description' => 'Primary Key: Unique watchdog event ID.', ), 'uid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {users}.uid of the user who triggered the event.'), + 'description' => 'The {users}.uid of the user who triggered the event.', ), 'type' => array( 'type' => 'varchar', 'length' => 16, 'not null' => TRUE, 'default' => '', - 'description' => t('Type of log message, for example "user" or "page not found."'), + 'description' => 'Type of log message, for example "user" or "page not found."', ), 'message' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('Text of log message to be passed into the t() function.'), + 'description' => 'Text of log message to be passed into the t() function.', ), 'variables' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('Serialized array of variables that match the message string and that is passed into the t() function.'), + 'description' => 'Serialized array of variables that match the message string and that is passed into the t() function.', ), 'severity' => array( 'type' => 'int', @@ -60,39 +60,39 @@ function dblog_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)'), + 'description' => 'The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)', ), 'link' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'default' => '', - 'description' => t('Link to view the result of the event.'), + 'description' => 'Link to view the result of the event.', ), 'location' => array( 'type' => 'text', 'not null' => TRUE, - 'description' => t('URL of the origin of the event.'), + 'description' => 'URL of the origin of the event.', ), 'referer' => array( 'type' => 'varchar', 'length' => 128, 'not null' => FALSE, 'default' => '', - 'description' => t('URL of referring page.'), + 'description' => 'URL of referring page.', ), 'hostname' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Hostname of the user who triggered the event.'), + 'description' => 'Hostname of the user who triggered the event.', ), 'timestamp' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Unix timestamp of when event occurred.'), + 'description' => 'Unix timestamp of when event occurred.', ), ), 'primary key' => array('wid'), Index: modules/filter/filter.install =================================================================== RCS file: /cvs/drupal/drupal/modules/filter/filter.install,v retrieving revision 1.9 diff -u -p -r1.9 filter.install --- modules/filter/filter.install 14 Apr 2008 17:48:37 -0000 1.9 +++ modules/filter/filter.install 11 Nov 2008 21:34:04 -0000 @@ -6,39 +6,39 @@ */ function filter_schema() { $schema['filters'] = array( - 'description' => t('Table that maps filters (HTML corrector) to input formats (Filtered HTML).'), + 'description' => 'Table that maps filters (HTML corrector) to input formats (Filtered HTML).', 'fields' => array( 'fid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Auto-incrementing filter ID.'), + 'description' => 'Primary Key: Auto-incrementing filter ID.', ), 'format' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Foreign key: The {filter_formats}.format to which this filter is assigned.'), + 'description' => 'Foreign key: The {filter_formats}.format to which this filter is assigned.', ), 'module' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('The origin module of the filter.'), + 'description' => 'The origin module of the filter.', ), 'delta' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('ID to identify which filter within module is being referenced.'), + 'description' => 'ID to identify which filter within module is being referenced.', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Weight of filter within format.'), + 'description' => 'Weight of filter within format.', ) ), 'primary key' => array('fid'), @@ -50,40 +50,40 @@ function filter_schema() { ), ); $schema['filter_formats'] = array( - 'description' => t('Stores input formats: custom groupings of filters, such as Filtered HTML.'), + 'description' => 'Stores input formats: custom groupings of filters, such as Filtered HTML.', 'fields' => array( 'format' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique ID for format.'), + 'description' => 'Primary Key: Unique ID for format.', ), 'name' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Name of the input format (Filtered HTML).'), + 'description' => 'Name of the input format (Filtered HTML).', ), 'roles' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('A comma-separated string of roles; references {role}.rid.'), // This is bad since you can't use joins, nor index. + 'description' => 'A comma-separated string of roles; references {role}.rid.', // This is bad since you can't use joins, nor index. ), 'cache' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Flag to indicate whether format is cachable. (1 = cachable, 0 = not cachable)'), + 'description' => 'Flag to indicate whether format is cachable. (1 = cachable, 0 = not cachable)', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Weight of input format to use when listing.'), + 'description' => 'Weight of input format to use when listing.', ) ), 'primary key' => array('format'), @@ -93,7 +93,7 @@ function filter_schema() { ); $schema['cache_filter'] = drupal_get_schema_unprocessed('system', 'cache'); - $schema['cache_filter']['description'] = t('Cache table for the Filter module to store already filtered pieces of text, identified by input format and md5 hash of the text.'); + $schema['cache_filter']['description'] = 'Cache table for the Filter module to store already filtered pieces of text, identified by input format and md5 hash of the text.'; return $schema; } Index: modules/forum/forum.install =================================================================== RCS file: /cvs/drupal/drupal/modules/forum/forum.install,v retrieving revision 1.20 diff -u -p -r1.20 forum.install --- modules/forum/forum.install 5 Nov 2008 12:47:23 -0000 1.20 +++ modules/forum/forum.install 11 Nov 2008 22:06:28 -0000 @@ -66,28 +66,28 @@ function forum_uninstall() { */ function forum_schema() { $schema['forum'] = array( - 'description' => t('Stores the relationship of nodes to forum terms.'), + 'description' => 'Stores the relationship of nodes to forum terms.', 'fields' => array( 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid of the node.'), + 'description' => 'The {node}.nid of the node.', ), 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {node}.vid of the node.'), + 'description' => 'Primary Key: The {node}.vid of the node.', ), 'tid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {term_data}.tid of the forum term assigned to the node.'), + 'description' => 'The {term_data}.tid of the forum term assigned to the node.', ), ), 'indexes' => array( Index: modules/locale/locale.install =================================================================== RCS file: /cvs/drupal/drupal/modules/locale/locale.install,v retrieving revision 1.30 diff -u -p -r1.30 locale.install --- modules/locale/locale.install 14 Apr 2008 17:48:37 -0000 1.30 +++ modules/locale/locale.install 11 Nov 2008 21:34:04 -0000 @@ -226,80 +226,80 @@ function locale_uninstall() { */ function locale_schema() { $schema['languages'] = array( - 'description' => t('List of all available languages in the system.'), + 'description' => 'List of all available languages in the system.', 'fields' => array( 'language' => array( 'type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '', - 'description' => t("Language code, e.g. 'de' or 'en-US'."), + 'description' => "Language code, e.g. 'de' or 'en-US'.", ), 'name' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('Language name in English.'), + 'description' => 'Language name in English.', ), 'native' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('Native language name.'), + 'description' => 'Native language name.', ), 'direction' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Direction of language (Left-to-Right = 0, Right-to-Left = 1).'), + 'description' => 'Direction of language (Left-to-Right = 0, Right-to-Left = 1).', ), 'enabled' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Enabled flag (1 = Enabled, 0 = Disabled).'), + 'description' => 'Enabled flag (1 = Enabled, 0 = Disabled).', ), 'plurals' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Number of plural indexes in this language.'), + 'description' => 'Number of plural indexes in this language.', ), 'formula' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Plural formula in PHP code to evaluate to get plural indexes.'), + 'description' => 'Plural formula in PHP code to evaluate to get plural indexes.', ), 'domain' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Domain to use for this language.'), + 'description' => 'Domain to use for this language.', ), 'prefix' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Path prefix to use for this language.'), + 'description' => 'Path prefix to use for this language.', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Weight, used in lists of languages.'), + 'description' => 'Weight, used in lists of languages.', ), 'javascript' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', - 'description' => t('Location of JavaScript translation file.'), + 'description' => 'Location of JavaScript translation file.', ), ), 'primary key' => array('language'), @@ -309,39 +309,39 @@ function locale_schema() { ); $schema['locales_source'] = array( - 'description' => t('List of English source strings.'), + 'description' => 'List of English source strings.', 'fields' => array( 'lid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Unique identifier of this string.'), + 'description' => 'Unique identifier of this string.', ), 'location' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Drupal path in case of online discovered translations or file path in case of imported strings.'), + 'description' => 'Drupal path in case of online discovered translations or file path in case of imported strings.', ), 'textgroup' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => 'default', - 'description' => t('A module defined group of translations, see hook_locale().'), + 'description' => 'A module defined group of translations, see hook_locale().', ), 'source' => array( 'type' => 'text', 'mysql_type' => 'blob', 'not null' => TRUE, - 'description' => t('The original string in English.'), + 'description' => 'The original string in English.', ), 'version' => array( 'type' => 'varchar', 'length' => 20, 'not null' => TRUE, 'default' => 'none', - 'description' => t('Version of Drupal, where the string was last used (for locales optimization).'), + 'description' => 'Version of Drupal, where the string was last used (for locales optimization).', ), ), 'primary key' => array('lid'), @@ -351,38 +351,38 @@ function locale_schema() { ); $schema['locales_target'] = array( - 'description' => t('Stores translated versions of strings.'), + 'description' => 'Stores translated versions of strings.', 'fields' => array( 'lid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Source string ID. References {locales_source}.lid.'), + 'description' => 'Source string ID. References {locales_source}.lid.', ), 'translation' => array( 'type' => 'text', 'mysql_type' => 'blob', 'not null' => TRUE, - 'description' => t('Translation string value in this language.'), + 'description' => 'Translation string value in this language.', ), 'language' => array( 'type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '', - 'description' => t('Language code. References {languages}.language.'), + 'description' => 'Language code. References {languages}.language.', ), 'plid' => array( 'type' => 'int', 'not null' => TRUE, // This should be NULL for no referenced string, not zero. 'default' => 0, - 'description' => t('Parent lid (lid of the previous string in the plural chain) in case of plural strings. References {locales_source}.lid.'), + 'description' => 'Parent lid (lid of the previous string in the plural chain) in case of plural strings. References {locales_source}.lid.', ), 'plural' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Plural index number in case of plural strings.'), + 'description' => 'Plural index number in case of plural strings.', ), ), 'primary key' => array('language', 'lid', 'plural'), Index: modules/menu/menu.install =================================================================== RCS file: /cvs/drupal/drupal/modules/menu/menu.install,v retrieving revision 1.13 diff -u -p -r1.13 menu.install --- modules/menu/menu.install 18 Sep 2008 10:44:19 -0000 1.13 +++ modules/menu/menu.install 11 Nov 2008 21:34:04 -0000 @@ -28,26 +28,26 @@ function menu_uninstall() { */ function menu_schema() { $schema['menu_custom'] = array( - 'description' => t('Holds definitions for top-level custom menus (for example, Main menu).'), + 'description' => 'Holds definitions for top-level custom menus (for example, Main menu).', 'fields' => array( 'menu_name' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', - 'description' => t('Primary Key: Unique key for menu. This is used as a block delta so length is 32.'), + 'description' => 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.', ), 'title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Menu title; displayed at top of block.'), + 'description' => 'Menu title; displayed at top of block.', ), 'description' => array( 'type' => 'text', 'not null' => FALSE, - 'description' => t('Menu description.'), + 'description' => 'Menu description.', ), ), 'primary key' => array('menu_name'), Index: modules/node/node.install =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.install,v retrieving revision 1.7 diff -u -p -r1.7 node.install --- modules/node/node.install 8 Oct 2008 03:27:56 -0000 1.7 +++ modules/node/node.install 11 Nov 2008 21:34:04 -0000 @@ -6,99 +6,99 @@ */ function node_schema() { $schema['node'] = array( - 'description' => t('The base table for nodes.'), + 'description' => 'The base table for nodes.', 'fields' => array( 'nid' => array( - 'description' => t('The primary identifier for a node.'), + 'description' => 'The primary identifier for a node.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'vid' => array( - 'description' => t('The current {node_revisions}.vid version identifier.'), + 'description' => 'The current {node_revisions}.vid version identifier.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'type' => array( - 'description' => t('The {node_type}.type of this node.'), + 'description' => 'The {node_type}.type of this node.', 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', ), 'language' => array( - 'description' => t('The {languages}.language of this node.'), + 'description' => 'The {languages}.language of this node.', 'type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '', ), 'title' => array( - 'description' => t('The title of this node, always treated as non-markup plain text.'), + 'description' => 'The title of this node, always treated as non-markup plain text.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'uid' => array( - 'description' => t('The {users}.uid that owns this node; initially, this is the user that created it.'), + 'description' => 'The {users}.uid that owns this node; initially, this is the user that created it.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'status' => array( - 'description' => t('Boolean indicating whether the node is published (visible to non-administrators).'), + 'description' => 'Boolean indicating whether the node is published (visible to non-administrators).', 'type' => 'int', 'not null' => TRUE, 'default' => 1, ), 'created' => array( - 'description' => t('The Unix timestamp when the node was created.'), + 'description' => 'The Unix timestamp when the node was created.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'changed' => array( - 'description' => t('The Unix timestamp when the node was most recently saved.'), + 'description' => 'The Unix timestamp when the node was most recently saved.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'comment' => array( - 'description' => t('Whether comments are allowed on this node: 0 = no, 1 = read only, 2 = read/write.'), + 'description' => 'Whether comments are allowed on this node: 0 = no, 1 = read only, 2 = read/write.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'promote' => array( - 'description' => t('Boolean indicating whether the node should be displayed on the front page.'), + 'description' => 'Boolean indicating whether the node should be displayed on the front page.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'moderate' => array( - 'description' => t('Previously, a boolean indicating whether the node was "in moderation"; mostly no longer used.'), + 'description' => 'Previously, a boolean indicating whether the node was "in moderation"; mostly no longer used.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'sticky' => array( - 'description' => t('Boolean indicating whether the node should be displayed at the top of lists in which it appears.'), + 'description' => 'Boolean indicating whether the node should be displayed at the top of lists in which it appears.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'tnid' => array( - 'description' => t('The translation set id for this node, which equals the node id of the source post in each set.'), + 'description' => 'The translation set id for this node, which equals the node id of the source post in each set.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'translate' => array( - 'description' => t('A boolean indicating whether this translation page needs to be updated.'), + 'description' => 'A boolean indicating whether this translation page needs to be updated.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -123,31 +123,31 @@ function node_schema() { ); $schema['node_access'] = array( - 'description' => t('Identifies which realm/grant pairs a user must possess in order to view, update, or delete specific nodes.'), + 'description' => 'Identifies which realm/grant pairs a user must possess in order to view, update, or delete specific nodes.', 'fields' => array( 'nid' => array( - 'description' => t('The {node}.nid this record affects.'), + 'description' => 'The {node}.nid this record affects.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'gid' => array( - 'description' => t("The grant ID a user must possess in the specified realm to gain this row's privileges on the node."), + 'description' => "The grant ID a user must possess in the specified realm to gain this row's privileges on the node.", 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'realm' => array( - 'description' => t('The realm in which the user must possess the grant ID. Each node access node can define one or more realms.'), + 'description' => 'The realm in which the user must possess the grant ID. Each node access node can define one or more realms.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'grant_view' => array( - 'description' => t('Boolean indicating whether a user with the realm/grant pair can view this node.'), + 'description' => 'Boolean indicating whether a user with the realm/grant pair can view this node.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -155,7 +155,7 @@ function node_schema() { 'size' => 'tiny', ), 'grant_update' => array( - 'description' => t('Boolean indicating whether a user with the realm/grant pair can edit this node.'), + 'description' => 'Boolean indicating whether a user with the realm/grant pair can edit this node.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -163,7 +163,7 @@ function node_schema() { 'size' => 'tiny', ), 'grant_delete' => array( - 'description' => t('Boolean indicating whether a user with the realm/grant pair can delete this node.'), + 'description' => 'Boolean indicating whether a user with the realm/grant pair can delete this node.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -175,16 +175,16 @@ function node_schema() { ); $schema['node_counter'] = array( - 'description' => t('Access statistics for {node}s.'), + 'description' => 'Access statistics for {node}s.', 'fields' => array( 'nid' => array( - 'description' => t('The {node}.nid for these statistics.'), + 'description' => 'The {node}.nid for these statistics.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'totalcount' => array( - 'description' => t('The total number of times the {node} has been viewed.'), + 'description' => 'The total number of times the {node} has been viewed.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -192,7 +192,7 @@ function node_schema() { 'size' => 'big', ), 'daycount' => array( - 'description' => t('The total number of times the {node} has been viewed today.'), + 'description' => 'The total number of times the {node} has been viewed today.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -200,7 +200,7 @@ function node_schema() { 'size' => 'medium', ), 'timestamp' => array( - 'description' => t('The most recent time the {node} has been viewed.'), + 'description' => 'The most recent time the {node} has been viewed.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -211,60 +211,60 @@ function node_schema() { ); $schema['node_revisions'] = array( - 'description' => t('Stores information about each saved version of a {node}.'), + 'description' => 'Stores information about each saved version of a {node}.', 'fields' => array( 'nid' => array( - 'description' => t('The {node} this version belongs to.'), + 'description' => 'The {node} this version belongs to.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'vid' => array( - 'description' => t('The primary identifier for this version.'), + 'description' => 'The primary identifier for this version.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'uid' => array( - 'description' => t('The {users}.uid that created this version.'), + 'description' => 'The {users}.uid that created this version.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'title' => array( - 'description' => t('The title of this version.'), + 'description' => 'The title of this version.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'body' => array( - 'description' => t('The body of this version.'), + 'description' => 'The body of this version.', 'type' => 'text', 'not null' => TRUE, 'size' => 'big', ), 'teaser' => array( - 'description' => t('The teaser of this version.'), + 'description' => 'The teaser of this version.', 'type' => 'text', 'not null' => TRUE, 'size' => 'big', ), 'log' => array( - 'description' => t('The log entry explaining the changes in this version.'), + 'description' => 'The log entry explaining the changes in this version.', 'type' => 'text', 'not null' => TRUE, 'size' => 'big', ), 'timestamp' => array( - 'description' => t('A Unix timestamp indicating when this version was created.'), + 'description' => 'A Unix timestamp indicating when this version was created.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'format' => array( - 'description' => t("The input format used by this version's body."), + 'description' => "The input format used by this version's body.", 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -278,97 +278,97 @@ function node_schema() { ); $schema['node_type'] = array( - 'description' => t('Stores information about all defined {node} types.'), + 'description' => 'Stores information about all defined {node} types.', 'fields' => array( 'type' => array( - 'description' => t('The machine-readable name of this type.'), + 'description' => 'The machine-readable name of this type.', 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, ), 'name' => array( - 'description' => t('The human-readable name of this type.'), + 'description' => 'The human-readable name of this type.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'base' => array( - 'description' => t('The base string used to construct callbacks corresponding to this node type.'), + 'description' => 'The base string used to construct callbacks corresponding to this node type.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, ), 'description' => array( - 'description' => t('A brief description of this type.'), + 'description' => 'A brief description of this type.', 'type' => 'text', 'not null' => TRUE, 'size' => 'medium', ), 'help' => array( - 'description' => t('Help information shown to the user when creating a {node} of this type.'), + 'description' => 'Help information shown to the user when creating a {node} of this type.', 'type' => 'text', 'not null' => TRUE, 'size' => 'medium', ), 'has_title' => array( - 'description' => t('Boolean indicating whether this type uses the {node}.title field.'), + 'description' => 'Boolean indicating whether this type uses the {node}.title field.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'size' => 'tiny', ), 'title_label' => array( - 'description' => t('The label displayed for the title field on the edit form.'), + 'description' => 'The label displayed for the title field on the edit form.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'has_body' => array( - 'description' => t('Boolean indicating whether this type uses the {node_revisions}.body field.'), + 'description' => 'Boolean indicating whether this type uses the {node_revisions}.body field.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'size' => 'tiny', ), 'body_label' => array( - 'description' => t('The label displayed for the body field on the edit form.'), + 'description' => 'The label displayed for the body field on the edit form.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'min_word_count' => array( - 'description' => t('The minimum number of words the body must contain.'), + 'description' => 'The minimum number of words the body must contain.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'size' => 'small', ), 'custom' => array( - 'description' => t('A boolean indicating whether this type is defined by a module (FALSE) or by a user via a module like the Content Construction Kit (TRUE).'), + 'description' => 'A boolean indicating whether this type is defined by a module (FALSE) or by a user via a module like the Content Construction Kit (TRUE).', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', ), 'modified' => array( - 'description' => t('A boolean indicating whether this type has been modified by an administrator; currently not used in any way.'), + 'description' => 'A boolean indicating whether this type has been modified by an administrator; currently not used in any way.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', ), 'locked' => array( - 'description' => t('A boolean indicating whether the administrator can change the machine name of this type.'), + 'description' => 'A boolean indicating whether the administrator can change the machine name of this type.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', ), 'orig_type' => array( - 'description' => t('The original machine-readable name of this node type. This may be different from the current type name if the locked field is 0.'), + 'description' => 'The original machine-readable name of this node type. This may be different from the current type name if the locked field is 0.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, Index: modules/openid/openid.install =================================================================== RCS file: /cvs/drupal/drupal/modules/openid/openid.install,v retrieving revision 1.3 diff -u -p -r1.3 openid.install --- modules/openid/openid.install 10 Oct 2007 11:39:33 -0000 1.3 +++ modules/openid/openid.install 11 Nov 2008 21:34:04 -0000 @@ -22,45 +22,45 @@ function openid_uninstall() { */ function openid_schema() { $schema['openid_association'] = array( - 'description' => t('Stores temporary shared key association information for OpenID authentication.'), + 'description' => 'Stores temporary shared key association information for OpenID authentication.', 'fields' => array( 'idp_endpoint_uri' => array( 'type' => 'varchar', 'length' => 255, - 'description' => t('URI of the OpenID Provider endpoint.'), + 'description' => 'URI of the OpenID Provider endpoint.', ), 'assoc_handle' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, - 'description' => t('Primary Key: Used to refer to this association in subsequent messages.'), + 'description' => 'Primary Key: Used to refer to this association in subsequent messages.', ), 'assoc_type' => array( 'type' => 'varchar', 'length' => 32, - 'description' => t('The signature algorithm used: one of HMAC-SHA1 or HMAC-SHA256.'), + 'description' => 'The signature algorithm used: one of HMAC-SHA1 or HMAC-SHA256.', ), 'session_type' => array( 'type' => 'varchar', 'length' => 32, - 'description' => t('Valid association session types: "no-encryption", "DH-SHA1", and "DH-SHA256".'), + 'description' => 'Valid association session types: "no-encryption", "DH-SHA1", and "DH-SHA256".', ), 'mac_key' => array( 'type' => 'varchar', 'length' => 255, - 'description' => t('The MAC key (shared secret) for this association.'), + 'description' => 'The MAC key (shared secret) for this association.', ), 'created' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('UNIX timestamp for when the association was created.'), + 'description' => 'UNIX timestamp for when the association was created.', ), 'expires_in' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The lifetime, in seconds, of this association.'), + 'description' => 'The lifetime, in seconds, of this association.', ), ), 'primary key' => array('assoc_handle'), Index: modules/poll/poll.install =================================================================== RCS file: /cvs/drupal/drupal/modules/poll/poll.install,v retrieving revision 1.15 diff -u -p -r1.15 poll.install --- modules/poll/poll.install 15 May 2008 20:55:58 -0000 1.15 +++ modules/poll/poll.install 11 Nov 2008 21:34:04 -0000 @@ -22,67 +22,67 @@ function poll_uninstall() { */ function poll_schema() { $schema['poll'] = array( - 'description' => t('Stores poll-specific information for poll nodes.'), + 'description' => 'Stores poll-specific information for poll nodes.', 'fields' => array( 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t("The poll's {node}.nid."), + 'description' => "The poll's {node}.nid.", ), 'runtime' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The number of seconds past {node}.created during which the poll is open.'), + 'description' => 'The number of seconds past {node}.created during which the poll is open.', ), 'active' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Boolean indicating whether or not the poll is open.'), + 'description' => 'Boolean indicating whether or not the poll is open.', ), ), 'primary key' => array('nid'), ); $schema['poll_choices'] = array( - 'description' => t('Stores information about all choices for all {poll}s.'), + 'description' => 'Stores information about all choices for all {poll}s.', 'fields' => array( 'chid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('Unique identifier for a poll choice.'), + 'description' => 'Unique identifier for a poll choice.', ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid this choice belongs to.'), + 'description' => 'The {node}.nid this choice belongs to.', ), 'chtext' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('The text for this choice.'), + 'description' => 'The text for this choice.', ), 'chvotes' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The total number of votes this choice has received by all users.'), + 'description' => 'The total number of votes this choice has received by all users.', ), 'weight' => array( 'type' => 'int', 'size' => 'tiny', 'not null' => TRUE, 'default' => 0, - 'description' => t('The sort order of this choice among all choices for the same node.'), + 'description' => 'The sort order of this choice among all choices for the same node.', ), ), 'indexes' => array( @@ -92,33 +92,33 @@ function poll_schema() { ); $schema['poll_votes'] = array( - 'description' => t('Stores per-{users} votes for each {poll}.'), + 'description' => 'Stores per-{users} votes for each {poll}.', 'fields' => array( 'chid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t("The {users}'s vote for this poll."), + 'description' => "The {users}'s vote for this poll.", ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('The {poll} node this vote is for.'), + 'description' => 'The {poll} node this vote is for.', ), 'uid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {users}.uid this vote is from unless the voter was anonymous.'), + 'description' => 'The {users}.uid this vote is from unless the voter was anonymous.', ), 'hostname' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('The IP address this vote is from unless the voter was logged in.'), + 'description' => 'The IP address this vote is from unless the voter was logged in.', ), ), 'primary key' => array('nid', 'uid', 'hostname'), Index: modules/profile/profile.install =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.install,v retrieving revision 1.13 diff -u -p -r1.13 profile.install --- modules/profile/profile.install 15 Mar 2008 12:31:29 -0000 1.13 +++ modules/profile/profile.install 11 Nov 2008 21:34:04 -0000 @@ -24,88 +24,88 @@ function profile_uninstall() { */ function profile_schema() { $schema['profile_fields'] = array( - 'description' => t('Stores profile field information.'), + 'description' => 'Stores profile field information.', 'fields' => array( 'fid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique profile field ID.'), + 'description' => 'Primary Key: Unique profile field ID.', ), 'title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t('Title of the field shown to the end user.'), + 'description' => 'Title of the field shown to the end user.', ), 'name' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Internal name of the field used in the form HTML and URLs.'), + 'description' => 'Internal name of the field used in the form HTML and URLs.', ), 'explanation' => array( 'type' => 'text', 'not null' => FALSE, - 'description' => t('Explanation of the field to end users.'), + 'description' => 'Explanation of the field to end users.', ), 'category' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t('Profile category that the field will be grouped under.'), + 'description' => 'Profile category that the field will be grouped under.', ), 'page' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t("Title of page used for browsing by the field's value"), + 'description' => "Title of page used for browsing by the field's value", ), 'type' => array( 'type' => 'varchar', 'length' => 128, 'not null' => FALSE, - 'description' => t('Type of form field.'), + 'description' => 'Type of form field.', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Weight of field in relation to other profile fields.'), + 'description' => 'Weight of field in relation to other profile fields.', ), 'required' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether the user is required to enter a value. (0 = no, 1 = yes)'), + 'description' => 'Whether the user is required to enter a value. (0 = no, 1 = yes)', ), 'register' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether the field is visible in the user registration form. (1 = yes, 0 = no)'), + 'description' => 'Whether the field is visible in the user registration form. (1 = yes, 0 = no)', ), 'visibility' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('The level of visibility for the field. (0 = hidden, 1 = private, 2 = public on profile but not member list pages, 3 = public on profile and list pages)'), + 'description' => 'The level of visibility for the field. (0 = hidden, 1 = private, 2 = public on profile but not member list pages, 3 = public on profile and list pages)', ), 'autocomplete' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether form auto-completion is enabled. (0 = disabled, 1 = enabled)'), + 'description' => 'Whether form auto-completion is enabled. (0 = disabled, 1 = enabled)', ), 'options' => array( 'type' => 'text', 'not null' => FALSE, - 'description' => t('List of options to be used in a list selection field.'), + 'description' => 'List of options to be used in a list selection field.', ), ), 'indexes' => array( @@ -118,26 +118,26 @@ function profile_schema() { ); $schema['profile_values'] = array( - 'description' => t('Stores values for profile fields.'), + 'description' => 'Stores values for profile fields.', 'fields' => array( 'fid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {profile_fields}.fid of the field.'), + 'description' => 'The {profile_fields}.fid of the field.', ), 'uid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {users}.uid of the profile user.'), + 'description' => 'The {users}.uid of the profile user.', ), 'value' => array( 'type' => 'text', 'not null' => FALSE, - 'description' => t('The value for the field.'), + 'description' => 'The value for the field.', ), ), 'primary key' => array('uid', 'fid'), Index: modules/search/search.install =================================================================== RCS file: /cvs/drupal/drupal/modules/search/search.install,v retrieving revision 1.18 diff -u -p -r1.18 search.install --- modules/search/search.install 3 Nov 2008 06:33:20 -0000 1.18 +++ modules/search/search.install 11 Nov 2008 21:34:04 -0000 @@ -26,65 +26,65 @@ function search_uninstall() { */ function search_schema() { $schema['search_dataset'] = array( - 'description' => t('Stores items that will be searched.'), + 'description' => 'Stores items that will be searched.', 'fields' => array( 'sid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Search item ID, e.g. node ID for nodes.'), + 'description' => 'Search item ID, e.g. node ID for nodes.', ), 'type' => array( 'type' => 'varchar', 'length' => 16, 'not null' => FALSE, - 'description' => t('Type of item, e.g. node.'), + 'description' => 'Type of item, e.g. node.', ), 'data' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t('List of space-separated words from the item.'), + 'description' => 'List of space-separated words from the item.', ), 'reindex' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Set to force node reindexing.'), + 'description' => 'Set to force node reindexing.', ), ), 'primary key' => array('sid', 'type'), ); $schema['search_index'] = array( - 'description' => t('Stores the search index, associating words, items and scores.'), + 'description' => 'Stores the search index, associating words, items and scores.', 'fields' => array( 'word' => array( 'type' => 'varchar', 'length' => 50, 'not null' => TRUE, 'default' => '', - 'description' => t('The {search_total}.word that is associated with the search item.'), + 'description' => 'The {search_total}.word that is associated with the search item.', ), 'sid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {search_dataset}.sid of the searchable item to which the word belongs.'), + 'description' => 'The {search_dataset}.sid of the searchable item to which the word belongs.', ), 'type' => array( 'type' => 'varchar', 'length' => 16, 'not null' => FALSE, - 'description' => t('The {search_dataset}.type of the searchable item to which the word belongs.'), + 'description' => 'The {search_dataset}.type of the searchable item to which the word belongs.', ), 'score' => array( 'type' => 'float', 'not null' => FALSE, - 'description' => t('The numeric score of the word, higher being more important.'), + 'description' => 'The numeric score of the word, higher being more important.', ), ), 'indexes' => array( @@ -94,17 +94,17 @@ function search_schema() { ); $schema['search_total'] = array( - 'description' => t('Stores search totals for words.'), + 'description' => 'Stores search totals for words.', 'fields' => array( 'word' => array( - 'description' => t('Primary Key: Unique word in the search index.'), + 'description' => 'Primary Key: Unique word in the search index.', 'type' => 'varchar', 'length' => 50, 'not null' => TRUE, 'default' => '', ), 'count' => array( - 'description' => t("The count of the word in the index using Zipf's law to equalize the probability distribution."), + 'description' => "The count of the word in the index using Zipf's law to equalize the probability distribution.", 'type' => 'float', 'not null' => FALSE, ), @@ -113,34 +113,34 @@ function search_schema() { ); $schema['search_node_links'] = array( - 'description' => t('Stores items (like nodes) that link to other nodes, used to improve search scores for nodes that are frequently linked to.'), + 'description' => 'Stores items (like nodes) that link to other nodes, used to improve search scores for nodes that are frequently linked to.', 'fields' => array( 'sid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {search_dataset}.sid of the searchable item containing the link to the node.'), + 'description' => 'The {search_dataset}.sid of the searchable item containing the link to the node.', ), 'type' => array( 'type' => 'varchar', 'length' => 16, 'not null' => TRUE, 'default' => '', - 'description' => t('The {search_dataset}.type of the searchable item containing the link to the node.'), + 'description' => 'The {search_dataset}.type of the searchable item containing the link to the node.', ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid that this item links to.'), + 'description' => 'The {node}.nid that this item links to.', ), 'caption' => array( 'type' => 'text', 'size' => 'big', 'not null' => FALSE, - 'description' => t('The text used to link to the {node}.nid.'), + 'description' => 'The text used to link to the {node}.nid.', ), ), 'primary key' => array('sid', 'type', 'nid'), Index: modules/simpletest/simpletest.install =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/simpletest.install,v retrieving revision 1.13 diff -u -p -r1.13 simpletest.install --- modules/simpletest/simpletest.install 9 Nov 2008 05:50:48 -0000 1.13 +++ modules/simpletest/simpletest.install 11 Nov 2008 21:41:06 -0000 @@ -132,64 +132,64 @@ function simpletest_requirements($phase) function simpletest_schema() { $schema['simpletest'] = array( - 'description' => t('Stores simpletest messages'), + 'description' => 'Stores simpletest messages', 'fields' => array( 'message_id' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique simpletest message ID.'), + 'description' => 'Primary Key: Unique simpletest message ID.', ), 'test_id' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Test ID, messages belonging to the same ID are reported together'), + 'description' => 'Test ID, messages belonging to the same ID are reported together', ), 'test_class' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The name of the class that created this message.'), + 'description' => 'The name of the class that created this message.', ), 'status' => array( 'type' => 'varchar', 'length' => 9, 'not null' => TRUE, 'default' => '', - 'description' => t('Message status. Core understands pass, fail, exception.'), + 'description' => 'Message status. Core understands pass, fail, exception.', ), 'message' => array( 'type' => 'text', 'not null' => TRUE, - 'description' => t('The message itself.'), + 'description' => 'The message itself.', ), 'message_group' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The message group this message belongs to. For example: warning, browser, user.'), + 'description' => 'The message group this message belongs to. For example: warning, browser, user.', ), 'function' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Name of the assertion function or method that created this message.'), + 'description' => 'Name of the assertion function or method that created this message.', ), 'line' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Line number on which the function is called.'), + 'description' => 'Line number on which the function is called.', ), 'file' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Name of the file where the function is called.'), + 'description' => 'Name of the file where the function is called.', ), ), 'primary key' => array('message_id'), @@ -198,13 +198,13 @@ function simpletest_schema() { ), ); $schema['simpletest_test_id'] = array( - 'description' => t('Stores simpletest test IDs, used to auto-incrament the test ID so that a fresh test ID is used.'), + 'description' => 'Stores simpletest test IDs, used to auto-incrament the test ID so that a fresh test ID is used.', 'fields' => array( 'test_id' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique simpletest ID used to group test results together. Each time a set of tests - are run a new test ID is used.'), + 'description' => 'Primary Key: Unique simpletest ID used to group test results together. Each time a set of tests + are run a new test ID is used.', ), ), 'primary key' => array('test_id'), Index: modules/simpletest/tests/taxonomy_test.install =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/taxonomy_test.install,v retrieving revision 1.1 diff -u -p -r1.1 taxonomy_test.install --- modules/simpletest/tests/taxonomy_test.install 2 Nov 2008 14:42:45 -0000 1.1 +++ modules/simpletest/tests/taxonomy_test.install 11 Nov 2008 21:34:04 -0000 @@ -6,26 +6,26 @@ */ function taxonomy_test_schema() { $schema['term_antonym'] = array( - 'description' => t('Stores term antonyms.'), + 'description' => 'Stores term antonyms.', 'fields' => array( 'taid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique term antonym ID.'), + 'description' => 'Primary Key: Unique term antonym ID.', ), 'tid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {term_data}.tid of the term.'), + 'description' => 'The {term_data}.tid of the term.', ), 'name' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The name of the antonym.'), + 'description' => 'The name of the antonym.', ), ), 'indexes' => array( Index: modules/statistics/statistics.install =================================================================== RCS file: /cvs/drupal/drupal/modules/statistics/statistics.install,v retrieving revision 1.13 diff -u -p -r1.13 statistics.install --- modules/statistics/statistics.install 18 Dec 2007 12:59:22 -0000 1.13 +++ modules/statistics/statistics.install 11 Nov 2008 21:34:04 -0000 @@ -49,64 +49,64 @@ function statistics_uninstall() { */ function statistics_schema() { $schema['accesslog'] = array( - 'description' => t('Stores site access information for statistics.'), + 'description' => 'Stores site access information for statistics.', 'fields' => array( 'aid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique accesslog ID.'), + 'description' => 'Primary Key: Unique accesslog ID.', ), 'sid' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('Browser session ID of user that visited page.'), + 'description' => 'Browser session ID of user that visited page.', ), 'title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t('Title of page visited.'), + 'description' => 'Title of page visited.', ), 'path' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t('Internal path to page visited (relative to Drupal root.)'), + 'description' => 'Internal path to page visited (relative to Drupal root.)', ), 'url' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, - 'description' => t('Referrer URI.'), + 'description' => 'Referrer URI.', ), 'hostname' => array( 'type' => 'varchar', 'length' => 128, 'not null' => FALSE, - 'description' => t('Hostname of user that visited the page.'), + 'description' => 'Hostname of user that visited the page.', ), 'uid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => FALSE, 'default' => 0, - 'description' => t('User {users}.uid that visited the page.'), + 'description' => 'User {users}.uid that visited the page.', ), 'timer' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Time in milliseconds that the page took to load.'), + 'description' => 'Time in milliseconds that the page took to load.', ), 'timestamp' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Timestamp of when the page was visited.'), + 'description' => 'Timestamp of when the page was visited.', ), ), 'indexes' => array( Index: modules/system/system.install =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.install,v retrieving revision 1.278 diff -u -p -r1.278 system.install --- modules/system/system.install 5 Nov 2008 14:28:04 -0000 1.278 +++ modules/system/system.install 11 Nov 2008 21:34:04 -0000 @@ -425,17 +425,17 @@ function system_schema() { // some database drivers, e.g. Oracle and DB2, will require variable_get() // and variable_set() for overcoming some database specific limitations. $schema['variable'] = array( - 'description' => t('Named variable/value pairs created by Drupal core or any other module or theme. All variables are cached in memory at the start of every Drupal request so developers should not be careless about what is stored here.'), + 'description' => 'Named variable/value pairs created by Drupal core or any other module or theme. All variables are cached in memory at the start of every Drupal request so developers should not be careless about what is stored here.', 'fields' => array( 'name' => array( - 'description' => t('The name of the variable.'), + 'description' => 'The name of the variable.', 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', ), 'value' => array( - 'description' => t('The value of the variable.'), + 'description' => 'The value of the variable.', 'type' => 'text', 'not null' => TRUE, 'size' => 'big', @@ -445,37 +445,37 @@ function system_schema() { ); $schema['actions'] = array( - 'description' => t('Stores action information.'), + 'description' => 'Stores action information.', 'fields' => array( 'aid' => array( - 'description' => t('Primary Key: Unique actions ID.'), + 'description' => 'Primary Key: Unique actions ID.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '0', ), 'type' => array( - 'description' => t('The object that that action acts on (node, user, comment, system or custom types.)'), + 'description' => 'The object that that action acts on (node, user, comment, system or custom types.)', 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', ), 'callback' => array( - 'description' => t('The callback function that executes when the action runs.'), + 'description' => 'The callback function that executes when the action runs.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'parameters' => array( - 'description' => t('Parameters to be passed to the callback function.'), + 'description' => 'Parameters to be passed to the callback function.', 'type' => 'text', 'not null' => TRUE, 'size' => 'big', ), 'description' => array( - 'description' => t('Description of the action.'), + 'description' => 'Description of the action.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, @@ -486,10 +486,10 @@ function system_schema() { ); $schema['actions_aid'] = array( - 'description' => t('Stores action IDs for non-default actions.'), + 'description' => 'Stores action IDs for non-default actions.', 'fields' => array( 'aid' => array( - 'description' => t('Primary Key: Unique actions ID.'), + 'description' => 'Primary Key: Unique actions ID.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, @@ -499,27 +499,27 @@ function system_schema() { ); $schema['batch'] = array( - 'description' => t('Stores details about batches (processes that run in multiple HTTP requests).'), + 'description' => 'Stores details about batches (processes that run in multiple HTTP requests).', 'fields' => array( 'bid' => array( - 'description' => t('Primary Key: Unique batch ID.'), + 'description' => 'Primary Key: Unique batch ID.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'token' => array( - 'description' => t("A string token generated against the current user's session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it."), + 'description' => "A string token generated against the current user's session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it.", 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, ), 'timestamp' => array( - 'description' => t('A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.'), + 'description' => 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.', 'type' => 'int', 'not null' => TRUE, ), 'batch' => array( - 'description' => t('A serialized array containing the processing data for the batch.'), + 'description' => 'A serialized array containing the processing data for the batch.', 'type' => 'text', 'not null' => FALSE, 'size' => 'big', @@ -532,16 +532,16 @@ function system_schema() { ); $schema['blocked_ips'] = array( - 'description' => t('Stores blocked IP addresses.'), + 'description' => 'Stores blocked IP addresses.', 'fields' => array( 'iid' => array( - 'description' => t('Primary Key: unique ID for IP addresses.'), + 'description' => 'Primary Key: unique ID for IP addresses.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'ip' => array( - 'description' => t('IP address'), + 'description' => 'IP address', 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, @@ -555,40 +555,40 @@ function system_schema() { ); $schema['cache'] = array( - 'description' => t('Generic cache table for caching things not separated out into their own tables. Contributed modules may also use this to store cached items.'), + 'description' => 'Generic cache table for caching things not separated out into their own tables. Contributed modules may also use this to store cached items.', 'fields' => array( 'cid' => array( - 'description' => t('Primary Key: Unique cache ID.'), + 'description' => 'Primary Key: Unique cache ID.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'data' => array( - 'description' => t('A collection of data to cache.'), + 'description' => 'A collection of data to cache.', 'type' => 'blob', 'not null' => FALSE, 'size' => 'big', ), 'expire' => array( - 'description' => t('A Unix timestamp indicating when the cache entry should expire, or 0 for never.'), + 'description' => 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'created' => array( - 'description' => t('A Unix timestamp indicating when the cache entry was created.'), + 'description' => 'A Unix timestamp indicating when the cache entry was created.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'headers' => array( - 'description' => t('Any custom HTTP headers to be added to cached data.'), + 'description' => 'Any custom HTTP headers to be added to cached data.', 'type' => 'text', 'not null' => FALSE, ), 'serialized' => array( - 'description' => t('A flag to indicate whether content is serialized (1) or not (0).'), + 'description' => 'A flag to indicate whether content is serialized (1) or not (0).', 'type' => 'int', 'size' => 'small', 'not null' => TRUE, @@ -602,66 +602,66 @@ function system_schema() { ); $schema['cache_form'] = $schema['cache']; - $schema['cache_form']['description'] = t('Cache table for the form system to store recently built forms and their storage data, to be used in subsequent page requests.'); + $schema['cache_form']['description'] = 'Cache table for the form system to store recently built forms and their storage data, to be used in subsequent page requests.'; $schema['cache_page'] = $schema['cache']; - $schema['cache_page']['description'] = t('Cache table used to store compressed pages for anonymous users, if page caching is enabled.'); + $schema['cache_page']['description'] = 'Cache table used to store compressed pages for anonymous users, if page caching is enabled.'; $schema['cache_menu'] = $schema['cache']; - $schema['cache_menu']['description'] = t('Cache table for the menu system to store router information as well as generated link trees for various menu/page/user combinations.'); + $schema['cache_menu']['description'] = 'Cache table for the menu system to store router information as well as generated link trees for various menu/page/user combinations.'; $schema['cache_registry'] = $schema['cache']; - $schema['cache_registry']['description'] = t('Cache table for the code registry system to remember what code files need to be loaded on any given page.'); + $schema['cache_registry']['description'] = 'Cache table for the code registry system to remember what code files need to be loaded on any given page.'; $schema['files'] = array( - 'description' => t('Stores information for uploaded files.'), + 'description' => 'Stores information for uploaded files.', 'fields' => array( 'fid' => array( - 'description' => t('File ID.'), + 'description' => 'File ID.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'uid' => array( - 'description' => t('The {users}.uid of the user who is associated with the file.'), + 'description' => 'The {users}.uid of the user who is associated with the file.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'filename' => array( - 'description' => t('Name of the file with no path components. This may differ from the basename of the filepath if the file is renamed to avoid overwriting an existing file.'), + 'description' => 'Name of the file with no path components. This may differ from the basename of the filepath if the file is renamed to avoid overwriting an existing file.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'filepath' => array( - 'description' => t('Path of the file relative to Drupal root.'), + 'description' => 'Path of the file relative to Drupal root.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'filemime' => array( - 'description' => t("The file's MIME type."), + 'description' => "The file's MIME type.", 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'filesize' => array( - 'description' => t('The size of the file in bytes.'), + 'description' => 'The size of the file in bytes.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'status' => array( - 'description' => t('A bitmapped field indicating the status of the file the least sigifigant bit indicates temporary (1) or permanent (0). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.'), + 'description' => 'A bitmapped field indicating the status of the file the least sigifigant bit indicates temporary (1) or permanent (0). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'timestamp' => array( - 'description' => t('UNIX timestamp for when the file was added.'), + 'description' => 'UNIX timestamp for when the file was added.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -677,29 +677,29 @@ function system_schema() { ); $schema['flood'] = array( - 'description' => t('Flood controls the threshold of events, such as the number of contact attempts.'), + 'description' => 'Flood controls the threshold of events, such as the number of contact attempts.', 'fields' => array( 'fid' => array( - 'description' => t('Unique flood event ID.'), + 'description' => 'Unique flood event ID.', 'type' => 'serial', 'not null' => TRUE, ), 'event' => array( - 'description' => t('Name of event (e.g. contact).'), + 'description' => 'Name of event (e.g. contact).', 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', ), 'hostname' => array( - 'description' => t('Hostname of the visitor.'), + 'description' => 'Hostname of the visitor.', 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', ), 'timestamp' => array( - 'description' => t('Timestamp of the event.'), + 'description' => 'Timestamp of the event.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -712,22 +712,22 @@ function system_schema() { ); $schema['history'] = array( - 'description' => t('A record of which {users} have read which {node}s.'), + 'description' => 'A record of which {users} have read which {node}s.', 'fields' => array( 'uid' => array( - 'description' => t('The {users}.uid that read the {node} nid.'), + 'description' => 'The {users}.uid that read the {node} nid.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'nid' => array( - 'description' => t('The {node}.nid that was read.'), + 'description' => 'The {node}.nid that was read.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'timestamp' => array( - 'description' => t('The Unix timestamp at which the read occurred.'), + 'description' => 'The Unix timestamp at which the read occurred.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -739,124 +739,124 @@ function system_schema() { ), ); $schema['menu_router'] = array( - 'description' => t('Maps paths to various callbacks (access, page and title)'), + 'description' => 'Maps paths to various callbacks (access, page and title)', 'fields' => array( 'path' => array( - 'description' => t('Primary Key: the Drupal path this entry describes'), + 'description' => 'Primary Key: the Drupal path this entry describes', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'load_functions' => array( - 'description' => t('A serialized array of function names (like node_load) to be called to load an object corresponding to a part of the current path.'), + 'description' => 'A serialized array of function names (like node_load) to be called to load an object corresponding to a part of the current path.', 'type' => 'text', 'not null' => TRUE, ), 'to_arg_functions' => array( - 'description' => t('A serialized array of function names (like user_uid_optional_to_arg) to be called to replace a part of the router path with another string.'), + 'description' => 'A serialized array of function names (like user_uid_optional_to_arg) to be called to replace a part of the router path with another string.', 'type' => 'text', 'not null' => TRUE, ), 'access_callback' => array( - 'description' => t('The callback which determines the access to this router path. Defaults to user_access.'), + 'description' => 'The callback which determines the access to this router path. Defaults to user_access.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'access_arguments' => array( - 'description' => t('A serialized array of arguments for the access callback.'), + 'description' => 'A serialized array of arguments for the access callback.', 'type' => 'text', 'not null' => FALSE, ), 'page_callback' => array( - 'description' => t('The name of the function that renders the page.'), + 'description' => 'The name of the function that renders the page.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'page_arguments' => array( - 'description' => t('A serialized array of arguments for the page callback.'), + 'description' => 'A serialized array of arguments for the page callback.', 'type' => 'text', 'not null' => FALSE, ), 'fit' => array( - 'description' => t('A numeric representation of how specific the path is.'), + 'description' => 'A numeric representation of how specific the path is.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'number_parts' => array( - 'description' => t('Number of parts in this router path.'), + 'description' => 'Number of parts in this router path.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small', ), 'tab_parent' => array( - 'description' => t('Only for local tasks (tabs) - the router path of the parent page (which may also be a local task).'), + 'description' => 'Only for local tasks (tabs) - the router path of the parent page (which may also be a local task).', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'tab_root' => array( - 'description' => t('Router path of the closest non-tab parent page. For pages that are not local tasks, this will be the same as the path.'), + 'description' => 'Router path of the closest non-tab parent page. For pages that are not local tasks, this will be the same as the path.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'title' => array( - 'description' => t('The title for the current page, or the title for the tab if this is a local task.'), + 'description' => 'The title for the current page, or the title for the tab if this is a local task.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'title_callback' => array( - 'description' => t('A function which will alter the title. Defaults to t()'), + 'description' => 'A function which will alter the title. Defaults to t()', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'title_arguments' => array( - 'description' => t('A serialized array of arguments for the title callback. If empty, the title will be used as the sole argument for the title callback.'), + 'description' => 'A serialized array of arguments for the title callback. If empty, the title will be used as the sole argument for the title callback.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'type' => array( - 'description' => t('Numeric representation of the type of the menu item, like MENU_LOCAL_TASK.'), + 'description' => 'Numeric representation of the type of the menu item, like MENU_LOCAL_TASK.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'block_callback' => array( - 'description' => t('Name of a function used to render the block on the system administration page for this item.'), + 'description' => 'Name of a function used to render the block on the system administration page for this item.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'description' => array( - 'description' => t('A description of this item.'), + 'description' => 'A description of this item.', 'type' => 'text', 'not null' => TRUE, ), 'position' => array( - 'description' => t('The position of the block (left or right) on the system administration page for this item.'), + 'description' => 'The position of the block (left or right) on the system administration page for this item.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'weight' => array( - 'description' => t('Weight of the element. Lighter weights are higher up, heavier weights go down.'), + 'description' => 'Weight of the element. Lighter weights are higher up, heavier weights go down.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -870,174 +870,174 @@ function system_schema() { ); $schema['menu_links'] = array( - 'description' => t('Contains the individual links within a menu.'), + 'description' => 'Contains the individual links within a menu.', 'fields' => array( 'menu_name' => array( - 'description' => t("The menu name. All links with the same menu name (such as 'navigation') are part of the same menu."), + 'description' => "The menu name. All links with the same menu name (such as 'navigation') are part of the same menu.", 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', ), 'mlid' => array( - 'description' => t('The menu link ID (mlid) is the integer primary key.'), + 'description' => 'The menu link ID (mlid) is the integer primary key.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'plid' => array( - 'description' => t('The parent link ID (plid) is the mlid of the link above in the hierarchy, or zero if the link is at the top level in its menu.'), + 'description' => 'The parent link ID (plid) is the mlid of the link above in the hierarchy, or zero if the link is at the top level in its menu.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'link_path' => array( - 'description' => t('The Drupal path or external path this link points to.'), + 'description' => 'The Drupal path or external path this link points to.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'router_path' => array( - 'description' => t('For links corresponding to a Drupal path (external = 0), this connects the link to a {menu_router}.path for joins.'), + 'description' => 'For links corresponding to a Drupal path (external = 0), this connects the link to a {menu_router}.path for joins.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'link_title' => array( - 'description' => t('The text displayed for the link, which may be modified by a title callback stored in {menu_router}.'), + 'description' => 'The text displayed for the link, which may be modified by a title callback stored in {menu_router}.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'options' => array( - 'description' => t('A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.'), + 'description' => 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.', 'type' => 'text', 'not null' => FALSE, ), 'module' => array( - 'description' => t('The name of the module that generated this link.'), + 'description' => 'The name of the module that generated this link.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => 'system', ), 'hidden' => array( - 'description' => t('A flag for whether the link should be rendered in menus. (1 = a disabled menu item that may be shown on admin screens, -1 = a menu callback, 0 = a normal, visible link)'), + 'description' => 'A flag for whether the link should be rendered in menus. (1 = a disabled menu item that may be shown on admin screens, -1 = a menu callback, 0 = a normal, visible link)', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small', ), 'external' => array( - 'description' => t('A flag to indicate if the link points to a full URL starting with a protocol, like http:// (1 = external, 0 = internal).'), + 'description' => 'A flag to indicate if the link points to a full URL starting with a protocol, like http:// (1 = external, 0 = internal).', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small', ), 'has_children' => array( - 'description' => t('Flag indicating whether any links have this link as a parent (1 = children exist, 0 = no children).'), + 'description' => 'Flag indicating whether any links have this link as a parent (1 = children exist, 0 = no children).', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small', ), 'expanded' => array( - 'description' => t('Flag for whether this link should be rendered as expanded in menus - expanded links always have their child links displayed, instead of only when the link is in the active trail (1 = expanded, 0 = not expanded)'), + 'description' => 'Flag for whether this link should be rendered as expanded in menus - expanded links always have their child links displayed, instead of only when the link is in the active trail (1 = expanded, 0 = not expanded)', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small', ), 'weight' => array( - 'description' => t('Link weight among links in the same menu at the same depth.'), + 'description' => 'Link weight among links in the same menu at the same depth.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'depth' => array( - 'description' => t('The depth relative to the top level. A link with plid == 0 will have depth == 1.'), + 'description' => 'The depth relative to the top level. A link with plid == 0 will have depth == 1.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small', ), 'customized' => array( - 'description' => t('A flag to indicate that the user has manually created or edited the link (1 = customized, 0 = not customized).'), + 'description' => 'A flag to indicate that the user has manually created or edited the link (1 = customized, 0 = not customized).', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small', ), 'p1' => array( - 'description' => t('The first mlid in the materialized path. If N = depth, then pN must equal the mlid. If depth > 1 then p(N-1) must equal the plid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.'), + 'description' => 'The first mlid in the materialized path. If N = depth, then pN must equal the mlid. If depth > 1 then p(N-1) must equal the plid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p2' => array( - 'description' => t('The second mlid in the materialized path. See p1.'), + 'description' => 'The second mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p3' => array( - 'description' => t('The third mlid in the materialized path. See p1.'), + 'description' => 'The third mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p4' => array( - 'description' => t('The fourth mlid in the materialized path. See p1.'), + 'description' => 'The fourth mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p5' => array( - 'description' => t('The fifth mlid in the materialized path. See p1.'), + 'description' => 'The fifth mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p6' => array( - 'description' => t('The sixth mlid in the materialized path. See p1.'), + 'description' => 'The sixth mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p7' => array( - 'description' => t('The seventh mlid in the materialized path. See p1.'), + 'description' => 'The seventh mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p8' => array( - 'description' => t('The eighth mlid in the materialized path. See p1.'), + 'description' => 'The eighth mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'p9' => array( - 'description' => t('The ninth mlid in the materialized path. See p1.'), + 'description' => 'The ninth mlid in the materialized path. See p1.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'updated' => array( - 'description' => t('Flag that indicates that this link was generated during the update from Drupal 5.'), + 'description' => 'Flag that indicates that this link was generated during the update from Drupal 5.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -1054,44 +1054,44 @@ function system_schema() { ); $schema['registry'] = array( - 'description' => t("Each record is a function, class, or interface name and the file it is in."), + 'description' => "Each record is a function, class, or interface name and the file it is in.", 'fields' => array( 'name' => array( - 'description' => t('The name of the function, class, or interface.'), + 'description' => 'The name of the function, class, or interface.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'type' => array( - 'description' => t('Either function or class or interface.'), + 'description' => 'Either function or class or interface.', 'type' => 'varchar', 'length' => 9, 'not null' => TRUE, 'default' => '', ), 'filename' => array( - 'description' => t('Name of the file.'), + 'description' => 'Name of the file.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, ), 'module' => array( - 'description' => t('Name of the module the file belongs to.'), + 'description' => 'Name of the module the file belongs to.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '' ), 'suffix' => array( - 'description' => t("The part of the function name after the module, which is the hook this function implements, if any."), + 'description' => "The part of the function name after the module, which is the hook this function implements, if any.", 'type' => 'varchar', 'length' => 68, 'not null' => TRUE, 'default' => '' ), 'weight' => array( - 'description' => t("The order in which this module's hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name."), + 'description' => "The order in which this module's hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.", 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -1104,16 +1104,16 @@ function system_schema() { ); $schema['registry_file'] = array( - 'description' => t("Files parsed to build the registry."), + 'description' => "Files parsed to build the registry.", 'fields' => array( 'filename' => array( - 'description' => t('Path to the file.'), + 'description' => 'Path to the file.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, ), 'md5' => array( - 'description' => t("Md5 hash of the file's contents when last parsed."), + 'description' => "Md5 hash of the file's contents when last parsed.", 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, @@ -1123,42 +1123,42 @@ function system_schema() { ); $schema['sessions'] = array( - 'description' => t("Drupal's session handlers read and write into the sessions table. Each record represents a user session, either anonymous or authenticated."), + 'description' => "Drupal's session handlers read and write into the sessions table. Each record represents a user session, either anonymous or authenticated.", 'fields' => array( 'uid' => array( - 'description' => t('The {users}.uid corresponding to a session, or 0 for anonymous user.'), + 'description' => 'The {users}.uid corresponding to a session, or 0 for anonymous user.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, ), 'sid' => array( - 'description' => t("Primary key: A session ID. The value is generated by PHP's Session API."), + 'description' => "Primary key: A session ID. The value is generated by PHP's Session API.", 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', ), 'hostname' => array( - 'description' => t('The IP address that last used this session ID (sid).'), + 'description' => 'The IP address that last used this session ID (sid).', 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', ), 'timestamp' => array( - 'description' => t('The Unix timestamp when this session last requested a page. Old records are purged by PHP automatically.'), + 'description' => 'The Unix timestamp when this session last requested a page. Old records are purged by PHP automatically.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'cache' => array( - 'description' => t("The time of this user's last post. This is used when the site has specified a minimum_cache_lifetime. See cache_get()."), + 'description' => "The time of this user's last post. This is used when the site has specified a minimum_cache_lifetime. See cache_get().", 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'session' => array( - 'description' => t('The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Drupal loads $_SESSION from here at the start of each request and saves it at the end.'), + 'description' => 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Drupal loads $_SESSION from here at the start of each request and saves it at the end.', 'type' => 'text', 'not null' => FALSE, 'size' => 'big', @@ -1172,70 +1172,70 @@ function system_schema() { ); $schema['system'] = array( - 'description' => t("A list of all modules, themes, and theme engines that are or have been installed in Drupal's file system."), + 'description' => "A list of all modules, themes, and theme engines that are or have been installed in Drupal's file system.", 'fields' => array( 'filename' => array( - 'description' => t('The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.'), + 'description' => 'The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'name' => array( - 'description' => t('The name of the item; e.g. node.'), + 'description' => 'The name of the item; e.g. node.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'type' => array( - 'description' => t('The type of the item, either module, theme, or theme_engine.'), + 'description' => 'The type of the item, either module, theme, or theme_engine.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'owner' => array( - 'description' => t("A theme's 'parent' . Can be either a theme or an engine."), + 'description' => "A theme's 'parent' . Can be either a theme or an engine.", 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'status' => array( - 'description' => t('Boolean indicating whether or not this item is enabled.'), + 'description' => 'Boolean indicating whether or not this item is enabled.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'throttle' => array( - 'description' => t('Boolean indicating whether this item is disabled when the throttle.module disables throttleable items.'), + 'description' => 'Boolean indicating whether this item is disabled when the throttle.module disables throttleable items.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', ), 'bootstrap' => array( - 'description' => t("Boolean indicating whether this module is loaded during Drupal's early bootstrapping phase (e.g. even before the page cache is consulted)."), + 'description' => "Boolean indicating whether this module is loaded during Drupal's early bootstrapping phase (e.g. even before the page cache is consulted).", 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'schema_version' => array( - 'description' => t("The module's database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module's hook_update_N() function that has either been run or existed when the module was first installed."), + 'description' => "The module's database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module's hook_update_N() function that has either been run or existed when the module was first installed.", 'type' => 'int', 'not null' => TRUE, 'default' => -1, 'size' => 'small', ), 'weight' => array( - 'description' => t("The order in which this module's hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name."), + 'description' => "The order in which this module's hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.", 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'info' => array( - 'description' => t("A serialized array containing information from the module's .info file; keys can include name, description, package, version, core, dependencies, dependents, and php."), + 'description' => "A serialized array containing information from the module's .info file; keys can include name, description, package, version, core, dependencies, dependents, and php.", 'type' => 'text', 'not null' => FALSE, ), @@ -1248,30 +1248,30 @@ function system_schema() { ); $schema['url_alias'] = array( - 'description' => t('A list of URL aliases for Drupal paths; a user may visit either the source or destination path.'), + 'description' => 'A list of URL aliases for Drupal paths; a user may visit either the source or destination path.', 'fields' => array( 'pid' => array( - 'description' => t('A unique path alias identifier.'), + 'description' => 'A unique path alias identifier.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'src' => array( - 'description' => t('The Drupal path this alias is for; e.g. node/12.'), + 'description' => 'The Drupal path this alias is for; e.g. node/12.', 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', ), 'dst' => array( - 'description' => t('The alias for this path; e.g. title-of-the-story.'), + 'description' => 'The alias for this path; e.g. title-of-the-story.', 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', ), 'language' => array( - 'description' => t('The language this alias is for; if blank, the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.'), + 'description' => 'The language this alias is for; if blank, the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.', 'type' => 'varchar', 'length' => 12, 'not null' => TRUE, @@ -2763,16 +2763,16 @@ function system_update_7001() { function system_update_7002() { $ret = array(); $schema['blocked_ips'] = array( - 'description' => t('Stores blocked IP addresses.'), + 'description' => 'Stores blocked IP addresses.', 'fields' => array( 'iid' => array( - 'description' => t('Primary Key: unique ID for IP addresses.'), + 'description' => 'Primary Key: unique ID for IP addresses.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'ip' => array( - 'description' => t('IP address'), + 'description' => 'IP address', 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, Index: modules/taxonomy/taxonomy.install =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.install,v retrieving revision 1.7 diff -u -p -r1.7 taxonomy.install --- modules/taxonomy/taxonomy.install 8 Jan 2008 07:46:41 -0000 1.7 +++ modules/taxonomy/taxonomy.install 11 Nov 2008 21:34:04 -0000 @@ -6,40 +6,40 @@ */ function taxonomy_schema() { $schema['term_data'] = array( - 'description' => t('Stores term information.'), + 'description' => 'Stores term information.', 'fields' => array( 'tid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('Primary Key: Unique term ID.'), + 'description' => 'Primary Key: Unique term ID.', ), 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {vocabulary}.vid of the vocabulary to which the term is assigned.'), + 'description' => 'The {vocabulary}.vid of the vocabulary to which the term is assigned.', ), 'name' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The term name.'), + 'description' => 'The term name.', ), 'description' => array( 'type' => 'text', 'not null' => FALSE, 'size' => 'big', - 'description' => t('A description of the term.'), + 'description' => 'A description of the term.', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('The weight of this term in relation to other terms.'), + 'description' => 'The weight of this term in relation to other terms.', ), ), 'primary key' => array('tid'), @@ -50,21 +50,21 @@ function taxonomy_schema() { ); $schema['term_hierarchy'] = array( - 'description' => t('Stores the hierarchical relationship between terms.'), + 'description' => 'Stores the hierarchical relationship between terms.', 'fields' => array( 'tid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {term_data}.tid of the term.'), + 'description' => 'Primary Key: The {term_data}.tid of the term.', ), 'parent' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t("Primary Key: The {term_data}.tid of the term's parent. 0 indicates no parent."), + 'description' => "Primary Key: The {term_data}.tid of the term's parent. 0 indicates no parent.", ), ), 'indexes' => array( @@ -74,28 +74,28 @@ function taxonomy_schema() { ); $schema['term_node'] = array( - 'description' => t('Stores the relationship of terms to nodes.'), + 'description' => 'Stores the relationship of terms to nodes.', 'fields' => array( 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {node}.nid of the node.'), + 'description' => 'Primary Key: The {node}.nid of the node.', ), 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {node}.vid of the node.'), + 'description' => 'Primary Key: The {node}.vid of the node.', ), 'tid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {term_data}.tid of a term assigned to the node.'), + 'description' => 'Primary Key: The {term_data}.tid of a term assigned to the node.', ), ), 'indexes' => array( @@ -106,26 +106,26 @@ function taxonomy_schema() { ); $schema['term_relation'] = array( - 'description' => t('Stores non-hierarchical relationships between terms.'), + 'description' => 'Stores non-hierarchical relationships between terms.', 'fields' => array( 'trid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique term relation ID.'), + 'description' => 'Primary Key: Unique term relation ID.', ), 'tid1' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {term_data}.tid of the first term in a relationship.'), + 'description' => 'The {term_data}.tid of the first term in a relationship.', ), 'tid2' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {term_data}.tid of the second term in a relationship.'), + 'description' => 'The {term_data}.tid of the second term in a relationship.', ), ), 'unique keys' => array( @@ -138,26 +138,26 @@ function taxonomy_schema() { ); $schema['term_synonym'] = array( - 'description' => t('Stores term synonyms.'), + 'description' => 'Stores term synonyms.', 'fields' => array( 'tsid' => array( 'type' => 'serial', 'not null' => TRUE, - 'description' => t('Primary Key: Unique term synonym ID.'), + 'description' => 'Primary Key: Unique term synonym ID.', ), 'tid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {term_data}.tid of the term.'), + 'description' => 'The {term_data}.tid of the term.', ), 'name' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The name of the synonym.'), + 'description' => 'The name of the synonym.', ), ), 'indexes' => array( @@ -168,33 +168,33 @@ function taxonomy_schema() { ); $schema['vocabulary'] = array( - 'description' => t('Stores vocabulary information.'), + 'description' => 'Stores vocabulary information.', 'fields' => array( 'vid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('Primary Key: Unique vocabulary ID.'), + 'description' => 'Primary Key: Unique vocabulary ID.', ), 'name' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Name of the vocabulary.'), + 'description' => 'Name of the vocabulary.', ), 'description' => array( 'type' => 'text', 'not null' => FALSE, 'size' => 'big', - 'description' => t('Description of the vocabulary.'), + 'description' => 'Description of the vocabulary.', ), 'help' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Help text to display for the vocabulary.'), + 'description' => 'Help text to display for the vocabulary.', ), 'relations' => array( 'type' => 'int', @@ -202,7 +202,7 @@ function taxonomy_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether or not related terms are enabled within the vocabulary. (0 = disabled, 1 = enabled)'), + 'description' => 'Whether or not related terms are enabled within the vocabulary. (0 = disabled, 1 = enabled)', ), 'hierarchy' => array( 'type' => 'int', @@ -210,7 +210,7 @@ function taxonomy_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)'), + 'description' => 'The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)', ), 'multiple' => array( 'type' => 'int', @@ -218,7 +218,7 @@ function taxonomy_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether or not multiple terms from this vocabulary may be assigned to a node. (0 = disabled, 1 = enabled)'), + 'description' => 'Whether or not multiple terms from this vocabulary may be assigned to a node. (0 = disabled, 1 = enabled)', ), 'required' => array( 'type' => 'int', @@ -226,7 +226,7 @@ function taxonomy_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether or not terms are required for nodes using this vocabulary. (0 = disabled, 1 = enabled)'), + 'description' => 'Whether or not terms are required for nodes using this vocabulary. (0 = disabled, 1 = enabled)', ), 'tags' => array( 'type' => 'int', @@ -234,21 +234,21 @@ function taxonomy_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether or not free tagging is enabled for the vocabulary. (0 = disabled, 1 = enabled)'), + 'description' => 'Whether or not free tagging is enabled for the vocabulary. (0 = disabled, 1 = enabled)', ), 'module' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The module which created the vocabulary.'), + 'description' => 'The module which created the vocabulary.', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('The weight of the vocabulary in relation to other vocabularies.'), + 'description' => 'The weight of the vocabulary in relation to other vocabularies.', ), ), 'primary key' => array('vid'), @@ -258,21 +258,21 @@ function taxonomy_schema() { ); $schema['vocabulary_node_types'] = array( - 'description' => t('Stores which node types vocabularies may be used with.'), + 'description' => 'Stores which node types vocabularies may be used with.', 'fields' => array( 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: the {vocabulary}.vid of the vocabulary.'), + 'description' => 'Primary Key: the {vocabulary}.vid of the vocabulary.', ), 'type' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', - 'description' => t('The {node}.type of the node type for which the vocabulary may be used.'), + 'description' => 'The {node}.type of the node type for which the vocabulary may be used.', ), ), 'primary key' => array('type', 'vid'), Index: modules/trigger/trigger.install =================================================================== RCS file: /cvs/drupal/drupal/modules/trigger/trigger.install,v retrieving revision 1.5 diff -u -p -r1.5 trigger.install --- modules/trigger/trigger.install 28 Dec 2007 12:02:52 -0000 1.5 +++ modules/trigger/trigger.install 11 Nov 2008 21:34:04 -0000 @@ -25,34 +25,34 @@ function trigger_uninstall() { */ function trigger_schema() { $schema['trigger_assignments'] = array( - 'description' => t('Maps trigger to hook and operation assignments from trigger.module.'), + 'description' => 'Maps trigger to hook and operation assignments from trigger.module.', 'fields' => array( 'hook' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', - 'description' => t('Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.'), + 'description' => 'Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.', ), 'op' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', - 'description' => t('Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.'), + 'description' => 'Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.', ), 'aid' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t("Primary Key: Action's {actions}.aid."), + 'description' => "Primary Key: Action's {actions}.aid.", ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The weight of the trigger assignment in relation to other triggers.'), + 'description' => 'The weight of the trigger assignment in relation to other triggers.', ), ), 'primary key' => array('hook', 'op', 'aid'), Index: modules/update/update.install =================================================================== RCS file: /cvs/drupal/drupal/modules/update/update.install,v retrieving revision 1.5 diff -u -p -r1.5 update.install --- modules/update/update.install 6 Feb 2008 19:38:28 -0000 1.5 +++ modules/update/update.install 11 Nov 2008 21:34:04 -0000 @@ -36,7 +36,7 @@ function update_uninstall() { */ function update_schema() { $schema['cache_update'] = drupal_get_schema_unprocessed('system', 'cache'); - $schema['cache_update']['description'] = t('Cache table for the Update module to store information about available releases, fetched from central server.'); + $schema['cache_update']['description'] = 'Cache table for the Update module to store information about available releases, fetched from central server.'; return $schema; } Index: modules/upload/upload.install =================================================================== RCS file: /cvs/drupal/drupal/modules/upload/upload.install,v retrieving revision 1.7 diff -u -p -r1.7 upload.install --- modules/upload/upload.install 10 Feb 2008 19:09:58 -0000 1.7 +++ modules/upload/upload.install 11 Nov 2008 21:34:04 -0000 @@ -26,35 +26,35 @@ function upload_uninstall() { */ function upload_schema() { $schema['upload'] = array( - 'description' => t('Stores uploaded file information and table associations.'), + 'description' => 'Stores uploaded file information and table associations.', 'fields' => array( 'fid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {files}.fid.'), + 'description' => 'Primary Key: The {files}.fid.', ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid associated with the uploaded file.'), + 'description' => 'The {node}.nid associated with the uploaded file.', ), 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {node}.vid associated with the uploaded file.'), + 'description' => 'Primary Key: The {node}.vid associated with the uploaded file.', ), 'description' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Description of the uploaded file.'), + 'description' => 'Description of the uploaded file.', ), 'list' => array( 'type' => 'int', @@ -62,14 +62,14 @@ function upload_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether the file should be visibly listed on the node: yes(1) or no(0).'), + 'description' => 'Whether the file should be visibly listed on the node: yes(1) or no(0).', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Weight of this upload in relation to other uploads in this node.'), + 'description' => 'Weight of this upload in relation to other uploads in this node.', ), ), 'primary key' => array('vid', 'fid'), Index: modules/user/user.install =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.install,v retrieving revision 1.13 diff -u -p -r1.13 user.install --- modules/user/user.install 20 Sep 2008 20:22:25 -0000 1.13 +++ modules/user/user.install 11 Nov 2008 21:34:04 -0000 @@ -6,10 +6,10 @@ */ function user_schema() { $schema['authmap'] = array( - 'description' => t('Stores distributed authentication mapping.'), + 'description' => 'Stores distributed authentication mapping.', 'fields' => array( 'aid' => array( - 'description' => t('Primary Key: Unique authmap ID.'), + 'description' => 'Primary Key: Unique authmap ID.', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, @@ -18,21 +18,21 @@ function user_schema() { 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t("User's {users}.uid."), + 'description' => "User's {users}.uid.", ), 'authname' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Unique authentication name.'), + 'description' => 'Unique authentication name.', ), 'module' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t('Module which is controlling the authentication.'), + 'description' => 'Module which is controlling the authentication.', ), ), 'unique keys' => array( @@ -42,20 +42,20 @@ function user_schema() { ); $schema['role_permission'] = array( - 'description' => t('Stores the permissions assigned to user roles.'), + 'description' => 'Stores the permissions assigned to user roles.', 'fields' => array( 'rid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('Foreign Key: {role}.rid.'), + 'description' => 'Foreign Key: {role}.rid.', ), 'permission' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('A single permission granted to the role identified by rid.'), + 'description' => 'A single permission granted to the role identified by rid.', ), ), 'primary key' => array('rid', 'permission'), @@ -65,20 +65,20 @@ function user_schema() { ); $schema['role'] = array( - 'description' => t('Stores user roles.'), + 'description' => 'Stores user roles.', 'fields' => array( 'rid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('Primary Key: Unique role ID.'), + 'description' => 'Primary Key: Unique role ID.', ), 'name' => array( 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('Unique role name.'), + 'description' => 'Unique role name.', ), ), 'unique keys' => array( @@ -88,107 +88,107 @@ function user_schema() { ); $schema['users'] = array( - 'description' => t('Stores user data.'), + 'description' => 'Stores user data.', 'fields' => array( 'uid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, - 'description' => t('Primary Key: Unique user ID.'), + 'description' => 'Primary Key: Unique user ID.', ), 'name' => array( 'type' => 'varchar', 'length' => 60, 'not null' => TRUE, 'default' => '', - 'description' => t('Unique user name.'), + 'description' => 'Unique user name.', ), 'pass' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', - 'description' => t("User's password (hashed)."), + 'description' => "User's password (hashed).", ), 'mail' => array( 'type' => 'varchar', 'length' => 64, 'not null' => FALSE, 'default' => '', - 'description' => t("User's email address."), + 'description' => "User's email address.", ), 'theme' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t("User's default theme."), + 'description' => "User's default theme.", ), 'signature' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t("User's signature."), + 'description' => "User's signature.", ), 'created' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Timestamp for when user was created.'), + 'description' => 'Timestamp for when user was created.', ), 'access' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Timestamp for previous time user accessed the site.'), + 'description' => 'Timestamp for previous time user accessed the site.', ), 'login' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t("Timestamp for user's last login."), + 'description' => "Timestamp for user's last login.", ), 'status' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether the user is active(1) or blocked(0).'), + 'description' => 'Whether the user is active(1) or blocked(0).', ), 'timezone' => array( 'type' => 'varchar', 'length' => 8, 'not null' => FALSE, - 'description' => t("User's timezone."), + 'description' => "User's timezone.", ), 'language' => array( 'type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '', - 'description' => t("User's default language."), + 'description' => "User's default language.", ), 'picture' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t("Path to the user's uploaded picture."), + 'description' => "Path to the user's uploaded picture.", ), 'init' => array( 'type' => 'varchar', 'length' => 64, 'not null' => FALSE, 'default' => '', - 'description' => t('Email address used for initial account creation.'), + 'description' => 'Email address used for initial account creation.', ), 'data' => array( 'type' => 'text', 'not null' => FALSE, 'size' => 'big', 'serialize' => TRUE, - 'description' => t('A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future version of Drupal.'), + 'description' => 'A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future version of Drupal.', ), ), 'indexes' => array( @@ -203,21 +203,21 @@ function user_schema() { ); $schema['users_roles'] = array( - 'description' => t('Maps users to roles.'), + 'description' => 'Maps users to roles.', 'fields' => array( 'uid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: {users}.uid for user.'), + 'description' => 'Primary Key: {users}.uid for user.', ), 'rid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: {role}.rid for role.'), + 'description' => 'Primary Key: {role}.rid for role.', ), ), 'primary key' => array('uid', 'rid'),