diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-02-10 11:07:59 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-02-10 11:07:59 +0100 |
commit | c908714dd89aad8aac9a01a93bdd44375d6bf69f (patch) | |
tree | cdd478697c50da254b9ea05be4cad9aade756e5b /tools/update-po | |
parent | 241fa247256050d545d0d4024f260012c20c498d (diff) | |
download | vdradmin-am-3.4.3rc3.tar.gz vdradmin-am-3.4.3rc3.tar.bz2 |
2006-02-10: 3.4.3rc3v3.4.3rc3
- Changed handling of refering pages; should work much better now.
Diffstat (limited to 'tools/update-po')
-rwxr-xr-x | tools/update-po | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/update-po b/tools/update-po deleted file mode 100755 index 0aebd31..0000000 --- a/tools/update-po +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -pushd po/ -../tools/tmplgettext "^.*\.html$" ../template >tmp-html-x.pot -msguniq tmp-html-x.pot >vdradmin.pot - -xgettext --from-code=ISO-8859-1 -L Perl ../vdradmind.pl -j -o vdradmin.pot -#xgettext --from-code=ISO-8859-1 -L Perl ../template/i18n.pl -j -o vdradmin.pot -rm tmp-*.pot -popd - - -for LANG in de es fi fr nl ; do - echo -n "$LANG: " - if msgmerge po/$LANG.po po/vdradmin.pot >temp.po ; then - mv -f temp.po po/$LANG.po - echo " untranslated=$(msgattrib --untranslated po/$LANG.po | grep ^msgid | wc -l) fuzzy=$(msgattrib --fuzzy po/$LANG.po | grep ^msgid | wc -l)" - else - echo "error merging po/$LANG.po and po/vdradmin.pot" - fi -done |