From 03c05b3fc69e6869919e65c847f4d75d8610ff99 Mon Sep 17 00:00:00 2001 From: Jufebrown Date: Wed, 3 Oct 2018 09:31:26 -0500 Subject: [PATCH] fix django-admin command on docs/community/project-management.md --- docs/community/project-management.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/community/project-management.md b/docs/community/project-management.md index 21f93b380..5d7dab561 100644 --- a/docs/community/project-management.md +++ b/docs/community/project-management.md @@ -152,7 +152,7 @@ When any user visible strings are changed, they should be uploaded to Transifex # 1. Update the source django.po file, which is the US English version. cd rest_framework - django-admin.py makemessages -l en_US + django-admin makemessages -l en_US # 2. Push the source django.po file to Transifex. cd .. tx push -s @@ -173,7 +173,7 @@ When a translator has finished translating their work needs to be downloaded fro tx pull -a --minimum-perc 10 cd rest_framework # 4. Compile the binary .mo files for all supported languages. - django-admin.py compilemessages + django-admin compilemessages ---