summaryrefslogtreecommitdiff
path: root/l10n/gen-pot-file
diff options
context:
space:
mode:
Diffstat (limited to 'l10n/gen-pot-file')
-rwxr-xr-xl10n/gen-pot-file19
1 files changed, 19 insertions, 0 deletions
diff --git a/l10n/gen-pot-file b/l10n/gen-pot-file
new file mode 100755
index 0000000..e762e8f
--- /dev/null
+++ b/l10n/gen-pot-file
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+CWD=`pwd`
+
+SCRIPT_DIR=`cd $(dirname ${BASH_SOURCE[0]}) >/dev/null 2>&1 && pwd`
+program=`basename $0`
+
+cd ${SCRIPT_DIR}/..
+
+POTFILE=po/cgit-ui.pot
+
+cp -a ${POTFILE} ${POTFILE}~
+
+xgettext --keyword=N_ --keyword=_ --keyword=Q_:1,2 \
+ --language=C --add-comments --sort-output --no-wrap \
+ --copyright-holder="Andrey V.Kosteltsev." \
+ --msgid-bugs-address="<support@radix.pro>" \
+ --default-domain=cgit-ui --output=${POTFILE} \
+ `find -type f -name "*.c"`