a220ba6770
Add GNU gettext internationalization and localization support. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
12 lines
188 B
Bash
Executable File
12 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f "po/Makevars" ]; then
|
|
echo "You must run this script in the top-level directory"
|
|
exit 1
|
|
fi
|
|
|
|
find . -name '*.c' |
|
|
sort |
|
|
sed 's|^./||
|
|
/^contrib/d' > po/POTFILES.in
|