Ticket #51415: 51415-update-links.2.diff
File 51415-update-links.2.diff, 3.3 KB (added by , 4 years ago) |
---|
-
src/wp-admin/about.php
171 171 printf( 172 172 /* translators: %s: Accessibility statement feature plugin link. */ 173 173 __( 'Even if you’re not an expert, you can start letting folks know about your site’s commitment to accessibility at the click of a button! The new <a href="%s">feature plugin</a> includes template copy for you to update and publish, and it’s written to support different contexts and jurisdictions.' ), 174 ' #'174 'https://github.com/10degrees/accessibility-statement-plugin' 175 175 ); 176 176 ?> 177 177 </p> … … 192 192 </div> 193 193 <div class="column"> 194 194 <h3><?php _e( 'More PHP 8 support' ); ?></h3> 195 <p><?php _e( '5.6 marks the first steps toward WordPress Core support for PHP 8. Now is a great time to start planning how your WordPress products, services and sites can support the latest PHP version. For more information about what to expect next, [link text].' ); ?></p> 195 <p> 196 <?php 197 printf( 198 /* translators: %s: WordPress and PHP 8 dev note link. */ 199 __( '5.6 marks the first steps toward WordPress Core support for PHP 8. Now is a great time to start planning how your WordPress products, services and sites can support the latest PHP version. For more information about what to expect next, <a href="%s">read the PHP 8 dev note</a>.' ), 200 'https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/' 201 ); 202 ?> 203 </p> 196 204 </div> 197 205 </div> 198 206 <div class="about__section"> … … 203 211 printf( 204 212 /* translators: %s: jQuery update test plugin link. */ 205 213 __( 'Updates to jQuery in WordPress take place across three releases: 5.5, 5.6, and 5.7. As we reach the mid-point of this process, run the <a href="%s">update test plugin</a> to check your sites for errors ahead of time.' ), 206 'https://wordpress.org/plugins/wp-jquery-update-test/' 214 current_user_can( 'install_plugins' ) ? 215 esc_url( 216 network_admin_url( 'plugin-install.php?tab=search&type=term&s=slug:wp-jquery-update-test' ) 217 ) : 218 'https://wordpress.org/plugins/wp-jquery-update-test/' 207 219 ); 208 220 ?> 209 221 </p> … … 212 224 printf( 213 225 /* translators: %s: jQuery migrate plugin link. */ 214 226 __( 'If you find issues with the way your site looks (e.g. a slider doesn’t work, a button is stuck — that sort of thing), install the <a href="%s">jQuery Migrate plugin.</a>' ), 215 'https://wordpress.org/plugins/enable-jquery-migrate-helper/ ' 227 current_user_can( 'install_plugins' ) ? 228 esc_url( 229 network_admin_url( 'plugin-install.php?tab=search&type=term&s=slug:enable-jquery-migrate-helper' ) 230 ) : 231 'https://wordpress.org/plugins/enable-jquery-migrate-helper/' 216 232 ); 217 233 ?> 218 234 </p> … … 229 245 printf( 230 246 /* translators: %s: WordPress 5.6 Field Guide link. */ 231 247 __( 'Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of. <a href="%s">WordPress 5.6 Field Guide.</a>' ), 232 ' #'248 'https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/' 233 249 ); 234 250 ?> 235 251 </p>