blob: 82375107d6cde01983e2fd717ad2b0b0ad2b9a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Update gettext translation base file
*/
chdir(dirname(dirname(__FILE__)));
//do not include php-gettext or database layer
passthru(
'xgettext -kT_ngettext:1,2 -kT_ -L PHP'
. ' -o data/locales/messages.po'
. ' src/SemanticScuttle/*.php'
. ' src/SemanticScuttle/Model/*.php'
. ' src/SemanticScuttle/Service/*.php'
. ' data/templates/default/*.php'
. ' www/*.php'
. ' www/*/*.php'
);
?>
|