diff --git a/lam/po/make_all b/lam/po/make_all index b81d39cc..634725a2 100755 --- a/lam/po/make_all +++ b/lam/po/make_all @@ -9,38 +9,51 @@ #!/bin/bash echo "Generating Catalan translation template" ./make_po_ca -tar -czf messages.po_ca.tar.gz messages.po +tar -czf messages.po_ca.tar.gz messages.po echo " " + echo "Generating Chinese translation template" ./make_po_zh -tar -czf messages.po_zh.tar.gz messages.po +tar -czf messages.po_zh.tar.gz messages.po echo " " + +echo "Generating Czech translation template" +./make_po_cs +tar -czf messages.po_cs.tar.gz messages.po +echo " " + echo "Generating Dutch translation template" ./make_po_nl -tar -czf messages.po_nl.tar.gz messages.po +tar -czf messages.po_nl.tar.gz messages.po echo " " + echo "Generating Spanish translation template" ./make_po_es -tar -czf messages.po_es.tar.gz messages.po +tar -czf messages.po_es.tar.gz messages.po echo " " + echo "Generating French translation template" ./make_po_fr -tar -czf messages.po_fr.tar.gz messages.po +tar -czf messages.po_fr.tar.gz messages.po echo " " + echo "Generating Hungarian translation template" ./make_po_hu -tar -czf messages.po_hu.tar.gz messages.po +tar -czf messages.po_hu.tar.gz messages.po echo " " + echo "Generating Italian translation template" ./make_po_it -tar -czf messages.po_it.tar.gz messages.po +tar -czf messages.po_it.tar.gz messages.po echo " " + echo "Generating Japanese translation template" ./make_po_jp -tar -czf messages.po_jp.tar.gz messages.po +tar -czf messages.po_jp.tar.gz messages.po echo " " + echo "Generating Russian translation template" ./make_po_ru -tar -czf messages.po_ru.tar.gz messages.po +tar -czf messages.po_ru.tar.gz messages.po rm messages.po diff --git a/lam/po/make_po_ca b/lam/po/make_po_ca index cfbc1457..ae5f7d23 100755 --- a/lam/po/make_po_ca +++ b/lam/po/make_po_ca @@ -4,7 +4,7 @@ # Copyright (C) 2003 - 2006 Roland Gruber # This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam) -# This script is run after make_po to merge the existing German translations to messages.po +# This script is run after make_po to merge the existing Catalan translations to messages.po ./make_po msgmerge -v ../locale/ca_ES/LC_MESSAGES/messages.po messages.po -o messages.po \ No newline at end of file diff --git a/lam/po/make_po_cs b/lam/po/make_po_cs new file mode 100755 index 00000000..e613f425 --- /dev/null +++ b/lam/po/make_po_cs @@ -0,0 +1,10 @@ +#!/bin/bash +# $Id$ +# +# Copyright (C) 2003 - 2006 Roland Gruber +# This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam) + +# This script is run after make_po to merge the existing Czech translations to messages.po + +./make_po +msgmerge -v ../locale/cs_CZ/LC_MESSAGES/messages.po messages.po -o messages.po \ No newline at end of file