@@ 519-528 (lines=10) @@ | ||
516 | ||
517 | ||
518 | function comics_welcome_email( $welcome_email, $blog_id, $user_id, $password, $title, $meta ) { |
|
519 | if ( ( isset( $meta['vertical'] ) && 'comics' == $meta['vertical'] ) || has_blog_sticker( 'vertical-comics', $blog_id ) ) { |
|
520 | return __( "Welcome! Ready to publish your first strip? |
|
521 | ||
522 | 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. |
|
523 | ||
524 | 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> |
|
525 | ||
526 | Lots of laughs, |
|
527 | The WordPress.com Team", 'jetpack' ); |
|
528 | } |
|
529 | ||
530 | return $welcome_email; |
|
531 | } |
@@ 45-48 (lines=4) @@ | ||
42 | /* translators: %s is the site URL */ |
|
43 | WP_CLI::line( sprintf( __( 'Checking status for %s', 'jetpack' ), esc_url( get_home_url() ) ) ); |
|
44 | ||
45 | if ( isset( $args[0] ) && 'full' !== $args[0] ) { |
|
46 | /* translators: %s is a command like "prompt" */ |
|
47 | WP_CLI::error( sprintf( __( '%s is not a valid command.', 'jetpack' ), $args[0] ) ); |
|
48 | } |
|
49 | ||
50 | $master_user_email = Jetpack::get_master_user_email(); |
|
51 |