Making WordPress.org

Changeset 4748


Ignore:
Timestamp:
01/20/2017 10:51:29 PM (8 years ago)
Author:
SergeyBiryukov
Message:

Support Theme: For reviews, change "Create a new topic" heading to "Create a new review".

Props netweb.
Fixes #2010.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/form-topic.php

    r4676 r4748  
    1717
    1818                    <?php
    19                         if ( bbp_is_topic_edit() )
     19                        if ( bbp_is_topic_edit() ) {
    2020                            printf( __( 'Now Editing &ldquo;%s&rdquo;', 'wporg-forums' ), bbp_get_topic_title() );
    21                         else
    22                             bbp_is_single_forum() ? printf( __( 'Create a new topic in &ldquo;%s Forum&rdquo;', 'wporg-forums' ), bbp_get_forum_title() ) : _e( 'Create a new topic', 'wporg-forums' );
     21                        } else {
     22                            if ( bbp_is_single_forum() ) {
     23                                printf( __( 'Create a new topic in &ldquo;%s Forum&rdquo;', 'wporg-forums' ), bbp_get_forum_title() );
     24                            } elseif ( bbp_is_single_view() && 'reviews' == bbp_get_view_id() ) {
     25                                _e( 'Create a new review', 'wporg-forums' );
     26                            } else {
     27                                _e( 'Create a new topic', 'wporg-forums' );
     28                            }
     29                        }
    2330                    ?>
    2431
Note: See TracChangeset for help on using the changeset viewer.