From 4641df1aafa2115bd4455a6e3a1a292f754c3df5 Mon Sep 17 00:00:00 2001
From: "gerv%gerv.net"
Date: Wed, 18 Sep 2002 20:09:12 +0000
Subject: [PATCH] Bug 163790 - colchange.cgi is not localisable. Patch by gerv;
r=burnus.
git-svn-id: svn://10.0.0.236/trunk@129950 18797224-902f-48f8-a5cc-f745e15eee43
---
.../en/default/list/change-columns.html.tmpl | 27 ++++++++++++++-----
1 file changed, 21 insertions(+), 6 deletions(-)
diff --git a/mozilla/webtools/bugzilla/template/en/default/list/change-columns.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/list/change-columns.html.tmpl
index 3f2122b38bd..aae74d019af 100644
--- a/mozilla/webtools/bugzilla/template/en/default/list/change-columns.html.tmpl
+++ b/mozilla/webtools/bugzilla/template/en/default/list/change-columns.html.tmpl
@@ -28,18 +28,33 @@
this feature requires cookies to work.
-[% FOREACH column = masterlist %]
- [% desc.${column} = column %]
-[% END %]
-[% desc.summary = "Summary (first 60 characters)" %]
-[% desc.summaryfull = "Full Summary" %]
+[% desc = { "opendate" => "Open Date",
+ "changeddate" => "Last Changed Date",
+ "severity" => "Severity",
+ "priority" => "Priority",
+ "platform" => "Hardware",
+ "owner" => "Owner",
+ "reporter" => "Reporter",
+ "status" => "Status",
+ "resolution" => "Resolution",
+ "product" => "Product",
+ "component" => "Component",
+ "version" => "Version",
+ "os" => "OS",
+ "votes" => "Votes",
+ "keywords" => "Keywords",
+ "target_milestone" => "Target",
+ "qa_contact" => "QA Contact",
+ "status_whiteboard" => "Whiteboard",
+ "summary" => "Summary (first 60 characters)",
+ "summaryfull" => "Full Summary" } %]