7 lines
211 B
Bash
Executable File
7 lines
211 B
Bash
Executable File
#!/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
|