~drgeo-developers/drgeo/trunk

« back to all changes in this revision

Viewing changes to i18n/update-mo.sh

  • Committer: Hilaire Fernandes
  • Date: 2012-01-27 21:15:40 UTC
  • Revision ID: hilaire.fernandes@gmail.com-20120127211540-912spf97bhpx6mve
Initial additions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
 
 
4
 
 
5
PODIR="po"
 
6
MODIR="locale"
 
7
LANG=""
 
8
 
 
9
LANG="es de fr"
 
10
 
 
11
# Compile .po files
 
12
#
 
13
for l in $LANG; do
 
14
    msgfmt $PODIR/$l.po -o $MODIR/$l/LC_MESSAGES/DrGeoII.mo
 
15
done
 
16