Added a new directory within the Translations app meant to store any and all translation label JSON files.
Currently the only JSON file within this directory is the one which includes the 37 missing labels on the NC specific instance of the screener.
The bulk_import command script modifies the already saved translation labels before making the import from the passed JSON file. This is not ideal when it is needed to only add/append a few translation labels as is. Added this new command script called bulk_add_translations which simply adds the translation labels through the JSON file on top of the already saved ones.
Any other comments, questions, or concerns?
Use the following command to bulk add all of the missing labels using the new command script:
python manage.py bulk_add_translations *path to file*\37_NC_specific.json
What (if any) features are you implementing?
bulk_import
command script modifies the already saved translation labels before making the import from the passed JSON file. This is not ideal when it is needed to only add/append a few translation labels as is. Added this new command script calledbulk_add_translations
which simply adds the translation labels through the JSON file on top of the already saved ones.Any other comments, questions, or concerns?