update-translations.sh 711 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. TEMPLATE=messages.pot
  3. xgettext -kT_js_decl -kT_sprintf -k_ngettext:1,2 -kT_ngettext:1,2 -k__ -L PHP -o $TEMPLATE *.php include/*.php `find classes -iname '*.php'` `find plugins -iname '*.php'`
  4. xgettext --from-code utf-8 -k__ -knotify_info -knotify_progress -kngettext -L Java -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'`
  5. update_lang() {
  6. if [ -f $1.po ]; then
  7. msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE
  8. msgfmt --statistics $1.po -o $1.mo
  9. else
  10. echo "Usage: $0 [-p|<basename>]"
  11. fi
  12. }
  13. LANGS=`find locale -name 'messages.po'`
  14. for lang in $LANGS; do
  15. echo Updating $lang...
  16. PO_BASENAME=`echo $lang | sed s/.po//`
  17. update_lang $PO_BASENAME
  18. done
  19. #./utils/update-js-translations.sh