imip-agent

tools/i18n_format.sh

1074:3265b51f4a7f
2016-03-07 Paul Boddie Added further parameterisation of database-resident free/busy collections so that tables may contain other columns such as user-specific details. Fixed removal of affected periods in database-resident collections. freebusy-collections
     1 #!/bin/sh     2      3 DOMAIN=imip-agent     4      5 for FILENAME in messages/*.po ; do     6     LOCALE_ID=`basename "$FILENAME" ".$DOMAIN.po"`     7     mkdir -p "locale/$LOCALE_ID/LC_MESSAGES"     8     msgfmt -o "locale/$LOCALE_ID/LC_MESSAGES/$DOMAIN.mo" "$FILENAME"     9 done