mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Migrate "translate" command
This commit is contained in:
parent
ec1e646de0
commit
af50e29e2c
6
Makefile
6
Makefile
@ -21,12 +21,6 @@ postgresql:
|
||||
sudo apt-get install postgresql postgresql-contrib libpq-dev
|
||||
pip3 install psycopg2
|
||||
|
||||
# Update translation files
|
||||
translate:
|
||||
cd InvenTree && python3 manage.py makemessages
|
||||
cd InvenTree && python3 manage.py compilemessages
|
||||
|
||||
|
||||
# Install packages required to generate code docs
|
||||
docreqs:
|
||||
pip3 install -U -r docs/requirements.txt
|
||||
|
12
tasks.py
12
tasks.py
@ -145,6 +145,18 @@ def update(c):
|
||||
"""
|
||||
pass
|
||||
|
||||
@task
|
||||
def translate(c):
|
||||
"""
|
||||
Regenerate translation files.
|
||||
|
||||
Run this command after added new translatable strings,
|
||||
or after adding translations for existing strings.
|
||||
"""
|
||||
|
||||
manage(c, "makemigrations")
|
||||
manage(c, "compilemessages")
|
||||
|
||||
@task
|
||||
def style(c):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user