Ticket #2830: 2830.1.diff
File 2830.1.diff, 2.7 KB (added by , 8 years ago) |
---|
-
trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
250 250 251 251 // Success! 252 252 /* translators: 1: plugin name */ 253 return sprintf( __( 'Thank you for uploading %1$s to the WordPress Plugin Directory. We’ve sent you an email verifying this submission. Please make sure to whitelist our email address - plugins@wordpress.org - to ensure you receive all our communications.', 'wporg-plugins' ), 254 esc_html( $this->plugin['Name'] ) 253 return sprintf( __( 'Thank you for uploading %1$s to the WordPress Plugin Directory. It has been given the initial plugin slug of %2$s, however that is subject to change based on the results of your code review. We’ve sent you an email verifying this submission. Please make sure to whitelist our email address - plugins@wordpress.org - to ensure you receive all our communications. If there is an error in your submission, such as you require a specific plugin slug or need a different user account to own the plugin, please email us as we can correct many issues before approval.', 'wporg-plugins' ), 254 esc_html( $this->plugin['Name'] ), 255 esc_html( $this->plugin_slug ) 255 256 ); 256 257 } 257 258 … … 360 361 ); 361 362 362 363 /* translators: 1: plugin name, 2: Trac ticket URL */ 363 $email_content = sprintf( __( 'Thank you for uploading %1$s to the WordPress Plugin Directory. If your plugin is selected to be part of the directory we\'ll send a follow up email. If there is a problem with your plugin submission, such as an incorrect display name or slug, please reply to this email and let us know. 364 $email_content = sprintf( __( 'Thank you for uploading %1$s to the WordPress Plugin Directory. We will review your submission as soon as possible and send you a follow up email with the results. 365 366 Your plugin has been given the initial slug of %2$s, however this is subject to change based on the results of your review. 364 367 368 If there is a problem with this submission, such as an incorrect display name or slug, please reply to this email and let us know. In most cases, we can correct errors as long as the plugin has not yet been approved. Please do not submit your plugin multiple times in an attempt to correct the issue, just email us. 369 365 370 -- 366 371 The WordPress Plugin Directory Team 367 372 https://make.wordpress.org/plugins', 'wporg-plugins' ), 368 $this->plugin['Name'] 373 $this->plugin['Name'], 374 $this->plugin_slug 369 375 ); 370 376 371 377 $user_email = wp_get_current_user()->user_email;