diff options
author | lpsolit%gmail.com <> | 2005-08-31 07:43:04 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-31 07:43:04 +0000 |
commit | ce9066eab882827f5f58417a32de343c6a54d296 (patch) | |
tree | f4775f98f29e9e03ade3b68c8d452c1a6bdca90e /template/en/default/global | |
parent | 5fbf48df3df4d8be8637e85467fe6423ed7f1ed1 (diff) | |
download | bugs-ce9066eab882827f5f58417a32de343c6a54d296.tar bugs-ce9066eab882827f5f58417a32de343c6a54d296.tar.gz bugs-ce9066eab882827f5f58417a32de343c6a54d296.tar.bz2 bugs-ce9066eab882827f5f58417a32de343c6a54d296.tar.xz bugs-ce9066eab882827f5f58417a32de343c6a54d296.zip |
Bug 30345: Can mark bugs duplicates of each other [dupe loops] - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index e7798b068..3e1a2a3ef 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -336,9 +336,21 @@ This [% terms.bug %] has already been marked as a duplicate of [% terms.bug %] [%+ dupe_of FILTER html %]. - [% ELSIF error == "dupe_of_self_disallowed" %] - [% title = "Cannot mark $terms.abug as a duplicate of itself" %] - You can't mark [% terms.abug %] as a duplicate of itself. + [% ELSIF error == "dupe_not_allowed" %] + [% title = "Cannot mark $terms.bugs as duplicates" %] + You cannot mark [% terms.bugs %] as duplicates when + changing several [% terms.bugs %] at once. + + [% ELSIF error == "dupe_loop_detected" %] + [% title = "Loop detected among duplicates" %] + You cannot mark [% terms.bug %] [%+ bug_id FILTER html %] as + a duplicate of + [% IF dupe_of == bug_id %] + itself + [% ELSE %] + [%+ terms.bug %] [%+ dupe_of FILTER html %], because it + would create a duplicate loop + [% END %]. [% ELSIF error == "email_change_in_progress" %] [% title = "Email Change Already In Progress" %] |