diff options
author | Sunil Joshi <joshi_sunil@in.com> | 2013-12-22 16:26:57 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-12-22 16:26:57 +0100 |
commit | 8fd4de3639d393feb37a1744d9a91e1a25119c5d (patch) | |
tree | 2725e748925cc6865bcd2fb13204b6eb6841288e /template/en/default/global | |
parent | ec4862650f2da6ef3b0cdcb1ca135a64879c6b31 (diff) | |
download | bugs-8fd4de3639d393feb37a1744d9a91e1a25119c5d.tar bugs-8fd4de3639d393feb37a1744d9a91e1a25119c5d.tar.gz bugs-8fd4de3639d393feb37a1744d9a91e1a25119c5d.tar.bz2 bugs-8fd4de3639d393feb37a1744d9a91e1a25119c5d.tar.xz bugs-8fd4de3639d393feb37a1744d9a91e1a25119c5d.zip |
Bug 918013: Add Bugzilla messaging system in quips page
r=LpSolit a=justdave
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/messages.html.tmpl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl index 59614c5a5..b8e2c7906 100644 --- a/template/en/default/global/messages.html.tmpl +++ b/template/en/default/global/messages.html.tmpl @@ -798,6 +798,30 @@ or you don't have access to it. The following is a list of the products you can choose from. + [% ELSIF message_tag == "quips_added" %] + Your quip <em>[% added_quip FILTER html %]</em> has been added. + [% IF Param("quip_list_entry_control") == "moderated" AND + !user.in_group('bz_quip_moderators') %] + It will be used as soon as it gets approved. + [% END %] + + [% ELSIF message_tag == "quips_deleted" %] + The quip <em>[% deleted_quip FILTER html %]</em> has been deleted. + + [% ELSIF message_tag == "quips_approved_unapproved" %] + [% IF approved.size == 1 %] + One quip + [% ELSE %] + [% approved.size %] quips + [% END %] + approved and + [% IF unapproved.size == 1 %] + one quip + [% ELSE %] + [%+ unapproved.size %] quips + [% END %] + unapproved. + [% ELSIF message_tag == "report_created" %] OK, you have a new saved report named <em>[% reportname FILTER html %]</em>. |