summaryrefslogtreecommitdiff
path: root/l10n/gen-pot-file
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-03-24 03:55:33 +0300
committerkx <kx@radix.pro>2023-03-24 03:55:33 +0300
commitbfc1508d26c89c9a36d2d9a827fe2c4ed128884d (patch)
tree8d41298a7072a3e289e4912f77ece75cbea1bd54 /l10n/gen-pot-file
parentc836ae3775cf72f17e0b7e3792d156fdb389bee3 (diff)
downloadcsvn-ui-bfc1508d26c89c9a36d2d9a827fe2c4ed128884d.tar.xz
Version 0.1.4
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..2e4ae1e
--- /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/csvn-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=csvn-ui --output=${POTFILE} \
+ `find -type f -name "*.c"`