Code Duplication    Length = 4-10 lines in 2 locations

modules/custom-post-types/comics.php 1 location

@@ 516-525 (lines=10) @@
513
514
515
function comics_welcome_email( $welcome_email, $blog_id, $user_id, $password, $title, $meta ) {
516
	if ( ( isset( $meta['vertical'] ) && 'comics' == $meta['vertical'] ) || has_blog_sticker( 'vertical-comics', $blog_id ) ) {
517
		return __( "Welcome! Ready to publish your first strip?
518
519
Your webcomic's new site is ready to go. Get started by <a href=\"BLOG_URLwp-admin/customize.php#title\">setting your comic's title and tagline</a> so your readers know what it's all about.
520
521
Looking for more help with setting up your site? Check out the WordPress.com <a href=\"http://learn.wordpress.com/\" target=\"_blank\">beginner's tutorial</a> and the <a href=\"http://en.support.wordpress.com/comics/\" target=\"_blank\">guide to comics on WordPress.com</a>. Dive right in by <a href=\"BLOG_URLwp-admin/customize.php#title\">publishing your first strip!</a>
522
523
Lots of laughs,
524
The WordPress.com Team", 'jetpack' );
525
	}
526
527
	return $welcome_email;
528
}

class.jetpack-cli.php 1 location

@@ 36-39 (lines=4) @@
33
			WP_CLI::error( __( 'Jetpack is not currently connected to WordPress.com', 'jetpack' ) );
34
		}
35
36
		if ( isset( $args[0] ) && 'full' !== $args[0] ) {
37
			/* translators: %s is a command like "prompt" */
38
			WP_CLI::error( sprintf( __( '%s is not a valid command.', 'jetpack' ), $args[0] ) );
39
		}
40
41
		$master_user_email = Jetpack::get_master_user_email();
42