diff --git a/core/modules/comment/comment.views.inc b/core/modules/comment/comment.views.inc index 8f5b186978f..9886c674860 100644 --- a/core/modules/comment/comment.views.inc +++ b/core/modules/comment/comment.views.inc @@ -118,8 +118,8 @@ function comment_views_data() { // mail $data['comment']['mail'] = array( - 'title' => t('Mail'), - 'help' => t('Email of user that posted the comment. Will be empty if the author is a registered user.'), + 'title' => t('E-mail'), + 'help' => t('E-mail of user that posted the comment. Will be empty if the author is a registered user.'), 'field' => array( 'id' => 'standard', ), @@ -240,7 +240,7 @@ function comment_views_data() { // status (approved or not) $data['comment']['status'] = array( - 'title' => t('Approved'), + 'title' => t('Approved status'), 'help' => t('Whether the comment is approved (or still in the moderation queue).'), 'field' => array( 'id' => 'boolean', @@ -250,7 +250,7 @@ function comment_views_data() { ), 'filter' => array( 'id' => 'boolean', - 'label' => t('Approved comment'), + 'label' => t('Approved comment status'), 'type' => 'yes-no', ), 'sort' => array( @@ -258,46 +258,46 @@ function comment_views_data() { ), ); - // link to view comment + // Link to view comment. $data['comment']['view_comment'] = array( 'field' => array( - 'title' => t('View link'), + 'title' => t('Link to comment'), 'help' => t('Provide a simple link to view the comment.'), 'id' => 'comment_link', ), ); - // link to edit comment + // Link to edit comment. $data['comment']['edit_comment'] = array( 'field' => array( - 'title' => t('Edit link'), + 'title' => t('Link to edit comment'), 'help' => t('Provide a simple link to edit the comment.'), 'id' => 'comment_link_edit', ), ); - // link to delete comment + // Link to delete comment. $data['comment']['delete_comment'] = array( 'field' => array( - 'title' => t('Delete link'), + 'title' => t('Link to delete comment'), 'help' => t('Provide a simple link to delete the comment.'), 'id' => 'comment_link_delete', ), ); - // link to approve comment + // Link to approve comment. $data['comment']['approve_comment'] = array( 'field' => array( - 'title' => t('Approve link'), + 'title' => t('Link to approve comment'), 'help' => t('Provide a simple link to approve the comment.'), 'id' => 'comment_link_approve', ), ); - // link to reply to comment + // Link to reply to comment. $data['comment']['replyto_comment'] = array( 'field' => array( - 'title' => t('Reply-to link'), + 'title' => t('Link to reply-to comment'), 'help' => t('Provide a simple link to reply to the comment.'), 'id' => 'comment_link_reply', ), @@ -470,7 +470,7 @@ function comment_views_data() { 'title' => t('Last comment CID'), 'help' => t('Display the last comment of a node'), 'relationship' => array( - 'title' => t('Last Comment'), + 'title' => t('Last comment'), 'help' => t('The last comment of a node.'), 'group' => t('Comment'), 'base' => 'comment', diff --git a/core/modules/node/node.views.inc b/core/modules/node/node.views.inc index e83232e16c7..cd6575ef8bd 100644 --- a/core/modules/node/node.views.inc +++ b/core/modules/node/node.views.inc @@ -134,7 +134,7 @@ function node_views_data() { // published status $data['node']['status'] = array( - 'title' => t('Published'), + 'title' => t('Published status'), 'help' => t('Whether or not the content is published.'), 'field' => array( 'id' => 'boolean', @@ -144,7 +144,7 @@ function node_views_data() { ), 'filter' => array( 'id' => 'boolean', - 'label' => t('Published'), + 'label' => t('Published status'), 'type' => 'yes-no', 'use_equal' => TRUE, // Use status = 1 instead of status <> 0 in WHERE statment ), @@ -155,18 +155,18 @@ function node_views_data() { // published status + extra $data['node']['status_extra'] = array( - 'title' => t('Published or admin'), + 'title' => t('Published status or admin user'), 'help' => t('Filters out unpublished content if the current user cannot view it.'), 'filter' => array( 'field' => 'status', 'id' => 'node_status', - 'label' => t('Published or admin'), + 'label' => t('Published status or admin user'), ), ); // promote status $data['node']['promote'] = array( - 'title' => t('Promoted to front page'), + 'title' => t('Promoted to front page status'), 'help' => t('Whether or not the content is promoted to the front page.'), 'field' => array( 'id' => 'boolean', @@ -176,7 +176,7 @@ function node_views_data() { ), 'filter' => array( 'id' => 'boolean', - 'label' => t('Promoted to front page'), + 'label' => t('Promoted to front page status'), 'type' => 'yes-no', ), 'sort' => array( @@ -186,7 +186,7 @@ function node_views_data() { // sticky $data['node']['sticky'] = array( - 'title' => t('Sticky'), // The item it appears as on the UI, + 'title' => t('Sticky status'), 'help' => t('Whether or not the content is sticky.'), // The help that appears on the UI, // Information for displaying a title as a field 'field' => array( @@ -197,7 +197,7 @@ function node_views_data() { ), 'filter' => array( 'id' => 'boolean', - 'label' => t('Sticky'), + 'label' => t('Sticky status'), 'type' => 'yes-no', ), 'sort' => array( @@ -245,7 +245,7 @@ function node_views_data() { $data['views_entity_node']['view_node'] = array( 'field' => array( - 'title' => t('Link'), + 'title' => t('Link to content'), 'help' => t('Provide a simple link to the content.'), 'id' => 'node_link', ), @@ -253,7 +253,7 @@ function node_views_data() { $data['views_entity_node']['edit_node'] = array( 'field' => array( - 'title' => t('Edit link'), + 'title' => t('Link to edit content'), 'help' => t('Provide a simple link to edit the content.'), 'id' => 'node_link_edit', ), @@ -261,7 +261,7 @@ function node_views_data() { $data['views_entity_node']['delete_node'] = array( 'field' => array( - 'title' => t('Delete link'), + 'title' => t('Link to delete content'), 'help' => t('Provide a simple link to delete the content.'), 'id' => 'node_link_delete', ), @@ -390,7 +390,7 @@ function node_views_data() { 'title' => t('Author uid'), 'help' => t('The user authoring the content. If you need more fields than the uid add the content: author relationship'), 'relationship' => array( - 'title' => t('Author'), + 'title' => t('Content author'), 'help' => t('Relate content to the user who created it.'), 'id' => 'standard', 'base' => 'users', @@ -448,7 +448,7 @@ function node_views_data() { ), ); - // uid field for node revision + // UID field for node revision. $data['node_revision']['uid'] = array( 'title' => t('User'), 'help' => t('Relate a content revision to the user who created the revision.'), @@ -593,7 +593,7 @@ function node_views_data() { $data['node_revision']['link_to_revision'] = array( 'field' => array( - 'title' => t('Link'), + 'title' => t('Link to revision'), 'help' => t('Provide a simple link to the revision.'), 'id' => 'node_revision_link', 'click sortable' => FALSE, @@ -602,7 +602,7 @@ function node_views_data() { $data['node_revision']['revert_revision'] = array( 'field' => array( - 'title' => t('Revert link'), + 'title' => t('Link to revert revision'), 'help' => t('Provide a simple link to revert to the revision.'), 'id' => 'node_revision_link_revert', 'click sortable' => FALSE, @@ -611,7 +611,7 @@ function node_views_data() { $data['node_revision']['delete_revision'] = array( 'field' => array( - 'title' => t('Delete link'), + 'title' => t('Link to delete revision'), 'help' => t('Provide a simple link to delete the content revision.'), 'id' => 'node_revision_link_delete', 'click sortable' => FALSE, diff --git a/core/modules/user/user.views.inc b/core/modules/user/user.views.inc index 41079389129..69398ee9ca0 100644 --- a/core/modules/user/user.views.inc +++ b/core/modules/user/user.views.inc @@ -116,8 +116,8 @@ function user_views_data() { // mail // Note that this field implements field level access control. $data['users']['mail'] = array( - 'title' => t('E-mail'), // The item it appears as on the UI, - 'help' => t('Email address for a given user. This field is normally not shown to users, so be cautious when using it.'), // The help that appears on the UI, + 'title' => t('E-mail'), + 'help' => t('E-mail address for a given user. This field is normally not shown to users, so be cautious when using it.'), 'field' => array( 'id' => 'user_mail', ), @@ -153,7 +153,7 @@ function user_views_data() { // link $data['users']['view_user'] = array( 'field' => array( - 'title' => t('Link'), + 'title' => t('Link to user'), 'help' => t('Provide a simple link to the user.'), 'id' => 'user_link', 'click sortable' => FALSE, @@ -261,7 +261,7 @@ function user_views_data() { // active status $data['users']['status'] = array( - 'title' => t('Active'), // The item it appears as on the UI, + 'title' => t('Active status'), 'help' => t('Whether a user is active or blocked.'), // The help that appears on the UI, // Information for displaying a title as a field 'field' => array( @@ -308,7 +308,7 @@ function user_views_data() { $data['users']['edit_node'] = array( 'field' => array( - 'title' => t('Edit link'), + 'title' => t('Link to edit user'), 'help' => t('Provide a simple link to edit the user.'), 'id' => 'user_link_edit', 'click sortable' => FALSE, @@ -317,7 +317,7 @@ function user_views_data() { $data['users']['cancel_node'] = array( 'field' => array( - 'title' => t('Cancel link'), + 'title' => t('Link to cancel user'), 'help' => t('Provide a simple link to cancel the user.'), 'id' => 'user_link_cancel', 'click sortable' => FALSE,