2015-08-31 08:56:26 +02:00
|
|
|
<?php
|
|
|
|
include_once __DIR__ . '/app/inc/init.php';
|
|
|
|
?>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
</head>
|
|
|
|
<body><pre><?php
|
|
|
|
|
|
|
|
$goodLang = $_GET['good'];
|
|
|
|
$testLang = $_GET['test'];
|
|
|
|
|
|
|
|
$good = json_decode(file_get_contents(__DIR__ . '/locale/' . $goodLang . '.json'), true);
|
|
|
|
$test = json_decode(file_get_contents(__DIR__ . '/locale/' . $testLang . '.json'), true);
|
|
|
|
|
|
|
|
$diffSection = false;
|
|
|
|
|
|
|
|
foreach ($good as $sectionName => $section) {
|
|
|
|
if (!isset($test[$sectionName])) {
|
|
|
|
echo '- section: ' . $sectionName . "\n";
|
|
|
|
$diffSection = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($test as $sectionName => $section) {
|
|
|
|
if (!isset($good[$sectionName])) {
|
|
|
|
echo '+ section: ' . $sectionName . "\n";
|
|
|
|
$diffSection = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
if (!$diffSection and array_keys($good)!==array_keys($test)) {
|
2015-08-31 08:56:26 +02:00
|
|
|
var_dump(array_keys($good));
|
|
|
|
var_dump(array_keys($test));
|
|
|
|
} else {
|
|
|
|
echo 'All sections are in two langs.' . "\n";
|
|
|
|
}
|
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
$diff = [];
|
2015-08-31 08:56:26 +02:00
|
|
|
|
|
|
|
foreach ($good as $sectionName => $section) {
|
|
|
|
$diffSection = false;
|
|
|
|
foreach($section as $key=>$value) {
|
|
|
|
if (!isset($test[$sectionName][$key])) {
|
|
|
|
$diff[$sectionName]['-'][] = $key;
|
|
|
|
$diffSection = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
if (!$diffSection and array_keys($good[$sectionName]) !== array_keys($test[$sectionName])) {
|
2015-08-31 08:56:26 +02:00
|
|
|
$diff[$sectionName]['order_good'] = array_keys($good[$sectionName]);
|
|
|
|
$diff[$sectionName]['order_test'] = array_keys($test[$sectionName]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($test as $sectionName => $section) {
|
|
|
|
foreach($section as $key=>$value) {
|
|
|
|
if (!isset($good[$sectionName][$key])) {
|
|
|
|
$diff[$sectionName]['+'][] = $key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (count($diff) > 0) {
|
|
|
|
var_dump($diff);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|