summaryrefslogtreecommitdiffstats
path: root/po/messages.sh
blob: d47478e13590e33170712479d3afdff58dce244a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

export PATH="/usr/kde/3.5/bin/${PATH/kde\/4.2/kde/3.5}"

if [ -z "$1" ] ; then
	msgmergebin=`which msgmerge`
elif [ -x "$1" ] ; then
	msgmergebin="$1"
else
	echo "The given parameter does not point to an executable file" >&2
	exit 2
fi

$msgmergebin --version |grep -q 0.10.35 || { echo "The provided msgmerge binary is most likely a non-KDE version." >&2 ; echo "Please provide the patched version as a parameter for this script." >&2 ; exit 1 ; }
echo $msgmergebin
$msgmergebin --version

PROJECT=kbibtex

cd .. ; make -f admin/Makefile.common package-messages ; cd po

catalogs=`find . -name '*.po'`
for cat in $catalogs; do
  echo $cat
  $msgmergebin -o $cat.new $cat ${PROJECT}.pot && mv $cat.new $cat
done

echo "Done"