Changeset 1138
- Timestamp:
- 10/30/07 16:48:23 (1 year ago)
- Files:
-
- trunk/wp-includes/wpmu-functions.php (modified) (1 diff)
- trunk/wp-signup.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/wpmu-functions.php
r1134 r1138 1066 1066 $message = sprintf(__("To activate your blog, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login.\n\nAfter you activate, you can visit your blog here:\n\n%s"), $activate_url, "http://{$domain}{$path}"); 1067 1067 // TODO: Don't hard code activation link. 1068 $subject = sprintf(__('Activate %s'), $domain.$path);1068 $subject = '[' . $from_name . '] ' . sprintf(__('Activate %s'), 'http://' . $domain . $path); 1069 1069 wp_mail($user_email, $subject, $message, $message_headers); 1070 1070 } trunk/wp-signup.php
r1115 r1138 224 224 function confirm_another_blog_signup($domain, $path, $blog_title, $user_name, $user_email, $meta) { 225 225 ?> 226 <h2><?php printf(__(' %s Is Yours'), $domain.$path ) ?></h2>226 <h2><?php printf(__('The blog %s is yours.'), $domain.$path ) ?></h2> 227 227 <p><?php printf(__('<a href="http://%1$s">http://%2$s</a> is your new blog. <a href="%3$s">Login</a> as "%4$s" using your existing password.'), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $user_name) ?></p> 228 228 <?php … … 303 303 function confirm_user_signup($user_name, $user_email) { 304 304 ?> 305 <h2><?php printf(__('%s Is Your New Username'), $user_name) ?></h2>305 <h2><?php printf(__('%s is your new username'), $user_name) ?></h2> 306 306 <p><?php _e('But, before you can start using your new username, <strong>you must activate it</strong>.') ?></p> 307 307 <p><?php printf(__('Check your inbox at <strong>%1$s</strong> and click the link given. '), $user_email) ?></p> … … 370 370 function confirm_blog_signup($domain, $path, $blog_title, $user_name, $user_email, $meta) { 371 371 ?> 372 <h2><?php printf(__(' %s Is Yours'), $domain.$path) ?></h2>372 <h2><?php printf(__('The blog %s is yours'), $domain.$path) ?></h2> 373 373 <p><?php _e('But, before you can start using your blog, <strong>you must activate it</strong>.') ?></p> 374 374 <p><?php printf(__('Check your inbox at <strong>%s</strong> and click the link given. '), $user_email) ?></p>
