]> git.ipfire.org Git - thirdparty/sarg.git/blame - sarg-php/update-po.sh
Read compressed useragent logs
[thirdparty/sarg.git] / sarg-php / update-po.sh
CommitLineData
8b764408
FM
1#!/bin/sh
2
3# quick and non portable hack to update the po files from bash
4xgettext -o translate.this *.php
5for f in locale/*/LC_MESSAGES/messages.po
6do
7 echo "Updating $f"
8 msgmerge --update "$f" translate.this
9done