wp/wp-includes/theme-compat/sidebar.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
child 21 48c4eec2b7e6
--- a/wp/wp-includes/theme-compat/sidebar.php	Tue Oct 22 16:11:46 2019 +0200
+++ b/wp/wp-includes/theme-compat/sidebar.php	Tue Dec 15 13:49:49 2020 +0100
@@ -7,18 +7,18 @@
  * This file is here for backward compatibility with old themes and will be removed in a future version.
  */
 _deprecated_file(
-	/* translators: %s: template name */
+	/* translators: %s: Template name. */
 	sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
 	'3.0.0',
 	null,
-	/* translators: %s: template name */
+	/* translators: %s: Template name. */
 	sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
 );
 ?>
 	<div id="sidebar" role="complementary">
 		<ul>
 			<?php
-			  /* Widgetized sidebar, if you have the plugin installed. */
+			/* Widgetized sidebar, if you have the plugin installed. */
 			if ( ! function_exists( 'dynamic_sidebar' ) || ! dynamic_sidebar() ) :
 				?>
 			<li>
@@ -35,14 +35,14 @@
 				if ( is_404() || is_category() || is_day() || is_month() ||
 				is_year() || is_search() || is_paged() ) :
 					?>
-			 <li>
+			<li>
 
 					<?php if ( is_404() ) : /* If this is a 404 page */ ?>
 			<?php elseif ( is_category() ) : /* If this is a category archive */ ?>
 				<p>
 				<?php
-				/* translators: %s: category name */
 					printf(
+						/* translators: %s: Category name. */
 						__( 'You are currently browsing the archives for the %s category.' ),
 						single_cat_title( '', false )
 					);
@@ -52,8 +52,8 @@
 			<?php elseif ( is_day() ) : /* If this is a daily archive */ ?>
 				<p>
 				<?php
-				/* translators: 1: site link, 2: archive date */
 					printf(
+						/* translators: 1: Site link, 2: Archive date. */
 						__( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
 						get_the_time( __( 'l, F jS, Y' ) )
@@ -64,8 +64,8 @@
 			<?php elseif ( is_month() ) : /* If this is a monthly archive */ ?>
 				<p>
 				<?php
-				/* translators: 1: site link, 2: archive month */
 					printf(
+						/* translators: 1: Site link, 2: Archive month. */
 						__( 'You are currently browsing the %1$s blog archives for %2$s.' ),
 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
 						get_the_time( __( 'F, Y' ) )
@@ -76,8 +76,8 @@
 			<?php elseif ( is_year() ) : /* If this is a yearly archive */ ?>
 				<p>
 				<?php
-				/* translators: 1: site link, 2: archive year */
 					printf(
+						/* translators: 1: Site link, 2: Archive year. */
 						__( 'You are currently browsing the %1$s blog archives for the year %2$s.' ),
 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
 						get_the_time( 'Y' )
@@ -88,8 +88,8 @@
 			<?php elseif ( is_search() ) : /* If this is a search result */ ?>
 				<p>
 				<?php
-				/* translators: 1: site link, 2: search query */
 					printf(
+						/* translators: 1: Site link, 2: Search query. */
 						__( 'You have searched the %1$s blog archives for <strong>&#8216;%2$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links.' ),
 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
 						esc_html( get_search_query() )
@@ -100,8 +100,8 @@
 			<?php elseif ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) : /* If this set is paginated */ ?>
 				<p>
 				<?php
-				/* translators: %s: site link */
 					printf(
+						/* translators: %s: Site link. */
 						__( 'You are currently browsing the %s blog archives.' ),
 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) )
 					);