blob: d6164dd697295b45408783f6cf1ad4c9c20b078c (
plain)
1
2
3
4
5
6
7
8
|
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class CommentsConfig(AppConfig):
name = 'django.contrib.comments'
verbose_name = _("comments")
|