Skip to content

Commit

Permalink
Fix #386 Translate app name (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebCorbin committed Apr 29, 2020
1 parent 86933b6 commit 540ead3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion constance/apps.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from django.db.models import signals
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


class ConstanceConfig(AppConfig):
name = 'constance'
verbose_name = 'Constance'
verbose_name = _('Constance')

def ready(self):
super().ready()
Expand Down

0 comments on commit 540ead3

Please sign in to comment.