forked from mirror/django-mailbox
8 lines
185 B
Python
8 lines
185 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
|
||
|
|
|
||
|
|
class MailBoxConfig(AppConfig):
|
||
|
|
name = 'django_mailbox'
|
||
|
|
verbose_name = _("Mail Box")
|