Password nag string cleanup. Could be good to also increase the line-height on div.updated/error at some point.

git-svn-id: https://develop.svn.wordpress.org/trunk@13844 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-03-27 07:22:05 +00:00
parent a5b40ae46a
commit 11dfbcba06

View File

@ -850,9 +850,9 @@ function default_password_nag() {
if ( ! get_user_option('default_password_nag') ) //Short circuit it.
return;
echo '<div class="error default-password-nag"><p>';
printf(__("Notice: you're using the auto-generated password for your account. Would you like to change it to something you'll remember easier?<br />
<a href='%s'>Yes, Take me to my profile page</a> | <a href='%s' id='default-password-nag-no'>No Thanks, Do not remind me again.</a>"), admin_url('profile.php') . '#password', '?default_password_nag=0');
echo '<div class="error default-password-nag"><p><strong>' . __('Notice:') . '</strong> ';
printf(__("You're using the auto-generated password for your account. Would you like to change it to something you'll remember easier?<br/>
<a href='%s'>Yes, take me to my profile page</a> | <a href='%s' id='default-password-nag-no'>No thanks, do not remind me again</a>"), admin_url('profile.php') . '#password', '?default_password_nag=0');
echo '</p></div>';
}