diff -uNr wordpress/wp-admin/includes/class-wp-plugins-list-table.php wordpress-productnames.org/wp-admin/includes/class-wp-plugins-list-table.php
old
|
new
|
|
322 | 322 | |
323 | 323 | // We assume that somebody who can install plugins in multisite is experienced enough to not need this helper link. |
324 | 324 | if ( ! is_multisite() && current_user_can( 'install_plugins' ) ) { |
325 | | echo ' <a href="' . esc_url( admin_url( 'plugin-install.php?tab=search&s=' . urlencode( $s ) ) ) . '">' . __( 'Search for plugins in the WordPress Plugin Directory.' ) . '</a>'; |
| 325 | echo ' <a href="' . esc_url( admin_url( 'plugin-install.php?tab=search&s=' . urlencode( $s ) ) ) . '">' . __( 'Search for plugins in the WordPress.org Plugin Directory.' ) . '</a>'; |
326 | 326 | } |
327 | 327 | } elseif ( ! empty( $plugins['all'] ) ) |
328 | 328 | _e( 'No plugins found.' ); |
diff -uNr wordpress/wp-admin/includes/plugin-install.php wordpress-productnames.org/wp-admin/includes/plugin-install.php
old
|
new
|
|
210 | 210 | */ |
211 | 211 | function install_dashboard() { |
212 | 212 | ?> |
213 | | <p><?php printf( __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="%1$s">WordPress Plugin Directory</a> or upload a plugin in .zip format via <a href="%2$s">this page</a>.' ), 'https://wordpress.org/plugins/', self_admin_url( 'plugin-install.php?tab=upload' ) ); ?></p> |
| 213 | <p><?php printf( __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="%1$s">WordPress.org Plugin Directory</a> or upload a plugin in .zip format via <a href="%2$s">this page</a>.' ), 'https://wordpress.org/plugins/', self_admin_url( 'plugin-install.php?tab=upload' ) ); ?></p> |
214 | 214 | |
215 | 215 | <?php display_plugins_table(); ?> |
216 | 216 | |
diff -uNr wordpress/wp-admin/plugins.php wordpress-productnames.org/wp-admin/plugins.php
old
|
new
|
|
372 | 372 | 'content' => |
373 | 373 | '<p>' . __('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.') . '</p>' . |
374 | 374 | '<p>' . sprintf( |
375 | | /* translators: 1: Plugin Browser/Installer URL, 2: WordPress Plugin Directory URL 3: local plugin directory */ |
376 | | __( 'You can find additional plugins for your site by using the <a href="%1$s">Plugin Browser/Installer</a> functionality or by browsing the <a href="%2$s" target="_blank">WordPress Plugin Directory</a> directly and installing new plugins manually. To manually install a plugin you generally just need to upload the plugin file into your %3$s directory. Once a plugin has been installed, you can activate it here.' ), |
| 375 | /* translators: 1: Plugin Browser/Installer URL, 2: WordPress.org Plugin Directory URL 3: local plugin directory */ |
| 376 | __( 'You can find additional plugins for your site by using the <a href="%1$s">Plugin Browser/Installer</a> functionality or by browsing the <a href="%2$s" target="_blank">WordPress.org Plugin Directory</a> directly and installing new plugins manually. To manually install a plugin you generally just need to upload the plugin file into your %3$s directory. Once a plugin has been installed, you can activate it here.' ), |
377 | 377 | 'plugin-install.php', |
378 | 378 | 'https://wordpress.org/plugins/', |
379 | 379 | '<code>/wp-content/plugins</code>' |