2005-03-13 10:53:47 +00:00
|
|
|
#!/bin/bash
|
2005-10-08 09:32:14 +00:00
|
|
|
echo "Generating Catalan translation template"
|
2005-03-13 10:53:47 +00:00
|
|
|
./make_po_ca
|
|
|
|
tar -czf messages.po_ca.tar.gz messages.po
|
2005-10-08 09:32:14 +00:00
|
|
|
echo " "
|
|
|
|
echo "Generating Spanish translation template"
|
2005-03-13 10:53:47 +00:00
|
|
|
./make_po_es
|
|
|
|
tar -czf messages.po_es.tar.gz messages.po
|
2005-10-08 09:32:14 +00:00
|
|
|
echo " "
|
|
|
|
echo "Generating French translation template"
|
2005-03-13 10:53:47 +00:00
|
|
|
./make_po_fr
|
|
|
|
tar -czf messages.po_fr.tar.gz messages.po
|
2005-10-08 09:32:14 +00:00
|
|
|
echo " "
|
|
|
|
echo "Generating Hungarian translation template"
|
2005-03-13 10:53:47 +00:00
|
|
|
./make_po_hu
|
|
|
|
tar -czf messages.po_hu.tar.gz messages.po
|
2005-10-08 09:32:14 +00:00
|
|
|
echo " "
|
|
|
|
echo "Generating Italian translation template"
|
2005-03-13 10:53:47 +00:00
|
|
|
./make_po_it
|
|
|
|
tar -czf messages.po_it.tar.gz messages.po
|
2005-10-08 09:32:14 +00:00
|
|
|
echo " "
|
|
|
|
echo "Generating Japanese translation template"
|
2005-03-13 10:53:47 +00:00
|
|
|
./make_po_jp
|
|
|
|
tar -czf messages.po_jp.tar.gz messages.po
|
|
|
|
|