diff options
author | lpsolit%gmail.com <> | 2008-04-03 00:42:25 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-04-03 00:42:25 +0200 |
commit | 43b7dc314234e476a80d9acbd07292d7286cca5a (patch) | |
tree | 87c77bfa7d65b7636447232feb77fe5db1d7d8d4 /editproducts.cgi | |
parent | 0e4b8f785d87afacbf432f6985a3d906b35bba21 (diff) | |
download | bugzilla-43b7dc314234e476a80d9acbd07292d7286cca5a.tar.gz bugzilla-43b7dc314234e476a80d9acbd07292d7286cca5a.tar.xz |
Bug 405946: Some emails are not sent in the language chosen by the addressee - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=LpSolit
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index d168360a6..4347ce836 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -939,10 +939,7 @@ if ($action eq 'update') { my ($who, $id) = (@$vote); # If some votes are removed, RemoveVotes() returns a list # of messages to send to voters. - my $msgs = - RemoveVotes($id, $who, "The rules for voting on this product " . - "has changed;\nyou had too many votes " . - "for a single bug."); + my $msgs = RemoveVotes($id, $who, 'votes_too_many_per_bug'); foreach my $msg (@$msgs) { MessageToMTA($msg); } @@ -991,11 +988,7 @@ if ($action eq 'update') { foreach my $bug_id (@$bug_ids) { # RemoveVotes() returns a list of messages to send # in case some voters had too many votes. - my $msgs = - RemoveVotes($bug_id, $who, "The rules for voting on this " . - "product has changed; you had " . - "too many\ntotal votes, so all " . - "votes have been removed."); + my $msgs = RemoveVotes($bug_id, $who, 'votes_too_many_per_user'); foreach my $msg (@$msgs) { MessageToMTA($msg); } |