Skip to content

Commit

Permalink
updates for PCP and i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
afragen committed Dec 2, 2024
1 parent 8fea529 commit 7b63372
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[unreleased]
* Plugin Check and i18n updates

#### 3.6.1 / 2024-10-23
* fix if `get_preferred_from_update_core()` continues to return less than a complete response
Expand Down
2 changes: 1 addition & 1 deletion src/WPBT/WPBT_Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public function channel_radio_group() {
?>
<fieldset>
<tr>
<th><label><?php esc_html_e( __( 'Save after switching', 'wordpress-beta-tester' ) ); ?></label></th>
<th><label><?php echo esc_html( __( 'Save after switching', 'wordpress-beta-tester' ) ); ?></label></th>
<td></td>
</tr>
</fieldset>
Expand Down
2 changes: 1 addition & 1 deletion src/WPBT/WPBT_Help.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function add_help_tabs() {
}

get_current_screen()->set_help_sidebar(
'<p><strong>' . __( 'For more information:' ) . '</strong></p>'
'<p><strong>' . __( 'For more information:', 'wordpress-beta-tester' ) . '</strong></p>'
. '<p>' . __( '<a href="https://make.wordpress.org/core/handbook/testing/beta-testing/">Beta Testing</a>', 'wordpress-beta-tester' ) . '</p>'
);

Expand Down
2 changes: 1 addition & 1 deletion src/WPBT/WPBT_Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public static function checkbox_setting( $args ) {
<?php echo esc_attr( $args['title'] ); ?>
<?php
if ( isset( $args['description'] ) ) {
echo '<p class="description">' . esc_attr__( $args['description'] ) . '</p>';
echo '<p class="description">' . esc_attr( $args['description'] ) . '</p>';
}
?>
</label>
Expand Down

0 comments on commit 7b63372

Please sign in to comment.