equal
deleted
inserted
replaced
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 |