summaryrefslogtreecommitdiff
path: root/scripts/generate_gettext_pot.sh
diff options
context:
space:
mode:
authorConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
committerConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
commitf1ddc12b68b4e4c8087962de25260470e6df2bea (patch)
tree7d0440a6402a9b0ef75ded23fa64b68534255bba /scripts/generate_gettext_pot.sh
parent6025860a61386bf767b29c3ec5fd0d31285f1056 (diff)
Add tuxanci2 files
Diffstat (limited to 'scripts/generate_gettext_pot.sh')
-rwxr-xr-xscripts/generate_gettext_pot.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/generate_gettext_pot.sh b/scripts/generate_gettext_pot.sh
deleted file mode 100755
index dd97ff1..0000000
--- a/scripts/generate_gettext_pot.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-PWD=$(pwd)
-[[ ${PWD/*\//} = scripts ]] && pushd .. > /dev/null || pushd . > /dev/null
-xgettext --no-wrap --width 1 --default-domain=tuxanci --msgid-bugs-address=team@tuxanci.org --add-comments=/// -k_ `find ./ -name \*.c | grep -v .git | sort | uniq | tr '\n' ' '` -o ./po/tuxanci.pot
-cd po/
-find ./ -name \*.po -print | xargs -i msgmerge --no-wrap --width 1 -U {} tuxanci.pot
-rm -rf *~
-popd > /dev/null