7 lines
211 B
Bash
7 lines
211 B
Bash
|
#!/bin/bash
|
||
|
xgettext -s -o - mambatray.py --output=po/messages.pot
|
||
|
for l in it es fr; do
|
||
|
msgmerge --update --no-fuzzy-matching --backup=off po/$l.po po/messages.pot
|
||
|
done
|
||
|
#lupdate-qt5 *.ui -ts mambatray_it.ts
|