1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-06 08:17:56 +02:00
toxic/translations/tools/update_pot.sh

13 lines
344 B
Bash
Raw Normal View History

2015-05-25 16:38:52 +02:00
#!/bin/bash
cd $(dirname $0)/..
2015-05-25 16:38:52 +02:00
v=$(grep TOXIC_VERSION ../cfg/global_vars.mk | head -1 | cut -d "=" -f 2 | tr -d " ")
xgettext --default-domain="toxic" \
--from-code="UTF-8" \
--copyright-holder="Toxic Team" \
2015-06-29 09:11:21 +02:00
--msgid-bugs-address="JFreegman@tox.chat" \
2015-05-25 16:38:52 +02:00
--package-name="Toxic" \
--package-version="$v" \
--output="toxic.pot" \
../src/*