3 lines
163 B
Bash
3 lines
163 B
Bash
|
#!/bin/bash
|
||
|
CPP_FILE_LIST=`find src -name '*.cpp' -print`
|
||
|
xgettext --from-code utf-8 -d kisscount -s --keyword=_ -p ./ressources/po -o kisscount.pot $CPP_FILE_LIST
|