Commit fa00c800 authored by Earl Miles's avatar Earl Miles
Browse files

#340033 by pancho: Clearer wording on some field help texts.

parent 4a346f1a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ Views 2.2
   o #339295 by katbailey: AJAX paging could fail with the same view in multiple tabs.
   o #339676 by nedjo: Source translation had wrong filter handler.
   o #340002 by hass: Allow the "Add display" button to wrap for translations whose phrase is longer.
   o #340033 by pancho: Clearer wording on some field help texts.

 Other changes:
   o Reorganize the analysis code into analyze.inc to make it easier for people to find the code and use it externally.
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ function book_views_data() {

  $data['book_menu_links']['p'] = array(
    'title' => t('Hierarchy'),
    'help' => t('The order of pages in the book hierarchy.  Remember to sort by weight too if you want exactly the right order.'),
    'help' => t('The order of pages in the book hierarchy. If you want the exactly right order, remember to sort by weight, too.'),
    'sort' => array(
      'handler' => 'views_handler_sort_menu_hierarchy',
    ),
+3 −3
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ function comment_views_data() {
  // name (of comment author)
  $data['comments']['name'] = array(
    'title' => t('Author'),
    'help' => t('The name of the poster.'),
    'help' => t("The name of the comment's author. Can be rendered as a link to the author's homepage."),
    'field' => array(
      'handler' => 'views_handler_field_comment_username',
      'click sortable' => TRUE,
@@ -112,7 +112,7 @@ function comment_views_data() {
  // homepage
  $data['comments']['homepage'] = array(
    'title' => t("Author's website"),
    'help' => t("The website address of the comment's author. Can be a link. The homepage can also be linked with the Name field. Will be empty if posted by a registered user."),
    'help' => t("The website address of the comment's author. Can be rendered as a link. Will be empty if the author is a registered user."),
    'field' => array(
      'handler' => 'views_handler_field_url',
      'click sortable' => TRUE,
@@ -224,7 +224,7 @@ function comment_views_data() {

  $data['comments']['uid'] = array(
    'title' => t('User'),
    'help' => t('The user who wrote the comment.'),
    'help' => t("The User ID of the comment's author."),
    'relationship' => array(
      'base' => 'users',
      'field' => 'uid',
+3 −3
Original line number Diff line number Diff line
@@ -157,7 +157,7 @@ function node_views_data() {
  // published status
  $data['node']['status'] = array(
    'title' => t('Published'),
    'help' => t('The published status of the node.'),
    'help' => t('Whether or not the node is published.'),
    'field' => array(
      'handler' => 'views_handler_field_boolean',
      'click sortable' => TRUE,
@@ -179,14 +179,14 @@ function node_views_data() {
    'filter' => array(
      'field' => 'status',
      'handler' => 'views_handler_filter_node_status',
      'label' => t('Published'),
      'label' => t('Published or admin'),
    ),
  );

  // promote status
  $data['node']['promote'] = array(
    'title' => t('Promoted to front page'),
    'help' => t('The front page of the node.'),
    'help' => t('Whether or not the node is promoted to the front page.'),
    'field' => array(
      'handler' => 'views_handler_field_boolean',
      'click sortable' => TRUE,
+2 −2
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ function search_views_data() {
  );
  $data['search_node_links_from']['sid'] = array(
    'title' => t('Links from'),
    'help' => t('Nodes that link from the node.'),
    'help' => t('Other nodes that are linked from the node.'),
    'argument' => array(
      'handler' => 'views_handler_argument_node_nid',
    ),
@@ -111,7 +111,7 @@ function search_views_data() {
  );
  $data['search_node_links_to']['nid'] = array(
    'title' => t('Links to'),
    'help' => t('Nodes that link to the node.'),
    'help' => t('Other nodes that link to the node.'),
    'argument' => array(
      'handler' => 'views_handler_argument_node_nid',
    ),
Loading