9 lines
216 B
Python
9 lines
216 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class CommentConfig(AppConfig):
|
|
name = 'comment'
|
|
verbose_name = _('comment')
|
|
verbose_name_plural = _('comments')
|