Changeset 4748
- Timestamp:
- 01/20/2017 10:51:29 PM (8 years ago)
- 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 17 17 18 18 <?php 19 if ( bbp_is_topic_edit() ) 19 if ( bbp_is_topic_edit() ) { 20 20 printf( __( 'Now Editing “%s”', 'wporg-forums' ), bbp_get_topic_title() ); 21 else 22 bbp_is_single_forum() ? printf( __( 'Create a new topic in “%s Forum”', '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 “%s Forum”', '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 } 23 30 ?> 24 31
Note: See TracChangeset
for help on using the changeset viewer.