From 425cad035f23c2d35d3840ac90b899904fd81b54 Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@nibio.no>
Date: Thu, 16 Nov 2023 10:53:33 +0100
Subject: [PATCH] Correct command for makemessages

---
 docs/translation.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/translation.md b/docs/translation.md
index 7641bc5a..49545bc7 100644
--- a/docs/translation.md
+++ b/docs/translation.md
@@ -64,8 +64,8 @@ PLEASE NOTE: django-admin.py has been creating buggy information for plurals. Pl
 If you have added new translation keywords, do this in each of the applications:
 
 ```bash
-django-admin.py makemessages -a [LANGUAGE]
-django-admin.py makemessages -d djangojs -a [LANGUAGE]
+$ ./manage.py makemessages -a [LANGUAGE]
+$ ./manage.py makemessages -d djangojs -a [LANGUAGE]
 ```
 
 Then recompile the translation files (see below)
@@ -74,5 +74,5 @@ Then recompile the translation files (see below)
 Entering each of the applications (/VIPSWeb, /forecasts, /messages), do:
 
 ```
-django-admin.py compilemessages
+$ ./manage.py compilemessages
 ```
\ No newline at end of file
-- 
GitLab