2
from django.utils.translation import ugettext_noop as _
5
from notification import models as notification
7
def create_notice_types(sender, **kwargs):
8
print('Creating notice types for maps ...')
9
notification.create_notice_type('maps_new_map',
10
_('A new Map is available'),
11
_('a new map is available for download'), 1)
13
print 'Skipping creation of NoticeTypes as notification app not found'