diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2014-01-01 21:23:43 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2014-01-01 21:23:43 +0100 |
commit | df7f46c1ff8a9bc903e040349024d5c0c2f5be94 (patch) | |
tree | fc03f97b788358617bdf90e3109ced11489f45fe /template | |
parent | cae26fc87f03b8fb44376932c06e2d3d7411a065 (diff) | |
download | bugzilla-df7f46c1ff8a9bc903e040349024d5c0c2f5be94.tar.gz bugzilla-df7f46c1ff8a9bc903e040349024d5c0c2f5be94.tar.xz |
Bug 918384 - backport upstream bug 756048 to bmo/4.2 to allow setting bug/attachment flags using the webservices
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 5851d439f..46e181409 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -737,6 +737,16 @@ You are not allowed to edit properties of the '[% flagtype.name FILTER html %]' flag type, because this flag type is not available for the products you can administer. + [% ELSIF error == "flag_not_unique" %] + [% title = "Flag not Unique" %] + The flag '[% value FILTER html %]' has been set multiple times. + You must specify the id value to update the flag. + + [% ELSIF error == "flag_type_not_unique" %] + [% title = "Flag Type not Unique" %] + The flag type '[% value FILTER html %]' matches several flag types. + You must specify the type id value to update or add a flag. + [% ELSIF error == "flag_type_not_multiplicable" %] [% docslinks = {'flags-overview.html' => 'An overview on Flags', 'flags.html' => 'Using Flags'} %] |