2525
2626<h2 class="nav-tab-wrapper">
2727 <a href="about.php" class="nav-tab nav-tab-active">
28- <?php printf ( __ ( 'What’s New in %s ' ), $ display_version ); ?>
28+ <?php _e ( 'What’s New ' ); ?>
2929 </a><a href="credits.php" class="nav-tab">
3030 <?php _e ( 'Credits ' ); ?>
3131 </a><a href="freedoms.php" class="nav-tab">
172172<?php
173173
174174include ( './admin-footer.php ' );
175+
176+ // These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
177+ return ;
178+
179+ _n_noop ( 'Maintenance Release ' , 'Maintenance Releases ' );
180+ _n_noop ( 'Security Release ' , 'Security Releases ' );
181+ _n_noop ( 'Maintenance and Security Release ' , 'Maintenance and Security Releases ' );
182+
183+ /* translators: 1: WordPress version number. */
184+ _n_noop ( '<strong>Version %1$s</strong> addressed a security issue. ' ,
185+ '<strong>Version %1$s</strong> addressed some security issues. ' );
186+
187+ /* translators: 1: WordPress version number, 2: plural number of bugs (singular not used). */
188+ _n_noop ( '<strong>Version %1$s</strong> addressed %2$s bugs. ' ,
189+ '<strong>Version %1$s</strong> addressed %2$s bugs. ' );
190+
191+ /* translators: 1: WordPress version number, 2: plural number of bugs (singular not used). Singular security issue. */
192+ _n_noop ( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs. ' ,
193+ '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs. ' );
194+
195+ /* translators: 1: WordPress version number, 2: plural number of bugs (singular not used). More than one security issue. */
196+ _n_noop ( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs. ' ,
197+ '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs. ' );
198+
199+ __ ( 'For more information, see <a href="%s">the release post</a>. ' );
200+
201+ ?>
0 commit comments