1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php
/**
* Lookup for _e(), _t() and _h() in source code and build a
*
* PHP 5.3
*
* @license MIT
* @author Romain d'Alverny, rdalverny, rda
* @copyright 2012/05
*/
if (php_sapi_name() !== 'cli') {
echo "CLI only.\n";
exit(1);
}
if (version_compare(PHP_VERSION, '5.3.0') < 0) {
echo "PHP 5.3 needed.\n";
exit(1);
}
define('APP_ROOT', realpath(__DIR__ . '/..'));
$php_source = isset($argv[1]) ? $argv[1] : null;
$var = isset($argv[2]) ? $argv[2] : null;
$domain = isset($argv[3]) ? $argv[3] : null;
/*
if (is_null($php_source) || is_null($var) || is_null($domain)) {
echo <<<U
Usage:
pa2lang.php path/to/source.php var_name domain_name
U;
exit(1);
}
*/
echo "ohai!\n";
$path = 'en/3/download_index.php en/3/index.php';
//$path = realpath(APP_ROOT . '/' . $path);
$domain = '3';
$cmd = sprintf('grep -HrnEi "_(e|t|h)\((.*)\)" %s', $path);
echo $cmd, "\n";
exec($cmd, $out);
$strings = array();
foreach ($out as $str) {
$arr = explode(':', $str);
$file = array_shift($arr);
/*
$domain = trim(str_replace(array('/en/', APP_ROOT), '', dirname($file)));
if ($domain == '/en')
$domain = 'index';
*/
$file = str_replace(APP_ROOT, '', $file);
$line = array_shift($arr);
$arr = implode(':', $arr);
if (preg_match_all('/\_(e|t|h)\(\'(.+)\'/imU', $arr, $reg)) {
foreach ($reg[2] as $found) {
$strings[$domain][$found][] = $file . ' +' . $line;
}
}
else
echo "!!!! could not find for $file, $line: $str\n";
}
foreach ($strings as $domain => $strs) {
$f = array();
$f[] = sprintf('# Generated by extract2lang.php on %s', date('c'));
$f[] = sprintf('# Domain %s', $domain);
foreach ($strs as $str => $info) {
$str = str_replace(array("\'", "\""), array("'", '"'), $str);
$f[] = '';
$f[] = sprintf('# %s', $info[0]);
$f[] = ';' . $str;
$f[] = $str;
$f[] = '';
}
$f = implode("\n", $f);
$dest = sprintf('%s/langs/%s/%s.%s.lang', APP_ROOT, 'en', $domain, 'en');
$dir = dirname($dest);
if (!is_dir($dir)) {
echo "making $dir\n";
mkdir($dir, 0755, true);
}
echo sprintf("saved %d strings in %s\n", count($strs), $dest);
if (FALSE === file_put_contents($dest, $f))
echo "Failed to write.\n";
}
echo "Done. kthxbye.\n";
exit(0);
|