summaryrefslogtreecommitdiffstats
path: root/token.cgi
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-08-10 17:06:50 +0200
committergerv%gerv.net <>2002-08-10 17:06:50 +0200
commitf35caa4adb4ae31c5ff7611194b00ebec5ff66aa (patch)
tree7d2298565ae01f9a7410bc83bc340ddf80dbd8a5 /token.cgi
parent61890499431396f3209e0a135122a1af507364f6 (diff)
downloadbugzilla-f35caa4adb4ae31c5ff7611194b00ebec5ff66aa.tar.gz
bugzilla-f35caa4adb4ae31c5ff7611194b00ebec5ff66aa.tar.xz
Bug 159901 - token.cgi: localize strings send to message.html.tmpl. Patch by burnus; r=gerv.
Diffstat (limited to 'token.cgi')
-rwxr-xr-xtoken.cgi16
1 files changed, 4 insertions, 12 deletions
diff --git a/token.cgi b/token.cgi
index 72406223f..2225e4f8b 100755
--- a/token.cgi
+++ b/token.cgi
@@ -172,10 +172,7 @@ exit;
sub requestChangePassword {
Token::IssuePasswordToken($::FORM{'loginname'});
- $vars->{'title'} = "Request to Change Password";
- $vars->{'message'} = "A token for changing your password has been
- emailed to you. Follow the instructions in
- that email to change your password.";
+ $vars->{'message'} = "password_change_request";
print "Content-Type: text/html\n\n";
$template->process("global/message.html.tmpl", $vars)
@@ -183,7 +180,6 @@ sub requestChangePassword {
}
sub confirmChangePassword {
- $vars->{'title'} = "Change Password";
$vars->{'token'} = $::token;
print "Content-Type: text/html\n\n";
@@ -194,8 +190,7 @@ sub confirmChangePassword {
sub cancelChangePassword {
Token::Cancel($::token, "user requested cancellation");
- $vars->{'title'} = "Cancel Request to Change Password";
- $vars->{'message'} = "Your request has been cancelled.";
+ $vars->{'message'} = "password_change_canceled";
print "Content-Type: text/html\n\n";
$template->process("global/message.html.tmpl", $vars)
@@ -222,8 +217,7 @@ sub changePassword {
InvalidateLogins($userid);
- $vars->{'title'} = "Password Changed";
- $vars->{'message'} = "Your password has been changed.";
+ $vars->{'message'} = "password_changed";
print "Content-Type: text/html\n\n";
$template->process("global/message.html.tmpl", $vars)
@@ -234,7 +228,6 @@ sub confirmChangeEmail {
# Return HTTP response headers.
print "Content-Type: text/html\n\n";
- $vars->{'title'} = "Confirm Change Email";
$vars->{'token'} = $::token;
$template->process("account/email/confirm.html.tmpl", $vars)
@@ -279,8 +272,7 @@ sub changeEmail {
# Let the user know their email address has been changed.
- $vars->{'title'} = "Bugzilla Login Changed";
- $vars->{'message'} = "Your Bugzilla login has been changed.";
+ $vars->{'message'} = "login_changed";
$template->process("global/message.html.tmpl", $vars)
|| ThrowTemplateError($template->error());