29 lines
445 B
Bash
29 lines
445 B
Bash
#!/bin/bash
|
|
# This script compiles the unobot.po file for all languages.
|
|
|
|
function compile {
|
|
cd './'$1'/LC_MESSAGES/'
|
|
msgfmt unobot.po -o unobot.mo
|
|
cd ../../
|
|
}
|
|
|
|
# Deutsch
|
|
compile de_DE
|
|
# Spanish
|
|
compile es_ES
|
|
# Indonesian
|
|
compile id_ID
|
|
# Italian
|
|
compile it_IT
|
|
# Portuguese
|
|
compile pt_BR
|
|
# Russian
|
|
compile ru_RU
|
|
# Turkish
|
|
compile tr_TR
|
|
# Simplified Chinese
|
|
compile zh_CN
|
|
# Chinese (Honk Kong)
|
|
compile zh_HK
|
|
# Traditional Chinese
|
|
compile zh_TW
|