You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
289 B
9 lines
289 B
#!/bin/bash
|
|
REPO_DIR="$PWD"
|
|
LOCALES_DIR="$REPO_DIR/locales"
|
|
msginit -i cursor_id_modifier.pot -o $LOCALES_DIR/en_US/LC_MESSAGES/cursor_id_modifier.po -l en_US
|
|
for lang in en_US zh_CN; do
|
|
cd $LOCALES_DIR/$lang/LC_MESSAGES
|
|
msgfmt -o cursor_id_modifier.mo cursor_id_modifier.po
|
|
done
|
|
|