diff options
author | travis%sedsystems.ca <> | 2005-02-17 01:25:53 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-17 01:25:53 +0100 |
commit | 8a225c2784f6343cd3958b2baabab5d462b46310 (patch) | |
tree | 7f156d27281486de65f2847beffaeb7b41354605 /template/en/default/global | |
parent | ea7030a701bfdb503df542c3d7e814b8ea702929 (diff) | |
download | bugzilla-8a225c2784f6343cd3958b2baabab5d462b46310.tar.gz bugzilla-8a225c2784f6343cd3958b2baabab5d462b46310.tar.xz |
Bug 277768 : Some validations are missing when editing groups
Patch by Frederic Buclin <LpSolit@gmail.com> r=wurblzap a=justdave
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 41661886c..5c293bd2b 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -309,11 +309,11 @@ [% ELSIF error == "empty_group_description" %] [% title = "The group description can not be empty" %] - You must enter a description for the new group. + You must enter a description for the group. [% ELSIF error == "empty_group_name" %] [% title = "The group name can not be empty" %] - You must enter a name for the new group. + You must enter a name for the group. [% ELSIF error == "entry_access_denied" %] [% title = "Permission Denied" %] @@ -402,6 +402,11 @@ [% title = "Group not specified" %] No group was specified. + [% ELSIF error == "system_group_not_deletable" %] + [% title = "System Groups not deletable" %] + <em>[% name FILTER html %]</em> is a system group. + This group cannot be deleted. + [% ELSIF error == "group_unknown" %] [% title = "Unknown Group" %] The group [% name FILTER html %] does not exist. Please specify |