diff --git wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
index e00fc9e..cb89c64 100644
|
|
class Upload_Handler { |
98 | 98 | // Is there already a plugin by a different author? |
99 | 99 | if ( $plugin_post instanceof \WP_Post && $plugin_post->post_author != get_current_user_id() ) { |
100 | 100 | /* translators: 1: plugin slug, 2: style.css */ |
101 | | return sprintf( __( 'There is already a plugin called %1$s by a different author. Please change the name of your plugin and upload it again.', 'wporg-plugins' ), |
| 101 | return sprintf( __( 'There is already a plugin called %1$s by a different author. Please change the name of your plugin in the plugin header file and upload it again.', 'wporg-plugins' ), |
102 | 102 | '<code>' . $this->plugin_slug . '</code>' |
103 | 103 | ); |
104 | 104 | } |