diff --git a/packages/block-library/src/post-time-to-read/index.php b/packages/block-library/src/post-time-to-read/index.php index 03a745d20e6427..f7abb1903f04df 100644 --- a/packages/block-library/src/post-time-to-read/index.php +++ b/packages/block-library/src/post-time-to-read/index.php @@ -32,8 +32,8 @@ function render_block_core_post_time_to_read( $attributes, $content, $block ) { $minutes_to_read = max( 1, (int) round( wp_word_count( $content, $word_count_type ) / $average_reading_rate ) ); $minutes_to_read_string = sprintf( - /* translators: %d is the number of minutes the post will take to read. */ - _n( '%d minute', '%d minutes', $minutes_to_read ), + /* translators: %s is the number of minutes the post will take to read. */ + _n( '%s minute', '%s minutes', $minutes_to_read ), $minutes_to_read );