Making WordPress.org

Ticket #4482: 4482.diff

File 4482.diff, 2.3 KB (added by Ipstenu, 5 years ago)
  • trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-status-transitions.php

     
    236236                // Send email.
    237237                $subject = sprintf( __( '[WordPress Plugin Directory] %s has been approved!', 'wporg-plugins' ), $post->post_title );
    238238
    239                 /* translators: 1: plugin name, 2: plugin slug */
     239                /* translators: 1: plugin name, 2: user ID, 3: plugin slug */
    240240                $content = sprintf(
    241241                        __(
    242242                                'Congratulations, your plugin hosting request for %1$s has been approved.
    243243
    244 Within one hour you will have access to your SVN repository with the WordPress.org username and password you used to log in and submit your request. Your username is case sensitive.
     244Within one (1) hour your account will be granted commit access to your Subversion (SVN) repository. Your username is %2$s and your password is the one you already use to log in to WordPress.org. Keep in mind, your username is case sensitive and you cannot use your email address to log in to SVN.
    245245
    246 https://plugins.svn.wordpress.org/%2$s
     246https://plugins.svn.wordpress.org/%3$s
    247247
    248 Here are some handy links to help you get started.
     248Once your account has been added, you will need to upload your code using a SVN client of your choice. We are unable to upload or maintain your code for you.
    249249
    250 WordPress Plugin Directory Guidelines:
    251 https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/
    252 
    253250Using Subversion with the WordPress Plugin Directory:
    254251https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/
    255252
     
    265262Plugin Assets (header images, etc):
    266263https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/
    267264
     265WordPress Plugin Directory Guidelines:
     266https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/
     267
    268268If you have issues or questions, please reply to this email and let us know.
    269269
    270270Enjoy!
     
    274274https://make.wordpress.org/plugins', 'wporg-plugins'
    275275                        ),
    276276                        $post->post_title,
     277                        $plugin_author->user_login,
    277278                        $post->post_name
    278279                );
    279280