blob: 1c300d99489f0132f47a764b28b5303a004a5af3 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# Extract Strings from API & UI
make docker-compose-sources
docker-compose -f tools/docker-compose/_sources/docker-compose.yml run awx_1 make awx-link migrate po messages
# Move extracted Strings to Translation Directory
mv awx/locale/en-us/LC_MESSAGES/django.po translations/
|