cSvn-UI for SVN Repositories

cGit-UI – is a web interface for Subversion (SVN) Repositories. cSvn CGI script is writen in C and therefore it's fast enough

6 Commits   0 Branches   2 Tags
author: kx <kx@radix.pro> 2023-03-24 03:55:33 +0300 committer: kx <kx@radix.pro> 2023-03-24 03:55:33 +0300 commit: bfc1508d26c89c9a36d2d9a827fe2c4ed128884d parent: c836ae3775cf72f17e0b7e3792d156fdb389bee3
Commit Summary:
Version 0.1.4
Diffstat:
1 file changed, 13 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"`