12 lines
239 B
Python
12 lines
239 B
Python
# created at 15-5-23
|
|
# coding=utf-8
|
|
__author__ = 'zhugl'
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class MyAppConfig(AppConfig):
|
|
name = 'sale'
|
|
verbose_name = _("sale management")
|