Skip to:
Content

bbPress.org

Changeset 3823


Ignore:
Timestamp:
03/25/2012 09:14:39 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Add context to 'Open' and 'Close' strings. Props daveshine. Fixes #1798.

Location:
branches/plugin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-admin/bbp-topics.php

    r3814 r3823  
    827827                    $close_uri = esc_url( wp_nonce_url( add_query_arg( array( 'topic_id' => $topic->ID, 'action' => 'bbp_toggle_topic_close' ), remove_query_arg( array( 'bbp_topic_toggle_notice', 'topic_id', 'failed', 'super' ) ) ), 'close-topic_' . $topic->ID ) );
    828828                    if ( bbp_is_topic_open( $topic->ID ) )
    829                         $actions['closed'] = '<a href="' . $close_uri . '" title="' . esc_attr__( 'Close this topic', 'bbpress' ) . '">' . __( 'Close', 'bbpress' ) . '</a>';
     829                        $actions['closed'] = '<a href="' . $close_uri . '" title="' . esc_attr__( 'Close this topic', 'bbpress' ) . '">' . _x( 'Close', 'Close a Topic', 'bbpress' ) . '</a>';
    830830                    else
    831                         $actions['closed'] = '<a href="' . $close_uri . '" title="' . esc_attr__( 'Open this topic',  'bbpress' ) . '">' . __( 'Open',  'bbpress' ) . '</a>';
     831                        $actions['closed'] = '<a href="' . $close_uri . '" title="' . esc_attr__( 'Open this topic',  'bbpress' ) . '">' . _x( 'Open',  'Open a Topic',  'bbpress' ) . '</a>';
    832832                }
    833833
  • branches/plugin/bbp-includes/bbp-forum-template.php

    r3760 r3823  
    21282128        $forum_id   = bbp_get_forum_id( $forum_id );
    21292129        $forum_attr = apply_filters( 'bbp_forum_statuses', array(
    2130             'open'   => __( 'Open',  'bbpress' ),
    2131             'closed' => __( 'Closed', 'bbpress' )
     2130            'open'   => _x( 'Open',   'Forum Status', 'bbpress' ),
     2131            'closed' => _x( 'Closed', 'Forum Status', 'bbpress' )
    21322132        ) );
    21332133        $status_output = '<select name="bbp_forum_status" id="bbp_forum_status_select">' . "\n";
  • branches/plugin/bbp-includes/bbp-topic-template.php

    r3810 r3823  
    23292329            'link_after'  => '',
    23302330            'sep'         => ' | ',
    2331             'close_text'  => __( 'Close', 'bbpress' ),
    2332             'open_text'   => __( 'Open', 'bbpress' )
     2331            'close_text'  => _x( 'Close', 'Topic Status', 'bbpress' ),
     2332            'open_text'   => _x( 'Open',  'Topic Status', 'bbpress' )
    23332333        );
    23342334
Note: See TracChangeset for help on using the changeset viewer.