Changeset 3823
- Timestamp:
- 03/25/2012 09:14:39 PM (12 years ago)
- Location:
- branches/plugin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-admin/bbp-topics.php
r3814 r3823 827 827 $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 ) ); 828 828 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>'; 830 830 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>'; 832 832 } 833 833 -
branches/plugin/bbp-includes/bbp-forum-template.php
r3760 r3823 2128 2128 $forum_id = bbp_get_forum_id( $forum_id ); 2129 2129 $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' ) 2132 2132 ) ); 2133 2133 $status_output = '<select name="bbp_forum_status" id="bbp_forum_status_select">' . "\n"; -
branches/plugin/bbp-includes/bbp-topic-template.php
r3810 r3823 2329 2329 'link_after' => '', 2330 2330 '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' ) 2333 2333 ); 2334 2334
Note: See TracChangeset
for help on using the changeset viewer.