mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 16:44:46 +01:00

Read ui/i18n/README.md for information about how to add new languages. requested here: #319
12 lines
220 B
Bash
Executable file
12 lines
220 B
Bash
Executable file
#!/bin/sh
|
|
|
|
app_name="opensnitch"
|
|
langs_dir="./locales"
|
|
|
|
#pylupdate5 opensnitch_i18n.pro
|
|
|
|
for lang in $(ls $langs_dir)
|
|
do
|
|
lang_path="$langs_dir/$lang/$app_name-$lang"
|
|
lrelease $lang_path.ts -qm $lang_path.qm
|
|
done
|