Skip to content

Commit 14da398

Browse files
committed
Help/About: Update the About page for WP 6.5 RC2.
Updates a translatable string to use a placeholder for the “Requires Plugins” string used in it. Reviewed by audrasjb. Merges [57817] to the to the 6.5 branch. Props swissspidy, sergeybiryukov, presskopp. See #60303. git-svn-id: https://develop.svn.wordpress.org/branches/6.5@57818 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 5b71cfc commit 14da398

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/wp-admin/about.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,15 @@
175175
</svg>
176176
</div>
177177
<h3 style="margin-top:calc(var(--gap) * 0.75);margin-bottom:calc(var(--gap) * 0.5)"><?php _e( 'Explore improvements to the plugin experience' ); ?></h3>
178-
<p><?php _e( 'There&#8217;s now an easier way to manage plugin dependencies. Plugin authors can supply a new <code>Requires Plugins</code> header with a comma-separated list of required plugin slugs, presenting users with links to install and activate those plugins first.' ); ?></p>
178+
<p>
179+
<?php
180+
printf(
181+
/* translators: %s: Requires Plugins */
182+
__( 'There&#8217;s now an easier way to manage plugin dependencies. Plugin authors can supply a new %s header with a comma-separated list of required plugin slugs, presenting users with links to install and activate those plugins first.' ),
183+
'<code>Requires Plugins</code>'
184+
);
185+
?>
186+
</p>
179187
</div>
180188
</div>
181189

0 commit comments

Comments
 (0)