~ubuntu-branches/ubuntu/lucid/monajat/lucid

« back to all changes in this revision

Viewing changes to gen-mo.sh

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2009-12-21 10:36:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091221103641-i7o1qicc69y4py8q
Tags: 2.3.1-0ubuntu1
* New upstream release. (LP: #506085)
* Code is re-written in python, hence packaging changed accordingly.
* Added manpages for monajat-applet & monajat-mod
* Added patch desktop.diff to:
  + Remove Encoding field.
  + Add X-Islamic-Software category.
  + Replace irrevelant categories with Utility.
* debian/copyright: Updated & converted to machine-readable format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/bash
 
2
pushd po
 
3
for i in *.po
 
4
do
 
5
po=$i
 
6
msgmerge "$po" "monajat.pot" > "$po.tmp" && \
 
7
mv "$po.tmp" "$po"
 
8
mkdir -p "../locale/${po/.po/}/LC_MESSAGES/"
 
9
msgfmt -o "../locale/${po/.po/}/LC_MESSAGES/monajat.mo" "$po"
 
10
done
 
11
popd
 
12