X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/blobdiff_plain/959d888c17d1403d2eeecc19bc4b5e2c8d1debf6..27d74ad109a7c05e3650828a2389a0562815281a:/Products/Plinn/update-i18n.sh diff --git a/Products/Plinn/update-i18n.sh b/Products/Plinn/update-i18n.sh index d2283eb..ded6763 100755 --- a/Products/Plinn/update-i18n.sh +++ b/Products/Plinn/update-i18n.sh @@ -1,9 +1,14 @@ #! /bin/sh -i18nextract --path . --site_zcml ../../etc/site.zcml --domain plinn -o locales +if [ !$1 ]; then + ZCML=$INSTANCE_HOME/etc/site.zcml +else + ZCML=$1 +fi -cat locales/plinn.pot locales/plinn-manual.pot > locales/plinn-all.pot -mv locales/plinn-all.pot locales/plinn.pot +i18nextract --path . --site_zcml $ZCML --domain plinn -o locales + +cat locales/plinn-manual.pot >> locales/plinn.pot msgmerge --update --no-fuzzy-matching locales/fr/LC_MESSAGES/plinn.po locales/plinn.pot msgmerge --update --no-fuzzy-matching locales/en/LC_MESSAGES/plinn.po locales/plinn.pot