{% elif event.type == "build-watcher-removed" %}
{{ _("%s stopped watching this build") % event.user }}
{% elif event.type == "build-bug-added" %}
- {{ _("Bug #%s has been added") % event.bug }}
+ {{ _("Bug #%s has been added") % event.bug_id }}
{% elif event.type == "build-bug-removed" %}
- {{ _("Bug #%s has been removed") % event.bug }}
+ {{ _("Bug #%s has been removed") % event.bug_id }}
{% elif event.type == "build-points" %}
{% if event.points > 0 %}
{{ _("This build has gained one point", "This build has gained %(points)s points", event.points) % { "points" : event.points } }}