Module: bugzilla Branch: master Commit: bec592171b632297d6212982e2e5ff0fe51738ce URL: http://source.winehq.org/git/bugzilla.git/?a=commit;h=bec592171b632297d62129...
Author: Lei Zhang thestig@google.com Date: Wed Sep 12 15:20:32 2007 -0700
replace generic severity descriptions with wine specific ones (try 2)
Hi,
This is for bug 9110. I changed some of the severity descriptions based on feedback on wine-devel.
From 05a44e8b333ae3b76427f683c287271c146e7818 Mon Sep 17 00:00:00 2001
From: Lei Zhang thestig@google.com Date: Wed, 12 Sep 2007 15:14:57 -0700 Subject: [PATCH] [bugzilla] replace generic severity descriptions with wine specific ones
---
template/en/default/pages/fields.html.tmpl | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/template/en/default/pages/fields.html.tmpl b/template/en/default/pages/fields.html.tmpl index 6b77f8b..ac2a0d8 100644 --- a/template/en/default/pages/fields.html.tmpl +++ b/template/en/default/pages/fields.html.tmpl @@ -217,27 +217,32 @@ This field describes the impact of [% terms.abug %]. <tr> <th>Critical</th>
- <td>crashes, loss of data, severe memory leak</td> + <td>Critical problem that prevents all applications from working</td> </tr>
<tr> <th>Major</th>
- <td>major loss of function</td> + <td>Major loss of functionality for a wide range of applications</td> + </tr> + + <tr> + <th>Normal</th> + + <td>For an application crash or loss of functionality</td> </tr>
<tr> <th>Minor</th>
- <td>minor loss of function, or other problem where easy + <td>For minor loss of functionality, or other problem where an easy workaround is present</td> </tr>
<tr> <th>Trivial</th>
- <td>cosmetic problem like misspelled words or misaligned - text</td> + <td>For a UI glitch that doesn't affect running of a program</td> </tr>
<tr>