5a8d7bbf45
otherwise it's just wasting the translators' time... sigh
9 lines
288 B
Bash
Executable file
9 lines
288 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
#.qml
|
|
$XGETTEXT `find package -name '*.qml'` -L Java -o $podir/plasma_applet_kdeconnect.pot
|
|
|
|
#.ui (-j passed to merge into existing file)
|
|
$EXTRACTRC `find -name '*.ui' -o -name '*.rc'` >> rc.cpp
|
|
$XGETTEXT rc.cpp -o -j $podir/plasma_applet_kdeconnect.pot
|
|
rm -f rc.cpp
|