Changeset 3178
- Timestamp:
- 05/18/2016 11:40:42 PM (9 years ago)
- 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 112 112 113 113 // 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 ); 115 115 116 116 /* Translators: Plugin name. */ … … 151 151 // Send email. 152 152 $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 ); 154 154 155 155 /* Translators: Plugin name. */ -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-review-tools.php
r3177 r3178 31 31 <input type="hidden" name="to_email" value="<?php echo esc_attr( $author->user_email ); ?>" /> 32 32 <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 ); ?>" /> 34 34 <button class="button button-primary" type="submit"><?php _e( 'Contact plugin author', 'wporg-plugins' ); ?></button> 35 35 </form>
Note: See TracChangeset
for help on using the changeset viewer.