mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
5 lines
286 B
Bash
5 lines
286 B
Bash
#!/bin/bash
|
|
$EXTRACTRC `find . -name "*.ui" -o -name "*.rc"` >> rc.cpp || exit 11
|
|
$EXTRACTATTR --attr="WorkSheet,title" --attr="display,title" --attr="beam,summationName" `find . -name "*.sgrd"` >> rc.cpp || exit 13
|
|
$XGETTEXT `find . -name "*.cpp"` -o $podir/ksysguard.pot
|
|
rm -f rc.cpp
|