Skip to content

Commit

Permalink
changed wording for notifications, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Wassibauer committed Aug 15, 2012
1 parent 2aa52ca commit cadc2e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion threaded_messages/__init__.py
@@ -1,2 +1,2 @@
VERSION = (0, 1, 30)
VERSION = (0, 1, 31)
__version__ = '.'.join(map(str, VERSION))
2 changes: 1 addition & 1 deletion threaded_messages/management.py
Expand Up @@ -5,7 +5,7 @@
if "notification" in settings.INSTALLED_APPS:
from notification import models as notification
def create_notice_types(app, created_models, verbosity, **kwargs):
notification.create_notice_type("received_email", _("Received a Message"), _("Someone has sent you a message"))
notification.create_notice_type("received_email", _("Private messages"), _("(this is highly recommended)"))
signals.post_syncdb.connect(create_notice_types, sender=notification)
else:
print "Skipping creation of NoticeTypes (Threaded Messages) as notification app not found"

0 comments on commit cadc2e4

Please sign in to comment.