I am using Django for a web app.Today I used command :

../manage.py makemessages -l zh_CN 

to create the .po file.But nothing hanppend without printing the

processing locale zh_CN

Why?In my settins.py,all things about I18N was set.

LANGUAGE_CODE = 'zh-hans'

TIME_ZONE = 'Asia/Shanghai'

USE_I18N = True

USE_L10N = True

USE_TZ = True

LOCALE_PATHS = (os.path.join(BASE_DIR, 'locale'),)

Does anyone know how to deal?
Many thanks

 And

django-admin makemessages -l zh_CN

is still the same result.


My app is 'enterprise' and 'myauth'.


My directories structure is:

.├── Web├── captcha├── collected_static├── demo├── dict├── enterprise│   ├── 
migrations│   ├── static│   ├── templates│   ├── templatetags│   └── view├── 
locale├── logs├── myauth│   ├── form│   ├── locale│   ├── migrations│   ├── 
static│   ├── templates│   └── views├── static│   ├── bootstrap│   ├── d3│   
├── img│   ├── jquery│   └── nvd3└── templates


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6a3957ec-0517-40c0-91de-5a5dc699c908%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to