From 204fa576ec9277da886e664d93245cf2d65f1cf7 Mon Sep 17 00:00:00 2001 From: "wurblzap%gmail.com" <> Date: Tue, 12 Feb 2008 05:20:20 +0000 Subject: =?UTF-8?q?Bug=20341508=20=C3=A2=C2=80=C2=93=20GetBugLink()=20shou?= =?UTF-8?q?ld=20be=20localisable.=20Patch=20by=20Marc=20Schumann=20;=20r=3DLpSolit,=20a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Template.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 8c3c014fc..9df831c7a 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -307,14 +307,14 @@ sub get_bug_link { # if we don't change them below (which is highly likely). my ($pre, $title, $post) = ("", "", ""); - $title = $bug_state; + $title = get_text('get_status', {status => $bug_state}); if ($bug_state eq 'UNCONFIRMED') { $pre = ""; $post = ""; } elsif (!is_open_state($bug_state)) { $pre = ''; - $title .= " $bug_res"; + $title .= ' ' . get_text('get_resolution', {resolution => $bug_res}); $post = ''; } if (Bugzilla->user->can_see_bug($bug_num)) { -- cgit v1.2.1