Skip to content
This repository has been archived by the owner on Jul 9, 2020. It is now read-only.

Commit

Permalink
Added a more human readable app verbose name
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Aug 3, 2016
1 parent 2614c31 commit 9cd6348
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion django_netjsonconfig/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
from django.db.models.signals import m2m_changed
from django.utils.translation import ugettext_lazy as _

from .settings import REGISTRATION_ENABLED, SHARED_SECRET


class DjangoNetjsonconfigApp(AppConfig):
name = 'django_netjsonconfig'
label = 'django_netjsonconfig'
verbose_name = 'django-netjsonconfig'
verbose_name = _('Device Configuration')
verbose_name_plural = _('Device Configurations')

def connect_signals(self):
"""
Expand Down

0 comments on commit 9cd6348

Please sign in to comment.