Hello,
I'm a beginner in the mezzanine's world and I have 2 problems:
- I would like to activate the french translation, in my settings.py, I put: LANGUAGE_CODE = "fr" and USE_I18N = True
But nothing is in french neither on my admin page nor on the site...
What should I do ?
- I need to have two différents sites, so I created 2 projects ( here blog1 and blog2 ) with the command mezzanine-project
I put these lines in my httpd.conf:
<VirtualHost *>
WSGIScriptAlias / /home/myname/webapps/mezzanine/blog1/deploy/wsgi.py
</VirtualHost>
<VirtualHost *>
WSGIScriptAlias / /home/myname/webapps/mezzanine/blog2/deploy/wsgi.py
</VirtualHost>
But the 2 domains point on the same blog: blog1
Use I the correct solution ? And where could be the problem ?
Thank you for your help and excuse me for my poor english.