Changeset 60528
- Timestamp:
- 07/31/2025 10:47:24 PM (6 months ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
-
class-wp-plugin-install-list-table.php (modified) (1 diff)
-
plugin-install.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r60216 r60528 340 340 341 341 $this->screen->render_screen_reader_content( 'heading_views' ); 342 343 printf( 344 /* translators: %s: https://wordpress.org/plugins/ */ 345 '<p>' . __( 'Plugins extend and expand the functionality of WordPress. You may install plugins from the <a href="%s">WordPress Plugin Directory</a> right on this page, or upload a plugin in .zip format by clicking the button above.' ) . '</p>', 346 __( 'https://wordpress.org/plugins/' ) 347 ); 342 348 ?> 343 349 <div class="wp-filter"> -
trunk/src/wp-admin/includes/plugin-install.php
r58873 r60528 400 400 break; 401 401 case 'install_plugins_featured': 402 printf(403 /* translators: %s: https://wordpress.org/plugins/ */404 '<p>' . __( 'Plugins extend and expand the functionality of WordPress. You may install plugins in the <a href="%s">WordPress Plugin Directory</a> right from here, or upload a plugin in .zip format by clicking the button at the top of this page.' ) . '</p>',405 __( 'https://wordpress.org/plugins/' )406 );407 402 break; 408 403 case 'install_plugins_recommended': … … 414 409 } 415 410 break; 411 } 412 if ( isset( $_GET['tab'] ) && 'featured' === $_GET['tab'] ) { 413 echo '<br />'; 416 414 } 417 415 ?>
Note: See TracChangeset
for help on using the changeset viewer.