diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-08-13 16:31:02 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-08-13 16:31:02 +0200 |
commit | 96c78287563baa489c5ad36c855c63674ed55b34 (patch) | |
tree | 989ff5b4d962e9ab93f7da8d00d7b7940456101d /extensions/TrackingFlags/template/en/default/hook/global | |
parent | 40a58eeefe8d4b754b5201415b8062047119bd1a (diff) | |
download | bugzilla-96c78287563baa489c5ad36c855c63674ed55b34.tar.gz bugzilla-96c78287563baa489c5ad36c855c63674ed55b34.tar.xz |
Bug 899091 - SENTRY ERROR: Can't locate object method "cf_partner_koi_tcl" via package "Bugzilla::Bug" at /loader/0x7f88f01cfd60/Bugzilla/Extension/Push/Serialise.pm line 217
r=glob
Diffstat (limited to 'extensions/TrackingFlags/template/en/default/hook/global')
-rw-r--r-- | extensions/TrackingFlags/template/en/default/hook/global/messages-messages.html.tmpl | 11 | ||||
-rw-r--r-- | extensions/TrackingFlags/template/en/default/hook/global/user-error-errors.html.tmpl | 10 |
2 files changed, 17 insertions, 4 deletions
diff --git a/extensions/TrackingFlags/template/en/default/hook/global/messages-messages.html.tmpl b/extensions/TrackingFlags/template/en/default/hook/global/messages-messages.html.tmpl index 45bb7332c..ce254b8cc 100644 --- a/extensions/TrackingFlags/template/en/default/hook/global/messages-messages.html.tmpl +++ b/extensions/TrackingFlags/template/en/default/hook/global/messages-messages.html.tmpl @@ -6,10 +6,13 @@ # defined by the Mozilla Public License, v. 2.0. #%] -[% IF message_tag == 'tracking_flags_created' %] - The tracking flag has been created. +[% IF message_tag == 'tracking_flag_created' %] + The tracking flag '[% flag.name FILTER html %]' has been created. -[% ELSIF message_tag == 'tracking_flags_updated' %] - The tracking flag has been updated. +[% ELSIF message_tag == 'tracking_flag_updated' %] + The tracking flag '[% flag.name FILTER html %]' has been updated. + +[% ELSIF message_tag == "tracking_flag_deleted" %] + The tracking flag '[% flag.name FILTER html %]' has been deleted. [% END %] diff --git a/extensions/TrackingFlags/template/en/default/hook/global/user-error-errors.html.tmpl b/extensions/TrackingFlags/template/en/default/hook/global/user-error-errors.html.tmpl index f17df1bdf..13f9980dc 100644 --- a/extensions/TrackingFlags/template/en/default/hook/global/user-error-errors.html.tmpl +++ b/extensions/TrackingFlags/template/en/default/hook/global/user-error-errors.html.tmpl @@ -54,4 +54,14 @@ [% title = "Invalid flag type" %] The flag type '[% type FILTER html %]' is invalid. +[% ELSIF error == "tracking_flag_has_activity" %] + [% title = "Tracking Flag Has Activity" %] + The tracking flag '[% flag.name FILTER html %]' cannot be deleted because + it has recorded activity. + +[% ELSIF error == "tracking_flag_has_contents" %] + [% title = "Tracking Flag Has Contents" %] + The tracking flag '[% flag.name FILTER html %]' cannot be deleted because + at least one [% terms.bug %] has a non empty value for this field. + [% END %] |