Making WordPress.org

Changeset 3178


Ignore:
Timestamp:
05/18/2016 11:40:42 PM (9 years ago)
Author:
obenland
Message:

Plugin Directory: Adjust subject line to be similar to others.

Makes sure all subjects start with [WordPress.org Plugins].

See #1690.

Location:
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-status-transitions.php

    r3082 r3178  
    112112
    113113        // Send email.
    114         $subject = sprintf( __( '[WordPress Plugins] %s has been approved!', 'wporg-plugins' ), $post->post_title );
     114        $subject = sprintf( __( '[WordPress.org Plugins] %s has been approved!', 'wporg-plugins' ), $post->post_title );
    115115
    116116        /* Translators: Plugin name. */
     
    151151        // Send email.
    152152        $email   = get_user_by( 'id', $post->post_author )->user_email;
    153         $subject = sprintf( __( '[WordPress Plugins] %s has been rejected', 'wporg-plugins' ), $post->post_title );
     153        $subject = sprintf( __( '[WordPress.org Plugins] %s has been rejected', 'wporg-plugins' ), $post->post_title );
    154154
    155155        /* Translators: Plugin name. */
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-review-tools.php

    r3177 r3178  
    3131                <input type="hidden" name="to_email" value="<?php echo esc_attr( $author->user_email ); ?>" />
    3232                <input type="hidden" name="to_name" value="<?php echo esc_attr( $author->display_name ); ?>" />
    33                 <input type="hidden" name="subject" value="<?php printf( esc_attr__( 'Feedback for %s' ), $post->post_title ); ?>" />
     33                <input type="hidden" name="subject" value="<?php printf( esc_attr__( '[WordPress.org Plugins] Request: %s' ), $post->post_title ); ?>" />
    3434                <button class="button button-primary" type="submit"><?php _e( 'Contact plugin author', 'wporg-plugins' ); ?></button>
    3535            </form>
Note: See TracChangeset for help on using the changeset viewer.