Translate module tool
This commit is contained in:
parent
fff26fd561
commit
18c6f9d5fb
@ -30,12 +30,16 @@ class helper
|
|||||||
/** Collecte des dialogues des modules */
|
/** Collecte des dialogues des modules */
|
||||||
$url = $_SERVER['QUERY_STRING'];
|
$url = $_SERVER['QUERY_STRING'];
|
||||||
$module = explode('/', $url);
|
$module = explode('/', $url);
|
||||||
if ($module === $target)
|
if ( $module[0] === $target)
|
||||||
{
|
{
|
||||||
|
// La traduction existe déjà dans le core
|
||||||
|
if (array_key_exists($text, core::$dialog) === false && !empty($text)) {
|
||||||
$dialogues = json_decode(file_get_contents('module/' . $target . '/i18n/fr_FR.json' ), true);
|
$dialogues = json_decode(file_get_contents('module/' . $target . '/i18n/fr_FR.json' ), true);
|
||||||
$data = array_merge($dialogues,[$text => '']);
|
$data = array_merge($dialogues,[$text => '']);
|
||||||
file_put_contents ('module/' . $target . '/i18n/fr_FR.json', json_encode($data, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT), LOCK_EX);
|
file_put_contents ('module/' . $target . '/i18n/fr_FR.json', json_encode($data, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT), LOCK_EX);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
return (array_key_exists($text, core::$dialog) && !empty(core::$dialog[$text]) ? core::$dialog[$text] : $text);
|
return (array_key_exists($text, core::$dialog) && !empty(core::$dialog[$text]) ? core::$dialog[$text] : $text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user