~woutc/specto/specto-woutc-fake-gconf

« back to all changes in this revision

Viewing changes to po/tarball_rosetta.sh

  • Committer: nekohayo
  • Date: 2007-05-29 22:31:45 UTC
  • Revision ID: svn-v3-trunk0:cc143b5f-0d1a-0410-b6b4-bdbe827cf625:trunk:111
* add a "translator-credits" string that is translatable for the about dialog
* write a script that creates a translation tarball for easy upload to Canonical's Rosetta
* updated all translations to give credit where it is due
* fix the turkish translation, I had misnamed the files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
echo "WARNING. This script is only for creating a Rosetta-compliant upload tarball. It assumes that you properly generated the specto.pot template beforehand with generate_template.py"
 
3
mkdir po
 
4
for i in *
 
5
        do cp $i/specto.po po/$i.po
 
6
done
 
7
cp specto.pot po/specto.pot
 
8
tar -cvf rosetta_po.tar.gz po
 
9
rm -R po