Check all in one
This commit is contained in:
parent
1fdfdfc6f5
commit
5c55d90be1
@ -1,10 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
$langSource = 'fr_FR';
|
$langSource = 'fr_FR';
|
||||||
$langTarget = 'fr_FR';
|
$langTargetArray = ['en_EN', 'es','gr_GR', 'it', 'pt_PT'];
|
||||||
|
foreach ($langTargetArray as $key => $langTarget) {
|
||||||
$source = json_decode(file_get_contents('../' . $langSource . '.json'), true);
|
$source = json_decode(file_get_contents('../' . $langSource . '.json'), true);
|
||||||
$target = json_decode(file_get_contents('../' . $langTarget . '.json'), true);
|
$target = json_decode(file_get_contents('../' . $langTarget . '.json'), true);
|
||||||
$intersec = array_intersect_key($target, $source);
|
$intersec = array_intersect_key($target, $source);
|
||||||
$dif = array_diff_key($source, $target);
|
$dif = array_diff_key($source, $target);
|
||||||
$merge = array_merge($dif, $intersec);
|
$merge = array_merge($dif, $intersec);
|
||||||
file_put_contents('../' . $langTarget . '.json', json_encode($merge, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT));
|
file_put_contents('../' . $langTarget . '.json', json_encode($merge, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT));
|
||||||
echo 'Done...';
|
echo $langTarget . ' terminé.';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo 'Tout est fini.';
|
||||||
|
Loading…
Reference in New Issue
Block a user