diff --git a/core/signals.py b/core/signals.py
index ea28b99d..c701f09a 100644
--- a/core/signals.py
+++ b/core/signals.py
@@ -83,7 +83,7 @@ registration.signals.user_activated.connect(handle_same_email_account)
def create_notice_types(app, created_models, verbosity, **kwargs):
notification.create_notice_type("comment_on_commented", _("Comment on Commented Work"), _("A comment has been received on a book that you've commented on."))
notification.create_notice_type("wishlist_comment", _("Wishlist Comment"), _("A comment has been received on one of your wishlist books."), default = 1)
- notification.create_notice_type("wishlist_official_comment", _("Wishlist Comment"), _("An official comment has been received on one of your wishlist books."))
+ notification.create_notice_type("wishlist_official_comment", _("Wishlist Comment"), _("A campaign manager or Unglue.it staffer has left a comment on one of your wishlist books."))
notification.create_notice_type("wishlist_work_claimed", _("Rights Holder is Active"), _("A rights holder has shown up for a book that you want unglued."), default = 1)
notification.create_notice_type("wishlist_active", _("New Campaign"), _("A book you've wishlisted has a newly launched campaign."))
notification.create_notice_type("wishlist_near_target", _("Campaign Near Target"), _("A book you want is near its ungluing target."))
diff --git a/frontend/templates/notification/wishlist_official_comment/full.txt b/frontend/templates/notification/wishlist_official_comment/full.txt
index 98c87745..b7b9f929 100644
--- a/frontend/templates/notification/wishlist_official_comment/full.txt
+++ b/frontend/templates/notification/wishlist_official_comment/full.txt
@@ -1,4 +1,4 @@
-{{ comment.user.username }} has official news about a book on your wishlist, {{ comment.content_object.title }}.
+{{ comment.user.username }}, a campaign manager for {{ comment.content_object.title }} (a book on your Unglue.it wishlist), has made a comment:
{{ comment.comment }}
diff --git a/frontend/templates/notification/wishlist_official_comment/notice.html b/frontend/templates/notification/wishlist_official_comment/notice.html
index 619a3b71..b857f3c1 100644
--- a/frontend/templates/notification/wishlist_official_comment/notice.html
+++ b/frontend/templates/notification/wishlist_official_comment/notice.html
@@ -5,7 +5,7 @@
{% endblock %}
{% block comments_graphical %}
- {{ comment.user.username }} has made an official comment on {{ comment.content_object.title }}
+ {{ comment.user.username }}, a campaign manager for{{ comment.content_object.title }}, has commented on the campaign.
{% endblock %}
{% block comments_textual %}
diff --git a/frontend/templates/notification/wishlist_official_comment/short.txt b/frontend/templates/notification/wishlist_official_comment/short.txt
index 03aced47..be170efd 100644
--- a/frontend/templates/notification/wishlist_official_comment/short.txt
+++ b/frontend/templates/notification/wishlist_official_comment/short.txt
@@ -1 +1 @@
-{{ comment.user.username }} has made an official comment on {{ comment.content_object.title }} at Unglue.it
\ No newline at end of file
+Campaign manager {{ comment.user.username }} has commented on {{ comment.content_object.title }} at Unglue.it
\ No newline at end of file