#!/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
