<li>A link to <ahref="https://wordpress.org/">wordpress.org</a> on your site.</li>
</ul>
...
...
@@ -83,7 +83,7 @@
<h2>Final Notes</h2>
<ul>
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <ahref="https://wordpress.org/support/">Support Forums</a>.</li>
<li>WordPress has a robust plugin <abbrtitle="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <ahref="https://codex.wordpress.org/Plugin_API"title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn’t modify any of the core code.</li>
<li>WordPress has a robust plugin <abbrtitle="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <ahref="https://developer.wordpress.org/plugins/">Plugin Developer Handbook</a>. You shouldn’t modify any of the core code.</li>
<h2><?php_e('Your account is now active!');?></h2>
<?php
echo'<p class="lead-in">';
if($signup->domain.$signup->path==''){
printf(__('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'),network_site_url('wp-login.php','login'),$signup->user_login,$signup->user_email,wp_lostpassword_url());
printf(
/* translators: 1: login URL, 2: username, 3: user email, 4: lost password URL */
__('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'),
network_site_url('wp-login.php','login'),
$signup->user_login,
$signup->user_email,
wp_lostpassword_url()
);
}else{
printf(__('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'),'http://'.$signup->domain,$signup->domain,$signup->user_login,$signup->user_email,wp_lostpassword_url());
printf(
/* translators: 1: site URL, 2: site domain, 3: username, 4: user email, 5: lost password URL */
__('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'),
'http://'.$signup->domain,
$signup->domain,
$signup->user_login,
$signup->user_email,
wp_lostpassword_url()
);
}
echo'</p>';
}else{
?>
<h2><?php_e('An error occurred during the activation');?></h2>
<h2><?php_e('An error occurred during the activation');?></h2>
<pclass="view"><?phpprintf(__('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>'),$url,esc_url($login_url));?></p>
<pclass="view"><?php
/* translators: 1: site URL, 2: login URL */
printf(__('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>'),$url,esc_url($login_url));
?></p>
<?phpelse:?>
<pclass="view"><?phpprintf(__('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.'),network_site_url('wp-login.php','login'),network_home_url());?></p>
<pclass="view"><?php
/* translators: 1: login URL, 2: network home URL */
printf(__('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.'),network_site_url('wp-login.php','login'),network_home_url());
<h1><?phpprintf(__('Welcome to WordPress %s'),$display_version);?></h1>
<divclass="about-text"><?phpprintf(__('Thank you for updating! WordPress %s streamlines your workflow, whether you’re writing or building your site.'),$display_version);?></div>
<pclass="about-text"><?phpprintf(__('Thank you for updating to the latest version. WordPress %s changes a lot behind the scenes to make your WordPress experience even better!'),$display_version);?></p>