~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to po/update.sh

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-02-17 12:49:50 UTC
  • mto: This revision was merged to the branch mainline in revision 59.
  • Revision ID: james.westby@ubuntu.com-20100217124950-v9hajw5d2xa6fszn
Tags: upstream-0.6~beta1
ImportĀ upstreamĀ versionĀ 0.6~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env sh
 
2
if [ ! $# -eq 1 ]; then
 
3
  exec >&2
 
4
  echo "Usage: $0 <language>"
 
5
  echo "  language: two-letter language code + country code if applicable (de, en_GB)"
 
6
  exit 1
 
7
fi
 
8
 
 
9
msgmerge --no-wrap --width 1 -U $1 quassel.pot
 
10
[ $? -ne 0 ] && echo "Something went wrong"