On Wednesday 09 September 2009 10:40:47 Léon Dignòn wrote: > I am glad you ask this. I was running in that problem too. > I use Windows Vista and I've run 'django-admin.py makemessages' inside > the folder I also run 'django-admin.py startproject bestsiteever'. > Same error. > > -leond > > On Sep 9, 7:28 pm, Mirat Can Bayrak <[email protected]> wrote: > > Hi, i finished my site in english and want to convert to some other > > languages. as mentioned in django docs i added translation tags to my > > templates than gived that command : > > > > horsel...@horselogy-pardus yerelilan $ python manage.py compilemessages > > Error: This script should be run from the Django SVN tree or your project > > or app tree, or with the settings module specified. > > > > as you see, it raised an error. why it happened like this? > > > > Regards > > -- > > Mirat Can Bayrak <[email protected]> >
Did you guys try it within the project directory with the projects settings
module or set the environment DJANGO_SETTINGS_MODULE for your project, I'm a
linux user and you would do either:
# export DJANGO_SETTINGS_MODULE=myproject.settings
# django_admin.py makemessages
For windows I believe it's:
C:\> set DJANGO_SETTINGS_MODULE=myproject.settings
C:\> django_admin.py makemessages
Mike
--
Kington's Law of Perforation:
If a straight line of holes is made in a piece of paper, such
as a sheet of stamps or a check, that line becomes the strongest
part of the paper.
signature.asc
Description: This is a digitally signed message part.

