Changeset 45932 for trunk/src/wp-includes/theme-compat/sidebar.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme-compat/sidebar.php
r45926 r45932 8 8 */ 9 9 _deprecated_file( 10 /* translators: %s: template name*/10 /* translators: %s: Template name. */ 11 11 sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), 12 12 '3.0.0', 13 13 null, 14 /* translators: %s: template name*/14 /* translators: %s: Template name. */ 15 15 sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) ) 16 16 ); … … 43 43 <?php 44 44 printf( 45 /* translators: %s: category name*/45 /* translators: %s: Category name. */ 46 46 __( 'You are currently browsing the archives for the %s category.' ), 47 47 single_cat_title( '', false ) … … 54 54 <?php 55 55 printf( 56 /* translators: 1: site link, 2: archive date*/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' ) ), … … 66 66 <?php 67 67 printf( 68 /* translators: 1: site link, 2: archive month*/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' ) ), … … 78 78 <?php 79 79 printf( 80 /* translators: 1: site link, 2: archive year*/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' ) ), … … 90 90 <?php 91 91 printf( 92 /* translators: 1: site link, 2: search query*/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' ) ), … … 102 102 <?php 103 103 printf( 104 /* translators: %s: site link*/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.