wp/wp-includes/theme-compat/sidebar.php
changeset 21 48c4eec2b7e6
parent 16 a86126ab1dd4
equal deleted inserted replaced
20:7b1b88e27a20 21:48c4eec2b7e6
    54 				<?php
    54 				<?php
    55 					printf(
    55 					printf(
    56 						/* translators: 1: Site link, 2: Archive date. */
    56 						/* translators: 1: Site link, 2: Archive date. */
    57 						__( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
    57 						__( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
    58 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
    58 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
       
    59 						/* translators: Daily archives date format. See https://www.php.net/manual/datetime.format.php */
    59 						get_the_time( __( 'l, F jS, Y' ) )
    60 						get_the_time( __( 'l, F jS, Y' ) )
    60 					);
    61 					);
    61 				?>
    62 				?>
    62 				</p>
    63 				</p>
    63 
    64 
    66 				<?php
    67 				<?php
    67 					printf(
    68 					printf(
    68 						/* translators: 1: Site link, 2: Archive month. */
    69 						/* translators: 1: Site link, 2: Archive month. */
    69 						__( 'You are currently browsing the %1$s blog archives for %2$s.' ),
    70 						__( 'You are currently browsing the %1$s blog archives for %2$s.' ),
    70 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
    71 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
       
    72 						/* translators: Monthly archives date format. See https://www.php.net/manual/datetime.format.php */
    71 						get_the_time( __( 'F, Y' ) )
    73 						get_the_time( __( 'F, Y' ) )
    72 					);
    74 					);
    73 				?>
    75 				?>
    74 				</p>
    76 				</p>
    75 
    77