#!/usr/bin/php 0) { addString($matches[1]); } } } function extractJSON($filename) { $data = file_get_contents($filename); $json = json_decode($data); if (strpos($filename, "widget") !== false) { foreach ($json as $widget) { if (array_key_exists("text", $widget)) { addString($widget->{"text"}, $filename); } } } else if (strpos($filename, "trophies") !== false) { foreach ($json as $trophy) { addString($trophy->{"title"}); addString($trophy->{"description"}); } } else if (strpos($filename, "missions") !== false) { addString($json->{"name"}); addString($json->{"description"}); if (array_key_exists("objectives", $json)) { foreach ($json->{"objectives"} as $objective) { addString($objective->{"description"}, $filename); } } if (array_key_exists("script", $json)) { foreach ($json->{"script"} as $scripts) { foreach ($scripts->{"lines"} as $line) { if (strpos($line, "MSG_BOX") === 0 || strpos($line, "IMPORTANT_MSG_BOX") === 0) { $i = strpos($line, ";") + 1; $line = substr($line, $i); addString($line, $filename); } } } } } else if (strpos($filename, "challenges") !== false) { addString($json->{"description"}); } else if (strpos($filename, "fighters") !== false) { addString($json->{"description"}); } } function recurseDir($dir) { $files = array_diff(scandir($dir), array('..', '.')); foreach ($files as $file) { if (is_dir("$dir/$file")) { recurseDir("$dir/$file"); } else if (strstr($file, ".c") !== FALSE) { extractC("$dir/$file"); } else if (strstr($file, ".json") !== FALSE) { extractJSON("$dir/$file"); } } } recurseDir("../src"); recurseDir("../data/widgets"); recurseDir("../data/missions"); recurseDir("../data/challenges"); recurseDir("../data/trophies"); recurseDir("../data/fighters"); $potHeader = file_get_contents("../tools/potHeader.txt"); $handle = fopen("../locale/tbftss.pot", "w"); $dateTime = date("Y-m-d H:i:sO"); $potHeader = str_replace("{POT_CREATION_DATE}", $dateTime, $potHeader); fwrite($handle, "$potHeader\n"); foreach ($strings as $string) { fwrite($handle, "msgid \"$string\"\n"); fwrite($handle, "msgstr \"\"\n"); fwrite($handle, "\n"); } fclose($handle); ?>