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

git-svn-id: http://svn.automattic.com/wordpress/trunk@13844 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-03-27 07:22:05 +00:00
parent 2cb4abfa63
commit d0404ed946
1 changed files with 3 additions and 3 deletions

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>';
}