diff options
author | David Lawrence <dkl@mozilla.com> | 2015-09-02 08:40:56 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-02 08:40:56 +0200 |
commit | 3d463f780fd2051751f276f71e27bb47e96dc2aa (patch) | |
tree | 26c7c6f2e745dc2ace396396ed03c7ef8c8f3b7e /template/en/default/global | |
parent | e1c42c8fcdf74f5a810aae1384808b635cdc51a4 (diff) | |
download | bugzilla-3d463f780fd2051751f276f71e27bb47e96dc2aa.tar.gz bugzilla-3d463f780fd2051751f276f71e27bb47e96dc2aa.tar.xz |
Bug 1196618 - add support for group owners
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/messages.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl index d5d4a563d..83b20f4f6 100644 --- a/template/en/default/global/messages.html.tmpl +++ b/template/en/default/global/messages.html.tmpl @@ -409,6 +409,8 @@ [% END %] [% CASE 'icon_url' %] <li>The group icon URL has been updated.</li> + [% CASE 'owner_user_id' %] + <li>The group owner was updated.</li> [% CASE 'members_add' %] <li>The following groups are now members of this group: [%+ changes.members_add.join(', ') FILTER html %]</li> diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 6f352e5ac..332075b69 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -541,7 +541,11 @@ [% ELSIF error == "empty_group_name" %] [% title = "The group name can not be empty" %] You must enter a name for the group. - + + [% ELSIF error == "group_needs_owner" %] + [% title = "Non-System Groups Require Default Owner" %] + You must enter a default owner login for non-system groups. + [% ELSIF error == "entry_access_denied" %] [% title = "Permission Denied" %] [% admindocslinks = {'groups.html' => 'Group Security'} %] |