Skip to content

Commit

Permalink
Updated compilemessages and makemessages management commands to chang…
Browse files Browse the repository at this point in the history
…e SVN->Git references
  • Loading branch information
adrianholovaty committed Apr 28, 2012
1 parent 8df8e51 commit 21f11e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion django/core/management/commands/compilemessages.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def compile_messages(stderr, locale=None):
basedirs = set(map(os.path.abspath, filter(os.path.isdir, basedirs)))

if not basedirs:
raise CommandError("This script should be run from the Django SVN tree or your project or app tree, or with the settings module specified.")
raise CommandError("This script should be run from the Django Git checkout or your project or app tree, or with the settings module specified.")

for basedir in basedirs:
if locale:
Expand Down
6 changes: 3 additions & 3 deletions django/core/management/commands/makemessages.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def make_messages(locale=None, domain='django', verbosity=1, all=False,
extensions=None, symlinks=False, ignore_patterns=None, no_wrap=False,
no_location=False, no_obsolete=False, stdout=sys.stdout):
"""
Uses the ``locale/`` directory from the Django SVN tree or an
Uses the ``locale/`` directory from the Django Git tree or an
application/project to process all files with translatable literals for
the :param domain: domain and :param locale: locale.
"""
Expand All @@ -287,9 +287,9 @@ def make_messages(locale=None, domain='django', verbosity=1, all=False,
elif os.path.isdir('locale'):
localedir = os.path.abspath('locale')
else:
raise CommandError("This script should be run from the Django SVN "
raise CommandError("This script should be run from the Django Git "
"tree or your project or app tree. If you did indeed run it "
"from the SVN checkout or your project or application, "
"from the Git checkout or your project or application, "
"maybe you are just missing the conf/locale (in the django "
"tree) or locale (for project and application) directory? It "
"is not created automatically, you have to create it by hand "
Expand Down

0 comments on commit 21f11e5

Please sign in to comment.