root / pykota / trunk / po / genmo.sh @ 1864

Revision 1864, 0.7 kB (checked in by jalet, 20 years ago)

Moved translations files

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1#! /bin/sh
2#
3# PyKota - Print Quotas for CUPS and LPRng
4#
5# (c) 2003-2004 Jerome Alet <alet@librelogiciel.com>
6# You're welcome to redistribute this software under the
7# terms of the GNU General Public Licence version 2.0
8# or, at your option, any higher version.
9#
10# You can read the complete GNU GPL in the file COPYING
11# which should come along with this software, or visit
12# the Free Software Foundation's WEB site http://www.fsf.org
13#
14# $Id$
15#
16for dir in *_* ; do
17    echo -n $dir ;
18    cd $dir ;
19    chmod 644 *.?o ;
20    msgmerge --no-location --no-fuzzy-matching --output-file=pykota.po.new pykota.po ../pykota.pot ;
21    mv pykota.po.new pykota.po ;
22    rm pykota.mo ;
23    msgfmt -o pykota.mo pykota.po ;
24    cd .. ;
25done
Note: See TracBrowser for help on using the browser.