diff -r 7b1b88e27a20 -r 48c4eec2b7e6 wp/wp-includes/theme-compat/sidebar.php
--- a/wp/wp-includes/theme-compat/sidebar.php Thu Sep 29 08:06:27 2022 +0200
+++ b/wp/wp-includes/theme-compat/sidebar.php Fri Sep 05 18:40:08 2025 +0200
@@ -56,6 +56,7 @@
/* translators: 1: Site link, 2: Archive date. */
__( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
sprintf( '%2$s', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
+ /* translators: Daily archives date format. See https://www.php.net/manual/datetime.format.php */
get_the_time( __( 'l, F jS, Y' ) )
);
?>
@@ -68,6 +69,7 @@
/* translators: 1: Site link, 2: Archive month. */
__( 'You are currently browsing the %1$s blog archives for %2$s.' ),
sprintf( '%2$s', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
+ /* translators: Monthly archives date format. See https://www.php.net/manual/datetime.format.php */
get_the_time( __( 'F, Y' ) )
);
?>