Tiny fix to build_po.pl

svn path=/trunk/boinc/; revision=15746
This commit is contained in:
Rytis Slatkevičius 2008-08-04 09:27:22 +00:00
parent 2b8a9e9bba
commit 6ec2152b0a
1 changed files with 3 additions and 3 deletions

View File

@ -7,9 +7,9 @@ my $path = $ARGV[0];
if ($path eq "") {
die "Usage: build_po.pl [PROJECT_PATH]";
}
system("xgettext --omit-header --directory=".$path."/html/inc -o en.po --keyword=tra -L PHP --no-location ".$path."/html/inc/*");
system("xgettext --omit-header --directory=".$path."/html/user -j -o en.po --keyword=tra -L PHP --no-location ".$path."/html/user/*");
system("xgettext --omit-header --directory=".$path."/html/project -j -o en.po --keyword=tra -L PHP --no-location ".$path."/html/project/*");
system("xgettext --omit-header --directory=".$path."/html/inc -o en.po --keyword=tra -L PHP --no-location ".$path."/html/inc/*.inc");
system("xgettext --omit-header --directory=".$path."/html/user -j -o en.po --keyword=tra -L PHP --no-location ".$path."/html/user/*.php");
system("xgettext --omit-header --directory=".$path."/html/project -j -o en.po --keyword=tra -L PHP --no-location ".$path."/html/project/*.*");
my @timedata = localtime(time);
my $header = "";