Changeset 12801
- Timestamp:
- 08/03/2023 02:02:34 AM (2 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
r12749 r12801 631 631 if ( bbp_is_topic_closed( $topic_id ) ) { 632 632 /* translators: %s: Excerpt of the topic's first post. */ 633 $description = __( '[This thread is closed.] %s', 'wporg- support' );633 $description = __( '[This thread is closed.] %s', 'wporg-forums' ); 634 634 } else { 635 635 $description = '%s '; // trailing space is intentional … … 1297 1297 'title="' . esc_attr( 1298 1298 // bbPress string from bbp_get_reply_post_date() 1299 sprintf( _x( '%1$s at %2$s', 'date at time', 'wporg- support' ), $date, $time )1299 sprintf( _x( '%1$s at %2$s', 'date at time', 'wporg-forums' ), $date, $time ) 1300 1300 ) . '"', 1301 1301 $anchor -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-report-topic.php
r12393 r12801 196 196 esc_url( $this->remove_topic_modlook_url() ), 197 197 // translators: `modlook` is the term used for posts tagged by users when they want a moderator to have a look. 198 __( 'Remove modlook', 'wporg- support' )198 __( 'Remove modlook', 'wporg-forums' ) 199 199 ); 200 200 } … … 238 238 printf( 239 239 '<li class="topic-previous-reports">%s<ul class="previous-reports">%s</ul></li>', 240 __( 'Previously reported by:', 'wporg- support' ),240 __( 'Previously reported by:', 'wporg-forums' ), 241 241 implode( ' ', $lines ) 242 242 );
Note: See TracChangeset
for help on using the changeset viewer.