diff options
Diffstat (limited to '')
-rw-r--r-- | wp-includes/class-wp-duotone.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/wp-includes/class-wp-duotone.php b/wp-includes/class-wp-duotone.php index 813258c..40e9f75 100644 --- a/wp-includes/class-wp-duotone.php +++ b/wp-includes/class-wp-duotone.php @@ -209,10 +209,7 @@ class WP_Duotone { 'rad' => 360 / ( M_PI * 2 ), ); - $factor = $angle_units[ $unit ]; - if ( ! $factor ) { - $factor = 1; - } + $factor = isset( $angle_units[ $unit ] ) ? $angle_units[ $unit ] : 1; return (float) $value * $factor; } @@ -673,9 +670,11 @@ class WP_Duotone { if ( null === $color ) { $error_message = sprintf( - /* translators: %s: duotone colors */ - __( '"%s" in theme.json settings.color.duotone is not a hex or rgb string.' ), - $color_str + /* translators: 1: Duotone colors, 2: theme.json, 3: settings.color.duotone */ + __( '"%1$s" in %2$s %3$s is not a hex or rgb string.' ), + $color_str, + 'theme.json', + 'settings.color.duotone' ); _doing_it_wrong( __METHOD__, $error_message, '6.3.0' ); } else { @@ -900,9 +899,10 @@ class WP_Duotone { $global_styles_presets = self::get_all_global_styles_presets(); if ( ! array_key_exists( $filter_id, $global_styles_presets ) ) { $error_message = sprintf( - /* translators: %s: duotone filter ID */ - __( 'The duotone id "%s" is not registered in theme.json settings' ), - $filter_id + /* translators: 1: Duotone filter ID, 2: theme.json */ + __( 'The duotone id "%1$s" is not registered in %2$s settings' ), + $filter_id, + 'theme.json' ); _doing_it_wrong( __METHOD__, $error_message, '6.3.0' ); return; |