Changeset 6089
- Timestamp:
- 09/05/2016 06:21:41 AM (9 years ago)
- Location:
- trunk/src/includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/list-tables/topic-replies.php
r5951 r6089 35 35 public function __construct( $args = array() ) { 36 36 $args = array( 37 'singular' => esc_html_ _( 'Reply','bbpress' ),37 'singular' => esc_html_x( 'Reply', 'noun', 'bbpress' ), 38 38 'plural' => esc_html__( 'Replies', 'bbpress' ), 39 39 'ajax' => true -
trunk/src/includes/admin/settings.php
r6070 r6089 333 333 // Reply slug setting 334 334 '_bbp_reply_slug' => array( 335 'title' => _ _( 'Reply', 'bbpress' ),335 'title' => _x( 'Reply', 'noun', 'bbpress' ), 336 336 'callback' => 'bbp_admin_setting_callback_reply_slug', 337 337 'sanitize_callback' => 'bbp_sanitize_slug', -
trunk/src/includes/replies/template.php
r5951 r6089 47 47 'name' => __( 'Replies', 'bbpress' ), 48 48 'menu_name' => __( 'Replies', 'bbpress' ), 49 'singular_name' => _ _( 'Reply','bbpress' ),49 'singular_name' => _x( 'Reply', 'noun', 'bbpress' ), 50 50 'all_items' => __( 'All Replies', 'bbpress' ), 51 51 'add_new' => __( 'New Reply', 'bbpress' ), … … 1676 1676 'link_before' => '', 1677 1677 'link_after' => '', 1678 'reply_text' => _ _( 'Reply', 'bbpress' ),1678 'reply_text' => _x( 'Reply', 'verb', 'bbpress' ), 1679 1679 'depth' => 0, 1680 1680 'add_below' => 'post', -
trunk/src/includes/topics/template.php
r6027 r6089 3088 3088 'link_before' => '', 3089 3089 'link_after' => '', 3090 'reply_text' => esc_html_ _( 'Reply', 'bbpress' ),3090 'reply_text' => esc_html_x( 'Reply', 'verb', 'bbpress' ), 3091 3091 ), 'get_topic_reply_link' ); 3092 3092
Note: See TracChangeset
for help on using the changeset viewer.