]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 159901 - token.cgi: localize strings send to message.html.tmpl. Patch by burnus...
authorgerv%gerv.net <>
Sat, 10 Aug 2002 15:06:50 +0000 (15:06 +0000)
committergerv%gerv.net <>
Sat, 10 Aug 2002 15:06:50 +0000 (15:06 +0000)
template/en/default/account/email/confirm.html.tmpl
template/en/default/account/password/set-forgotten-password.html.tmpl
template/en/default/global/messages.html.tmpl
token.cgi

index 0b1ea5334611f3504b8e5dc734d770fed6cf15e0..8cc6e1040e5c15864ec5f59c240236364cbd786d 100644 (file)
@@ -23,6 +23,7 @@
   # token: string. The token to be used in this address change.
   #%]
   
+[% title = "Confirm Change Email" %]
 [% PROCESS global/header.html.tmpl %]
 
 <p>
index eaabf7dc4b05ef4296d5d7621375efdb4cf53654..cf4af8bda44895208e5d618cf0c640f4b13e718b 100644 (file)
@@ -19,6 +19,7 @@
   # Contributor(s): Gervase Markham <gerv@gerv.net>
   #%]
 
+[% title = "Change Password" %]
 [% PROCESS global/header.html.tmpl %]
 
 <p>
index 2cc25e0c5baab6bb7618415904d55fa78ae28dc8..6b12111a476c2deb0a1ebdb93d931e78ced32911 100644 (file)
     The cookie that was remembering your login is now gone. You will be 
     prompted for a login the next time it is required.
 
+  [% ELSIF message_tag == "login_changed" %]
+    [% title = "Bugzilla Login Changed" %]
+    Your Bugzilla login has been changed.
+
+  [% ELSIF message_tag == "password_changed" %]
+    [% title = "Password Changed" %]
+    Your password has been changed.
+
+  [% ELSIF message_tag == "password_change_canceled"
+    [% title = "Cancel Request to Change Password" %]
+    Your request has been cancelled.
+
+  [% ELSIF message_tag == "password_change_request" %]
+    [% title = "Request to Change Password" %]
+    A token for changing your password has been emailed to you.
+    Follow the instructions in that email to change your password.
+
   [% ELSE %]
     [%# Cope with legacy calling convention, where "message" was the string
       # to print. 
index 72406223f3745885022390a8e11ed1d8a7bbea4c..2225e4f8bdad07b3b6e5126a08adf2c0d238a3d8 100755 (executable)
--- 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());