utilitaires temporaires
This commit is contained in:
parent
8bf9b4c6d5
commit
17a8017a59
17
site/i18n/create_modules.php
Normal file
17
site/i18n/create_modules.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
$target = 'search';
|
||||
|
||||
|
||||
$data = json_decode(file_get_contents('fr_FR.json'), true);
|
||||
$dataTarget = json_decode(file_get_contents($target . '.json'), true);
|
||||
|
||||
|
||||
foreach($dataTarget as $key => $value) {
|
||||
if (array_key_exists($key, $data)) {
|
||||
unset($dataTarget[$key]);
|
||||
echo $key;
|
||||
echo "<p>";
|
||||
}
|
||||
}
|
||||
|
||||
file_put_contents ($target . '.json', json_encode($dataTarget, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT), LOCK_EX);
|
12
site/i18n/update_es.php
Normal file
12
site/i18n/update_es.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
$data = json_decode(file_get_contents('fr_FR.json'), true);
|
||||
$dataTarget = json_decode(file_get_contents('es.json'), true);
|
||||
|
||||
foreach($data as $key => $value) {
|
||||
if (!array_key_exists($key, $dataTarget)) {
|
||||
$dataTarget[$key] = '';
|
||||
}
|
||||
}
|
||||
|
||||
file_put_contents ('es.json', json_encode($dataTarget, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT), LOCK_EX);
|
Loading…
Reference in New Issue
Block a user