Changeset 45926 for trunk/src/wp-includes/theme-compat/sidebar.php
- Timestamp:
- 09/01/2019 05:12:43 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/theme-compat/sidebar.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme-compat/sidebar.php
r45602 r45926 42 42 <p> 43 43 <?php 44 /* translators: %s: category name */45 44 printf( 45 /* translators: %s: category name */ 46 46 __( 'You are currently browsing the archives for the %s category.' ), 47 47 single_cat_title( '', false ) … … 53 53 <p> 54 54 <?php 55 /* translators: 1: site link, 2: archive date */56 55 printf( 56 /* translators: 1: site link, 2: archive date */ 57 57 __( 'You are currently browsing the %1$s blog archives for the day %2$s.' ), 58 58 sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), … … 65 65 <p> 66 66 <?php 67 /* translators: 1: site link, 2: archive month */68 67 printf( 68 /* translators: 1: site link, 2: archive month */ 69 69 __( 'You are currently browsing the %1$s blog archives for %2$s.' ), 70 70 sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), … … 77 77 <p> 78 78 <?php 79 /* translators: 1: site link, 2: archive year */80 79 printf( 80 /* translators: 1: site link, 2: archive year */ 81 81 __( 'You are currently browsing the %1$s blog archives for the year %2$s.' ), 82 82 sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), … … 89 89 <p> 90 90 <?php 91 /* translators: 1: site link, 2: search query */92 91 printf( 92 /* translators: 1: site link, 2: search query */ 93 93 __( 'You have searched the %1$s blog archives for <strong>‘%2$s’</strong>. If you are unable to find anything in these search results, you can try one of these links.' ), 94 94 sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), … … 101 101 <p> 102 102 <?php 103 /* translators: %s: site link */104 103 printf( 104 /* translators: %s: site link */ 105 105 __( 'You are currently browsing the %s blog archives.' ), 106 106 sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) )
Note: See TracChangeset
for help on using the changeset viewer.