Changeset 12617 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
- Timestamp:
- 06/05/2023 04:28:35 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
r12534 r12617 20 20 * @var string 21 21 */ 22 p rotected$plugin_dir;22 public $plugin_dir; 23 23 24 24 /** … … 27 27 * @var string 28 28 */ 29 p rotected$plugin_root;29 public $plugin_root; 30 30 31 31 /** … … 34 34 * @var array 35 35 */ 36 p rotected$plugin;36 public $plugin; 37 37 38 38 /** … … 41 41 * @var string 42 42 */ 43 p rotected$plugin_slug;43 public $plugin_slug; 44 44 45 45 /** … … 413 413 $message = sprintf( 414 414 /* translators: 1: plugin name, 2: plugin slug, 3: plugins@wordpress.org */ 415 __( 'Thank you for uploading %1$s to the WordPress Plugin Directory. Your plugin has been given the initial slug of %2$s, however that is subject to change based on the results of your code review. If this slug is incorrect, please c ontact us immediately and tell us exactly what the correct slug should be. Remember, a plugin slug cannot be changed once your plugin is approved.' ),415 __( 'Thank you for uploading %1$s to the WordPress Plugin Directory. Your plugin has been given the initial slug of %2$s, however that is subject to change based on the results of your code review. If this slug is incorrect, please change it below. Remember, a plugin slug cannot be changed once your plugin is approved.' ), 416 416 esc_html( $this->plugin['Name'] ), 417 417 '<code>' . $this->plugin_slug . '</code>'
Note: See TracChangeset
for help on using the changeset viewer.