8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RES_ROOT=./resources
|
|
|
|
./cmd/compilei18n/compliei18n
|
|
json2po -P "$RES_ROOT/src/" "$RES_ROOT/pot/"
|
|
pot2po -t "$RES_ROOT/po/zh-Hant" "$RES_ROOT/pot" "$RES_ROOT/po/zh-Hant"
|