Skip to content

Commit

Permalink
Help/About: Update the About page for WP 6.5 RC2.
Browse files Browse the repository at this point in the history
Updates a translatable string to use a placeholder for the “Requires Plugins” string used in it.

Props swissspidy, sergeybiryukov, presskopp.
See #60303.

git-svn-id: https://develop.svn.wordpress.org/trunk@57817 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
swissspidy committed Mar 12, 2024
1 parent d780917 commit 234ec16
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/wp-admin/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,15 @@
</svg>
</div>
<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>
<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>
<p>
<?php
printf(
/* translators: %s: Requires Plugins */
__( '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.' ),
'<code>Requires Plugins</code>'
);
?>
</p>
</div>
</div>

Expand Down

0 comments on commit 234ec16

Please sign in to comment.