2011-03-11 00:21:05 +01:00
|
|
|
<?php
|
2012-11-13 16:02:03 +01:00
|
|
|
define("DQ_ESCAPE", "__DQ__");
|
2011-03-11 00:21:05 +01:00
|
|
|
|
2011-03-18 11:02:59 +01:00
|
|
|
|
2012-11-05 09:28:54 +01:00
|
|
|
function po2php_run(&$argv, &$argc) {
|
2011-03-11 00:21:05 +01:00
|
|
|
|
|
|
|
if ($argc!=2) {
|
2011-03-11 00:41:01 +01:00
|
|
|
print "Usage: ".$argv[0]." <file.po>\n\n";
|
2011-03-11 00:21:05 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2011-03-11 00:41:01 +01:00
|
|
|
$pofile = $argv[1];
|
|
|
|
$outfile = dirname($pofile)."/strings.php";
|
2011-09-21 16:09:37 +02:00
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
if (strstr($outfile, 'util')) {
|
2011-09-21 16:09:37 +02:00
|
|
|
$lang = 'en';
|
2017-03-23 21:39:03 +01:00
|
|
|
} else {
|
2011-09-21 16:09:37 +02:00
|
|
|
$lang = str_replace('-','_',basename(dirname($pofile)));
|
2017-03-23 21:39:03 +01:00
|
|
|
}
|
2011-09-21 16:09:37 +02:00
|
|
|
|
2017-03-24 22:44:18 +01:00
|
|
|
if (!file_exists($pofile)) {
|
2011-03-11 00:41:01 +01:00
|
|
|
print "Unable to find '$pofile'\n";
|
2011-03-11 00:21:05 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2011-03-11 00:21:05 +01:00
|
|
|
print "Out to '$outfile'\n";
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
$out = "<?php\n\n";
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2011-03-11 00:41:01 +01:00
|
|
|
$infile = file($pofile);
|
2017-03-23 21:39:03 +01:00
|
|
|
$k = "";
|
|
|
|
$v = "";
|
|
|
|
$arr = false;
|
|
|
|
$ink = false;
|
|
|
|
$inv = false;
|
2011-03-18 14:35:23 +01:00
|
|
|
$escape_s_exp = '|[^\\\\]\$[a-z]|';
|
2017-03-24 22:44:18 +01:00
|
|
|
function escape_s($match) {
|
2011-03-18 14:35:23 +01:00
|
|
|
return str_replace('$','\$',$match[0]);
|
|
|
|
}
|
2011-03-11 00:21:05 +01:00
|
|
|
foreach ($infile as $l) {
|
2012-11-13 16:02:03 +01:00
|
|
|
$l = str_replace('\"', DQ_ESCAPE, $l);
|
2011-03-11 00:21:05 +01:00
|
|
|
$len = strlen($l);
|
2017-03-23 21:39:03 +01:00
|
|
|
if ($l[0] == "#") {
|
|
|
|
$l = "";
|
|
|
|
}
|
2017-03-24 22:44:18 +01:00
|
|
|
if (substr($l, 0, 15) == '"Plural-Forms: ') {
|
2017-03-23 21:39:03 +01:00
|
|
|
$match = array();
|
2011-05-11 07:22:05 +02:00
|
|
|
preg_match("|nplurals=([0-9]*); *plural=(.*)[;\\\\]|", $l, $match);
|
2017-03-24 22:44:18 +01:00
|
|
|
$cond = str_replace('n', '$n', $match[2]);
|
2013-03-03 00:46:54 +01:00
|
|
|
// define plural select function if not already defined
|
|
|
|
$fnname = 'string_plural_select_' . $lang;
|
2017-03-24 22:44:18 +01:00
|
|
|
$out .= 'if(! function_exists("' . $fnname . '")) {' . "\n";
|
|
|
|
$out .= 'function '. $fnname . '($n){' . "\n";
|
|
|
|
$out .= ' return ' . $cond . ';' . "\n";
|
|
|
|
$out .= '}}' . "\n";
|
2011-03-11 00:21:05 +01:00
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2017-03-24 22:44:18 +01:00
|
|
|
if ($k != "" && substr($l, 0, 7) == "msgstr ") {
|
2017-03-23 21:39:03 +01:00
|
|
|
if ($ink) {
|
|
|
|
$ink = false;
|
|
|
|
$out .= '$a->strings["' . $k . '"] = ';
|
|
|
|
}
|
|
|
|
if ($inv) {
|
|
|
|
$inv = false;
|
|
|
|
$out .= '"' . $v . '"';
|
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
$v = substr($l, 8, $len - 10);
|
|
|
|
$v = preg_replace_callback($escape_s_exp, 'escape_s', $v);
|
|
|
|
$inv = true;
|
2011-03-18 11:25:22 +01:00
|
|
|
//$out .= $v;
|
2011-03-11 00:21:05 +01:00
|
|
|
}
|
2017-03-23 21:39:03 +01:00
|
|
|
if ($k != "" && substr($l, 0, 7) == "msgstr[") {
|
|
|
|
if ($ink) {
|
|
|
|
$ink = false;
|
|
|
|
$out .= '$a->strings["' . $k . '"] = ';
|
|
|
|
}
|
|
|
|
if ($inv) {
|
|
|
|
$inv = false;
|
|
|
|
$out .= '"' . $v . '"';
|
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2011-03-11 00:21:05 +01:00
|
|
|
if (!$arr) {
|
|
|
|
$arr=True;
|
|
|
|
$out .= "array(\n";
|
|
|
|
}
|
2017-03-23 21:39:03 +01:00
|
|
|
$match = array();
|
2011-03-11 00:21:05 +01:00
|
|
|
preg_match("|\[([0-9]*)\] (.*)|", $l, $match);
|
2017-03-25 13:25:33 +01:00
|
|
|
$out .= "\t"
|
|
|
|
. preg_replace_callback($escape_s_exp, 'escape_s', $match[1])
|
|
|
|
. " => "
|
|
|
|
. preg_replace_callback($escape_s_exp, 'escape_s', $match[2])
|
|
|
|
. ",\n";
|
2011-03-11 00:21:05 +01:00
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2017-03-24 22:44:18 +01:00
|
|
|
if (substr($l, 0, 6) == "msgid_") {
|
|
|
|
$ink = false;
|
|
|
|
$out .= '$a->strings["' . $k . '"] = ';
|
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
|
2011-03-18 11:02:59 +01:00
|
|
|
if ($ink) {
|
2017-03-25 13:27:38 +01:00
|
|
|
$k .= trim($l, "\"\r\n");
|
2017-03-25 13:25:33 +01:00
|
|
|
$k = preg_replace_callback($escape_s_exp, 'escape_s', $k);
|
2011-03-18 11:02:59 +01:00
|
|
|
//$out .= '$a->strings['.$k.'] = ';
|
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
if (substr($l, 0, 6) == "msgid ") {
|
|
|
|
if ($inv) {
|
|
|
|
$inv = false;
|
2017-03-25 13:27:38 +01:00
|
|
|
$out .= '"' . $v . '"';
|
2017-03-23 21:39:03 +01:00
|
|
|
}
|
|
|
|
if ($k != "") {
|
2017-03-25 13:30:12 +01:00
|
|
|
$out .= ($arr) ? ");\n" : ";\n";
|
2017-03-23 21:39:03 +01:00
|
|
|
}
|
|
|
|
$arr = false;
|
2017-03-25 13:27:38 +01:00
|
|
|
$k = str_replace("msgid ", "", $l);
|
2017-03-24 22:44:18 +01:00
|
|
|
if ($k != '""') {
|
|
|
|
$k = trim($k, "\"\r\n");
|
2011-03-18 11:02:59 +01:00
|
|
|
} else {
|
|
|
|
$k = "";
|
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
$k = preg_replace_callback($escape_s_exp, 'escape_s', $k);
|
|
|
|
$ink = true;
|
2011-03-18 11:02:59 +01:00
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
if ($inv && substr($l, 0, 6) != "msgstr") {
|
|
|
|
$v .= trim($l, "\"\r\n");
|
|
|
|
$v = preg_replace_callback($escape_s_exp, 'escape_s', $v);
|
2011-03-18 11:25:22 +01:00
|
|
|
//$out .= '$a->strings['.$k.'] = ';
|
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
|
|
|
|
2011-03-11 00:21:05 +01:00
|
|
|
}
|
2011-05-11 07:12:14 +02:00
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
if ($inv) {
|
|
|
|
$inv = false;
|
|
|
|
$out .= '"' . $v . '"';
|
|
|
|
}
|
|
|
|
if ($k != "") {
|
|
|
|
$out .= ($arr ? ");\n" : ";\n");
|
|
|
|
}
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2012-11-13 16:02:03 +01:00
|
|
|
$out = str_replace(DQ_ESCAPE, '\"', $out);
|
2011-03-11 00:21:05 +01:00
|
|
|
file_put_contents($outfile, $out);
|
2015-01-04 13:24:16 +01:00
|
|
|
|
2011-03-11 00:21:05 +01:00
|
|
|
}
|
|
|
|
|
2017-03-23 21:39:03 +01:00
|
|
|
if (array_search(__FILE__, get_included_files()) === 0) {
|
|
|
|
po2php_run($_SERVER["argv"],$_SERVER["argc"]);
|
2011-05-10 14:20:00 +02:00
|
|
|
}
|