diff options
author | Matt Selsky <selsky@columbia.edu> | 2014-03-04 21:33:46 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2014-03-04 21:33:46 +0100 |
commit | 8256d4e7716f777523a7fe0cd4b922624d5f9480 (patch) | |
tree | c13d604e6625565be6b1ac72a50a72a3a8276aff | |
parent | 3de9825958abb148b97725a50132149b57ff24f2 (diff) | |
download | bugzilla-8256d4e7716f777523a7fe0cd4b922624d5f9480.tar.gz bugzilla-8256d4e7716f777523a7fe0cd4b922624d5f9480.tar.xz |
Bug 365050 - removal notice doesn't use English correctly (lists: =and)
r=dkl,a=justdave
-rw-r--r-- | template/en/default/global/messages.html.tmpl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl index 9203d103a..34c678e4f 100644 --- a/template/en/default/global/messages.html.tmpl +++ b/template/en/default/global/messages.html.tmpl @@ -58,16 +58,14 @@ [% END %] [% IF groups_added_to.size %] <li> - The account has been added to the + The account has been added to the following group[% 's' IF groups_added_to.size > 1 %]: [%+ groups_added_to.join(', ') FILTER html %] - group[% 's' IF groups_added_to.size > 1 %]. </li> [% END %] [% IF groups_removed_from.size %] <li> - The account has been removed from the + The account has been removed from the following group[% 's' IF groups_removed_from.size > 1 %]: [%+ groups_removed_from.join(', ') FILTER html %] - group[% 's' IF groups_removed_from.size > 1 %]. </li> [% END %] [% IF groups_granted_rights_to_bless.size %] |