mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-07 21:35:49 +00:00
10 lines
261 B
Bash
Executable File
10 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Run from the root directory of the repo to generate & compile all messages
|
|
|
|
TZ="UTC" pybabel extract -F ./locale/babel.cfg -o ./locale/messages.pot ./
|
|
|
|
pybabel update -l ja -d ./locale/ -i ./locale/messages.pot
|
|
|
|
pybabel compile -f -d ./locale/
|