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 29 30
|
#!/bin/sh
#*******************************************************************************
# *
# Viewmol *
# *
# M A K E T R A N S L A T I O N S *
# *
# Copyright (c) Joerg-R. Hill, October 2003 *
# *
#*******************************************************************************
#
# $Id: makeTranslations,v 1.2 2004/08/29 14:54:04 jrh Exp $
# $Log: makeTranslations,v $
# Revision 1.2 2004/08/29 14:54:04 jrh
# Release 2.4.1
#
# Revision 1.1 2003/11/07 12:54:29 jrh
# Initial revision
#
wd=`pwd`
for i in ../locale/*
do
if [ "$i" != "../locale/CVS" ]
then
cd $i/LC_MESSAGES
msgfmt Viewmol.po -o Viewmol.mo
cd $wd
fi
done
|