diff options
author | Michael Tänzer <neo@nhng.de> | 2011-08-02 23:49:15 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2011-08-02 23:49:15 +0200 |
commit | 14276ff913b9c8138b44c73951b26b2d54caab85 (patch) | |
tree | 80b7ba941126ce5cfa1aed5353ad4aa0b5df05fb | |
parent | a759a1fae5dfde2c72a3d92cc5164dd1d0abd86a (diff) | |
download | cacert-devel-14276ff913b9c8138b44c73951b26b2d54caab85.tar.gz cacert-devel-14276ff913b9c8138b44c73951b26b2d54caab85.tar.xz cacert-devel-14276ff913b9c8138b44c73951b26b2d54caab85.zip |
bug 953: Replace "Password" with "Pass Phrase"bug-953
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rw-r--r-- | includes/account.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/account.php b/includes/account.php index 591871f..24c61d8 100644 --- a/includes/account.php +++ b/includes/account.php @@ -1290,7 +1290,7 @@ showheader(_("My CAcert.org Account!")); if($_SESSION['_config']['user']['pword1'] == "" || $_SESSION['_config']['user']['pword1'] != $_SESSION['_config']['user']['pword2']) { - echo '<h3 style="color:red">', _("Failure: Password not Changed"), + echo '<h3 style="color:red">', _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; echo _("New Pass Phrases specified don't match or were blank."); } else { @@ -1309,20 +1309,20 @@ if(strlen($_SESSION['_config']['user']['pword1']) < 6) { echo '<h3 style="color:red">', - _("Failure: Password not Changed"), '</h3>', "\n"; + _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; echo _("The Pass Phrase you submitted was too short."); } else if($score < 3) { echo '<h3 style="color:red">', - _("Failure: Password not Changed"), '</h3>', "\n"; + _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; printf(_("The Pass Phrase you submitted failed to contain enough differing characters and/or contained words from your name and/or email address. Only scored %s points out of 6."), $score); } else if($rc <= 0) { echo '<h3 style="color:red">', - _("Failure: Password not Changed"), '</h3>', "\n"; + _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; echo _("You failed to correctly enter your current Pass Phrase."); } else { mysql_query("update `users` set `password`=sha1('".$_SESSION['_config']['user']['pword1']."') where `id`='".$_SESSION['profile']['id']."'"); - echo '<h3>', _("Password Changed Successfully"), '</h3>', "\n"; + echo '<h3>', _("Pass Phrase Changed Successfully"), '</h3>', "\n"; echo _("Your Pass Phrase has been updated and your primary email account has been notified of the change."); $body = sprintf(_("Hi %s,"),$_SESSION['profile']['fname'])."\n"; $body .= _("You are receiving this email because you or someone else")."\n"; |