diff options
author | jkeiser%netscape.com <> | 2003-07-31 05:04:48 +0200 |
---|---|---|
committer | jkeiser%netscape.com <> | 2003-07-31 05:04:48 +0200 |
commit | 2a3c2708fd1f55bd06d0b48a132d487a1745c075 (patch) | |
tree | 0c2706af44e39b5497303aa4f85d067eaa60be9c /template/en/default/global | |
parent | e98093ef9f40cf2ab88a939e05de89400906352a (diff) | |
download | bugzilla-2a3c2708fd1f55bd06d0b48a132d487a1745c075.tar.gz bugzilla-2a3c2708fd1f55bd06d0b48a132d487a1745c075.tar.xz |
Patch Viewer, a pretty way of viewing and manipulating patches (bug 174942). Requires PatchIterator to be installed, classes uploaded to that bug and will be soon in CPAN.
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 8aa3842c8..de5d60c6c 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -344,6 +344,19 @@ Valid types must be of the form <em>foo/bar</em> where <em>foo</em> is either <em>application, audio, image, message, model, multipart, text,</em> or <em>video</em>. + + [% ELSIF error == "invalid_context" %] + [% title = "Invalid Context" %] + The context [% context FILTER html %] is invalid (must be a number, + "file" or "patch"). + + [% ELSIF error == "invalid_format" %] + [% title = "Invalid Format" %] + The format "[% format FILTER html %]" is invalid (must be one of + [% FOREACH my_format = formats %] + "[% my_format FILTER html %]" + [% END %] + ). [% ELSIF error == "invalid_maxrow" %] [% title = "Invalid Max Rows" %] @@ -427,6 +440,10 @@ The query named <em>[% queryname FILTER html %]</em> does not exist. + [% ELSIF error == "must_be_patch" %] + [% title = "Attachment Must Be Patch" %] + Attachment #[% attach_id FILTER html %] must be a patch. + [% ELSIF error == "missing_subcategory" %] [% title = "Missing Subcategory" %] You did not specify a subcategory for this series. |