File: update

package info (click to toggle)
gallery 1.5.4-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 26,712 kB
  • ctags: 6,567
  • sloc: php: 33,824; sh: 446; xml: 96; makefile: 88; perl: 61
file content (14 lines) | stat: -rwxr-xr-x 325 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
TEMPLATE=pigs.pot
xgettext -kT_ngettext:1,2 -kT_ -L PHP -o $TEMPLATE pigs_dropin.php
if [ x$1 == 'x-p' ]; then
    msgfmt --statistics $TEMPLATE
else
    if [ -f $1.po ]; then
	msgmerge -o .tmp$1.po $1.po $TEMPLATE
	mv .tmp$1.po $1.po
	msgfmt --statistics $1.po
    else
	echo "Usage: $0 [-p|<basename>]"
    fi
fi