mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
10 lines
263 B
Bash
10 lines
263 B
Bash
#! /usr/bin/env bash
|
|
|
|
lst=`find . -name \*.rc -o -name \*.ui -o -name \*.kcfg`
|
|
if [ -n "$lst" ] ; then
|
|
$EXTRACTRC $lst >> rc.cpp
|
|
fi
|
|
|
|
$XGETTEXT `find . -name \*.qml -o -name \*.js -o -name \*.h -o -name \*.cpp` -o $podir/plasmaactivitymanager.pot
|
|
rm -f rc.cpp
|