Skip to:
Content

bbPress.org

Changeset 6089


Ignore:
Timestamp:
09/05/2016 06:21:41 AM (9 years ago)
Author:
netweb
Message:

Locale - i18n/l10n: Differentiate the noun and verb "Reply" string.

"Reply" can be used as both a verb and a noun, this changeset adds this context to instances of the "Reply" string thus allowing the different contexts to be translated accurately.

Props ocean90.
Fixes #2977.

Location:
trunk/src/includes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/list-tables/topic-replies.php

    r5951 r6089  
    3535    public function __construct( $args = array() ) {
    3636        $args = array(
    37             'singular' => esc_html__( 'Reply',  'bbpress' ),
     37            'singular' => esc_html_x( 'Reply', 'noun', 'bbpress' ),
    3838            'plural'   => esc_html__( 'Replies', 'bbpress' ),
    3939            'ajax'     => true
  • trunk/src/includes/admin/settings.php

    r6070 r6089  
    333333            // Reply slug setting
    334334            '_bbp_reply_slug' => array(
    335                 'title'             => __( 'Reply', 'bbpress' ),
     335                'title'             => _x( 'Reply', 'noun', 'bbpress' ),
    336336                'callback'          => 'bbp_admin_setting_callback_reply_slug',
    337337                'sanitize_callback' => 'bbp_sanitize_slug',
  • trunk/src/includes/replies/template.php

    r5951 r6089  
    4747        'name'               => __( 'Replies',                   'bbpress' ),
    4848        'menu_name'          => __( 'Replies',                   'bbpress' ),
    49         'singular_name'      => __( 'Reply',                     'bbpress' ),
     49        'singular_name'      => _x( 'Reply', 'noun',             'bbpress' ),
    5050        'all_items'          => __( 'All Replies',               'bbpress' ),
    5151        'add_new'            => __( 'New Reply',                 'bbpress' ),
     
    16761676            'link_before'  => '',
    16771677            'link_after'   => '',
    1678             'reply_text'   => __( 'Reply', 'bbpress' ),
     1678            'reply_text'   => _x( 'Reply', 'verb', 'bbpress' ),
    16791679            'depth'        => 0,
    16801680            'add_below'    => 'post',
  • trunk/src/includes/topics/template.php

    r6027 r6089  
    30883088            'link_before'  => '',
    30893089            'link_after'   => '',
    3090             'reply_text'   => esc_html__( 'Reply', 'bbpress' ),
     3090            'reply_text'   => esc_html_x( 'Reply', 'verb', 'bbpress' ),
    30913091        ), 'get_topic_reply_link' );
    30923092
Note: See TracChangeset for help on using the changeset viewer.