poulpe/communication/apps.py

8 lines
195 B
Python
Raw Normal View History

2017-07-15 21:22:15 +02:00
from django.apps import AppConfig
2017-08-19 15:36:45 +02:00
from django.utils.translation import ugettext_lazy as _
2017-07-15 21:22:15 +02:00
class CommunicationConfig(AppConfig):
name = 'communication'
2017-08-19 15:36:45 +02:00
verbose_name = _("Communication")