echo"If you call this file with the argument \"?unused=true\" it searches for the translation strings that exist in en_US but are never used.<br>";
echo"IMPORTANT: that can take quite a lot of time (up to 10 minutes), you need to tune the max_execution_time on your php.ini accordingly.<br>";
echo"Happy translating :)<br>";
tr:last-of-type td:last-child {
box-shadow: inset -1px -1px 0 #fff;
}
tbody:hover td {
color: transparent;
text-shadow: 0 0 3px #aaa;
}
// STEP 1 - Search duplicates keys
tbody:hover tr:hover td {
color: #444;
text-shadow: 0 1px 0 #fff;
} </STYLE>";
echo"<body>";
echo"<h3>If you call this file with the argument \"?unused=true\" it searches for the translation strings that exist in en_US but are never used</h3>";
echo"<h2>IMPORTANT: that can take quite a lot of time (up to 10 minutes), you need to tune the max_execution_time on your php.ini accordingly</h2>";
echo"<h3>Happy translating :)</h3>";
// directory containing the php and lang files
$htdocs="../../htdocs/";
// directory containing the php and lang files
$htdocs="../../htdocs/";
// directory containing the english lang files
$workdir=$htdocs."langs/en_US/";
$files=scandir($workdir);
if(empty($files))
{
echo"Can't scan workdir = ".$workdir;
exit;
}
$exludefiles=array('.','..','README');
$files=array_diff($files,$exludefiles);
$langstrings_3d=array();
...
...
@@ -154,11 +103,12 @@ foreach ($files AS $file) {
if(substr($row,0,1)!=='#'){
// don't want lines without the separator (why should those even be here, anyway...)