mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
d8f9800d28
3 benefits: * We can set the shortcut in the edit shortcuts dialog as before * Shortcuts can be activated without showing the topbar as before * Drawing in the toppbar is exactly as the other actions
5 lines
520 B
Bash
5 lines
520 B
Bash
#!/bin/sh
|
|
$EXTRACTRC *.rc */*.rc >> rc.cpp || exit 11
|
|
$EXTRACTRC $(find conf/ -name "*.ui") $(find core/ -name "*.ui") $(find ui/ -name "*.ui") $(ls . | grep -E '\.ui') >> rc.cpp || exit 12
|
|
$EXTRACTATTR --attr=tool,name ui/data/drawingtools.xml >> rc.cpp || exit 13
|
|
$XGETTEXT $(find conf/ -name "*.cpp" -o -name "*.h") $(find core/ -name "*.cpp" -o -name "*.h") $(find ui/ -name "*.cpp" -o -name "*.h") $(find shell/ -name "*.cpp" -o -name "*.h") $(ls . | grep -E '\.cpp$') $(ls . | grep -E '\.h$') -o $podir/okular.pot
|