Skip to content

Commit 0bc2c61

Browse files
committed
Remove irrelevant translator comment.
1 parent a84d21a commit 0bc2c61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/wp-accessibility-stats.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ function wpa_stats_action() {
221221
if ( ! wp_verify_nonce( $security, 'wpa-stats-action' ) ) {
222222
wp_die();
223223
}
224-
$stats = json_decode( wp_unslash( $_REQUEST['stats'] ) );
225-
$stats = map_deep( $stats, 'sanitize_text_field' );
224+
$stats = json_decode( wp_unslash( $_REQUEST['stats'] ) );
225+
$stats = map_deep( $stats, 'sanitize_text_field' );
226226
if ( is_object( $stats ) ) {
227227
$stats = (array) $stats;
228228
}
@@ -690,7 +690,7 @@ function wpa_custom_column( $column_name, $post_id ) {
690690
$data = ( property_exists( $event, 'contrast' ) ) ? 'contrast' : 'fontsize';
691691
$icon = ( 'contrast' === $data ) ? ' aticon aticon-adjust' : ' aticon aticon-font';
692692
$label = ( property_exists( $event, 'contrast' ) ) ? __( 'High Contrast', 'wp-accessibility' ) : __( 'Large Font Size', 'wp-accessibility' );
693-
// translators: Action taken. High Contrast or Large Font Size.
693+
694694
$is_contrast = 'contrast' === $data && property_exists( $event, 'contrast' ) ? true : false;
695695
$is_fontsize = 'fontsize' === $data && property_exists( $event, 'fontsize' ) ? true : false;
696696
if ( $is_contrast || $is_fontsize ) {

0 commit comments

Comments
 (0)