Skip to content

Commit

Permalink
Move forum column titles to wporg-forums text domain
Browse files Browse the repository at this point in the history
fixes: WordPress#470 
All strings are already used in loop-reply-topics.php
  • Loading branch information
timse201 authored Feb 10, 2025
1 parent c4d8d59 commit 7ae9c3b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
<?php if ( ! $is_all_replies_view ) { ?>
<li class="bbp-header">
<ul class="forum-titles">
<li class="bbp-topic-title"><?php esc_html_e( 'Topic', 'bbpress' ); ?></li>
<li class="bbp-topic-voice-count"><?php esc_html_e( 'Participants', 'bbpress' ); ?></li>
<li class="bbp-topic-title"><?php esc_html_e( 'Topic', 'wporg-forums' ); ?></li>
<li class="bbp-topic-voice-count"><?php esc_html_e( 'Participants', 'wporg-forums' ); ?></li>
<li class="bbp-topic-reply-count"><?php bbp_show_lead_topic()
? esc_html_e( 'Replies', 'bbpress' )
: esc_html_e( 'Posts', 'bbpress' );
? esc_html_e( 'Replies', 'wporg-forums' )
: esc_html_e( 'Posts', 'wporg-forums' );
?></li>
<li class="bbp-topic-freshness"><?php esc_html_e( 'Last Post', 'bbpress' ); ?></li>
<li class="bbp-topic-freshness"><?php esc_html_e( 'Last Post', 'wporg-forums' ); ?></li>
</ul>
</li>
<?php } ?>
Expand Down

0 comments on commit 7ae9c3b

Please sign in to comment.