From 0e4042145e4a7066e9bd54f36d1fd2f04d5d76c0 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 17 Jul 2005 00:00:10 +0000 Subject: [PATCH] Add a script to compile all the .po files. --- intl/make-all-mo.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 intl/make-all-mo.sh diff --git a/intl/make-all-mo.sh b/intl/make-all-mo.sh new file mode 100755 index 0000000..e7ad3f8 --- /dev/null +++ b/intl/make-all-mo.sh @@ -0,0 +1,8 @@ +#! /bin/sh +for FILE in po/*.po; do + LNG=$( basename $FILE .po ) + echo $LNG... + rm -rf po/$LNG + mkdir -p po/$LNG/LC_MESSAGES + msgfmt -o po/$LNG/LC_MESSAGES/ccbs.mo po/$LNG.po +done -- 2.39.2