SparkleShare/create-pot-file
2010-05-21 09:56:55 +01:00

10 lines
193 B
Bash
Executable file

#!/bin/bash
mkdir -p locale
if [ $# -ne 1 ]; then
echo "Usage: ./create-po-file [LOCALE].pot"
else
xgettext -a --from-code=UTF-8 SparkleShare/*.cs -o locale/$1
echo "Created locale/$1."
fi